diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf
index eabe245613..9271880a7c 100755
--- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_init.sqf
@@ -43,9 +43,11 @@ IDC_RSCDISPLAYARSENAL_TAB_CARGOPUT 23
IDC_RSCDISPLAYARSENAL_TAB_CARGOMISC 24
IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL 26
*/
-//jna_minItemMember = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1];
-jna_minItemMember = [24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,memberOnlyMagLimit,24,24,24,24,memberOnlyMagLimit];
-
+jna_minItemMember = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1];
+//jna_minItemMember = [24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,memberOnlyMagLimit,24,24,24,24,memberOnlyMagLimit];
+jna_minItemMember = jna_minItemMember apply { minWeaps };
+jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG, memberOnlyMagLimit];
+jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL, memberOnlyMagLimit];
//preload the ammobox so you dont need to wait the first time
["Preload"] call jn_fnc_arsenal;
diff --git a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf
index 8bbbe3dfc7..b78b2e6914 100644
--- a/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNA/fn_arsenal_loadInventory.sqf
@@ -154,16 +154,23 @@ removebackpack player;
_isMember = [player] call A3A_fnc_isMember;
_availableItems = [jna_dataList, _arrayPlaced] call _addArrays;
_itemCounts =+ _availableItems;
+// reduce available items by guest limits for non-members
{
_index = _foreachindex;
_subArray = _x;
+ _isMagArray = (_index == IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG) || (_index == IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL);
{
_item = _x select 0;
_amount = (_x select 1);
- if (_amount != -1) then {
- _amount = [(_x select 1) - (jna_minItemMember select _index),(_x select 1)] select _isMember;
+ if (_amount != -1 && !_isMember) then {
+ if !(_isMagArray) then { _amount = _amount - minWeaps }
+ else {
+ // Magazines are counted in bullets
+ _ammoCount = getNumber (configfile >> "CfgMagazines" >> _item >> "count");
+ _amount = _amount - memberOnlyMagLimit * _ammoCount;
+ };
+ _subArray set [_foreachindex, [_item,_amount]];
};
- _subArray set [_foreachindex, [_item,_amount]];
} forEach _subArray;
_availableItems set [_index, _subArray];
} forEach _availableItems;
@@ -238,7 +245,7 @@ _weapons = [_inventory select 6,_inventory select 7,_inventory select 8];
if (_amountMagAvailable > 0) then {
if (_amountMagAvailable < _amountMag) then {
_arrayMissing = [_arrayMissing,[_itemMag,_amountMag]] call jn_fnc_arsenal_addToArray;
- _amountMag = _amountMagAvailable;
+ _amountMag = _amountMagAvailable max 0;
};
[_arrayTaken,_indexMag,_itemMag,_amountMag] call _addToArray;
[_availableItems,_indexMag,_itemMag,_amountMag] call _removeFromArray;
@@ -283,7 +290,7 @@ _weapons = [_inventory select 6,_inventory select 7,_inventory select 8];
};
};
- if ((_indexAcc != -1) AND {[_availableItems select _indexAcc, _itemAcc] call jn_fnc_arsenal_itemCount != 0}) then {
+ if ((_indexAcc != -1) AND {[_availableItems select _indexAcc, _itemAcc] call jn_fnc_arsenal_itemCount > 0}) then {
switch _index do{
case IDC_RSCDISPLAYARSENAL_TAB_PRIMARYWEAPON:{player addPrimaryWeaponItem _itemAcc;};
case IDC_RSCDISPLAYARSENAL_TAB_SECONDARYWEAPON:{player addSecondaryWeaponItem _itemAcc;};
@@ -353,10 +360,21 @@ private _addContainerFuncs = [
};
} forEach _containers;
+// because addItemCargo doesn't enable grenades
+_addItemToContainer = {
+ params ["_containerIndex", "_item"];
+ switch (_containerIndex) do {
+ case 0: { player addItemToUniform _item };
+ case 1: { player addItemToVest _item };
+ default { player addItemToBackpack _item };
+ };
+};
+
//add items to containers
{
_container = call (_x select 0);
_items = _x select 1;
+ _containerIndex = _forEachIndex;
{
_item = _x;
@@ -374,24 +392,22 @@ private _addContainerFuncs = [
};
if(_amountAvailable < _amount) then {
- _amount = _amountAvailable;
_arrayMissing = [_arrayMissing,[_item,(_amount - _amountAvailable)]] call jn_fnc_arsenal_addToArray;
+ _amount = _amountAvailable max 0;
};
[_arrayTaken,_index,_item,_amount] call _addToArray;
[_availableItems,_index,_item,_amount] call _removeFromArray;
- if (_amount>0) then {//prevent empty mags
- _container addMagazineAmmoCargo [_item,1, _amount];
- };
+ _container addMagazineAmmoCargo [_item,1, _amount];
};
} else {
_amount = 1;
call {
if ([_itemCounts select _index, _item] call jn_fnc_arsenal_itemCount == -1) exitWith {
- _container addItemCargo [_item, 1];
+ [_containerIndex, _item] call _addItemToContainer;
};
- if (_amountAvailable > _amount) then {
- _container addItemCargo [_item,_amount];
+ if (_amountAvailable >= _amount) then {
+ [_containerIndex, _item] call _addItemToContainer;
[_arrayTaken,_index,_item,_amount] call _addToArray;
[_availableItems,_index,_item,_amount] call _removeFromArray;
} else {
diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_addAction.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_addAction.sqf
index 7d262d5f9f..1fbddd89e2 100644
--- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_addAction.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_addAction.sqf
@@ -1,4 +1,4 @@
params["_object"];
//add action to all clients
-[_object] remoteExec ["jn_fnc_logistics_addActionLoad",[0, -2] select isDedicated,_object];
\ No newline at end of file
+[_object] remoteExec ["jn_fnc_logistics_addActionLoad",0,_object];
\ No newline at end of file
diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf
index fd38c17ab6..0593064911 100644
--- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_init.sqf
@@ -1,232 +1,424 @@
//The list of hardpoints for vehicles
/*
the last element is the list of seats to disable for specific node
+
+Points are laid out at follows: Type, location, locked seats
+Type: 0 for weapon hardpoint, 1 for crate loading position
+Location: set of 3 numbers(*) for offset. Left / Right, Forwards / Backwards, Up / Down. Negative / Positive numbers respectively
+Locked seats: ID numbers for seats to be disabled when cargo/hardpoint is present.
+
+*Positions only need up to 2 decimal places for accuracy, you can have more but they aren't neccessary for getting the box in place.
*/
jnl_vehicleHardpoints = [
- //Offroad
- ["\A3\soft_f\Offroad_01\Offroad_01_unarmed_F", [
- //type, location locked seats
- [0, [-0.04,-1.7,-0.72], [1,2,3,4]], //weapon node
- [1, [-0.04,-1.7,-0.72], [1,2,3,4]] //cargo node
- ]],
-
- //Civi and FIA green truck
- ["\A3\soft_f_gamma\van_01\Van_01_transport_F.p3d", [
- [0, [0,-1.60422,-0.63], [2,3,4,5,6,7,8,9]],
- [1, [0,-1.06937,-0.63], [2,3,4,5]],
- [1, [0,-2.61185,-0.63], [6,7,8,9,10,11]]
- ]],
-
- //Motorboat civilian
- ["\A3\boat_f_gamma\Boat_Civil_01\Boat_Civil_01_F", [
- [1, [0,-1.697,-0.874], []]
- ]],
-
- //rebel IFA truck done by Barbolani: Jeroen / Sparker I need your help!
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Gmc353Truck.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,0.374054,-0.0936584], [2,3,4,5,6,7,8]]
- ]],
-
- //"civ" and GER IFA truck done by Barbolani: Jeroen / Sparker I need your help![,[]]
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Opelblitz.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,-0.275879,-0.105191], [2,3,4,5,6,7,8]]
- ]],
-
- //GER IFA truck done by Barbolani: Jeroen / Sparker I need your help!
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Opelblitz_Tent.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,-0.275391,-0.105209], [2,3,4,5,6,7,8]]
- ]],
-
- //Sov IFA truck done by Barbolani: Jeroen / Sparker I need your help!
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Us6.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,-0.829102,0.173984], [2,3,4,5,6,7,8]]
- ]],
-
- //another Sov IFA truck done by Barbolani: Jeroen / Sparker I need your help!
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Us6.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,-0.919434,0.174015], [2,3,4,5,6,7,8]]
- ]],
-
- //another one Sov IFA truck done by Barbolani: Jeroen / Sparker I need your help!
- ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Zis5v.p3d",[
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,-0.657227,-0.817673], [2,3,4,5,6,7,8]]
- ]],
-
- //AAF Zamak open
- ["\A3\soft_f_beta\Truck_02\Truck_02_transport_F", [
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
- [1, [0,-2.1,-0.81], [9,10,11,12,13]]
- ]],
- //AAF Zamak closed STEF 27/10
+// ---------- Vanilla ----------
+//4x4s
+//Offroad
+ ["\A3\soft_f\Offroad_01\Offroad_01_unarmed_F", [
+ //type, location locked seats
+ [0, [0,-1.7,-0.72], [1,2,3,4]], //weapon node
+ [1, [0,-1.7,-0.72], [1,2,3,4]] //cargo node
+ ]],
+
+//Van Cargo
+ ["\a3\Soft_F_Orange\Van_02\Van_02_vehicle_F.p3d", [
+ [1, [0,0,-1], [1,2,3,4,5,6,7]],
+ [1, [0,-2,-1], [8,9]]
+]],
+
+//Van Transport
+ ["\a3\Soft_F_Orange\Van_02\Van_02_transport_F.p3d", [
+ [1, [0,-1.7,-1], [9,10]]
+ ]],
+
+//Small Truck
+ ["\A3\soft_f_gamma\van_01\Van_01_transport_F.p3d", [
+ [0, [0,-1.6,-0.63], [2,3,4,5,6,7,8,9]],
+ [1, [0,-1.06,-0.63], [2,3,4,5]],
+ [1, [0,-2.61,-0.63], [6,7,8,9,10,11]]
+ ]],
+
+//6x6s
+//Zamak Open
+ ["\A3\soft_f_beta\Truck_02\Truck_02_transport_F", [
+ [0, [0,-1.31,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
+ [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
+ [1, [0,-2.1,-0.81], [9,10,11,12,13]]
+ ]],
+
+//Zamak Covered
["\A3\soft_f_beta\Truck_02\Truck_02_covered_F.p3d", [
- [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
+ [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
[1, [0,-2.1,-0.81], [9,10,11,12,13]]
]],
- //AFRF Zamak open rhs_kamaz5350_vdv
- ["rhsafrf\addons\rhs_kamaz\rhs_kamaz5350", [
- [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
- [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
- [1, [0,-2.1,-0.81], [9,10,11,12,13]]
- ]],
+//CSAT Tempest open
+ ["\A3\Soft_F_EPC\Truck_03\Truck_03_transport_F.p3d",[
+ [1, [0.0,-0.9,-0.4], [1,7,6,9]],
+ [1, [0.0,-2.5,-0.4], [2,3,8,12]],
+ [1, [0.0,-4.1,-0.4], [4,5,11,10]]
+ ]],
+//CSAT Tempest closed
+ ["\A3\Soft_F_EPC\Truck_03\Truck_03_covered_F.p3d",[
+ [1, [0.0,-0.9,-0.4], [1,7,6,9]],
+ [1, [0.0,-2.5,-0.4], [2,3,8,12]],
+ [1, [0.0,-4.1,-0.4], [4,5,11,10]]
+ ]],
- //NATO HEMTT open "B_Truck_01_covered_F" seats not checked! boxes are slighlty floating, difficult to see anyway
+//8x8s
+//HEMTT open
["\A3\soft_f_beta\Truck_01\Truck_01_transport_F.p3d",[
- [1,[0.0419922,-0.222656,-0.282602],[3,4,10,11,2]],
- [1,[0.106445,-2.16602,-0.282602],[1,16,8,9]],
- [1,[0.129883,-4.11816,-0.282602],[5,6,12,13,15,7]]
+ [1,[0,-0.222656,-0.5],[3,4,10,11,2]],
+ [1,[0,-2.16602,-0.5],[1,16,8,9]],
+ [1,[0,-4.11816,-0.5],[5,6,12,13,15,7]]
]],
- //NATO HEMMT closed "B_Truck_01_covered_F" seats not checked
+//HEMMT closed
["\A3\soft_f_beta\Truck_01\Truck_01_covered_F.p3d",[
- [1,[0.0383301,-0.224609,-0.437691],[1,16,8,9,2]],
- [1,[0.0856934,-2.16016,-0.437691],[3,4,10,11]],
- [1,[0.0893555,-4.10547,-0.437691],[5,6,12,13,15]]
+ [1,[0,-0.224609,-0.5],[1,16,8,9,2]],
+ [1,[0,-2.16016,-0.5],[3,4,10,11]],
+ [1,[0,-4.10547,-0.5],[5,6,12,13,15]]
]],
- //CSAT Tempest open
- ["\A3\Soft_F_EPC\Truck_03\Truck_03_transport_F.p3d",[
- [1, [0.0541992,-0.788692,0.41213], [1,7,6,9]],
- [1, [0.0561523,-2.33265,0.423543], [2,3,8,12]],
- [1, [0.0625,-3.89461,0.435087], [4,5,11,10]]
- ]],
+//Vanilla HEMTT Flatbed
+ ["a3\Soft_F_Gamma\Truck_01\Truck_01_flatbed_F.p3d",[
+ [0,[0.0,-0.29,-0.79],[]],
+ [0,[0.0,-2.97,-0.79],[]],
+ [1,[0.0,0,-0.8],[]],
+ [1,[0.0,-1.75,-0.8],[]],
+ [1,[0.0,-3.5,-0.8],[]]
+ ]],
- //CSAT Tempest closed
- ["\A3\Soft_F_EPC\Truck_03\Truck_03_covered_F.p3d",[
- [1, [0.0541992,-0.788692,0.41213], [1,7,6,9]],
- [1, [0.0561523,-2.33265,0.423543], [2,3,8,12]],
- [1, [0.0625,-3.89461,0.435087], [4,5,11,10]]
- ]],
+//Vanilla HEMTT Cargo
+ ["a3\Soft_F_Gamma\Truck_01\Truck_01_cargo_F.p3d",[
+ [0,[0.0,-0.29,-0.51],[]],
+ [0,[0.0,-2.97,-0.51],[]],
+ [1,[0.0,0.5,-0.51],[]],
+ [1,[0.0,-1.25,-0.51],[]],
+ [1,[0.0,-2.97,-0.51],[]]
+ ]],
- //RHS Gaz-66 truck "rhs_gaz66_vdv"
- ["\rhsafrf\addons\rhs_gaz66\rhs_gaz66.p3d", [
- [0, [0,-0.88974,-0.610707], []], //Weapon node
- [1, [0,-0.135376,-0.610707], [12,3,13,4,5,2]], //Cargo node
- [1, [0,-1.73634,-0.610707], [6,7,8,9,11,10]]
- ]],
-
- //RHS truck "rhsgref_nat_ural_open"
- ["\rhsafrf\addons\rhs_a2port_car\Ural\Ural_open.p3d",[
- [1, [-0.0100098,-0.335236,-0.438269], [12,3,13,4,5,2] ],
- [1, [-0.00830078,-2.19262,-0.433578], [6,7,8,9,11,10] ]
- ]],
-
- //RHS Russian Ural open truck
- ["\rhsafrf\addons\rhs_a2port_car\Ural\Ural_open2.p3d",[
- [1, [-0.0100098,-0.335236,-0.438269], [12,3,13,4,5,2] ],
- [1, [-0.00830078,-2.19262,-0.433578], [6,7,8,9,11,10] ]
- ]],
-
- //RHS Ural closed with seats VV, Nationalist
- ["\vsmafrf\addons\rhs_a2port_car\Ural\Ural.p3d", [
- [1, [0,-0.207184,-0.19277], [12,3,13,4,5,2]], //Cargo
- [1, [0,-1.78506,-0.19277], [6,7,8,9,11,10]]
- ]],
-
- //RHS Zil131 plain (eg. rhsgref_cdf_zil131) and open (eg. rhsgref_cdf_zil131_open)
- ["rhsafrf\addons\rhs_zil131\rhs_zil131", [
- [1, [0,-0.1,-0.45], [10,11,2,3,4,5]],
- [1, [0,-1.8,-0.45], [6,7,8,9]] // only 10 seats
- ]],
+//Boats
+//Motorboat civilian
+ ["\A3\boat_f_gamma\Boat_Civil_01\Boat_Civil_01_F", [
+ [1, [0,-1.697,-0.874], []]
+ ]],
- //USAF Truck seats covered
- ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2",[
- [1,[-0.0065918,0.0195313,-0.48801],[12,3,13,4,5,2]],
- [1,[0.0373535,-1.80859,-0.433626],[6,7,8,9,11,10]]
- ]],
+//Speedboat minigun
+ ["\A3\Boat_F\Boat_Armed_01\Boat_Armed_01_minigun_F.p3d", [
+ [1, [0,2.63701,-2.16123], []]
+ ]],
- //USAF Truck "rhsusf_M1078A1P2_B_WD_fmtv_usarmy" and "rhsusf_M1078A1P2_B_WD_open_fmtv_usarmy"
- ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2_B",[
+//Transport rubber boat
+ ["\A3\boat_f\Boat_Transport_01\Boat_Transport_01_F.p3d", [
+ [1, [0,0.0189972,-1.04965], []]
+ ]],
+
+//Civilian transport boat
+ ["\A3\Boat_F_Exp\Boat_Transport_02\Boat_Transport_02_F.p3d", [
+ [1, [0,1.233,-0.72029], []]
+ ]],
+
+//Tanoa boat
+ ["\A3\Boat_F_Exp\Boat_Transport_02\Boat_Transport_02_F.p3d",[
+ [1,[-0.0615234,0.492443,0.322869],[5,6,2]]
+ ]],
+
+// ---------- RHS ----------
+//Urals
+//Ural Open
+ ["\rhsafrf\addons\rhs_a2port_car\Ural\Ural_open.p3d",[
+ [1, [0,-0.3,-0.2], [12,3,13,4,5,2] ],
+ [1, [0,-2.2,-0.2], [6,7,8,9,11,10] ]
+ ]],
+
+//Ural Open 2
+ ["\rhsafrf\addons\rhs_a2port_car\Ural\Ural_open2.p3d",[
+ [1, [0,-0.3,-0.2], [12,3,13,4,5,2] ],
+ [1, [0,-2.2,-0.2], [6,7,8,9,11,10] ]
+ ]],
+
+//Ural Closed
+ ["rhsafrf\addons\rhs_a2port_car\Ural\Ural.p3d", [
+ [1, [0,-0.3,-0.2], [12,3,13,4,5,2] ],
+ [1, [0,-2.2,-0.2], [6,7,8,9,11,10] ]
+ ]],
+
+//Kamazs
+ ["rhsafrf\addons\rhs_kamaz\rhs_kamaz5350", [
+ [0, [-0.000671387,-1.31882,-0.81], [2,3,4,5,6,7,8,9,10,11,12,13]],
+ [1, [0,0,-0.81], [2,3,4,5,6,7,8]],
+ [1, [0,-2.1,-0.81], [9,10,11,12,13]]
+ ]],
+
+//Zils
+//Zil 131 ----- ZIL Disabled due to broken/clipping seats. DO NOT USE IN MISSION
+/* ["rhsafrf\addons\rhs_zil131\rhs_zil131", [
+ [1, [0,-0.1,-0.45], [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]],
+ [1, [0,-1.8,-0.45], []]
+ ]],*/
+
+//Gaz
+ ["\rhsafrf\addons\rhs_gaz66\rhs_gaz66.p3d", [
+ [0, [0,-0.88974,-0.610707], []], //Weapon node
+ [1, [0,-0.135376,-0.610707], [12,3,1,4,5,2]], //Cargo node
+ [1, [0,-1.73634,-0.610707], [6,7,8,9,11,10]]
+ ]],
+
+//USAF 4x4 Trucks
+//Standard
+ ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2",[
+ [1,[0.0,0.0,-0.48],[12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.48],[6,7,8,9,11,10]]//
+ ]],
+
+//uparmoured
+ ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2_B",[
+ [1,[-0.00732422,0.0195313,-0.487986],[12,3,13,4,5,2]],
+ [1,[0.0366211,-1.80859,-0.435032],[6,7,8,9,11,10]]
+ ]],
+
+//uparmoured - armed
+ ["\rhsusf\addons\rhsusf_fmtv\M1078A1P2_B_M2",[
[1,[-0.00732422,0.0195313,-0.487986],[12,3,13,4,5,2]],
[1,[0.0366211,-1.80859,-0.435032],[6,7,8,9,11,10]]
- ]],
-
- //USAF Truck "rhsusf_M1083A1P2_WD_fmtv_usarmy"
- ["\rhsusf\addons\rhsusf_fmtv\M1083A1P2",[
- [1,[-0.00610352,0.0175781,-0.504599], [12,3,13,4,5,2]],
- [1,[0.0383301,-1.81055,-0.450647], [6,7,8,9,11,10]]
- ]],
-
- //Speedboat minigun
- ["\A3\Boat_F\Boat_Armed_01\Boat_Armed_01_minigun_F.p3d", [
- [1, [0,2.63701,-2.16123], []]
- ]],
-
- //Transport rubber boat
- ["\A3\boat_f\Boat_Transport_01\Boat_Transport_01_F.p3d", [
- [1, [0,0.0189972,-1.04965], []]
- ]],
-
- //Civilian transport boat
- ["\A3\Boat_F_Exp\Boat_Transport_02\Boat_Transport_02_F.p3d", [
- [1, [0,1.233,-0.72029], []]
- ]],
-
- //Tanoa boat
- ["\A3\Boat_F_Exp\Boat_Transport_02\Boat_Transport_02_F.p3d",[
- [1,[-0.0615234,0.492443,0.322869],[5,6,2]]
- ]],
-
- //Vanilla HEMTT Flatbed
- ["a3\Soft_F_Gamma\Truck_01\Truck_01_flatbed_F.p3d",[
- [0,[0.0283203,-0.29126,-0.799927],[]],
- [0,[0.0771484,-2.97998,-0.799805],[]],
- [1,[0.0283203,-0.29126,-0.799927],[]],
- [1,[0.0771484,-2.97998,-0.799805],[]]
- ]],
-
- //Vanilla HEMTT Cargo
- ["a3\Soft_F_Gamma\Truck_01\Truck_01_cargo_F.p3d",[
- [0,[0.0283203,-0.29126,-0.51],[]],
- [0,[0.0771484,-2.97998,-0.51],[]],
- [1,[0.0283203,-0.29126,-0.51],[]],
- [1,[0.0771484,-2.97998,-0.51],[]]
- ]],
-
- //3CB MAN 6x6 flatbed
- ["\uk3cb_baf_vehicles\addons\uk3cb_baf_vehicles_man\uk3cb_man_6x6_cargo.p3d",[
- //TYPE, [left/right, for/aft, up/down], seat disabler
- [1,[-0.00610352,4.5175781,-1.254599],[]],
- [1,[-0.00610352,2.5175781,-1.254599],[]],
- [1,[0.0383301,0.51055,-1.254599],[]]
- ]],
-
- //3CB MAN 4x4 flatbed
- ["\uk3cb_baf_vehicles\addons\uk3cb_baf_vehicles_man\uk3cb_man_4x4_cargo.p3d",[
- //TYPE, [left/right, for/aft, up/down], seat disabler
- [1,[-0.00610352,2.5175781,-1.254599],[]],
- [1,[0.0383301,0.51055,-1.254599],[]]
- ]],
-
- //3CB v3s Recovery
- ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_recovery.p3d",[
- //TYPE, [left/right, for/aft, up/down], seat disabler
- [1,[-0.00610352,-0.5175781,-0.504599],[]],
- [1,[0.0383301,-2.51055,-0.504599],[]]
- ]],
-
- //3CB v3s closed
- ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_transport.p3d",[
- //TYPE, [left/right, for/aft, up/down], seat disabler
- [1,[-0.00610352,-0.5175781,-0.504599],[10,3,11,4,5,2]],
- [1,[0.0383301,-2.51055,-0.504599],[6,7,8,9,12,13]]
- ]],
-
- //3CB v3s open
- ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_open.p3d",[
- //TYPE, [left/right, for/aft, up/down], seat disabler
- [1,[-0.00610352,-0.5175781,-0.504599],[10,3,11,4,5,2]],
- [1,[0.0383301,-2.51055,-0.504599],[6,7,8,9,12,13]]
- ]]
+ ]],
+
+//USAF 6x6 Trucks
+//Standard
+ ["\rhsusf\addons\rhsusf_fmtv\M1083A1P2",[
+ [1,[0.0,0.0,-0.45], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.45], [6,7,8,9,11,10]]
+ ]],
+
+//uparmoured
+ ["\rhsusf\addons\rhsusf_fmtv\M1083A1P2_B",[
+ [1,[0.0,0.0,-0.45], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.45], [6,7,8,9,11,10]]
+ ]],
+
+//Armed
+ ["\rhsusf\addons\rhsusf_fmtv\M1083A1P2_B_M2",[
+ [1,[0.0,0.0,-0.45], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.45], [6,7,8,9,11,10]]
+ ]],
+
+//standard crane
+ ["\rhsusf\addons\rhsusf_fmtv\M1084A1P2",[
+ [1,[0.0,0.0,-0.45], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.45], [6,7,8,9,11,10]]
+ ]],
+
+//uparmoured crane
+ ["\rhsusf\addons\rhsusf_fmtv\M1084A1P2_B",[
+ [1,[0.0,0.0,-0.45], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-0.45], [6,7,8,9,11,10]]
+ ]],
+
+//Armed crane
+ ["\rhsusf\addons\rhsusf_fmtv\M1084A1P2_B_M2",[
+ [1,[0.0,0.0,-1.1], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-1.1], [6,7,8,9,11,10]]
+ ]],
+
+//SOCOM Stripped
+["\rhsusf\addons\rhsusf_fmtv\M1084A1R_SOV_M2",[
+ [1,[0.0,0.0,-1.1], [12,3,13,4,5,2]],
+ [1,[0.0,-1.8,-1.1], [6,7,8,9,11,10]]
+]],
+
+//SOCOM MRAP
+["\rhsusf\addons\rhsusf_SOCOMAUV\M1239",[
+ [1,[0.0,-2.5,-1.2], []]
+]],
+
+//USAF 8x8 Trucks
+//Standard
+ ["\rhsusf\addons\rhsusf_HEMTT_A4\M977A4_wd",[
+ [1,[0.0,0.5,0], [12,3,13,4,5,2]],
+ [1,[0.0,-1.3,0], [6,7,8,9,11,10]],
+ [1,[0.0,-3,0], [6,7,8,9,11,10]]
+ ]],
+
+//uparmoured
+ ["\rhsusf\addons\rhsusf_hemtt_a4\M977A4_WD_APK",[
+ [1,[0.0,0.5,-0.1], [12,3,13,4,5,2]],
+ [1,[0.0,-1.3,-0.1], [6,7,8,9,11,10]],
+ [1,[0.0,-3,-0.1], [6,7,8,9,11,10]]
+ ]],
+
+//Armed
+ ["\rhsusf\addons\rhsusf_hemtt_a4\M977A4_WD_APK_M2",[
+ [1,[0.0,0.5,-0.8], [12,3,13,4,5,2]],
+ [1,[0.0,-1.3,-0.8], [6,7,8,9,11,10]],
+ [1,[0.0,-3,-0.8], [6,7,8,9,11,10]]
+ ]],
+
+//Humvee 2D
+//Covered
+ ["\rhsusf\addons\rhsusf_hmmwv\rhsusf_m998_2dr", [
+ [1, [0,-1.4,-1], [1,2,3,4,5,6]] //cargo node
+ ]],
+
+// ---------- IFA ----------
+//Allies
+//GMC
+ ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Gmc353Truck.p3d",[
+ [1, [0,-2,-0.6], [1,2,3,4,5,6,7,8,9,10]]
+ ]],
+
+//Austin
+ ["\WW2\Assets_m\Vehicles\Trucks_m\DD_AustinK5.p3d",[
+ [1, [0,-1,-0.9], [1,2,3,4,5,6,7,8,9,10]]
+ ]],
+
+//Axis
+//Opel Blitz
+ ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Opelblitz.p3d",[
+ [1, [0,-1.5,-0.10], [1,2,3,4,5,6,7,8,9,10]]
+ ]],
+
+//Opel Blitz Covered
+ ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Opelblitz_Tent.p3d",[
+ [1, [0,-1.5,-0.10], [1,2,3,4,5,6,7,8,9,10]]
+ ]],
+
+//Sd. Kfz. 7/1
+ ["\WW2\Assets_m\Vehicles\WheeledAPC_m\IF_SdKfz_7.p3d",[
+ [1, [0,-1.7,-0.8], [5,6,7,8,9,10,11]]
+ ]],
+
+//Commintern
+//Studebaker
+ ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Us6.p3d",[
+ [1, [0,-0.82,0.17], [2,3,4,5,6,7,8]]
+ ]],
+
+//Zis - Disabled due to benches -
+/* ["\WW2\Assets_m\Vehicles\Trucks_m\IF_Zis5v.p3d",[
+ [1, [0,-0.65,-0.81], [2,3,4,5,6,7,8]]
+ ]],*/
+
+// ---------- 3CB ----------
+//Datsun
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_datsun\uk3cb_datsun_civ_open.p3d", [
+ [0, [0,-1.2,-0.72], [1,2,3,4]],
+ [1, [0,-1.2,-0.72], [1,2,3,4]]
+ ]],
+
+//Hilux
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_hilux\uk3cb_hilux.p3d", [
+ [0, [0,-1.2,-0.72], [1,2,3,4]],
+ [1, [0,-1.2,-0.72], [1,2,3,4]]
+ ]],
+
+//M939s
+//open
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_m939\uk3cb_m939_open.p3d",[
+ [1,[0,-0.5,-0.5],[1,2,3,4,5,6]],
+ [1,[0,-2.5,-0.5],[7,8,9,10,11,12]]
+ ]],
+
+//Covered
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_m939\uk3cb_m939_closed.p3d",[
+ [1,[0,-0.5,-0.5],[1,2,3,4,5,6]],
+ [1,[0,-2.5,-0.5],[7,8,9,10,11,12]]
+ ]],
+
+//Guntruck
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_m939\uk3cb_m939_guntruck.p3d",[
+ [1,[0,-0.5,-1.25],[0,1,2,3,4,5]],
+ [1,[0,-2.5,-1.25],[6,7,8,9,10,11]]
+ ]],
+
+//Recovery
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_m939\uk3cb_m939_recovery.p3d",[
+ [1,[0,-0.5,-0.5],[]],
+ [1,[0,-2.5,-0.5],[]]
+ ]],
+
+//Coyote P
+ ["\UK3CB_BAF_Vehicles\addons\UK3CB_BAF_Vehicles_Coyote_Jackal\uk3cb_coyote_L134A1_passenger.p3d",[
+ [1,[0,-2,-1.6],[2,3,4,5,6,7,8]]
+ ]],
+
+//Husky P !!! Disabled due to one of the seats not being disableable. !!!
+/* ["\UK3CB_BAF_Vehicles\addons\uk3cb_baf_vehicles_husky\uk3cb_husky_gmg.p3d",[
+ [1,[0,-1.9,-1.2],[2,5,4]]
+ ]],*/
+
+//MTVRs
+//open
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_mtvr\uk3cb_mtvr_open.p3d",[
+ [1,[0,-0.5,-0.7],[0,1,2,3,4,5,6]],
+ [1,[0,-2.5,-0.7],[7,8,9,10,11,12]]
+ ]],
+
+//Covered
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_mtvr\uk3cb_mtvr_closed.p3d",[
+ [1,[0,-0.5,-0.7],[0,1,2,3,4,5,6]],
+ [1,[0,-2.5,-0.7],[7,8,9,10,11,12]]
+ ]],
+
+//Recovery
+ ["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_mtvr\uk3cb_mtvr_recovery.p3d",[
+ [1,[0,0,-0.7],[]],
+ [1,[0,-1.7,-0.7],[]],
+ [1,[0,-3.5,-0.7],[]]
+ ]],
+
+//MAN Trucks
+//4x4s
+//Flatbed
+ ["\uk3cb_baf_vehicles\addons\uk3cb_baf_vehicles_man\uk3cb_man_4x4_cargo.p3d",[
+ [1,[0,2.5,-1.25],[]],
+ [1,[0,0.5,-1.25],[]]
+ ]],
+
+//6x6s
+//Flatbed
+ ["\uk3cb_baf_vehicles\addons\uk3cb_baf_vehicles_man\uk3cb_man_6x6_cargo.p3d",[
+ [1,[0,4.5175781,-1.254599],[]],
+ [1,[0,2.5175781,-1.254599],[]],
+ [1,[0,0.51055,-1.254599],[]]
+ ]],
+
+//v3s
+//Recovery
+["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_recovery.p3d",[
+//TYPE, [left/right, for/aft, up/down], seat disabler
+ [1,[0,0.6,-0.65],[]],
+ [1,[0,-1,-0.65],[]],
+ [1,[0,-2.6,-0.65],[]]
+]],
+
+//Closed
+["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_transport.p3d",[
+//TYPE, [left/right, for/aft, up/down], seat disabler
+ [1,[0,-0.3,-0.75],[10,3,11,4,5,2]],
+ [1,[0,-2.3,-0.75],[6,7,8,9,12,13]]
+]],
+
+//Open
+["\UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_v3s\uk3cb_v3s_open.p3d",[
+//TYPE, [left/right, for/aft, up/down], seat disabler
+ [1,[0,-0.3,-0.75],[10,3,11,4,5,2]],
+ [1,[0,-2.3,-0.75],[6,7,8,9,12,13]]
+]],
+
+//Other Recovery Trucks
+//Ural
+//Recovery
+ ["UK3CB_Factions\addons\UK3CB_Factions_Vehicles\wheeled\UK3CB_Factions_Vehicles_ural\uk3cb_ural_recovery.p3d",[
+ [1,[0,-0.2,-0.5],[]],
+ [1,[0,-1.9,-0.5],[]],
+ [1,[0,-3.6,-0.5],[]]
+ ]]
+
+//Boats
+
+// ---------- MODNAME ----------
];
@@ -358,4 +550,4 @@ _defaultCrew = gettext (configfile >> "cfgvehicles" >> "all" >> "crew");
};
} foreach ("isclass _x && {getnumber (_x >> 'scope') == 2} && {gettext (_x >> 'crew') != _defaultCrew}" configclasses (configfile >> "cfgvehicles"));
-jnl_initCompleted = true;
\ No newline at end of file
+jnl_initCompleted = true;
diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_load.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_load.sqf
index b327cd2ab3..9866b31a0f 100644
--- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_load.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_load.sqf
@@ -56,7 +56,7 @@ if _playAnimation then{
//lock seats
//Need to call the function here, because it gets data from objects attached to the vehicle
sleep 0.1;
- [_vehicle] remoteExec ["jn_fnc_logistics_lockSeats",[0, -2] select isDedicated,_vehicle];
+ [_vehicle] remoteExec ["jn_fnc_logistics_lockSeats",0,_vehicle];
//Push it in till it's in place!
while {_locStart select 1 < _locEnd select 1}do{
@@ -84,15 +84,15 @@ if _playAnimation then{
//Add action to unload
if(_allowUnload) then
{
- [_vehicle] remoteExec ["jn_fnc_logistics_addActionUnload",[0, -2] select isDedicated,_vehicle];
+ [_vehicle] remoteExec ["jn_fnc_logistics_addActionUnload",0,_vehicle];
};
//Add getOut event hanldler and getin Action
if(_objectType == 0) then
{
- [_object] remoteExec ["jn_fnc_logistics_addEventGetoutWeapon",[0, -2] select isDedicated,_object];
+ [_object] remoteExec ["jn_fnc_logistics_addEventGetoutWeapon",0,_object];
- [_vehicle,_object] remoteExec ["jn_fnc_logistics_addActionGetinWeapon",[0, -2] select isDedicated,_vehicle];
+ [_vehicle,_object] remoteExec ["jn_fnc_logistics_addActionGetinWeapon",0,_vehicle];
};
[_object] spawn A3A_fnc_VEHdespawner;
//save ACE settings to we can reset them when we unload
diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_removeAction.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_removeAction.sqf
index 956f9faa39..894af937cc 100644
--- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_removeAction.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_removeAction.sqf
@@ -3,4 +3,4 @@
params["_object"];
//remove action for all clients
-[_object] remoteExec ["jn_fnc_logistics_removeActionLoad",[0, -2] select isDedicated,_object];
\ No newline at end of file
+[_object] remoteExec ["jn_fnc_logistics_removeActionLoad",0,_object];
\ No newline at end of file
diff --git a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_unLoad.sqf b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_unLoad.sqf
index e88bf3e8c8..d5841be3e5 100644
--- a/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_unLoad.sqf
+++ b/A3-Antistasi/JeroenArsenal/JNL/fn_logistics_unLoad.sqf
@@ -68,7 +68,7 @@ if(!isnull _object)then{
//re-enable seats
//need to call the function here, since it gets data from jnl_cargo!
- [_vehicle] remoteExec ["jn_fnc_logistics_lockSeats",[0, -2] select isDedicated,_vehicle];
+ [_vehicle] remoteExec ["jn_fnc_logistics_lockSeats",0,_vehicle];
};
_return = true;
@@ -76,9 +76,9 @@ if(!isnull _object)then{
//remove action if it was the last peace of cargo on the vehicle
if(_nodeLast == 0)then{
- [_vehicle] remoteExec ["jn_fnc_logistics_removeActionUnload",[0, -2] select isDedicated, _vehicle];
- [_vehicle] remoteExec ["jn_fnc_logistics_removeActionGetInWeapon", [0, -2] select isDedicated, _vehicle];
- [_object] remoteExec ["jn_fnc_logistics_removeEventGetOut", [0, -2] select isDedicated, _object];
+ [_vehicle] remoteExec ["jn_fnc_logistics_removeActionUnload",0, _vehicle];
+ [_vehicle] remoteExec ["jn_fnc_logistics_removeActionGetInWeapon", 0, _vehicle];
+ [_object] remoteExec ["jn_fnc_logistics_removeEventGetOut", 0, _object];
};
//reset ACE carry if there was one
diff --git a/A3-Antistasi/MissionDescription/params.hpp b/A3-Antistasi/MissionDescription/params.hpp
index ca67a7cb0c..8cf9f4071e 100644
--- a/A3-Antistasi/MissionDescription/params.hpp
+++ b/A3-Antistasi/MissionDescription/params.hpp
@@ -151,6 +151,13 @@ class Params
texts[] = {"Yes","No"};
default = 0;
};
+ class startWithLongRangeRadio
+ {
+ title = "[TFAR] Start with Long Range Radio?";
+ values[] = {1,0};
+ texts[] = {"Yes","No"};
+ default = 1;
+ };
class Spacer10
{
title = "";
@@ -443,13 +450,13 @@ class Params
title = "Maximum Device Backpack Types in Crates";
values[] = {0,2,4,9};
texts[] = {"1","3","5","10"};
- default = 0;
+ default = 2;
};
class crateDeviceNumMax
{
title = "Maximum Device Backpack Quantity in Crates";
values[] = {0,1,3,5,10,15};
texts[] = {"None","1","3","5","10","15"};
- default = 1;
+ default = 3;
};
};
diff --git a/A3-Antistasi/NavGrids/navGridtem_kujari.sqf b/A3-Antistasi/NavGrids/navGridtem_kujari.sqf
new file mode 100644
index 0000000000..7e6fffdd92
--- /dev/null
+++ b/A3-Antistasi/NavGrids/navGridtem_kujari.sqf
@@ -0,0 +1,738 @@
+navGrid = [[0,[2183.22,4783.53,0],[[1,2],[2,2],[3,2],[4,2]]], [1,[2131.44,4768.16,-4.76837e-007],[[0,2],[4,2],[5,2],[6,2]]], [2,[2184.4,4851.22,0],[[0,2],[7,2],[8,2]]], [3,[2375.93,4819.17,1.90735e-006],[[0,2],[9,2]]], [4,[2205.12,4685.14,0],[[0,2],[1,2],[10,2],[11,2],[12,2]]], [5,[1960.7,4818.41,0],[[1,2],[13,2],[14,2],[15,2]]],
+[6,[1978.49,4716.13,0],[[1,2],[16,2]]], [7,[2219.84,4997.66,0],[[2,2],[17,2]]], [8,[2345.15,4875.66,1.90735e-006],[[2,2],[18,2],[9,2]]], [9,[2416.54,4833.53,-4.76837e-007],[[3,2],[8,2],[11,2],[18,2],[19,2]]], [10,[2143.77,4677.22,0],[[4,2],[20,2],[21,2],[12,2]]], [11,[2358.93,4677.89,-3.8147e-007],[[4,2],[9,2],[12,2],[22,2],[23,2]]],
+[12,[2231.74,4620.53,0],[[4,2],[10,2],[11,2],[21,2],[24,2]]], [13,[1998.13,4902.56,0],[[5,2],[25,2],[26,2]]], [14,[1825.1,4782.92,-3.17891e-007],[[5,2],[27,2],[28,2]]], [15,[1862.8,4663.33,0],[[5,2],[29,2],[16,2],[20,2]]], [16,[1864.23,4602.87,0],[[6,2],[15,2],[29,2]]], [17,[2323.8,5080.02,0],[[7,2],[30,2]]],
+[18,[2431.17,4921.33,-1.90735e-006],[[8,2],[9,2],[31,2]]], [19,[2581.42,4857.88,0],[[9,2]]], [20,[1987.48,4596.97,1.27157e-006],[[10,2],[15,2],[29,2],[32,2],[21,2]]], [21,[2170.63,4600.55,4.76837e-007],[[10,2],[12,2],[20,2],[33,2],[24,2],[34,2]]], [22,[2357.47,4515.02,0],[[11,2],[35,2],[24,2]]], [23,[2541.85,4658.34,-1.90735e-006],[[11,2],[36,2]]],
+[24,[2238.81,4497.29,-4.76837e-007],[[12,2],[21,2],[22,2],[37,2],[32,2],[38,2]]], [25,[1935.39,4977.76,0],[[13,2],[39,2],[28,2],[40,2],[26,2]]], [26,[1974.12,5071.45,0],[[13,2],[25,2],[40,2],[41,2]]], [27,[1652.37,4740.35,0],[[14,2],[42,2]]], [28,[1823.93,4914.17,-1.90735e-006],[[14,2],[25,2],[39,2]]], [29,[1831.4,4570.55,3.8147e-007],[[15,2],[16,2],[20,2],[43,2],[44,2]]],
+[30,[2457.52,5178.07,0],[[17,2],[45,2]]], [31,[2584.03,5062.42,0],[[18,2],[46,2]]], [32,[2111.71,4593.98,0],[[20,2],[24,2],[37,2]]], [33,[2186.4,4490.04,-1.90735e-006],[[21,2],[47,2],[38,2]]], [34,[2123.68,4595.78,-1.90735e-006],[[21,2]]], [35,[2459.09,4387.16,1.90735e-006],[[22,2],[48,2]]],
+[36,[2656.71,4586.44,0],[[23,2],[49,2]]], [37,[2114.95,4492.7,4.76837e-007],[[24,2],[32,2],[50,2],[51,2]]], [38,[2263.88,4407.8,0],[[24,2],[33,2],[47,2],[52,2]]], [39,[1863.27,4940.4,0],[[25,2],[28,2],[53,2],[40,2]]], [40,[1897.63,5040.58,-4.76837e-007],[[25,2],[26,2],[39,2],[54,2],[55,2]]], [41,[1911.84,5200.21,9.53674e-007],[[26,2],[56,2]]],
+[42,[1489.48,4743.14,1.90735e-006],[[27,2],[57,2]]], [43,[1642.37,4532.86,0],[[29,2],[58,2]]], [44,[1727.24,4380.07,0],[[29,2],[59,2]]], [45,[2574.92,5254.35,0],[[30,2],[60,2]]], [46,[2678.63,5165.24,0],[[31,2],[61,2]]], [47,[2208.2,4394.41,0],[[33,2],[38,2],[50,2]]],
+[48,[2536.05,4273.14,0],[[35,2],[62,2]]], [49,[2747.35,4502.29,0],[[36,2],[63,2]]], [50,[2136.86,4305.91,2.54313e-006],[[37,2],[47,2],[64,2]]], [51,[2045.53,4347.76,0],[[37,2],[65,2]]], [52,[2341.91,4232.56,-2.54313e-006],[[38,2],[66,2],[67,2]]], [53,[1910.73,4857.08,0],[[39,2]]],
+[54,[1841.47,5007.77,-4.76837e-007],[[40,2],[55,2],[68,2]]], [55,[1836.35,5085.96,1.14441e-006],[[40,2],[54,2],[69,2],[70,2],[55,2]]], [56,[1808.24,5314.82,0],[[41,2],[71,2]]], [57,[1362.13,4741.09,0],[[42,2],[72,2]]], [58,[1494.99,4523.47,0],[[43,2],[73,2]]], [59,[1653.72,4267.97,0],[[44,2],[74,2]]],
+[60,[2703.99,5294.37,-9.53674e-007],[[45,2],[75,2]]], [61,[2797.92,5253.06,0],[[46,2],[76,2]]], [62,[2626.21,4113.8,9.53674e-007],[[48,2],[77,2]]], [63,[2863.54,4409.09,-9.53674e-007],[[49,2],[78,2]]], [64,[2139.88,4128.52,1.27157e-006],[[50,2],[79,2],[80,2]]], [65,[1989.54,4196.93,0],[[51,2],[81,2]]],
+[66,[2491.68,4123.27,0],[[52,2],[82,2]]], [67,[2377.29,4043.82,0],[[52,2],[83,2]]], [68,[1806.61,4984.21,0],[[54,2]]], [69,[1885.3,5134.64,0],[[55,2]]], [70,[1786.98,5160.19,0],[[55,2]]], [71,[1801.47,5351.63,0],[[56,2],[71,2],[84,2]]],
+[72,[1220.8,4733.7,0],[[57,2],[85,2]]], [73,[1311.05,4545.62,0],[[58,2],[86,2]]], [74,[1577.38,4133.08,0],[[59,2],[87,2]]], [75,[2860.69,5382.3,0],[[60,2],[88,2]]], [76,[2895.53,5325.01,1.90735e-006],[[61,2],[89,2]]], [77,[2733.74,3941.26,0],[[62,2],[82,2],[90,2],[91,2]]],
+[78,[2998.83,4416.94,0],[[63,2]]], [79,[2181.5,3988,0],[[64,2],[92,2]]], [80,[2123.35,3952.51,0],[[64,2],[93,2]]], [81,[1945.45,4041.95,0],[[65,2],[94,2]]], [82,[2603.55,4048.3,0],[[66,2],[77,2]]], [83,[2402.84,3897.49,-3.8147e-006],[[67,2],[95,2]]],
+[84,[1828.02,5403.74,0],[[71,2],[84,2],[96,2]]], [85,[1077.54,4710.89,0],[[72,2],[97,2]]], [86,[1167.79,4553.92,0],[[73,2],[98,2]]], [87,[1563.97,3970.17,0],[[74,2],[99,2]]], [88,[2952.57,5416.32,0],[[75,2],[89,2],[100,2]]], [89,[2907.33,5333.38,6.35783e-007],[[76,2],[88,2],[89,2]]],
+[90,[2832.22,3751.02,0],[[77,2],[101,2]]], [91,[2805.73,3893.5,0],[[77,2],[102,2],[103,2]]], [92,[2207.38,3859.88,0],[[79,2],[104,2]]], [93,[2103.59,3828.03,0],[[80,2],[105,2]]], [94,[1923.42,3914.71,0],[[81,2],[106,2]]], [95,[2427.86,3771.17,-1.90735e-006],[[83,2],[107,2]]],
+[96,[1943.96,5535.21,0],[[84,2],[108,2]]], [97,[935.557,4662.45,0],[[85,2],[109,2]]], [98,[1034.84,4534.62,1.90735e-006],[[86,2],[110,2]]], [99,[1672.9,3828.54,0],[[87,2],[111,2]]], [100,[3053.54,5553.49,-0.0440689],[[88,2],[100,2],[112,2],[113,2]]], [101,[2934.35,3625.55,0],[[90,2],[114,2]]],
+[102,[2983.58,3886.84,0],[[91,2],[115,2]]], [103,[2935.54,3772.93,0],[[91,2],[116,2]]], [104,[2226.58,3695.81,-3.8147e-006],[[92,2],[117,2]]], [105,[2081.97,3682.38,3.8147e-006],[[93,2],[118,2]]], [106,[1868.04,3770.28,0],[[94,2],[119,2]]], [107,[2486.19,3611.52,1.90735e-006],[[95,2],[120,2]]],
+[108,[1973.76,5678.31,0],[[96,2],[121,2]]], [109,[786.105,4581.63,0],[[97,2],[122,2]]], [110,[869.607,4521.3,0],[[98,2],[122,2]]], [111,[1725.46,3690.59,0],[[99,2],[123,2],[119,2]]], [112,[3041.42,5693.83,0],[[100,2],[124,2]]], [113,[3151.57,5711.47,-6.35783e-007],[[100,2],[125,2],[126,2]]],
+[114,[3029.8,3477.22,0],[[101,2],[127,2]]], [115,[3164.59,3898.54,0],[[102,2],[128,2]]], [116,[3038.15,3687.04,-1.90735e-006],[[103,2],[129,2]]], [117,[2236.16,3569.32,0],[[104,2],[130,2]]], [118,[2055.85,3501.98,-1.90735e-006],[[105,2],[131,2]]], [119,[1799.69,3638.8,0],[[106,2],[111,2],[123,2]]],
+[120,[2560.69,3431.73,1.90735e-006],[[107,2],[132,2]]], [121,[2027.67,5764.63,0],[[108,2],[133,2],[134,2]]], [122,[723.798,4569.53,0],[[109,2],[110,2],[135,2],[136,2]]], [123,[1789.37,3586.2,0],[[111,2],[119,2],[137,2]]], [124,[3013.62,5815.67,-9.53674e-007],[[112,2],[138,2]]], [125,[3198.54,5731.27,-3.17891e-007],[[113,2],[139,2],[140,2]]],
+[126,[3214.95,5850.54,0],[[113,2],[141,2]]], [127,[3117.03,3328.59,0],[[114,2],[142,2]]], [128,[3306.05,3872.5,0],[[115,2],[143,2]]], [129,[3151.78,3603.28,-1.90735e-006],[[116,2],[144,2]]], [130,[2251.04,3421.75,0],[[117,2],[145,2]]], [131,[2052.49,3340.82,0],[[118,2],[146,2]]],
+[132,[2612.08,3297.34,0],[[120,2],[147,2]]], [133,[1985.41,5932.25,0],[[121,2],[148,2]]], [134,[2111.58,5900.76,-9.53674e-007],[[121,2],[149,2]]], [135,[607.271,4670.4,0],[[122,2],[150,2]]], [136,[547.315,4516.31,0],[[122,2],[151,2]]], [137,[1797.64,3407.63,0],[[123,2],[152,2]]],
+[138,[3111.37,5923.09,-9.53674e-007],[[124,2],[153,2]]], [139,[3398.73,5804.4,0],[[125,2],[154,2]]], [140,[3320.72,5869.66,0],[[125,2],[155,2]]], [141,[3275.56,5983.37,0],[[126,2],[156,2]]], [142,[3200.31,3212.17,0],[[127,2],[157,2]]], [143,[3395.58,3816.45,0],[[128,2],[158,2],[159,2]]],
+[144,[3192.15,3568.84,-9.53674e-007],[[129,2],[144,2],[160,2],[161,2]]], [145,[2263,3261.17,-1.90735e-006],[[130,2],[162,2]]], [146,[2045.97,3142.94,0],[[131,2],[163,2]]], [147,[2654.29,3176.66,0],[[132,2],[164,2]]], [148,[2037.84,6065.13,0],[[133,2],[165,2]]], [149,[2196.65,6051.4,1.90735e-006],[[134,2],[166,2]]],
+[150,[501.699,4754.8,9.53674e-007],[[135,2],[167,2]]], [151,[432.812,4409.2,0],[[136,2],[168,2]]], [152,[1801.42,3358.03,0],[[137,2],[169,2],[170,2]]], [153,[3179.32,6029.87,0],[[138,2],[171,2]]], [154,[3601.8,5865.12,3.17891e-007],[[139,2],[172,2],[173,2]]], [155,[3433.84,5990.41,0],[[140,2],[174,2]]],
+[156,[3305.78,6128.24,0],[[141,2],[175,2]]], [157,[3267.67,3101.2,-3.8147e-006],[[142,2],[176,2]]], [158,[3503.84,3722.25,0],[[143,2],[177,2]]], [159,[3565.15,3766.23,0],[[143,2],[178,2]]], [160,[3325.74,3409.65,0],[[144,2],[179,2]]], [161,[3380.74,3477.14,0],[[144,2],[180,2]]],
+[162,[2293.4,3078.07,0],[[145,2],[181,2]]], [163,[1996.34,2975.09,-6.35783e-007],[[146,2],[182,2],[183,2]]], [164,[2729.01,3037.21,0],[[147,2],[184,2]]], [165,[2131.39,6100.69,0],[[148,2],[166,2]]], [166,[2208.32,6107.21,-6.35783e-007],[[149,2],[165,2],[185,2]]], [167,[392.02,4853.27,0],[[150,2],[186,2]]],
+[168,[435.636,4280.49,0],[[151,2]]], [169,[1804.62,3162.83,0],[[152,2],[182,2]]], [170,[1771.06,3217.33,0],[[152,2],[187,2]]], [171,[3281.14,6144.17,0],[[153,2],[175,2]]], [172,[3810.11,5940.39,0],[[154,2],[188,2]]], [173,[3651.87,5814.1,9.53674e-007],[[154,2],[189,2]]],
+[174,[3530.55,6091.74,9.53674e-007],[[155,2],[190,2]]], [175,[3336.78,6203.04,0],[[156,2],[171,2],[191,2]]], [176,[3339.12,2986.23,0],[[157,2],[192,2]]], [177,[3611.45,3622.84,-1.90735e-006],[[158,2],[193,2]]], [178,[3722.54,3771.9,-1.90735e-006],[[159,2],[194,2]]], [179,[3433.26,3296.73,0],[[160,2],[195,2]]],
+[180,[3501.42,3379.04,0],[[161,2],[196,2]]], [181,[2324.76,2929.26,0],[[162,2],[197,2]]], [182,[1876.08,3031.79,0],[[163,2],[169,2]]], [183,[2012.69,2789.57,0],[[163,2],[198,2]]], [184,[2807.44,2899.47,0],[[164,2],[199,2]]], [185,[2316.68,6262.78,0],[[166,2],[200,2]]],
+[186,[244.436,4922.3,0],[[167,2],[201,2]]], [187,[1723.97,3093.95,-9.53674e-007],[[170,2],[202,2]]], [188,[3948.01,6000.62,0],[[172,2],[203,2]]], [189,[3637.59,5764.09,0],[[173,2],[189,2]]], [190,[3623.54,6197.44,9.53674e-007],[[174,2],[204,2]]], [191,[3371.29,6265.29,-3.17891e-007],[[175,2],[205,2],[206,2]]],
+[192,[3418.85,2873.66,-3.8147e-006],[[176,2],[207,2]]], [193,[3709.29,3515.13,0],[[177,2],[208,2]]], [194,[3880.21,3816.91,0],[[178,2],[209,2]]], [195,[3558.92,3181.3,0],[[179,2],[210,2]]], [196,[3626.97,3289.98,0],[[180,2],[211,2],[212,2]]], [197,[2338.66,2794.43,0],[[181,2],[213,2]]],
+[198,[2003.18,2668.32,0],[[183,2],[214,2]]], [199,[2879.12,2772.89,0],[[184,2],[215,2]]], [200,[2389.82,6386.73,0],[[185,2],[216,2]]], [201,[79.4572,4950.62,0],[[186,2],[217,2]]], [202,[1673.91,2982.78,9.53674e-007],[[187,2],[218,2]]], [203,[4065.58,6085.23,0],[[188,2],[219,2]]],
+[204,[3642.97,6228.75,4.76837e-007],[[190,2],[220,2],[221,2],[222,2]]], [205,[3487.12,6319.72,9.53674e-007],[[191,2],[223,2]]], [206,[3419.98,6404.5,-9.53674e-007],[[191,2],[224,2]]], [207,[3484.44,2744.48,0],[[192,2],[225,2]]], [208,[3811.71,3420.88,-1.90735e-006],[[193,2],[226,2]]], [209,[3957.81,3846.29,0],[[194,2],[227,2],[228,2]]],
+[210,[3628.69,3060.69,0],[[195,2],[229,2]]], [211,[3777.16,3189.62,0],[[196,2],[230,2]]], [212,[3773.05,3271.09,0],[[196,2],[231,2]]], [213,[2345.66,2662.08,0],[[197,2],[232,2]]], [214,[1988.78,2548.44,0],[[198,2],[233,2]]], [215,[2923.44,2626.91,1.90735e-006],[[199,2],[234,2]]],
+[216,[2444.76,6514.98,0],[[200,2],[235,2]]], [217,[16.0124,4973.34,0],[[201,2]]], [218,[1636.61,2837.72,0],[[202,2],[236,2]]], [219,[4185.85,6175.81,1.90735e-006],[[203,2],[237,2]]], [220,[3778.43,6376.04,0],[[204,2],[238,2]]], [221,[3741.4,6154.61,0],[[204,2],[239,2]]],
+[222,[3594.7,6388.1,0],[[204,2],[240,2],[223,2]]], [223,[3569.64,6385.17,0],[[205,2],[222,2],[240,2]]], [224,[3530.65,6510.52,0],[[206,2],[241,2]]], [225,[3556.58,2630.99,0],[[207,2],[242,2]]], [226,[3900.14,3351.77,0],[[208,2],[243,2]]], [227,[4127.17,3939.55,1.90735e-006],[[209,2],[244,2]]],
+[228,[4061.57,3742.35,0],[[209,2],[245,2]]], [229,[3678.31,2951.17,-1.90735e-006],[[210,2],[246,2]]], [230,[3893.11,3090.51,0],[[211,2],[247,2]]], [231,[3923.39,3172.73,-1.90735e-006],[[212,2],[248,2]]], [232,[2360.27,2530.95,0],[[213,2],[249,2]]], [233,[1969.4,2380.35,0],[[214,2],[250,2]]],
+[234,[2958.6,2477.81,1.90735e-006],[[215,2],[251,2]]], [235,[2448.79,6713.43,0],[[216,2],[252,2]]], [236,[1604.14,2698.06,0],[[218,2],[253,2]]], [237,[4296.42,6277.58,0],[[219,2],[254,2]]], [238,[3874.44,6505.87,0],[[220,2],[255,2],[256,2],[257,2],[258,2]]], [239,[3901.57,6106.32,0],[[221,2],[259,2]]],
+[240,[3588.46,6404.34,2.38419e-007],[[222,2],[223,2],[241,2],[255,2]]], [241,[3553.84,6584.41,-3.8147e-007],[[224,2],[240,2],[260,2],[261,2],[262,2]]], [242,[3629.18,2490.43,0],[[225,2],[263,2]]], [243,[3993.54,3262.36,0],[[226,2],[264,2]]], [244,[4284.34,3969.55,0],[[227,2],[265,2]]], [245,[4167.65,3634.5,0],[[228,2],[266,2]]],
+[246,[3748.8,2799.95,1.90735e-006],[[229,2],[267,2]]], [247,[3951.55,2937.72,0],[[230,2],[268,2]]], [248,[4030.21,3058.01,9.53674e-007],[[231,2],[269,2]]], [249,[2381.51,2375.74,3.8147e-006],[[232,2],[270,2]]], [250,[1956.15,2237.04,0],[[233,2],[250,2]]], [251,[3001.79,2308.51,0],[[234,2],[271,2]]],
+[252,[2429.29,6833.36,0],[[235,2],[272,2],[273,2]]], [253,[1595.97,2603,0],[[236,2],[274,2],[275,2]]], [254,[4364.39,6338.2,0],[[237,2],[276,2],[277,2]]], [255,[3711.07,6478.25,0],[[238,2],[240,2]]], [256,[4064.66,6536.61,0],[[238,2],[278,2],[277,2]]], [257,[3875.25,6683.88,-9.53674e-007],[[238,2],[279,2]]],
+[258,[4017.52,6609.34,0],[[238,2],[280,2],[281,2]]], [259,[3987.36,6082.75,-9.53674e-007],[[239,2]]], [260,[3698.14,6716.02,0],[[241,2],[282,2],[279,2]]], [261,[3473.05,6702.22,0],[[241,2],[283,2]]], [262,[3594.08,6754.01,-2.38419e-007],[[241,2],[284,2],[283,2],[282,2]]], [263,[3690.38,2369.76,0],[[242,2],[285,2]]],
+[264,[4122.02,3148.21,0],[[243,2],[286,2]]], [265,[4407.58,3982.03,0],[[244,2],[287,2]]], [266,[4291.09,3506.25,0],[[245,2],[288,2]]], [267,[3833.8,2672.93,0],[[246,2],[289,2]]], [268,[4033.65,2815.13,0],[[247,2],[290,2]]], [269,[4136.11,2957.57,0],[[248,2],[291,2]]],
+[270,[2411.95,2215.34,0],[[249,2],[292,2]]], [271,[3033.84,2173.89,0],[[251,2],[293,2]]], [272,[2384.86,6948.25,-6.35783e-007],[[252,2],[294,2],[295,2]]], [273,[2505.47,6960.16,0],[[252,2],[296,2]]], [274,[1587.03,2448.3,0],[[253,2],[297,2]]], [275,[1660.88,2483.76,4.76837e-007],[[253,2],[298,2]]],
+[276,[4510.06,6416.44,0],[[254,2],[299,2]]], [277,[4280.21,6497.77,0],[[254,2],[256,2],[278,2]]], [278,[4235.04,6529.67,0],[[256,2],[277,2],[300,2],[280,2]]], [279,[3868.14,6801.2,0],[[257,2],[260,2],[282,2]]], [280,[4159.91,6566.54,0],[[258,2],[278,2]]], [281,[4088.85,6658.94,0],[[258,2],[301,2],[281,2],[302,2]]],
+[282,[3845.01,6816.32,0],[[260,2],[262,2],[279,2],[303,2],[304,2],[305,2]]], [283,[3447.89,6718.85,0],[[261,2],[262,2],[306,2]]], [284,[3555.88,6883.6,0],[[262,2],[307,2]]], [285,[3758.11,2202.69,0],[[263,2],[308,2]]], [286,[4273.29,3072.68,0],[[264,2],[309,2]]], [287,[4566.07,3961.16,0],[[265,2],[310,2]]],
+[288,[4395.12,3398.96,0],[[266,2],[311,2]]], [289,[3928.39,2536.37,0],[[267,2],[312,2]]], [290,[4168.23,2714.41,0],[[268,2],[313,2]]], [291,[4228.3,2852.24,0],[[269,2],[314,2]]], [292,[2432.63,2076.84,0],[[270,2],[315,2]]], [293,[3066.18,2028.51,0],[[271,2],[316,2]]],
+[294,[2269.02,7071.54,-9.53674e-007],[[272,2],[317,2]]], [295,[2394.19,7098.79,-9.53674e-007],[[272,2],[318,2]]], [296,[2530.14,6996.25,0],[[273,2],[319,2],[320,2]]], [297,[1581.54,2325.14,0],[[274,2],[321,2]]], [298,[1724.29,2345.94,0],[[275,2],[322,2]]], [299,[4660.05,6506.48,0],[[276,2],[323,2]]],
+[300,[4350.63,6556.78,0],[[278,2],[324,2]]], [301,[4099.71,6690.19,-9.53674e-007],[[281,2],[302,2]]], [302,[4128.1,6690.81,0],[[281,2],[301,2],[325,2],[326,2]]], [303,[3856.76,6985.94,0],[[282,2],[327,2],[303,2],[328,2]]], [304,[3936.35,6846.2,0],[[282,2],[329,2],[330,2]]], [305,[3866.38,6946.99,0],[[327,2],[282,2]]],
+[306,[3277.17,6759.2,1.90735e-006],[[283,2],[331,2]]], [307,[3523.14,7039.54,0],[[284,2],[332,2]]], [308,[3847.37,2051.68,-9.53674e-007],[[285,2],[333,2]]], [309,[4416.47,2980.09,0],[[286,2],[334,2]]], [310,[4722.99,3932.38,0],[[287,2],[335,2]]], [311,[4529.79,3261.15,0],[[288,2],[336,2]]],
+[312,[4036.16,2372.93,0],[[289,2],[337,2]]], [313,[4308.84,2673.98,0],[[290,2],[338,2]]], [314,[4330.76,2784.69,0],[[291,2],[339,2]]], [315,[2432.26,1950.2,0],[[292,2],[340,2]]], [316,[3102.11,1878.9,0],[[293,2],[341,2]]], [317,[2129.82,7156.31,0],[[294,2],[342,2]]],
+[318,[2396.49,7135.26,0],[[295,2],[343,2],[344,2]]], [319,[2651.25,7141.09,9.53674e-007],[[296,2],[345,2]]], [320,[2580.45,6942.12,0],[[296,2],[346,2],[347,2]]], [321,[1563.94,2204.83,0],[[297,2],[348,2]]], [322,[1783.56,2218.15,0],[[298,2],[349,2]]], [323,[4816.61,6612.35,-3.17891e-007],[[299,2],[350,2],[351,2],[352,2],[353,2],[323,2]]],
+[324,[4401.05,6581.62,-3.17891e-007],[[300,2],[325,2],[350,2]]], [325,[4222.54,6684.95,-2.38419e-007],[[302,2],[324,2],[326,2]]], [326,[4155.35,6774.42,0],[[302,2],[325,2],[330,2],[354,2]]], [327,[3862.53,6969.15,0],[[303,2],[305,2],[327,2]]], [328,[3827.98,7166.77,-9.53674e-007],[[303,2],[355,2]]], [329,[4048.44,6942.01,0],[[304,2],[356,2]]],
+[330,[4088.02,6825.13,0],[[304,2],[326,2]]], [331,[3257.87,6767.41,0],[[306,2],[331,2],[357,2]]], [332,[3540.48,7212.51,0],[[307,2],[358,2]]], [333,[3954.2,1911.05,0],[[308,2],[359,2]]], [334,[4544.22,2912.16,0],[[309,2],[360,2]]], [335,[4877.52,3910.17,0],[[310,2],[361,2]]],
+[336,[4642,3163.38,0],[[311,2],[362,2]]], [337,[4123.03,2234.22,0],[[312,2],[363,2]]], [338,[4486,2637.1,0],[[313,2],[364,2]]], [339,[4455.4,2722.63,0],[[314,2],[364,2]]], [340,[2427.63,1829.42,3.8147e-006],[[315,2],[365,2]]], [341,[3129.3,1733.83,0],[[316,2],[366,2]]],
+[342,[2019.58,7248.97,-9.53674e-007],[[317,2],[367,2]]], [343,[2291.91,7264.85,9.53674e-007],[[318,2],[368,2]]], [344,[2423.73,7266.14,-3.17891e-007],[[318,2],[369,2],[370,2]]], [345,[2710.97,7255.36,0],[[319,2],[371,2]]], [346,[2727.83,7064.38,0],[[320,2],[372,2]]], [347,[2710.87,6860.27,0],[[320,2],[373,2]]],
+[348,[1553.74,2088.67,0],[[321,2],[374,2]]], [349,[1857.02,2086.99,0],[[322,2],[375,2]]], [350,[4609.76,6576.85,0],[[323,2],[324,2]]], [351,[4851.44,6415.34,9.53674e-007],[[323,2],[376,2]]], [352,[4991.75,6603.5,0],[[323,2],[377,2],[378,2]]], [353,[4948.44,6755.33,0],[[323,2],[379,2]]],
+[354,[4227.4,6953.62,9.53674e-007],[[326,2],[380,2]]], [355,[3820.51,7239.56,9.53674e-007],[[328,2],[381,2]]], [356,[4103.11,7053.83,0],[[329,2],[382,2]]], [357,[3146.98,6758.28,0],[[331,2],[383,2]]], [358,[3610.87,7276.93,0],[[332,2],[384,2],[385,2],[381,2]]], [359,[4043.96,1751.9,1.90735e-006],[[333,2],[386,2]]],
+[360,[4649.13,2844.77,0],[[334,2],[387,2]]], [361,[5003.86,3884.24,-1.90735e-006],[[335,2],[388,2]]], [362,[4760.98,3056.5,0],[[336,2],[389,2]]], [363,[4203.47,2120.12,0],[[337,2],[390,2]]], [364,[4591.09,2618.22,3.17891e-007],[[338,2],[339,2],[391,2]]], [365,[2446.9,1673.2,0],[[340,2],[392,2]]],
+[366,[3174.34,1651.82,0],[[341,2],[393,2],[366,2],[394,2]]], [367,[1892.65,7356.64,0],[[342,2],[395,2]]], [368,[2195.15,7356.13,0],[[343,2],[396,2]]], [369,[2427.39,7409.07,-9.53674e-007],[[344,2],[397,2]]], [370,[2554.23,7409.89,-9.53674e-007],[[344,2],[398,2]]], [371,[2709.36,7383.29,0],[[345,2],[399,2]]],
+[372,[2866.12,7154.39,-9.53674e-007],[[346,2],[400,2]]], [373,[2811.2,6837.24,0],[[347,2],[401,2]]], [374,[1558.75,1930.03,0],[[348,2],[402,2]]], [375,[1857.18,1969.52,0],[[349,2],[403,2]]], [376,[4857.72,6204.18,0],[[351,2],[404,2]]], [377,[5114.92,6521.46,0],[[352,2],[405,2]]],
+[378,[5066.21,6694.68,-1.90735e-006],[[352,2],[406,2],[379,2]]], [379,[5068.43,6760.74,0],[[353,2],[378,2],[407,2]]], [380,[4299.16,7113.42,0],[[354,2],[408,2]]], [381,[3818.6,7253.99,3.17891e-007],[[355,2],[358,2],[409,2]]], [382,[4151.03,7188.02,0],[[356,2],[410,2],[411,2]]], [383,[3006.36,6778.03,9.53674e-007],[[357,2],[401,2]]],
+[384,[3707.5,7403.76,0],[[358,2],[412,2]]], [385,[3444.1,7342.26,0],[[358,2],[413,2]]], [386,[4121.53,1637.27,0],[[359,2],[414,2]]], [387,[4780.71,2753.91,0],[[360,2],[415,2]]], [388,[5144.83,3845.27,0],[[361,2],[416,2]]], [389,[4846.89,2969.91,0],[[362,2],[417,2]]],
+[390,[4290.42,1998.79,-9.53674e-007],[[363,2],[418,2]]], [391,[4772.18,2562.91,0],[[364,2],[419,2],[415,2]]], [392,[2448.18,1531.84,-3.8147e-006],[[365,2],[420,2]]], [393,[3154.76,1661.75,0],[[366,2]]], [394,[3354.78,1575.62,0],[[366,2],[421,2]]], [395,[1751.89,7394.54,0],[[367,2],[422,2]]],
+[396,[2093.55,7452.21,0],[[368,2],[423,2]]], [397,[2475.48,7532.89,-9.53674e-007],[[369,2],[424,2]]], [398,[2637.41,7510.11,0],[[370,2],[425,2]]], [399,[2690.15,7496.28,0],[[371,2],[425,2]]], [400,[3007.67,7286.35,0],[[372,2],[426,2]]], [401,[2918.32,6809.96,0],[[373,2],[383,2]]],
+[402,[1578.02,1805.03,0],[[374,2],[427,2]]], [403,[1839.47,1827.3,9.53674e-007],[[375,2],[428,2]]], [404,[4863.37,6044.9,0],[[376,2],[429,2]]], [405,[5275.93,6511.08,0],[[377,2],[430,2]]], [406,[5095.38,6752.29,0],[[378,2],[431,2]]], [407,[5105.71,6771.09,0],[[379,2]]],
+[408,[4320.46,7148.49,0],[[380,2],[432,2],[433,2]]], [409,[3915.67,7259.49,0],[[381,2],[434,2]]], [410,[4222.14,7364.49,3.17891e-007],[[382,2],[435,2],[434,2]]], [411,[4304.2,7324.72,0],[[382,2],[436,2]]], [412,[3719.92,7563.99,0],[[384,2],[437,2]]], [413,[3321.17,7397.43,0],[[385,2],[438,2]]],
+[414,[4197.99,1498.61,0],[[386,2],[439,2]]], [415,[4798.75,2753.49,0],[[387,2],[440,2],[391,2],[417,2]]], [416,[5183.38,3834.05,-4.76837e-007],[[388,2],[441,2],[442,2],[443,2]]], [417,[4887.14,2927.13,2.38419e-007],[[389,2],[415,2],[444,2],[445,2]]], [418,[4395.39,1894.05,0],[[390,2],[446,2]]], [419,[4924.81,2556.01,0],[[391,2],[447,2],[440,2]]],
+[420,[2477.44,1386.8,-3.8147e-006],[[392,2],[448,2]]], [421,[3464.67,1527.33,-1.90735e-006],[[394,2],[449,2]]], [422,[1654.07,7416.27,0],[[395,2],[450,2],[451,2],[452,2]]], [423,[1978.82,7530.32,0],[[396,2],[453,2]]], [424,[2508.07,7679.75,0],[[397,2],[454,2]]], [425,[2695.34,7584.34,3.17891e-007],[[398,2],[399,2],[455,2]]],
+[426,[3135.76,7386.73,9.53674e-007],[[400,2],[456,2],[438,2]]], [427,[1615.31,1657.14,0],[[402,2],[457,2]]], [428,[1770.06,1672.91,0],[[403,2],[458,2]]], [429,[4879.21,5948.47,0],[[404,2]]], [430,[5434.27,6493.39,0],[[405,2],[459,2]]], [431,[5190.36,6912.31,0],[[406,2],[460,2]]],
+[432,[4401.35,7320.15,0],[[408,2],[461,2],[435,2]]], [433,[4468.47,7207.24,0],[[408,2],[462,2]]], [434,[4040.59,7306.4,0],[[409,2],[410,2]]], [435,[4402.44,7461.82,9.53674e-007],[[410,2],[432,2],[461,2]]], [436,[4382.85,7415.1,0],[[411,2],[461,2]]], [437,[3740.71,7714.98,0],[[412,2],[463,2]]],
+[438,[3201.65,7463.16,-9.53674e-007],[[413,2],[426,2],[456,2]]], [439,[4267.39,1444.46,2.38419e-007],[[414,2],[464,2],[465,2],[466,2]]], [440,[4817.23,2566.68,0],[[415,2],[467,2],[419,2]]], [441,[5091.4,3637.11,0],[[416,2],[468,2]]], [442,[5205.64,3899.08,0],[[416,2],[469,2],[443,2],[470,2]]], [443,[5273.85,3828.42,-2.38419e-007],[[416,2],[442,2],[471,2],[472,2],[473,2]]],
+[444,[4982.83,2793.9,0],[[417,2],[474,2]]], [445,[4910.15,3133.87,0],[[417,2],[475,2]]], [446,[4536.89,1800.24,0],[[418,2],[476,2]]], [447,[5095.61,2478.41,1.90735e-006],[[419,2],[477,2]]], [448,[2475.05,1276.09,0],[[420,2],[448,2],[478,2]]], [449,[3597.41,1489.44,0],[[421,2],[479,2]]],
+[450,[1703.86,7246.91,9.53674e-007],[[422,2],[480,2]]], [451,[1488.41,7443.27,0],[[422,2],[481,2]]], [452,[1618.95,7568.26,0],[[422,2],[482,2]]], [453,[1905.76,7627.87,-3.17891e-007],[[423,2],[483,2],[484,2]]], [454,[2574.34,7822.02,-2.38419e-007],[[424,2],[485,2],[486,2],[487,2]]], [455,[2794.44,7718.95,0],[[425,2],[488,2]]],
+[456,[3180.11,7470.42,0],[[426,2],[438,2],[489,2],[456,2]]], [457,[1620.22,1520.98,0],[[427,2],[490,2]]], [458,[1704.21,1532.01,0],[[428,2],[490,2]]], [459,[5571.36,6454.3,0],[[430,2],[459,2],[491,2],[492,2]]], [460,[5212.22,6973.63,0],[[431,2],[493,2],[494,2]]], [461,[4439.84,7467.93,0],[[432,2],[435,2],[436,2],[495,2]]],
+[462,[4610.8,7189.98,-9.53674e-007],[[433,2],[496,2]]], [463,[3775.19,7837.35,0],[[437,2],[497,2]]], [464,[4101.84,1348.96,0],[[439,2],[498,2]]], [465,[4426.18,1363.35,4.76837e-007],[[439,2],[499,2]]], [466,[4411.77,1508.05,0],[[439,2],[500,2]]], [467,[4791.49,2377.21,0],[[440,2],[501,2]]],
+[468,[5083.64,3619.43,6.35783e-007],[[441,2],[468,2],[502,2]]], [469,[5241.25,3906.63,0],[[442,2],[503,2],[470,2]]], [470,[5194.98,3954.55,0],[[442,2],[469,2],[504,2],[503,2],[470,2],[505,2]]], [471,[5258.37,3890.63,0],[[443,2]]], [472,[5377.1,3636.34,0],[[443,2],[506,2]]], [473,[5454.78,3868.92,0],[[443,2],[507,2]]],
+[474,[5095.22,2633.3,-1.90735e-006],[[444,2],[508,2]]], [475,[4947.72,3258.81,0],[[445,2],[509,2]]], [476,[4560.99,1770.83,0],[[446,2],[500,2],[510,2]]], [477,[5204.61,2408.08,0],[[447,2],[511,2]]], [478,[2510.99,1202.84,0],[[448,2],[512,2],[513,2]]], [479,[3750.92,1454.96,0],[[449,2],[514,2]]],
+[480,[1730.86,7148.55,0],[[450,2]]], [481,[1414.59,7480.57,0],[[451,2],[515,2],[481,2],[516,2]]], [482,[1565.58,7695.48,0],[[452,2],[517,2]]], [483,[2012.58,7694.18,0],[[453,2],[518,2]]], [484,[1795.32,7747.4,9.53674e-007],[[453,2],[519,2]]], [485,[2608.21,7981.45,0],[[454,2],[520,2]]],
+[486,[2737.38,7898.19,0],[[454,2],[521,2]]], [487,[2450.33,7835.38,9.53674e-007],[[454,2],[522,2]]], [488,[2906.24,7824.13,0],[[455,2],[523,2]]], [489,[3164.06,7499.89,0],[[456,2],[524,2]]], [490,[1625.7,1411.54,0],[[457,2],[458,2],[525,2]]], [491,[5599.36,6327.44,0],[[459,2],[526,2]]],
+[492,[5762.37,6418.04,0],[[459,2],[527,2]]], [493,[5368.65,6911.31,0],[[460,2],[528,2]]], [494,[5239.8,7056,6.35783e-007],[[460,2],[529,2],[530,2]]], [495,[4577.41,7556.3,0],[[461,2],[531,2],[532,2]]], [496,[4716.73,7171.91,0],[[462,2],[533,2]]], [497,[3808.02,7983.12,0],[[463,2],[534,2]]],
+[498,[4070.57,1345.91,0],[[464,2],[535,2],[514,2]]], [499,[4587.23,1385.9,0],[[465,2],[536,2]]], [500,[4511.85,1616.65,-9.53674e-007],[[466,2],[476,2]]], [501,[4747.32,2258.91,-9.53674e-007],[[467,2],[537,2]]], [502,[5032.17,3476.92,0],[[468,2],[509,2]]], [503,[5244.9,3953.9,0],[[469,2],[470,2],[538,2]]],
+[504,[5202.26,3955.7,0],[[470,2]]], [505,[5238.73,3968.45,0],[[470,2]]], [506,[5383.57,3472.35,0],[[472,2],[539,2]]], [507,[5482.9,3878.54,0],[[473,2],[540,2],[541,2]]], [508,[5164.02,2520.75,0],[[474,2],[511,2]]], [509,[5006.66,3409.51,0],[[475,2],[502,2]]],
+[510,[4619.58,1923.29,0],[[476,2],[542,2]]], [511,[5233.47,2400.44,0],[[477,2],[508,2],[543,2]]], [512,[2594.45,1047.92,1.90735e-006],[[478,2],[544,2]]], [513,[2694.55,1191.4,-1.90735e-006],[[478,2],[545,2]]], [514,[3910.02,1421.83,0],[[479,2],[498,2]]], [515,[1230.63,7541.96,0],[[481,2],[546,2]]],
+[516,[1248.38,7436.27,0],[[481,2],[547,2]]], [517,[1529.48,7798.18,0],[[482,2],[548,2]]], [518,[2107.43,7757.96,9.53674e-007],[[483,2],[549,2]]], [519,[1674.59,7851.06,9.53674e-007],[[484,2],[550,2]]], [520,[2647.75,8136.24,0],[[485,2],[551,2]]], [521,[2871.69,7980.19,0],[[486,2],[552,2]]],
+[522,[2321.87,7810.36,-9.53674e-007],[[487,2],[549,2]]], [523,[2990.36,7943.05,1.90735e-006],[[488,2],[553,2]]], [524,[3127.19,7707.03,0],[[489,2],[554,2]]], [525,[1630.76,1207.04,9.53674e-007],[[490,2],[555,2]]], [526,[5626.42,6285.54,3.17891e-007],[[491,2],[556,2],[557,2]]], [527,[5892.14,6403.95,0],[[492,2],[558,2]]],
+[528,[5507.59,6872.96,9.53674e-007],[[493,2],[559,2]]], [529,[5302.82,7111.42,-6.35783e-007],[[494,2],[560,2],[561,2]]], [530,[5115.14,7105.43,0],[[494,2],[562,2]]], [531,[4580.38,7730.19,0],[[495,2],[563,2]]], [532,[4666.14,7684.81,0],[[495,2],[564,2]]], [533,[4842.91,7130.99,0],[[496,2],[562,2]]],
+[534,[3783.34,8138.2,0],[[497,2],[565,2]]], [535,[3892.07,1274,0],[[498,2],[566,2]]], [536,[4710.92,1397.33,1.90735e-006],[[499,2],[567,2]]], [537,[4693.91,2132.23,0],[[501,2],[542,2]]], [538,[5203.08,4156.11,0],[[503,2],[568,2]]], [539,[5363.94,3317.75,0],[[506,2],[569,2]]],
+[540,[5456.65,4017.85,0],[[507,2],[570,2]]], [541,[5544.26,3890.38,0],[[507,2],[571,2],[572,2]]], [542,[4659.76,2047.05,-1.90735e-006],[[510,2],[537,2]]], [543,[5343.12,2340.75,3.8147e-007],[[511,2],[573,2],[574,2],[575,2],[576,2]]], [544,[2679.21,929.129,-1.90735e-006],[[512,2],[577,2]]], [545,[2842.51,1189.71,-1.90735e-006],[[513,2],[578,2]]],
+[546,[1063.18,7622.79,0],[[515,2],[579,2]]], [547,[1098.73,7361.06,0],[[516,2],[580,2]]], [548,[1515.56,7899.63,-9.53674e-007],[[517,2],[581,2]]], [549,[2204.76,7769.53,0],[[518,2],[522,2]]], [550,[1633.29,7878.33,3.17891e-007],[[519,2],[581,2],[582,2]]], [551,[2703.15,8285.46,9.53674e-007],[[520,2],[583,2]]],
+[552,[3014.57,8063.01,0],[[521,2],[584,2],[553,2]]], [553,[3071.92,8070.9,0],[[523,2],[552,2],[584,2]]], [554,[3131.8,7873.53,9.53674e-007],[[524,2],[585,2]]], [555,[1672.62,1076.31,0],[[525,2],[586,2]]], [556,[5742.52,6128.26,0],[[526,2],[587,2]]], [557,[5752.73,6186.27,0],[[526,2],[588,2]]],
+[558,[6043.17,6387.18,0],[[527,2],[589,2]]], [559,[5624.62,6825.84,0],[[528,2],[590,2]]], [560,[5419.28,7251.06,1.90735e-006],[[529,2],[591,2]]], [561,[5427.59,7160.38,0],[[529,2],[592,2]]], [562,[4994.64,7144.68,0],[[530,2],[533,2]]], [563,[4633.73,7878.91,0],[[531,2],[593,2]]],
+[564,[4697.04,7718.62,0],[[532,2],[594,2],[595,2],[593,2]]], [565,[3819.32,8271.03,0],[[534,2],[596,2]]], [566,[3737.18,1261.66,0],[[535,2],[597,2]]], [567,[4888.85,1355.83,0],[[536,2],[598,2]]], [568,[5201.54,4293.73,0],[[538,2],[599,2]]], [569,[5334.56,3158.04,-9.53674e-007],[[539,2],[600,2]]],
+[570,[5401.99,4131,0],[[540,2],[601,2]]], [571,[5683.83,4032.14,0],[[541,2],[602,2]]], [572,[5693.14,3884.52,0],[[541,2],[603,2]]], [573,[5449.51,2394.96,6.35783e-007],[[543,2],[604,2],[575,2],[605,2],[606,2]]], [574,[5332.21,2551.79,-1.90735e-006],[[543,2],[607,2]]], [575,[5441.36,2333.18,0],[[543,2],[573,2],[608,2],[605,2]]],
+[576,[5385.31,2159.95,-9.53674e-007],[[543,2]]], [577,[2732.55,808.243,0],[[544,2],[609,2]]], [578,[3039.45,1215.51,0],[[545,2],[610,2]]], [579,[1015.44,7650.01,0],[[546,2],[611,2],[612,2],[613,2]]], [580,[971.484,7287.18,9.53674e-007],[[547,2],[614,2]]], [581,[1505.98,7938.04,-2.38419e-007],[[548,2],[550,2],[615,2],[616,2]]],
+[582,[1496.86,8002.23,0],[[550,2],[615,2]]], [583,[2770.76,8433.1,0],[[551,2],[617,2]]], [584,[3084.61,8101.23,0],[[552,2],[553,2],[618,2],[584,2]]], [585,[3152.35,8059.89,0],[[554,2],[619,2]]], [586,[1732.29,977.808,0],[[555,2],[620,2]]], [587,[5784.48,6045.4,-9.53674e-007],[[556,2],[621,2],[588,2]]],
+[588,[5793.17,6099.96,9.53674e-007],[[557,2],[587,2]]], [589,[6169.04,6365.7,0],[[558,2],[622,2]]], [590,[5723.5,6784,0],[[559,2],[623,2]]], [591,[5533.54,7362.38,0],[[560,2],[624,2]]], [592,[5567.07,7207.07,-9.53674e-007],[[561,2],[625,2]]], [593,[4671.5,8019.5,-2.38419e-007],[[563,2],[564,2],[626,2],[627,2]]],
+[594,[4760.06,7558.45,0],[[564,2]]], [595,[4817.21,7785.62,0],[[564,2],[628,2]]], [596,[3829.65,8406.65,1.90735e-006],[[565,2],[629,2]]], [597,[3598.29,1251.05,0],[[566,2],[630,2]]], [598,[5054.35,1333.61,0],[[567,2],[631,2]]], [599,[5202.82,4316.24,4.76837e-007],[[568,2],[601,2],[632,2],[633,2]]],
+[600,[5336.12,3011.51,0],[[569,2],[634,2]]], [601,[5316.1,4220.32,0],[[570,2],[599,2]]], [602,[5787.43,4158.71,9.53674e-007],[[571,2],[635,2]]], [603,[5806.74,3870.67,0],[[572,2],[636,2]]], [604,[5375.59,2536.26,0],[[573,2],[607,2]]], [605,[5499.22,2333.62,9.53674e-007],[[573,2],[637,2],[575,2],[638,2]]],
+[606,[5697,2529.66,4.76837e-007],[[573,2],[639,2],[638,2],[640,2],[641,2]]], [607,[5326.78,2703.97,0],[[574,2],[604,2],[634,2]]], [608,[5457.18,2294.98,1.90735e-006],[[575,2],[642,2]]], [609,[2732.62,784.862,0],[[577,2],[643,2],[644,2]]], [610,[3210.9,1225.39,0],[[578,2],[645,2]]], [611,[1105.01,7766.91,0],[[579,2],[646,2]]],
+[612,[908.992,7576.84,0],[[579,2],[647,2]]], [613,[855.682,7723.48,-1.90735e-006],[[579,2],[648,2]]], [614,[905.271,7257.46,-6.35783e-007],[[580,2],[649,2],[650,2]]], [615,[1481.22,8015.23,-9.53674e-007],[[582,2],[651,2],[652,2],[615,2]]], [616,[1384.58,7967.22,0],[[581,2],[653,2]]], [617,[2834.76,8551.23,0],[[583,2],[654,2]]],
+[618,[3105.7,8118.36,1.90735e-006],[[584,2],[619,2]]], [619,[3178.06,8209.1,0],[[585,2],[618,2],[655,2],[656,2]]], [620,[1705.87,821.208,0],[[586,2],[657,2]]], [621,[5800.6,5986.87,0],[[587,2],[658,2],[659,2],[660,2]]], [622,[6318.28,6331.15,0],[[589,2],[661,2]]], [623,[5827.92,6754.34,9.53674e-007],[[590,2],[662,2]]],
+[624,[5577.08,7427.22,0],[[591,2],[663,2],[664,2]]], [625,[5682.74,7249.99,0],[[592,2],[665,2]]], [626,[4760.65,8213.21,0],[[593,2],[666,2]]], [627,[4630.41,8199.41,9.53674e-007],[[593,2],[667,2]]], [628,[4940.52,7796.18,0],[[595,2],[668,2]]], [629,[3880.76,8551.78,1.90735e-006],[[596,2],[669,2]]],
+[630,[3478.16,1243.56,1.90735e-006],[[597,2],[645,2]]], [631,[5188.11,1305.86,0],[[598,2],[670,2]]], [632,[5169.93,4498.62,1.90735e-006],[[599,2],[671,2]]], [633,[5255.06,4476.57,0],[[599,2],[672,2]]], [634,[5325.21,2873.2,0],[[600,2],[607,2]]], [635,[5916,4268,-9.53674e-007],[[602,2],[673,2]]],
+[636,[5959.61,3856.12,0],[[603,2],[674,2]]], [637,[5643.75,2267.81,9.53674e-007],[[605,2],[675,2]]], [638,[5657.19,2403.07,0],[[605,2],[606,2],[639,2]]], [639,[5723.04,2413.6,0],[[606,2],[638,2],[675,2],[676,2]]], [640,[5666.57,2714.38,9.53674e-007],[[606,2],[677,2]]], [641,[5824.5,2645.85,0],[[606,2],[678,2]]],
+[642,[5552.3,2163.58,0],[[608,2],[679,2]]], [643,[2923.66,762.107,0],[[609,2],[680,2]]], [644,[2567.94,782.419,0],[[609,2],[681,2]]], [645,[3375.6,1236.28,0],[[610,2],[630,2]]], [646,[1159.69,7886.29,0],[[611,2],[646,2],[682,2],[683,2]]], [647,[866.754,7546.5,6.35783e-007],[[612,2],[648,2],[649,2]]],
+[648,[793.967,7714.88,9.53674e-007],[[613,2],[647,2],[684,2],[685,2]]], [649,[877.917,7402.81,0],[[614,2],[647,2]]], [650,[740.032,7156.96,0],[[614,2],[686,2]]], [651,[1371.08,8130.79,0],[[615,2],[653,2],[687,2]]], [652,[1471.78,8011.91,-4.76837e-007],[[615,2]]], [653,[1368.44,7968.17,0],[[616,2],[651,2],[682,2]]],
+[654,[2918.39,8641.52,0],[[617,2],[688,2]]], [655,[3218.02,8179.37,9.53674e-007],[[619,2]]], [656,[3260.55,8383.82,9.53674e-007],[[619,2],[689,2]]], [657,[1684.66,683.938,9.53674e-007],[[620,2],[690,2]]], [658,[5633.55,5967.17,9.53674e-007],[[621,2],[691,2]]], [659,[5812.31,5898.44,0],[[621,2],[692,2],[693,2]]],
+[660,[5946.29,6037.86,0],[[621,2],[694,2]]], [661,[6461.16,6345.77,0],[[622,2],[695,2]]], [662,[5947.21,6750.51,-9.53674e-007],[[623,2],[696,2]]], [663,[5522.72,7593.03,0],[[624,2],[697,2]]], [664,[5703.91,7555.94,0],[[624,2],[698,2]]], [665,[5838.86,7272.24,0],[[625,2],[699,2],[700,2]]],
+[666,[4826.33,8322.47,0],[[626,2],[701,2]]], [667,[4622.53,8337.33,3.17891e-007],[[627,2],[702,2],[703,2]]], [668,[5079.3,7860.5,0],[[628,2],[704,2]]], [669,[3925.36,8692,0],[[629,2],[705,2]]], [670,[5343.62,1269.15,0],[[631,2],[706,2]]], [671,[5134.52,4650.53,0],[[632,2],[707,2]]],
+[672,[5295.55,4559.27,3.17891e-007],[[633,2],[708,2],[709,2]]], [673,[6018.03,4359.72,0],[[635,2],[710,2]]], [674,[6069.38,3888.82,0],[[636,2],[711,2]]], [675,[5743.95,2242,-2.38419e-007],[[637,2],[639,2],[712,2],[713,2]]], [676,[5929.66,2443,1.90735e-006],[[639,2],[714,2]]], [677,[5620.18,2872.56,0],[[640,2],[715,2]]],
+[678,[5934.99,2750.07,1.90735e-006],[[641,2],[716,2]]], [679,[5625.81,2071.25,0],[[642,2],[717,2]]], [680,[3058.86,807.59,0],[[643,2],[718,2]]], [681,[2423.03,793.187,0],[[644,2],[719,2]]], [682,[1280.02,7881.45,0],[[646,2],[653,2]]], [683,[1002.93,7881.01,0],[[646,2],[720,2]]],
+[684,[760.089,7756.04,0],[[648,2],[721,2],[720,2],[722,2]]], [685,[710.319,7606.71,0],[[648,2],[723,2]]], [686,[605.914,7119.3,-1.90735e-006],[[650,2],[724,2]]], [687,[1286.79,8285.24,0],[[651,2],[725,2]]], [688,[3028.39,8774.45,0],[[654,2],[726,2]]], [689,[3302.35,8431.78,0],[[656,2],[727,2],[728,2]]],
+[690,[1675.24,600.438,0],[[657,2],[729,2],[730,2]]], [691,[5474.5,6031.22,0],[[658,2],[731,2]]], [692,[5679.47,5789.41,0],[[659,2],[732,2]]], [693,[5798.03,5714.14,0],[[659,2],[733,2]]], [694,[6045.86,6030.75,4.76837e-007],[[660,2],[734,2]]], [695,[6570.84,6337.64,-3.17891e-007],[[661,2],[735,2],[736,2]]],
+[696,[6043.89,6664.23,-9.53674e-007],[[662,2],[737,2]]], [697,[5428.84,7704.97,0],[[663,2],[738,2]]], [698,[5815.99,7664.33,0],[[664,2],[739,2]]], [699,[5973.62,7355.87,-9.53674e-007],[[665,2],[740,2]]], [700,[6004.32,7200.68,0],[[665,2],[741,2]]], [701,[4888.25,8413.13,1.90735e-007],[[666,2],[742,2],[702,2],[743,2],[744,2]]],
+[702,[4660.34,8510.98,0],[[667,2],[701,2],[745,2],[746,2]]], [703,[4554.82,8486.18,0],[[667,2],[747,2]]], [704,[5259.7,7898.66,-9.53674e-007],[[668,2],[738,2]]], [705,[3933.43,8712.42,-7.62939e-007],[[669,2],[748,2],[749,2],[750,2],[751,2]]], [706,[5518.03,1232.9,0],[[670,2],[752,2]]], [707,[5100.59,4797.36,0],[[671,2],[753,2]]],
+[708,[5329.63,4715.64,0],[[672,2],[754,2]]], [709,[5328.22,4418.03,-6.35783e-007],[[672,2],[755,2],[709,2],[756,2]]], [710,[6108.29,4409.65,0],[[673,2]]], [711,[6221.93,3916.58,0],[[674,2],[757,2]]], [712,[5820.36,2044.04,0],[[675,2],[758,2],[717,2]]], [713,[5921.06,2215.33,0],[[675,2],[759,2]]],
+[714,[6074.4,2387.18,0],[[676,2],[714,2]]], [715,[5567.23,3008.27,0],[[677,2],[760,2]]], [716,[6026.11,2834.34,-1.90735e-006],[[678,2],[761,2]]], [717,[5757.86,1965.31,0],[[679,2],[712,2],[758,2]]], [718,[3191.55,783.148,0],[[680,2],[762,2]]], [719,[2261.51,801.59,0],[[681,2],[763,2]]],
+[720,[856.391,7834.72,0],[[683,2],[684,2]]], [721,[676.225,7901.87,0],[[684,2],[764,2]]], [722,[578.203,7714.85,-1.90735e-006],[[684,2],[765,2]]], [723,[603.784,7465.53,1.90735e-006],[[685,2],[766,2]]], [724,[485.928,7077.66,0],[[686,2],[767,2]]], [725,[1215.79,8410.66,-1.90735e-006],[[687,2],[768,2]]],
+[726,[3118.03,8877.4,0],[[688,2],[769,2]]], [727,[3375.98,8602.29,0],[[689,2],[770,2]]], [728,[3462.13,8470.98,0],[[689,2],[771,2]]], [729,[1529.59,542.774,0],[[690,2],[772,2]]], [730,[1839.36,673.293,0],[[690,2],[773,2]]], [731,[5318.83,6101.43,0],[[691,2],[774,2]]],
+[732,[5609.22,5638.72,0],[[692,2],[775,2]]], [733,[5760.92,5608.23,0],[[693,2],[776,2]]], [734,[6159.72,6087.59,9.53674e-007],[[694,2],[777,2]]], [735,[6725.58,6321.88,3.17891e-007],[[695,2],[778,2],[736,2],[779,2]]], [736,[6713.74,6405.33,-1.90735e-007],[[695,2],[735,2],[736,2],[778,2],[780,2],[781,2]]], [737,[6176.36,6658.57,0],[[696,2],[782,2]]],
+[738,[5323.49,7862.64,-9.53674e-007],[[697,2],[704,2]]], [739,[5920.49,7755.3,0],[[698,2],[783,2]]], [740,[6134.33,7408.59,0],[[699,2],[784,2]]], [741,[6112.59,7105.98,0],[[700,2],[785,2]]], [742,[5004.37,8527.29,0],[[701,2],[786,2]]], [743,[4956.01,8382.28,0],[[701,2]]],
+[744,[4968.18,8592.43,0],[[701,2],[787,2]]], [745,[4704.31,8673.6,0],[[702,2],[788,2]]], [746,[4521.06,8667.1,0],[[702,2],[789,2]]], [747,[4473.75,8580.67,0],[[703,2],[790,2]]], [748,[3960.65,8618.2,0],[[705,2]]], [749,[4099.78,8703.21,0],[[705,2],[791,2]]],
+[750,[3786.89,8637.31,1.90735e-006],[[705,2],[792,2]]], [751,[3961.93,8917.28,0],[[705,2],[793,2]]], [752,[5689.65,1226.11,0],[[706,2],[794,2]]], [753,[5102.42,4929.66,0],[[707,2],[795,2]]], [754,[5340.21,4838.45,0],[[708,2],[796,2]]], [755,[5326.78,4438.29,-9.53674e-007],[[709,2]]],
+[756,[5353.59,4335.73,0],[[709,2]]], [757,[6362.06,3927.89,0],[[711,2],[797,2]]], [758,[5806.49,1936.05,0],[[712,2],[717,2],[798,2],[799,2]]], [759,[6069.59,2173.86,0],[[713,2],[800,2]]], [760,[5530.27,3148.62,0],[[715,2],[801,2]]], [761,[6141.86,2949.99,0],[[716,2],[802,2]]],
+[762,[3359.74,723.157,0],[[718,2],[803,2]]], [763,[2115.31,796.018,0],[[719,2],[773,2]]], [764,[535.01,7953,0],[[721,2],[804,2]]], [765,[427.605,7707.71,0],[[722,2],[805,2]]], [766,[501.751,7343.74,0],[[723,2],[806,2]]], [767,[358.743,7008.04,3.8147e-007],[[724,2],[807,2],[806,2],[808,2],[809,2]]],
+[768,[1153.13,8512.13,0],[[725,2],[810,2],[811,2]]], [769,[3199.51,9002.74,0],[[726,2],[812,2]]], [770,[3447.59,8734.42,0],[[727,2],[813,2]]], [771,[3575.78,8530.01,0],[[728,2],[792,2]]], [772,[1409.13,492.361,0],[[729,2],[814,2]]], [773,[1991.18,768.676,0],[[730,2],[763,2]]],
+[774,[5276.99,6163.21,-9.53674e-007],[[731,2]]], [775,[5497.05,5541.97,0],[[732,2],[815,2]]], [776,[5662.55,5474.62,0],[[733,2],[816,2]]], [777,[6290.5,6138.88,0],[[734,2],[817,2]]], [778,[6773.39,6336.89,0],[[735,2],[736,2],[818,2]]], [779,[6579.54,6225.14,0],[[735,2],[817,2]]],
+[780,[6907.65,6454.34,-3.17891e-007],[[736,2],[819,2],[820,2]]], [781,[6552.46,6530.02,0],[[736,2],[821,2]]], [782,[6276.3,6687.68,6.35783e-007],[[737,2],[782,2],[822,2]]], [783,[6035.3,7821.98,0],[[739,2],[823,2],[824,2]]], [784,[6274.62,7462.35,0],[[740,2],[825,2]]], [785,[6198.7,6997,0],[[741,2],[826,2]]],
+[786,[5105.03,8643.73,9.53674e-007],[[742,2],[827,2]]], [787,[5028.77,8713.74,0],[[744,2],[828,2]]], [788,[4764.49,8798.28,-2.38419e-007],[[745,2],[829,2],[830,2],[831,2]]], [789,[4409.77,8767.93,9.53674e-007],[[746,2],[832,2]]], [790,[4358.81,8679.65,1.90735e-006],[[747,2],[833,2],[791,2]]], [791,[4189.75,8708.91,-6.35783e-007],[[749,2],[790,2],[834,2],[833,2]]],
+[792,[3681.24,8584.28,0],[[750,2],[771,2]]], [793,[3992.3,8983.62,0],[[751,2],[835,2],[836,2],[837,2]]], [794,[5829.9,1263.84,0],[[752,2],[838,2]]], [795,[5102.2,5055.59,0],[[753,2],[839,2]]], [796,[5359.63,4954.57,-9.53674e-007],[[754,2],[840,2]]], [797,[6514.21,3935.52,0],[[757,2],[841,2]]],
+[798,[5793.08,1764.59,0],[[758,2],[842,2]]], [799,[5972.05,1807.56,0],[[758,2],[843,2]]], [800,[6175.32,2143.52,0],[[759,2],[844,2],[845,2]]], [801,[5517.64,3293.68,0],[[760,2],[846,2]]], [802,[6251.75,3050.71,0],[[761,2],[847,2],[848,2]]], [803,[3488.11,725.135,0],[[762,2],[849,2]]],
+[804,[490.933,7968.68,-3.17891e-007],[[764,2],[850,2],[851,2]]], [805,[359.968,7682.29,-4.76837e-007],[[765,2],[852,2],[851,2],[853,2],[854,2]]], [806,[400.307,7188.96,0],[[766,2],[767,2]]], [807,[467.835,6910.18,0],[[767,2],[855,2]]], [808,[233.632,6858.17,0],[[767,2],[856,2]]], [809,[299.688,7050.16,0],[[767,2],[857,2],[858,2]]],
+[810,[1110.85,8633.83,0],[[768,2],[859,2]]], [811,[1004.03,8493.02,0],[[768,2],[860,2]]], [812,[3292.24,9099.6,0],[[769,2],[861,2]]], [813,[3507.58,8854.67,0],[[770,2],[862,2]]], [814,[1269.69,456.85,0],[[772,2],[863,2]]], [815,[5366.88,5508.31,0],[[775,2],[864,2]]],
+[816,[5611.41,5371.43,0],[[776,2],[865,2],[866,2]]], [817,[6407.58,6168.95,-9.53674e-007],[[777,2],[779,2]]], [818,[6971.02,6326.1,0],[[778,2],[867,2]]], [819,[6970.66,6462.98,3.17891e-007],[[780,2],[868,2],[869,2]]], [820,[6819.68,6623.02,0],[[780,2],[870,2]]], [821,[6453.54,6614.78,4.76837e-007],[[781,2],[871,2],[822,2]]],
+[822,[6389.28,6660.14,0],[[782,2],[821,2],[871,2],[872,2]]], [823,[6178.71,7929,0],[[783,2],[873,2]]], [824,[6120.6,7940.43,0],[[783,2],[874,2],[873,2]]], [825,[6378.54,7537.53,-9.53674e-007],[[784,2],[875,2]]], [826,[6300.73,6888.74,0],[[785,2],[872,2]]], [827,[5189.61,8751.93,0],[[786,2],[876,2]]],
+[828,[5058.34,8817.5,0],[[787,2],[877,2],[878,2],[831,2]]], [829,[4805.02,8856.13,2.38419e-007],[[788,2],[879,2],[880,2],[881,2]]], [830,[4602.11,8801.79,0],[[788,2],[882,2],[832,2]]], [831,[4916.08,8804.08,0],[[788,2],[828,2]]], [832,[4386.41,8781.26,2.38419e-007],[[789,2],[830,2],[883,2],[882,2],[834,2]]], [833,[4268.42,8701.72,0],[[790,2],[791,2],[834,2]]],
+[834,[4237.81,8733.27,0],[[791,2],[832,2],[833,2],[884,2]]], [835,[4093.28,8949.72,0],[[793,2],[837,2],[885,2],[884,2]]], [836,[3863.85,8993.85,0],[[793,2],[886,2]]], [837,[4025.39,9059.83,0],[[793,2],[835,2],[887,2],[888,2]]], [838,[5987.94,1298.03,0],[[794,2],[889,2]]], [839,[5087.09,5166.22,-3.17891e-007],[[795,2],[890,2],[891,2]]],
+[840,[5384.23,5072.27,0],[[796,2],[892,2]]], [841,[6670.37,3920.96,0],[[797,2],[893,2]]], [842,[5826.4,1608.28,0],[[798,2],[894,2]]], [843,[6090.54,1715.03,-9.53674e-007],[[799,2],[895,2]]], [844,[6290.56,2237.3,0],[[800,2],[896,2]]], [845,[6323.36,2096.18,0],[[800,2],[897,2]]],
+[846,[5518.21,3326.19,-9.53674e-007],[[801,2]]], [847,[6330.48,2976.23,0],[[802,2],[898,2]]], [848,[6423.16,3140.75,0],[[802,2],[899,2]]], [849,[3629.51,690.778,-9.53674e-007],[[803,2],[900,2]]], [850,[466.911,8027.15,0],[[804,2],[901,2],[902,2],[903,2]]], [851,[417.331,7863.83,0],[[804,2],[805,2],[904,2]]],
+[852,[388.958,7822.76,0],[[805,2],[901,2]]], [853,[167.87,7617.98,-1.90735e-006],[[805,2],[905,2]]], [854,[339.32,7512.27,0],[[805,2],[906,2]]], [855,[579.271,6873.54,0],[[807,2],[907,2]]], [856,[142.837,6750.31,1.90735e-006],[[808,2],[908,2]]], [857,[313.16,7215.13,0],[[809,2],[906,2]]],
+[858,[143.028,7188.21,0],[[809,2],[909,2]]], [859,[1016.82,8757.59,0],[[810,2],[910,2]]], [860,[979.762,8482,6.35783e-007],[[811,2],[860,2],[911,2]]], [861,[3297.37,9109.5,0],[[812,2],[912,2],[913,2],[861,2],[914,2]]], [862,[3622.73,8985.64,9.53674e-007],[[813,2],[915,2],[886,2]]], [863,[1160.21,388.294,0],[[814,2],[916,2]]],
+[864,[5231.81,5490.6,0],[[815,2],[917,2]]], [865,[5510.27,5312.15,0],[[816,2],[892,2],[918,2]]], [866,[5767.95,5392.95,0],[[816,2],[919,2]]], [867,[7084.4,6307.01,0],[[818,2],[920,2],[921,2],[868,2]]], [868,[7129.76,6468.38,0],[[819,2],[867,2],[921,2]]], [869,[7070,6588.65,0],[[819,2],[922,2]]],
+[870,[6794.5,6774.68,-3.17891e-007],[[820,2],[923,2],[924,2]]], [871,[6435.51,6627.13,-4.76837e-007],[[821,2],[822,2],[925,2]]], [872,[6340.79,6813.86,0],[[822,2],[826,2]]], [873,[6280.22,8056.59,-2.38419e-007],[[823,2],[824,2],[874,2],[926,2],[927,2]]], [874,[6234.47,8078.34,0],[[824,2],[873,2],[928,2],[929,2]]], [875,[6452.65,7641.46,0],[[825,2],[930,2]]],
+[876,[5242.51,8792.09,0],[[827,2],[931,2],[932,2]]], [877,[5215.8,8834,-9.53674e-007],[[828,2],[932,2]]], [878,[5092.35,8997.55,-3.17891e-007],[[828,2],[933,2],[881,2]]], [879,[4649.75,8830.63,0],[[829,2],[882,2]]], [880,[4814.59,8988.68,0],[[829,2],[934,2]]], [881,[4973.48,8953.32,0],[[829,2],[878,2]]],
+[882,[4504.14,8800.22,0],[[832,2],[879,2],[935,2],[882,2]]], [883,[4297.83,8858.56,-9.53674e-007],[[832,2],[936,2]]], [884,[4133.52,8869.65,0],[[834,2],[835,2]]], [885,[4133.18,8944.89,0],[[835,2],[885,2],[936,2]]], [886,[3731.32,9016.43,0],[[836,2],[862,2],[915,2]]], [887,[3928.83,9192.11,0],[[837,2],[937,2]]],
+[888,[4077.29,9237.19,0],[[837,2],[938,2]]], [889,[6001.41,1313.12,6.35783e-007],[[838,2],[939,2],[894,2]]], [890,[5048.02,5233.81,-6.35783e-007],[[839,2],[940,2],[890,2]]], [891,[5212.98,5228.54,0],[[839,2],[918,2]]], [892,[5437.95,5193.2,0],[[840,2],[865,2]]], [893,[6830.69,3906.41,0],[[841,2],[941,2]]],
+[894,[5901.54,1449.22,0],[[842,2],[889,2]]], [895,[6175.95,1627.12,-9.53674e-007],[[843,2],[942,2]]], [896,[6256.85,2378.15,0],[[844,2],[943,2]]], [897,[6468.48,2073.45,0],[[845,2],[944,2]]], [898,[6433.71,2905.81,0],[[847,2],[945,2]]], [899,[6463.48,3245.4,9.53674e-007],[[848,2],[946,2]]],
+[900,[3796.36,663.306,0],[[849,2],[947,2]]], [901,[411.35,8000.81,0],[[850,2],[852,2],[903,2],[948,2]]], [902,[635.291,8036.76,0],[[850,2],[949,2]]], [903,[467.333,8137.73,-3.17891e-007],[[850,2],[901,2],[950,2]]], [904,[397.832,7837.48,0],[[851,2]]], [905,[39.9647,7581.72,0],[[853,2],[951,2]]],
+[906,[340.143,7359.74,0],[[854,2],[857,2]]], [907,[632.265,6817.8,0],[[855,2]]], [908,[133.862,6723.47,0],[[856,2]]], [909,[36.8907,7289.06,0],[[858,2],[952,2]]], [910,[887.842,8857.88,0],[[859,2],[953,2]]], [911,[941.703,8358.82,0],[[860,2],[954,2]]],
+[912,[3386.66,9236.17,0],[[861,2],[955,2]]], [913,[3195.56,9123.78,0],[[861,2]]], [914,[3456.56,9067.71,-9.53674e-007],[[861,2],[915,2]]], [915,[3675.81,9023.98,4.76837e-007],[[862,2],[886,2],[914,2],[956,2]]], [916,[1031.74,304.885,-1.90735e-006],[[863,2],[957,2]]], [917,[5082.98,5469.58,9.53674e-007],[[864,2],[940,2]]],
+[918,[5327.98,5267.86,0],[[865,2],[891,2]]], [919,[5884.49,5359.91,1.90735e-006],[[866,2]]], [920,[7196.79,6267.4,0],[[867,2],[958,2]]], [921,[7204.18,6459.24,0],[[867,2],[868,2],[959,2],[960,2]]], [922,[7120.03,6694.52,0],[[869,2],[961,2]]], [923,[6768,6928.64,-9.53674e-007],[[870,2],[962,2]]],
+[924,[6635.82,6694.03,9.53674e-007],[[870,2],[925,2]]], [925,[6586.73,6698.8,0],[[871,2],[924,2]]], [926,[6453.47,8071.31,0],[[873,2],[963,2]]], [927,[6377.53,8173.16,0],[[873,2],[964,2],[965,2]]], [928,[6149.24,8215.4,0],[[874,2],[966,2]]], [929,[6339.89,8226.29,0],[[874,2],[967,2]]],
+[930,[6484.82,7761.08,0],[[875,2],[968,2]]], [931,[5398.22,8847.38,2.38419e-007],[[876,2],[932,2],[969,2]]], [932,[5316.88,8838.85,0],[[876,2],[877,2],[931,2],[970,2]]], [933,[5158.79,9143.48,9.53674e-007],[[878,2],[971,2]]], [934,[4780.4,9121.15,0],[[880,2],[972,2]]], [935,[4467.34,8802.03,0],[[882,2],[935,2]]],
+[936,[4206.39,8921.23,0],[[883,2],[885,2]]], [937,[3862.45,9321.78,0],[[887,2],[973,2],[974,2],[975,2]]], [938,[4113.33,9378,0],[[888,2],[976,2]]], [939,[6075.22,1189.21,0],[[889,2],[977,2]]], [940,[5004.41,5386.51,0],[[890,2],[917,2]]], [941,[7009.83,3877.02,0],[[893,2],[978,2]]],
+[942,[6280.29,1527.24,-1.58946e-007],[[895,2],[979,2],[980,2]]], [943,[6265.21,2434.54,0],[[896,2],[981,2]]], [944,[6640.88,2015.94,0],[[897,2],[982,2]]], [945,[6510.47,2774.4,9.53674e-007],[[898,2],[983,2]]], [946,[6504.19,3362.14,0],[[899,2],[984,2]]], [947,[3957.15,659.015,0],[[900,2],[985,2]]],
+[948,[262.495,7893.49,0],[[901,2],[986,2]]], [949,[734.809,8118.15,0],[[902,2],[987,2]]], [950,[495.265,8362.08,9.53674e-007],[[903,2],[988,2]]], [951,[9.3196,7516.18,0],[[905,2]]], [952,[7.9692,7325.8,9.53674e-007],[[909,2]]], [953,[762.578,8948.62,0],[[910,2],[989,2]]],
+[954,[862.88,8267.54,-9.53674e-007],[[911,2],[987,2]]], [955,[3449.46,9353.9,0],[[912,2],[990,2]]], [956,[3758.07,9138.99,0],[[915,2],[973,2]]], [957,[941.98,223.986,-1.90735e-006],[[916,2],[991,2]]], [958,[7311.68,6260.15,0],[[920,2],[992,2]]], [959,[7392.39,6512.81,0],[[921,2],[993,2]]],
+[960,[7300.63,6604.28,0],[[921,2],[994,2]]], [961,[7153.6,6792.35,0],[[922,2],[995,2]]], [962,[6730.93,7058.85,9.53674e-007],[[923,2],[996,2]]], [963,[6578.38,8006.3,0],[[926,2],[997,2]]], [964,[6465.85,8371.54,-4.76837e-007],[[927,2],[998,2]]], [965,[6492.94,8296.13,0],[[927,2],[999,2]]],
+[966,[6110.36,8312.1,0],[[928,2],[1000,2]]], [967,[6403.92,8367.05,-4.76837e-007],[[929,2],[1001,2]]], [968,[6578.92,7821.35,9.53674e-007],[[930,2],[1002,2]]], [969,[5560.75,8861.87,-3.17891e-007],[[931,2],[1003,2]]], [970,[5463.63,8928.89,9.53674e-007],[[932,2],[1004,2]]], [971,[5193.96,9258.25,-9.53674e-007],[[933,2],[1005,2]]],
+[972,[4737.54,9265.44,0],[[934,2],[1006,2]]], [973,[3789.99,9190.87,0],[[937,2],[956,2]]], [974,[3901.18,9457.3,0],[[937,2],[1007,2]]], [975,[3802.02,9478.31,0],[[937,2],[1008,2]]], [976,[4122.79,9513.63,0],[[938,2],[1009,2]]], [977,[6210.03,1101.57,0],[[939,2],[1010,2]]],
+[978,[7150.19,3823.1,9.53674e-007],[[941,2],[1011,2]]], [979,[6373.91,1400.72,0],[[942,2],[1012,2]]], [980,[6375.66,1641.3,0],[[942,2],[1013,2]]], [981,[6370.51,2468.75,0],[[943,2],[1014,2]]], [982,[6741.85,1964.77,0],[[944,2],[1015,2],[1016,2],[1017,2]]], [983,[6572,2614.02,0],[[945,2],[1018,2]]],
+[984,[6585.85,3477.3,0],[[946,2],[1019,2]]], [985,[4117.11,657.544,0],[[947,2],[1020,2]]], [986,[155.639,7789.54,0],[[948,2],[1021,2]]], [987,[813.571,8246.6,-9.53674e-007],[[949,2],[954,2]]], [988,[517.505,8512.56,0],[[950,2],[1022,2]]], [989,[658.575,9020.48,-2.38419e-007],[[953,2],[1023,2],[1024,2],[1025,2]]],
+[990,[3542.5,9489.36,0],[[955,2],[1026,2]]], [991,[839.768,141.51,0],[[957,2],[1027,2]]], [992,[7454.78,6227.36,-9.53674e-007],[[958,2],[1028,2]]], [993,[7530.85,6579.22,9.53674e-007],[[959,2],[1029,2]]], [994,[7406.77,6688.43,0],[[960,2],[1030,2]]], [995,[7210.83,6911.85,0],[[961,2],[1031,2]]],
+[996,[6725.05,7198.95,0],[[962,2],[1032,2]]], [997,[6720.58,7939.6,0],[[963,2],[1033,2],[1002,2]]], [998,[6538.12,8505.84,0],[[964,2],[1034,2]]], [999,[6626.83,8395.67,-9.53674e-007],[[965,2],[1035,2]]], [1000,[6040.52,8403.96,9.53674e-007],[[966,2],[1036,2]]], [1001,[6480.89,8496.55,0],[[967,2],[1034,2]]],
+[1002,[6731.91,7872.61,0],[[968,2],[997,2],[1033,2]]], [1003,[5811.22,8864.81,-4.76837e-007],[[969,2],[1037,2]]], [1004,[5562.06,9027.33,0],[[970,2],[1038,2]]], [1005,[5236.89,9357.29,0],[[971,2],[1039,2]]], [1006,[4719.1,9386.18,9.53674e-007],[[972,2],[1040,2]]], [1007,[3971.1,9582.66,0],[[974,2],[1041,2]]],
+[1008,[3843.91,9605.15,-9.53674e-007],[[975,2],[1042,2]]], [1009,[4130.41,9657.39,0],[[976,2],[1043,2]]], [1010,[6335.52,980.375,0],[[977,2],[1044,2]]], [1011,[7278.28,3761.83,0],[[978,2]]], [1012,[6494.92,1267.16,0],[[979,2],[1045,2]]], [1013,[6447.42,1751.38,0],[[980,2],[1015,2]]],
+[1014,[6497.5,2501.78,0],[[981,2],[1018,2]]], [1015,[6596.39,1885.43,0],[[982,2],[1013,2]]], [1016,[6843.71,2092.99,0],[[982,2],[1046,2],[1047,2]]], [1017,[6918.96,1884.79,0],[[982,2],[1048,2]]], [1018,[6597.86,2525.89,0],[[983,2],[1014,2],[1049,2]]], [1019,[6680.72,3558.32,0],[[984,2],[1050,2]]],
+[1020,[4264.2,677.765,0],[[985,2],[1051,2]]], [1021,[20.5262,7665.47,0],[[986,2],[1021,2]]], [1022,[530.314,8669.17,0],[[988,2],[1023,2]]], [1023,[584.059,8860.54,0],[[989,2],[1022,2]]], [1024,[563.723,9139.16,0],[[989,2],[1052,2]]], [1025,[718.957,9204.48,0],[[989,2],[1053,2]]],
+[1026,[3621.44,9607.11,0],[[990,2],[1054,2]]], [1027,[702.599,51.2221,-1.90735e-006],[[991,2],[1055,2]]], [1028,[7600.81,6229.39,0],[[992,2],[1056,2]]], [1029,[7668.91,6635.89,0],[[993,2],[1057,2]]], [1030,[7510.19,6778.04,0],[[994,2],[1058,2]]], [1031,[7168.03,7039.11,0],[[995,2],[1059,2]]],
+[1032,[6717.75,7346,0],[[996,2],[1060,2]]], [1033,[6779.49,7907.4,0],[[997,2],[1002,2],[1061,2],[1062,2],[1063,2]]], [1034,[6564.13,8633,0],[[998,2],[1001,2],[1064,2]]], [1035,[6746.64,8481.6,-1.90735e-007],[[999,2],[1065,2],[1066,2],[1067,2],[1068,2]]], [1036,[5971.98,8553.55,0],[[1000,2],[1069,2]]], [1037,[5858.58,8883.36,-4.76837e-007],[[1003,2],[1070,2],[1069,2],[1071,2]]],
+[1038,[5648.8,9142.86,0],[[1004,2],[1072,2]]], [1039,[5260.49,9519.37,0],[[1005,2],[1073,2]]], [1040,[4661.85,9525.48,0],[[1006,2],[1074,2]]], [1041,[4059.27,9698.66,-9.53674e-007],[[1007,2],[1075,2]]], [1042,[3937.17,9715.03,0],[[1008,2],[1076,2],[1075,2]]], [1043,[4145.55,9806.25,0],[[1009,2],[1077,2]]],
+[1044,[6389.09,924.524,0],[[1010,2],[1078,2],[1079,2]]], [1045,[6610.99,1148.96,0],[[1012,2],[1080,2]]], [1046,[6879.71,2181.93,0],[[1016,2],[1081,2],[1082,2],[1047,2],[1083,2]]], [1047,[6801.1,2268.65,0],[[1016,2],[1046,2],[1084,2]]], [1048,[7076.43,1804.21,0],[[1017,2],[1085,2]]], [1049,[6705.99,2404.65,0],[[1018,2],[1082,2]]],
+[1050,[6756.01,3598.56,0],[[1019,2]]], [1051,[4376.97,671.411,0],[[1020,2],[1086,2]]], [1052,[552.953,9267.07,0],[[1024,2],[1087,2]]], [1053,[805.862,9309.42,0],[[1025,2],[1088,2]]], [1054,[3705.17,9707.41,9.53674e-007],[[1026,2],[1089,2]]], [1055,[645.272,14.3769,0],[[1027,2]]],
+[1056,[7684.94,6222.34,0],[[1028,2],[1056,2],[1090,2],[1091,2]]], [1057,[7695.82,6644.04,0],[[1029,2],[1092,2],[1093,2]]], [1058,[7601.55,6886.21,0],[[1030,2],[1094,2]]], [1059,[7135.32,7146.62,1.90735e-006],[[1031,2],[1095,2]]], [1060,[6732.22,7475.18,0],[[1032,2],[1096,2]]], [1061,[6926.86,7939.92,0],[[1033,2],[1097,2]]],
+[1062,[6778.08,8093.21,0],[[1033,2],[1065,2]]], [1063,[6793.83,7738.09,0],[[1033,2],[1096,2]]], [1064,[6654.02,8922.58,0.0126387],[[1034,2],[1098,2],[1068,2],[1099,2],[1067,2],[1100,2],[1064,2],[1101,2],[1102,2],[1103,2],[1104,2],[1105,2],[1106,2],[1107,2]]], [1065,[6777.23,8283.72,0],[[1035,2],[1062,2]]], [1066,[6909.94,8544.94,0],[[1035,2],[1108,2]]], [1067,[6742.25,8668.89,0],[[1035,2],[1064,2],[1099,2]]],
+[1068,[6707.01,8666.77,0],[[1035,2],[1064,2]]], [1069,[5941.17,8704.57,0],[[1036,2],[1037,2]]], [1070,[5756.56,9017.31,0],[[1037,2],[1109,2],[1072,2]]], [1071,[6011.44,8965.02,0],[[1037,2],[1110,2]]], [1072,[5740.98,9265.75,0],[[1038,2],[1070,2],[1111,2],[1112,2],[1113,2],[1114,2]]], [1073,[5281.4,9665.95,0],[[1039,2],[1115,2]]],
+[1074,[4648.72,9565.69,-3.17891e-007],[[1040,2],[1116,2],[1117,2]]], [1075,[4108.13,9816.14,-6.35783e-007],[[1041,2],[1042,2],[1118,2],[1076,2]]], [1076,[4031.77,9812.51,-9.53674e-007],[[1042,2],[1075,2],[1119,2]]], [1077,[4169.06,9964.97,0],[[1043,2],[1118,2]]], [1078,[6192.95,787.901,9.53674e-007],[[1044,2],[1120,2]]], [1079,[6543.31,1021.25,0],[[1044,2],[1080,2]]],
+[1080,[6671.01,1062.83,-3.17891e-007],[[1045,2],[1079,2],[1121,2]]], [1081,[7020.61,2033.6,0],[[1046,2],[1122,2]]], [1082,[6786.64,2312.21,0],[[1046,2],[1049,2]]], [1083,[6995.88,2316.4,0],[[1046,2],[1083,2]]], [1084,[6771.23,2324.59,0],[[1047,2]]], [1085,[7133.78,1781.16,3.17891e-007],[[1048,2],[1123,2],[1122,2]]],
+[1086,[4506,611.802,9.53674e-007],[[1051,2],[1124,2]]], [1087,[510.853,9417.69,0],[[1052,2],[1125,2]]], [1088,[827.829,9461,4.76837e-007],[[1053,2],[1126,2]]], [1089,[3858.07,9817.21,0],[[1054,2],[1127,2],[1119,2]]], [1090,[7781,6135.16,9.53674e-007],[[1056,2],[1128,2]]], [1091,[7850.24,6198.85,9.53674e-007],[[1056,2],[1129,2]]],
+[1092,[7865.45,6732.15,0],[[1057,2],[1130,2]]], [1093,[7837.74,6626.28,0],[[1057,2],[1131,2]]], [1094,[7627.35,6939.52,-9.53674e-007],[[1058,2]]], [1095,[7089.64,7179.54,0],[[1059,2]]], [1096,[6761.59,7612.03,0],[[1060,2],[1063,2]]], [1097,[7075.77,7875.45,-4.76837e-007],[[1061,2],[1132,2]]],
+[1098,[6568.5,8864.19,3.17891e-007],[[1064,2],[1133,2],[1134,2]]], [1099,[6738.26,8736.25,4.76837e-007],[[1064,2],[1067,2],[1101,2],[1135,2]]], [1100,[6635.53,8903.01,0.19958],[[1064,2]]], [1101,[6753.7,8851.85,0],[[1064,2],[1099,2],[1136,2],[1103,2],[1135,2]]], [1102,[6641.56,8904.09,0.18958],[[1064,2]]], [1103,[6821.85,8993.75,-2.38419e-007],[[1064,2],[1101,2],[1137,2],[1138,2]]],
+[1104,[6794.48,9119.21,-1.90735e-006],[[1064,2],[1139,2]]], [1105,[6482.92,9074.77,0],[[1064,2],[1140,2]]], [1106,[6613.79,9091.58,-9.53674e-007],[[1064,2],[1141,2]]], [1107,[6689.5,9155.62,0],[[1064,2],[1142,2]]], [1108,[6947.27,8579.27,-2.38419e-007],[[1066,2],[1143,2],[1144,2],[1135,2]]], [1109,[5760.48,9151.95,0],[[1070,2],[1145,2]]],
+[1110,[6125.31,9013.32,0],[[1071,2],[1146,2]]], [1111,[5764.97,9162.96,0],[[1072,2]]], [1112,[5615.09,9376.58,0],[[1072,2],[1147,2]]], [1113,[5740.29,9382.88,0],[[1072,2],[1148,2],[1149,2]]], [1114,[5835.39,9434.72,0],[[1072,2],[1150,2]]], [1115,[5272.55,9756.27,0],[[1073,2],[1151,2],[1152,2],[1153,2]]],
+[1116,[4561.47,9727.79,-1.90735e-006],[[1074,2],[1154,2]]], [1117,[4735.95,9666.74,9.53674e-007],[[1074,2],[1155,2]]], [1118,[4168.62,9987.1,0],[[1075,2],[1077,2],[1156,2]]], [1119,[3894.28,9816.08,0],[[1076,2],[1089,2],[1127,2]]], [1120,[6030.16,764.101,0],[[1078,2],[1157,2]]], [1121,[6850.57,1065.73,0],[[1080,2],[1158,2]]],
+[1122,[7097.65,1900.26,0],[[1081,2],[1085,2]]], [1123,[7274.58,1685.66,1.90735e-006],[[1085,2],[1159,2]]], [1124,[4641.67,680.299,0],[[1086,2],[1160,2]]], [1125,[493.414,9566.39,-2.38419e-007],[[1087,2],[1161,2],[1162,2],[1163,2]]], [1126,[851.761,9606.6,1.90735e-006],[[1088,2],[1164,2]]], [1127,[3871.63,9823.72,-9.53674e-007],[[1089,2],[1119,2],[1165,2]]],
+[1128,[7890.94,6068.04,0],[[1090,2],[1166,2]]], [1129,[7978.27,6158.67,0],[[1091,2],[1166,2],[1167,2],[1168,2]]], [1130,[7985.49,6809.91,0],[[1092,2],[1169,2]]], [1131,[7928.5,6553.83,0],[[1093,2],[1170,2]]], [1132,[7195.7,7808.49,9.53674e-007],[[1097,2],[1171,2]]], [1133,[6408.69,8954.09,0],[[1098,2],[1172,2]]],
+[1134,[6424.18,9022.82,0],[[1098,2],[1173,2],[1140,2]]], [1135,[6807.55,8693.14,0],[[1099,2],[1101,2],[1108,2]]], [1136,[6949.89,8928.75,0],[[1101,2],[1174,2]]], [1137,[6987.33,9029.69,0],[[1103,2],[1175,2]]], [1138,[6876.41,9139.75,-9.53674e-007],[[1103,2],[1139,2]]], [1139,[6903.54,9221.21,0],[[1104,2],[1138,2],[1176,2]]],
+[1140,[6436.39,9100.63,0],[[1105,2],[1134,2],[1173,2],[1177,2],[1141,2]]], [1141,[6572.74,9180.42,-4.76837e-007],[[1106,2],[1140,2],[1178,2],[1142,2]]], [1142,[6700.66,9230.2,4.76837e-007],[[1107,2],[1141,2],[1176,2],[1179,2]]], [1143,[7103.64,8685.96,-9.53674e-007],[[1108,2],[1180,2]]], [1144,[7079.38,8509.24,0],[[1108,2],[1181,2]]], [1145,[5943.34,9148.21,0],[[1109,2],[1182,2]]],
+[1146,[6205.22,9035.81,-2.38419e-007],[[1110,2],[1182,2],[1172,2],[1173,2]]], [1147,[5505.99,9477.46,0],[[1112,2],[1183,2]]], [1148,[5716.48,9529.08,0],[[1113,2],[1184,2]]], [1149,[5792.46,9559.82,0],[[1113,2],[1185,2],[1184,2]]], [1150,[5922.17,9541.71,2.38419e-007],[[1114,2],[1186,2],[1187,2],[1185,2]]], [1151,[5370.07,9646.56,1.90735e-006],[[1115,2],[1183,2]]],
+[1152,[5300.51,9943.65,-4.76837e-007],[[1115,2],[1188,2],[1189,2],[1190,2]]], [1153,[5151.81,9909.53,0],[[1115,2],[1191,2]]], [1154,[4487.8,9844.97,0],[[1116,2],[1192,2]]], [1155,[4799.53,9736.35,0],[[1117,2],[1193,2]]], [1156,[4216.61,10126.1,0],[[1118,2],[1194,2]]], [1157,[5878.3,798.327,-9.53674e-007],[[1120,2],[1195,2]]],
+[1158,[6976.89,1062.77,0],[[1121,2],[1196,2]]], [1159,[7398.48,1650.09,0],[[1123,2],[1197,2]]], [1160,[4709.67,728.67,0],[[1124,2],[1198,2],[1160,2],[1199,2]]], [1161,[457.472,9769.74,0],[[1125,2],[1200,2]]], [1162,[332.965,9605.78,0],[[1125,2],[1201,2]]], [1163,[631.085,9610.35,0],[[1125,2],[1164,2]]],
+[1164,[853.035,9666.13,-4.76837e-007],[[1126,2],[1163,2],[1202,2],[1203,2]]], [1165,[3994.38,9921.68,0],[[1127,2],[1204,2]]], [1166,[7949.96,6049.79,-6.35783e-007],[[1128,2],[1129,2],[1205,2]]], [1167,[8092.45,6159.93,0],[[1129,2],[1206,2]]], [1168,[8010.57,6254.32,0],[[1129,2],[1207,2]]], [1169,[8107.38,6887.27,0],[[1130,2],[1208,2]]],
+[1170,[7972.69,6467.73,9.53674e-007],[[1131,2],[1209,2]]], [1171,[7336.4,7753.58,0],[[1132,2],[1210,2]]], [1172,[6286.27,9015.13,0],[[1133,2],[1146,2]]], [1173,[6363.02,9080.23,0],[[1134,2],[1140,2],[1146,2],[1211,2],[1177,2]]], [1174,[7081.39,8997.79,0],[[1136,2],[1212,2],[1175,2]]], [1175,[7158.47,9056.72,0],[[1137,2],[1174,2],[1213,2],[1212,2]]],
+[1176,[6944.06,9276.11,0],[[1139,2],[1142,2],[1214,2],[1215,2]]], [1177,[6291.17,9188.13,0],[[1140,2],[1173,2],[1216,2],[1211,2]]], [1178,[6476.31,9296,0],[[1141,2],[1217,2]]], [1179,[6763.03,9386.88,-1.90735e-006],[[1142,2],[1218,2]]], [1180,[7213.11,8762.69,0],[[1143,2],[1219,2]]], [1181,[7212.3,8428.68,0],[[1144,2],[1220,2]]],
+[1182,[6094.29,9071.8,-9.53674e-007],[[1145,2],[1146,2]]], [1183,[5414.22,9594.49,0],[[1147,2],[1151,2]]], [1184,[5704.86,9653.8,-9.53674e-007],[[1148,2],[1149,2],[1185,2],[1221,2],[1222,2]]], [1185,[5797.7,9610.54,2.38419e-007],[[1149,2],[1150,2],[1184,2],[1223,2]]], [1186,[6043.55,9681.83,0],[[1150,2],[1224,2]]], [1187,[6059.1,9418.29,0],[[1150,2],[1225,2]]],
+[1188,[5424.11,9843.01,0],[[1152,2],[1221,2]]], [1189,[5122.37,10036,0],[[1152,2],[1226,2],[1191,2]]], [1190,[5368.58,10123.2,0],[[1152,2],[1227,2]]], [1191,[5074.78,10015.8,4.76837e-007],[[1153,2],[1189,2],[1228,2],[1229,2],[1226,2]]], [1192,[4424.86,9983.35,9.53674e-007],[[1154,2],[1230,2]]], [1193,[4858.26,9801.82,9.53674e-007],[[1155,2],[1231,2]]],
+[1194,[4232.64,10278,0],[[1156,2],[1232,2],[1233,2]]], [1195,[5727.78,842.873,9.53674e-007],[[1157,2],[1234,2]]], [1196,[7181.35,1081.8,0],[[1158,2],[1235,2]]], [1197,[7531.88,1617.26,-1.90735e-006],[[1159,2],[1236,2]]], [1198,[4695.44,722.619,0],[[1160,2]]], [1199,[4853.48,797.949,0],[[1160,2],[1237,2]]],
+[1200,[472.517,9931.67,-4.76837e-007],[[1161,2],[1238,2]]], [1201,[197.604,9646.25,2.38419e-007],[[1162,2],[1239,2],[1240,2],[1241,2]]], [1202,[919.972,9681.7,2.54313e-006],[[1164,2],[1202,2],[1242,2]]], [1203,[879.649,9825.96,3.8147e-006],[[1164,2],[1243,2]]], [1204,[4130.6,10048.7,0],[[1165,2],[1244,2]]], [1205,[8061.54,5971.73,0],[[1166,2],[1245,2]]],
+[1206,[8215.97,6142.48,9.53674e-007],[[1167,2],[1246,2]]], [1207,[8014.66,6283.63,3.17891e-007],[[1168,2],[1207,2],[1209,2]]], [1208,[8179.1,6958.12,0],[[1169,2],[1247,2]]], [1209,[8013.29,6394.12,0],[[1170,2],[1207,2]]], [1210,[7511.15,7751.81,-9.53674e-007],[[1171,2],[1248,2]]], [1211,[6257.03,9199.03,0],[[1173,2],[1177,2],[1225,2]]],
+[1212,[7213.4,9060.83,0],[[1174,2],[1175,2],[1249,2]]], [1213,[7181.75,9060.65,0],[[1175,2],[1250,2]]], [1214,[7074.76,9406.37,-1.90735e-006],[[1176,2],[1251,2]]], [1215,[7111.45,9258.95,-9.53674e-007],[[1176,2],[1252,2]]], [1216,[6272.03,9198.79,0],[[1177,2],[1253,2]]], [1217,[6432.07,9391.44,0],[[1178,2],[1254,2]]],
+[1218,[6768.87,9551,0],[[1179,2],[1255,2]]], [1219,[7321.38,8861.87,0],[[1180,2],[1256,2]]], [1220,[7332.05,8346.75,0],[[1181,2],[1257,2]]], [1221,[5544.34,9747.84,0],[[1184,2],[1188,2]]], [1222,[5692.46,9833.95,0],[[1184,2],[1258,2]]], [1223,[5869.45,9754.32,0],[[1185,2],[1259,2]]],
+[1224,[6143.48,9793.26,9.53674e-007],[[1186,2],[1260,2]]], [1225,[6146.78,9305.7,0],[[1187,2],[1211,2]]], [1226,[5111.39,10045.7,0],[[1189,2],[1191,2],[1261,2],[1228,2]]], [1227,[5371.26,10232.8,-6.35783e-007],[[1190,2],[1262,2],[1261,2]]], [1228,[4982.51,10105.7,6.35783e-007],[[1191,2],[1226,2],[1263,2]]], [1229,[4985.11,9911.12,1.90735e-006],[[1191,2],[1231,2]]],
+[1230,[4365.67,10158.9,-9.53674e-007],[[1192,2],[1233,2]]], [1231,[4922.92,9863.76,1.90735e-006],[[1193,2],[1229,2]]], [1232,[4218.15,10404,0],[[1194,2],[1233,2],[1264,2],[1265,2]]], [1233,[4265.6,10324,0],[[1194,2],[1230,2],[1232,2],[1266,2]]], [1234,[5595.03,881.956,9.53674e-007],[[1195,2],[1267,2]]], [1235,[7315.19,1067.47,0],[[1196,2],[1268,2]]],
+[1236,[7635.27,1498.28,0],[[1197,2],[1269,2]]], [1237,[4982.33,866.679,-2.38419e-007],[[1199,2],[1270,2]]], [1238,[484.971,9986.5,0],[[1200,2],[1271,2],[1272,2],[1238,2]]], [1239,[329.733,9752.28,0],[[1201,2],[1271,2]]], [1240,[29.9423,9691.44,0],[[1201,2],[1240,2]]], [1241,[80.2183,9564.73,0],[[1201,2],[1273,2]]],
+[1242,[1092.94,9720.01,0],[[1202,2],[1274,2]]], [1243,[888.161,9978.36,0],[[1203,2],[1275,2]]], [1244,[4187.65,10167.9,0],[[1204,2],[1264,2]]], [1245,[8133.65,5905.29,0],[[1205,2],[1276,2]]], [1246,[8330.62,6140.73,0],[[1206,2],[1277,2]]], [1247,[8216.44,7080.36,0],[[1208,2],[1278,2]]],
+[1248,[7661.02,7796.73,0],[[1210,2],[1279,2]]], [1249,[7426.78,9152.27,0],[[1212,2],[1252,2],[1280,2],[1281,2],[1256,2],[1282,2],[1283,2]]], [1250,[7246.19,9072.79,0],[[1213,2],[1250,2]]], [1251,[7183.61,9502.52,1.90735e-006],[[1214,2],[1284,2]]], [1252,[7255.18,9172.34,0],[[1215,2],[1249,2]]], [1253,[6255.41,9208.03,0],[[1216,2]]],
+[1254,[6385.79,9534.17,0],[[1217,2],[1285,2]]], [1255,[6769.49,9683.17,0],[[1218,2],[1286,2]]], [1256,[7454.88,8969.03,0],[[1219,2],[1249,2],[1281,2]]], [1257,[7441.39,8266.1,0],[[1220,2],[1287,2]]], [1258,[5665.88,9974.28,0],[[1222,2],[1288,2]]], [1259,[5916.48,9909.71,0],[[1223,2],[1289,2]]],
+[1260,[6220.34,9895.9,-2.38419e-007],[[1224,2],[1290,2],[1291,2],[1292,2]]], [1261,[5193.24,10126.9,0],[[1226,2],[1227,2]]], [1262,[5391.25,10392.7,0],[[1227,2],[1293,2]]], [1263,[4832.22,10215.6,0],[[1228,2],[1294,2]]], [1264,[4198.54,10258.9,9.53674e-007],[[1232,2],[1244,2]]], [1265,[4198.65,10546.6,0],[[1232,2],[1266,2],[1295,2],[1296,2]]],
+[1266,[4421.26,10438.9,0],[[1233,2],[1265,2],[1297,2],[1298,2]]], [1267,[5433.16,921.427,0],[[1234,2],[1299,2]]], [1268,[7475.14,1057.44,0],[[1235,2],[1300,2]]], [1269,[7721.85,1351.26,9.53674e-007],[[1236,2],[1301,2]]], [1270,[5108.93,892.113,0],[[1237,2],[1299,2]]], [1271,[395.186,9839.85,0],[[1238,2],[1239,2]]],
+[1272,[509.571,10053.7,0],[[1238,2],[1302,2],[1303,2],[1304,2]]], [1273,[12.5139,9545.36,0],[[1241,2]]], [1274,[1190.21,9795.81,0],[[1242,2],[1305,2]]], [1275,[901.426,10107.2,0],[[1243,2],[1306,2]]], [1276,[8227.83,5853.54,1.90735e-006],[[1245,2],[1307,2]]], [1277,[8472.46,6149.99,0],[[1246,2],[1308,2]]],
+[1278,[8214.48,7173.21,0],[[1247,2],[1309,2]]], [1279,[7808.46,7796.72,0],[[1248,2],[1310,2]]], [1280,[7443.09,9292.25,0],[[1249,2],[1311,2]]], [1281,[7482.41,8994.25,0],[[1249,2],[1256,2],[1312,2],[1313,2]]], [1282,[7611.07,9180.29,0],[[1249,2],[1314,2]]], [1283,[7363.75,9307.36,0],[[1249,2],[1315,2]]],
+[1284,[7249.27,9572.51,-1.27157e-006],[[1251,2],[1316,2],[1315,2]]], [1285,[6337.32,9674.39,0],[[1254,2],[1291,2]]], [1286,[6772.64,9814.43,0],[[1255,2],[1317,2]]], [1287,[7562.71,8206.67,1.90735e-006],[[1257,2],[1318,2]]], [1288,[5639.61,10151.5,0],[[1258,2],[1319,2]]], [1289,[5938.97,10052.5,0],[[1259,2],[1320,2]]],
+[1290,[6328.03,9997.54,0],[[1260,2],[1321,2]]], [1291,[6306.5,9732.37,0],[[1260,2],[1285,2]]], [1292,[6124.06,10048.8,0],[[1260,2],[1322,2]]], [1293,[5353.13,10535.9,-1.90735e-006],[[1262,2],[1323,2]]], [1294,[4702.23,10307.6,9.53674e-007],[[1263,2],[1297,2]]], [1295,[4040.77,10652.1,0],[[1265,2],[1324,2]]],
+[1296,[4191.15,10703.8,-1.90735e-006],[[1265,2],[1325,2]]], [1297,[4533.79,10429.9,4.76837e-007],[[1266,2],[1294,2],[1297,2],[1326,2]]], [1298,[4507.51,10594.9,1.90735e-006],[[1266,2],[1327,2]]], [1299,[5263.71,938.44,9.53674e-007],[[1267,2],[1270,2]]], [1300,[7608.55,1014.36,0],[[1268,2],[1328,2]]], [1301,[7749.81,1225.22,0],[[1269,2],[1329,2]]],
+[1302,[486.598,10195.6,0],[[1272,2],[1330,2]]], [1303,[358.804,10010.5,0],[[1272,2],[1331,2]]], [1304,[688.666,10155.8,1.90735e-006],[[1272,2],[1332,2]]], [1305,[1346.61,9904.97,0],[[1274,2],[1333,2]]], [1306,[930.307,10238.5,2.38419e-007],[[1275,2],[1334,2],[1335,2],[1332,2]]], [1307,[8333.29,5759.37,0],[[1276,2],[1336,2]]],
+[1308,[8601.59,6165.47,3.17891e-007],[[1277,2],[1337,2],[1338,2]]], [1309,[8152.17,7256.85,0],[[1278,2],[1339,2]]], [1310,[7956.47,7810.35,0],[[1279,2],[1340,2]]], [1311,[7438.15,9468.41,0],[[1280,2],[1341,2]]], [1312,[7605.37,9103.73,0],[[1281,2],[1314,2]]], [1313,[7561.59,8807.78,-9.53674e-007],[[1281,2],[1342,2]]],
+[1314,[7680.74,9191.68,0],[[1282,2],[1312,2],[1343,2]]], [1315,[7276.09,9464.27,0],[[1283,2],[1284,2]]], [1316,[7306.4,9670.53,0],[[1284,2],[1344,2],[1345,2]]], [1317,[6772.36,9953.75,0],[[1286,2],[1346,2]]], [1318,[7684.93,8168.14,0],[[1287,2],[1347,2]]], [1319,[5593.92,10292.7,0],[[1288,2],[1348,2]]],
+[1320,[5994.53,10187.4,-9.53674e-007],[[1289,2],[1349,2]]], [1321,[6406.94,10095,0],[[1290,2],[1350,2]]], [1322,[6059.98,10164.7,0],[[1292,2],[1349,2]]], [1323,[5337.34,10620.2,0],[[1293,2],[1351,2],[1352,2],[1353,2]]], [1324,[3935.21,10736.6,0],[[1295,2],[1354,2]]], [1325,[4162.59,10786.6,-2.38419e-007],[[1296,2],[1355,2],[1356,2],[1357,2]]],
+[1326,[4692.78,10507.5,1.90735e-006],[[1297,2],[1358,2]]], [1327,[4525.75,10744.2,0],[[1298,2],[1359,2]]], [1328,[7734.16,999.994,3.17891e-007],[[1300,2],[1360,2],[1329,2]]], [1329,[7747.42,1088.79,0],[[1301,2],[1328,2]]], [1330,[448.063,10339,0],[[1302,2],[1361,2]]], [1331,[196.717,9992.1,0],[[1303,2],[1362,2]]],
+[1332,[834.6,10209.9,-9.53674e-007],[[1304,2],[1306,2]]], [1333,[1451.05,9986.77,0],[[1305,2],[1363,2]]], [1334,[930.331,10412.5,0],[[1306,2],[1364,2]]], [1335,[1112.5,10318.8,0],[[1306,2],[1365,2]]], [1336,[8413.02,5657.62,0],[[1307,2],[1366,2]]], [1337,[8798.99,6225.09,9.53674e-007],[[1308,2],[1367,2]]],
+[1338,[8769.21,6162.55,0],[[1308,2],[1368,2]]], [1339,[8080.35,7377.3,0],[[1309,2],[1369,2]]], [1340,[8000.84,7793.72,0],[[1310,2],[1370,2],[1371,2],[1372,2]]], [1341,[7438.99,9645.39,0],[[1311,2],[1373,2]]], [1342,[7622.22,8671.82,0],[[1313,2],[1374,2]]], [1343,[7811.56,9299.51,4.76837e-007],[[1314,2],[1375,2]]],
+[1344,[7435.05,9793.05,1.90735e-006],[[1316,2],[1376,2],[1373,2]]], [1345,[7357.86,9836.18,0],[[1316,2],[1377,2]]], [1346,[6763.6,10110.2,0],[[1317,2],[1378,2]]], [1347,[7786.36,8112.6,0],[[1318,2],[1379,2]]], [1348,[5585.4,10440.9,0],[[1319,2],[1380,2]]], [1349,[6033.5,10256.6,0],[[1320,2],[1322,2],[1381,2]]],
+[1350,[6537.28,10197.9,0],[[1321,2],[1378,2]]], [1351,[5482.11,10574.4,-1.90735e-006],[[1323,2],[1380,2]]], [1352,[5196.35,10661.2,0],[[1323,2],[1382,2],[1383,2],[1384,2]]], [1353,[5408.68,10789.2,0],[[1323,2],[1385,2]]], [1354,[3832.14,10836.3,-6.35783e-007],[[1324,2],[1386,2],[1387,2]]], [1355,[4365.88,10811.7,0],[[1325,2],[1359,2]]],
+[1356,[4140.48,10869.1,6.35783e-007],[[1325,2],[1388,2],[1389,2]]], [1357,[4098.81,10783.9,-0.0136156],[[1325,2],[1386,2],[1390,2],[1357,2]]], [1358,[4841.48,10530.2,0],[[1326,2],[1384,2]]], [1359,[4532.88,10814.2,0],[[1327,2],[1355,2],[1391,2],[1359,2],[1392,2]]], [1360,[7878.94,996.033,-2.38419e-007],[[1328,2],[1393,2],[1394,2],[1395,2]]], [1361,[438.559,10496.7,0],[[1330,2],[1396,2]]],
+[1362,[56.1276,9982.73,3.17891e-007],[[1331,2],[1397,2],[1398,2]]], [1363,[1582.25,10077.1,0],[[1333,2],[1399,2]]], [1364,[929.882,10566.2,-9.53674e-007],[[1334,2],[1400,2]]], [1365,[1256.23,10374.4,0],[[1335,2],[1401,2]]], [1366,[8456.82,5600.06,0],[[1336,2],[1402,2]]], [1367,[8956.77,6237.33,0],[[1337,2],[1403,2]]],
+[1368,[8851.55,6164.94,0],[[1338,2],[1404,2]]], [1369,[8037.82,7517.17,0],[[1339,2],[1370,2]]], [1370,[8017.94,7635.53,-9.53674e-007],[[1340,2],[1369,2]]], [1371,[8142.87,7729.34,0],[[1340,2],[1405,2],[1406,2]]], [1372,[7954.63,7928,0],[[1340,2],[1379,2]]], [1373,[7466.48,9774.34,-1.90735e-006],[[1341,2],[1344,2],[1407,2]]],
+[1374,[7678.01,8552.05,0],[[1342,2],[1408,2]]], [1375,[7918.42,9388.34,0],[[1343,2],[1409,2]]], [1376,[7485.6,9840.15,0],[[1344,2],[1410,2]]], [1377,[7382.03,9986.4,1.90735e-006],[[1345,2],[1411,2]]], [1378,[6702.22,10277.4,-3.8147e-007],[[1346,2],[1350,2],[1412,2],[1413,2],[1414,2]]], [1379,[7868.7,8073.43,0],[[1347,2],[1372,2],[1415,2]]],
+[1380,[5626.38,10529.5,4.76837e-007],[[1348,2],[1351,2],[1416,2],[1417,2]]], [1381,[6043.09,10440.1,0],[[1349,2],[1418,2]]], [1382,[5326.19,10745.5,1.27157e-006],[[1352,2],[1385,2],[1419,2]]], [1383,[4990.21,10688.4,0],[[1352,2],[1420,2]]], [1384,[5023.69,10582.2,-1.90735e-006],[[1352,2],[1358,2]]], [1385,[5455.01,10895.2,4.76837e-007],[[1353,2],[1382,2],[1421,2],[1422,2]]],
+[1386,[3999.46,10841.2,0],[[1354,2],[1357,2]]], [1387,[3668.16,10865.1,0],[[1354,2],[1423,2]]], [1388,[4001.73,10952.6,0],[[1356,2],[1424,2]]], [1389,[4205.76,11034,0],[[1356,2],[1392,2],[1425,2],[1426,2]]], [1390,[4124.42,10743,0.130414],[[1357,2]]], [1391,[4582.2,10787.8,0],[[1359,2],[1427,2],[1428,2]]],
+[1392,[4411.22,10935.7,0],[[1359,2],[1389,2]]], [1393,[7915.07,806.269,9.53674e-007],[[1360,2],[1429,2]]], [1394,[8085.89,992.579,0],[[1360,2],[1430,2]]], [1395,[7874.68,1171.17,9.53674e-007],[[1360,2],[1431,2]]], [1396,[457.858,10662.1,0],[[1361,2],[1432,2]]], [1397,[90.6678,10119.4,0],[[1362,2],[1433,2]]],
+[1398,[6.00136,9929.99,0],[[1362,2]]], [1399,[1757.18,10179,0],[[1363,2],[1434,2]]], [1400,[903.945,10699.1,1.90735e-006],[[1364,2],[1435,2]]], [1401,[1380.92,10413.6,0],[[1365,2],[1436,2]]], [1402,[8485.85,5579.98,-6.35783e-007],[[1366,2],[1437,2],[1438,2]]], [1403,[9072.7,6259.37,0],[[1367,2],[1439,2]]],
+[1404,[8973.97,6148.18,0],[[1368,2],[1440,2]]], [1405,[8265.97,7745.65,0],[[1371,2],[1441,2]]], [1406,[8339.7,7686.28,9.53674e-007],[[1371,2],[1442,2]]], [1407,[7478.56,9817.49,-1.90735e-006],[[1373,2]]], [1408,[7724.54,8420.34,0],[[1374,2],[1443,2]]], [1409,[8005.16,9519.5,9.53674e-007],[[1375,2],[1444,2]]],
+[1410,[7561.75,10026.7,-1.90735e-006],[[1376,2],[1445,2]]], [1411,[7406.82,10173.2,-4.76837e-007],[[1377,2],[1446,2],[1447,2],[1445,2]]], [1412,[6889.29,10262.6,0],[[1378,2],[1448,2]]], [1413,[6713.98,10339.9,0],[[1378,2],[1449,2],[1450,2]]], [1414,[6527.45,10341.3,0],[[1378,2],[1451,2]]], [1415,[7796.94,8204.49,0],[[1379,2],[1443,2]]],
+[1416,[5826.52,10518.9,0],[[1380,2],[1452,2]]], [1417,[5799.51,10677,-1.90735e-006],[[1380,2],[1453,2]]], [1418,[6033.46,10494.6,-9.53674e-007],[[1381,2],[1454,2],[1452,2],[1455,2]]], [1419,[5349.3,10928.6,0],[[1382,2],[1456,2]]], [1420,[4840.37,10736.4,0],[[1383,2],[1428,2]]], [1421,[5544.16,11084.1,0],[[1385,2],[1457,2]]],
+[1422,[5610.33,11032.2,0],[[1385,2],[1458,2]]], [1423,[3526.6,10844.5,0],[[1387,2],[1459,2]]], [1424,[3874.2,11089.1,0],[[1388,2],[1460,2]]], [1425,[4261.15,11180.6,0],[[1389,2],[1461,2]]], [1426,[4050.32,11129.1,0],[[1389,2],[1462,2]]], [1427,[4669.73,10668.1,0],[[1391,2],[1463,2]]],
+[1428,[4779.43,10759.1,1.90735e-006],[[1391,2],[1420,2]]], [1429,[7967.01,609.659,1.90735e-006],[[1393,2],[1464,2]]], [1430,[8219.17,1034.36,0],[[1394,2],[1465,2]]], [1431,[7863.27,1314.55,0],[[1395,2],[1466,2]]], [1432,[457.776,10784.6,0],[[1396,2],[1467,2]]], [1433,[143.003,10249.2,1.90735e-006],[[1397,2],[1468,2]]],
+[1434,[1883.4,10258.7,0],[[1399,2],[1469,2]]], [1435,[925.983,10837.8,0],[[1400,2],[1470,2]]], [1436,[1404.37,10439.7,-6.35783e-007],[[1401,2],[1471,2],[1472,2]]], [1437,[8570.7,5621.61,9.53674e-007],[[1402,2],[1473,2]]], [1438,[8484.22,5528.93,0],[[1402,2]]], [1439,[9141.75,6265.6,-4.76837e-007],[[1403,2],[1440,2],[1474,2],[1475,2]]],
+[1440,[9018.09,6144.32,0],[[1404,2],[1439,2],[1476,2],[1477,2]]], [1441,[8360.82,7793.63,0],[[1405,2],[1478,2]]], [1442,[8463.35,7583,0],[[1406,2],[1479,2]]], [1443,[7772.85,8298.38,0],[[1408,2],[1415,2]]], [1444,[8058.42,9662.29,-9.53674e-007],[[1409,2],[1480,2]]], [1445,[7613.8,10146,0],[[1410,2],[1411,2],[1481,2],[1482,2]]],
+[1446,[7415.59,10371.8,0],[[1411,2],[1483,2]]], [1447,[7216.68,10222.6,0],[[1411,2],[1448,2]]], [1448,[7026.29,10244.3,0],[[1412,2],[1447,2]]], [1449,[6740.97,10468,0],[[1413,2],[1484,2]]], [1450,[6626.01,10531.5,0],[[1413,2],[1485,2]]], [1451,[6390.13,10394.7,1.90735e-006],[[1414,2],[1486,2]]],
+[1452,[5865.51,10523,6.35783e-007],[[1416,2],[1418,2],[1455,2]]], [1453,[5953.64,10765.8,0],[[1417,2],[1487,2]]], [1454,[6185.1,10486.7,0],[[1418,2],[1486,2]]], [1455,[6016.3,10585.9,4.76837e-007],[[1418,2],[1452,2],[1487,2],[1488,2]]], [1456,[5389.44,11076.8,0],[[1419,2],[1489,2]]], [1457,[5563.15,11148.1,6.35783e-007],[[1421,2],[1490,2],[1491,2]]],
+[1458,[5744.19,11101.8,0],[[1422,2],[1492,2]]], [1459,[3373.83,10823.6,9.53674e-007],[[1423,2],[1493,2]]], [1460,[3778.71,11233.1,0],[[1424,2],[1494,2]]], [1461,[4303.45,11318.3,9.53674e-007],[[1425,2],[1495,2]]], [1462,[3898.83,11211.6,1.90735e-006],[[1426,2],[1494,2]]], [1463,[4719.03,10606.9,0],[[1427,2]]],
+[1464,[7986.41,490.043,0],[[1429,2],[1496,2]]], [1465,[8352.22,1023.89,0],[[1430,2],[1497,2]]], [1466,[7851.85,1462.6,0],[[1431,2],[1498,2]]], [1467,[389.203,10908.3,0],[[1432,2],[1499,2]]], [1468,[187.673,10394.9,1.90735e-006],[[1433,2],[1500,2]]], [1469,[1981.28,10349.1,0],[[1434,2],[1501,2]]],
+[1470,[950.531,10953.5,-3.8147e-006],[[1435,2]]], [1471,[1465.59,10634.1,0],[[1436,2],[1502,2]]], [1472,[1554.01,10425.3,0],[[1436,2],[1503,2]]], [1473,[8658.97,5687.86,-9.53674e-007],[[1437,2],[1504,2]]], [1474,[9183.04,6261.32,2.38419e-007],[[1439,2],[1475,2],[1505,2],[1477,2]]], [1475,[9216.28,6336.04,-2.38419e-007],[[1439,2],[1474,2],[1506,2],[1507,2]]],
+[1476,[8951.33,6017.05,9.53674e-007],[[1440,2],[1508,2]]], [1477,[9087.91,6049.3,2.38419e-007],[[1440,2],[1474,2],[1509,2],[1510,2]]], [1478,[8369.52,7904.6,0],[[1441,2],[1511,2]]], [1479,[8580.46,7468.54,3.17891e-007],[[1442,2],[1512,2],[1513,2]]], [1480,[8097.55,9829.94,0],[[1444,2],[1514,2]]], [1481,[7657.95,10311.9,0],[[1445,2],[1515,2]]],
+[1482,[7824.33,10073.5,0],[[1445,2],[1516,2]]], [1483,[7440.55,10505.8,0],[[1446,2],[1517,2]]], [1484,[6812.27,10583.4,0],[[1449,2],[1518,2]]], [1485,[6524.22,10712,1.90735e-006],[[1450,2],[1519,2]]], [1486,[6241.16,10460.9,0],[[1451,2],[1454,2]]], [1487,[5981.18,10789.2,4.76837e-007],[[1453,2],[1455,2],[1520,2],[1521,2]]],
+[1488,[6172.33,10702.5,0],[[1455,2],[1522,2]]], [1489,[5423.65,11214.2,0],[[1456,2],[1523,2]]], [1490,[5669.23,11314.8,0],[[1457,2],[1524,2]]], [1491,[5581.94,11304.2,0],[[1457,2],[1525,2]]], [1492,[5862.01,11113.8,0],[[1458,2],[1526,2]]], [1493,[3210.11,10817.4,0],[[1459,2],[1527,2]]],
+[1494,[3733.22,11289.7,0],[[1460,2],[1462,2],[1528,2],[1529,2]]], [1495,[4333.74,11434.5,0],[[1461,2],[1530,2]]], [1496,[7995.92,304.976,9.53674e-007],[[1464,2],[1531,2]]], [1497,[8450.77,1079.16,1.90735e-006],[[1465,2],[1532,2]]], [1498,[7843.44,1593.57,0],[[1466,2],[1533,2]]], [1499,[294.52,11024.8,0],[[1467,2],[1534,2]]],
+[1500,[222.856,10535.9,0],[[1468,2],[1535,2]]], [1501,[2088.37,10452,0],[[1469,2],[1536,2]]], [1502,[1523.99,10812.6,-1.90735e-006],[[1471,2],[1537,2]]], [1503,[1701.18,10457.7,0],[[1472,2],[1538,2]]], [1504,[8742.76,5754.48,-9.53674e-007],[[1473,2],[1539,2]]], [1505,[9335.74,6288.71,0],[[1474,2],[1540,2]]],
+[1506,[9321.5,6436.11,0],[[1475,2],[1541,2]]], [1507,[9275.09,6543.98,0],[[1475,2],[1542,2]]], [1508,[8939.21,5989.21,2.38419e-007],[[1476,2],[1508,2],[1539,2],[1543,2]]], [1509,[9018.3,5905.24,0],[[1477,2],[1544,2],[1543,2]]], [1510,[9168.14,5998.69,0],[[1477,2],[1510,2],[1545,2]]], [1511,[8440.47,7998.43,0],[[1478,2],[1546,2]]],
+[1512,[8705.84,7263.94,0],[[1479,2],[1547,2]]], [1513,[8677.32,7478.08,0],[[1479,2],[1548,2]]], [1514,[8150.22,9960.52,0],[[1480,2],[1549,2],[1516,2],[1550,2]]], [1515,[7700.7,10457.4,0],[[1481,2],[1551,2]]], [1516,[7983.59,10013.7,9.53674e-007],[[1482,2],[1514,2]]], [1517,[7466.09,10659.6,0],[[1483,2],[1552,2]]],
+[1518,[6892.57,10715.8,0],[[1484,2],[1553,2]]], [1519,[6374.1,10851.8,1.90735e-006],[[1485,2],[1554,2]]], [1520,[6000.18,10960.7,0],[[1487,2],[1526,2]]], [1521,[6128.58,10913.4,0],[[1487,2],[1555,2]]], [1522,[6271.52,10789.9,-1.90735e-006],[[1488,2],[1554,2]]], [1523,[5407.13,11347.5,1.90735e-006],[[1489,2],[1556,2]]],
+[1524,[5746.88,11443.3,2.38419e-007],[[1490,2],[1557,2],[1558,2],[1559,2]]], [1525,[5617.02,11439.5,1.90735e-006],[[1491,2],[1558,2]]], [1526,[5964.16,11118.1,0],[[1492,2],[1520,2],[1560,2],[1561,2],[1557,2]]], [1527,[3027.02,10804.7,0],[[1493,2],[1562,2]]], [1528,[3560.79,11371.5,0],[[1494,2],[1563,2]]], [1529,[3629.63,11459.3,1.90735e-006],[[1494,2],[1564,2]]],
+[1530,[4369.87,11566.6,-9.53674e-007],[[1495,2],[1565,2]]], [1531,[8005.62,151.146,-9.53674e-007],[[1496,2],[1566,2]]], [1532,[8562.62,1155.47,0],[[1497,2],[1567,2],[1568,2]]], [1533,[7841.9,1753.78,0],[[1498,2],[1569,2]]], [1534,[252.809,11099.1,0],[[1499,2],[1570,2],[1571,2]]], [1535,[243.021,10654.9,-1.90735e-006],[[1500,2],[1572,2]]],
+[1536,[2239.12,10560.9,0],[[1501,2],[1573,2]]], [1537,[1587.05,10957,0],[[1502,2],[1574,2]]], [1538,[1843.06,10494.6,1.90735e-006],[[1503,2],[1575,2]]], [1539,[8813.96,5805.35,0],[[1504,2],[1508,2],[1543,2]]], [1540,[9470.39,6314.25,-9.53674e-007],[[1505,2],[1576,2]]], [1541,[9418.32,6542.72,0],[[1506,2],[1577,2]]],
+[1542,[9292.5,6709.81,0],[[1507,2],[1578,2],[1577,2],[1579,2]]], [1543,[8932.38,5842.25,0],[[1508,2],[1509,2],[1539,2],[1580,2],[1544,2],[1581,2]]], [1544,[8970.78,5841.08,0],[[1509,2],[1543,2],[1582,2]]], [1545,[9319.52,5989.99,0],[[1510,2],[1583,2]]], [1546,[8467.82,8021.68,0],[[1511,2]]], [1547,[8764.41,7128,9.53674e-007],[[1512,2],[1584,2]]],
+[1548,[8759.25,7463.66,-9.53674e-007],[[1513,2],[1585,2]]], [1549,[8275.69,10066.4,-9.53674e-007],[[1514,2],[1586,2]]], [1550,[8323.36,9910.78,-3.17891e-007],[[1514,2],[1587,2],[1588,2]]], [1551,[7752.87,10609.6,0],[[1515,2],[1589,2]]], [1552,[7456.46,10832,0],[[1517,2],[1590,2]]], [1553,[6948.5,10865.5,0],[[1518,2],[1591,2]]],
+[1554,[6356.9,10864.8,9.53674e-007],[[1519,2],[1522,2],[1555,2],[1592,2]]], [1555,[6227.14,10971.1,0],[[1521,2],[1554,2],[1593,2],[1560,2]]], [1556,[5347.73,11509.6,0],[[1523,2],[1594,2]]], [1557,[5881.1,11300.5,0],[[1524,2],[1526,2],[1561,2]]], [1558,[5644.04,11538.2,2.38419e-007],[[1524,2],[1525,2],[1595,2],[1596,2]]], [1559,[5844.53,11581.9,0],[[1524,2],[1597,2]]],
+[1560,[6054.99,11117.1,9.53674e-007],[[1526,2],[1555,2],[1561,2],[1598,2]]], [1561,[5944.34,11236.2,0],[[1526,2],[1557,2],[1560,2],[1599,2]]], [1562,[2878.9,10797.5,0],[[1527,2],[1600,2]]], [1563,[3477.57,11472.9,0],[[1528,2],[1601,2]]], [1564,[3517.92,11603.5,-1.90735e-006],[[1529,2],[1602,2]]], [1565,[4401.68,11693.8,0],[[1530,2],[1603,2],[1565,2],[1604,2]]],
+[1566,[8006.96,14.5675,9.53674e-007],[[1531,2]]], [1567,[8714.11,1228.51,0],[[1532,2],[1605,2]]], [1568,[8527.38,1328.16,0],[[1532,2],[1606,2]]], [1569,[7849.61,1884.31,-6.35783e-007],[[1533,2],[1607,2],[1608,2]]], [1570,[271.513,10918.7,0],[[1534,2],[1572,2]]], [1571,[217.572,11294.2,0],[[1534,2],[1609,2]]],
+[1572,[259.655,10783.7,-9.53674e-007],[[1535,2],[1570,2]]], [1573,[2317.9,10620,4.76837e-007],[[1536,2],[1610,2],[1611,2],[1612,2]]], [1574,[1611.39,11099.1,1.90735e-006],[[1537,2],[1613,2]]], [1575,[1968.86,10534.8,0],[[1538,2],[1610,2]]], [1576,[9599.35,6354.35,9.53674e-007],[[1540,2],[1614,2]]], [1577,[9448.93,6578.6,7.15256e-007],[[1541,2],[1542,2],[1615,2],[1616,2]]],
+[1578,[9145.61,6798.18,0],[[1542,2],[1617,2]]], [1579,[9314.21,6905.96,0],[[1542,2],[1618,2]]], [1580,[8934.25,5801.64,0],[[1543,2],[1619,2]]], [1581,[8974.6,5853.96,-4.76837e-007],[[1543,2]]], [1582,[8933.5,5786.32,0],[[1544,2]]], [1583,[9471.45,5959.14,9.53674e-007],[[1545,2],[1620,2]]],
+[1584,[8812.78,6992.27,0],[[1547,2],[1621,2]]], [1585,[8846.36,7457.86,-9.53674e-007],[[1548,2],[1622,2]]], [1586,[8390.07,10185.6,0],[[1549,2],[1623,2]]], [1587,[8506.81,9922.22,0],[[1550,2],[1624,2]]], [1588,[8472.58,9853.62,0],[[1550,2],[1625,2]]], [1589,[7798.72,10692.1,2.38419e-007],[[1551,2],[1626,2],[1627,2],[1628,2]]],
+[1590,[7453.82,10862.3,9.53674e-007],[[1552,2],[1629,2],[1628,2],[1630,2]]], [1591,[6987.13,11043.5,0],[[1553,2],[1631,2]]], [1592,[6474.59,10996.7,0],[[1554,2],[1632,2]]], [1593,[6368.22,11077.8,0],[[1555,2],[1633,2]]], [1594,[5323.02,11666.3,1.90735e-006],[[1556,2],[1634,2]]], [1595,[5510.19,11689.4,0],[[1558,2],[1635,2]]],
+[1596,[5699.22,11689.9,-7.62939e-007],[[1558,2],[1597,2],[1596,2],[1636,2],[1637,2]]], [1597,[5864.03,11615.5,-2.38419e-007],[[1559,2],[1596,2],[1638,2],[1639,2]]], [1598,[6203.08,11137.5,1.90735e-006],[[1560,2],[1640,2]]], [1599,[5912.05,11367.6,0],[[1561,2],[1641,2]]], [1600,[2742.91,10796.2,0],[[1562,2],[1642,2]]], [1601,[3409,11592.9,0],[[1563,2],[1643,2]]],
+[1602,[3402.27,11742.1,0],[[1564,2],[1644,2]]], [1603,[4486.81,11879.3,0],[[1565,2],[1645,2]]], [1604,[4351.46,11836.5,0],[[1565,2],[1646,2]]], [1605,[8839.12,1270.66,0],[[1567,2],[1647,2]]], [1606,[8483.4,1462.74,0],[[1568,2],[1648,2]]], [1607,[7852.38,2058.01,0],[[1569,2],[1649,2]]],
+[1608,[7896.95,2027.67,1.90735e-006],[[1569,2],[1650,2]]], [1609,[197.857,11435.4,-1.90735e-006],[[1571,2],[1651,2]]], [1610,[2110.2,10591.1,0],[[1573,2],[1575,2]]], [1611,[2369.86,10721.7,-6.35783e-007],[[1573,2],[1642,2],[1652,2]]], [1612,[2526.73,10683.4,0],[[1573,2],[1642,2]]], [1613,[1632.72,11220.8,0],[[1574,2],[1653,2]]],
+[1614,[9757.02,6365.72,0],[[1576,2],[1654,2]]], [1615,[9594.03,6512.8,0],[[1577,2],[1655,2]]], [1616,[9497.64,6615.02,0],[[1577,2],[1656,2],[1657,2]]], [1617,[9059.73,6841.58,0],[[1578,2],[1658,2],[1617,2],[1659,2]]], [1618,[9323.02,7041.33,0],[[1579,2],[1660,2]]], [1619,[8949.51,5684.41,0],[[1580,2],[1661,2]]],
+[1620,[9606.9,5982.73,0],[[1583,2],[1662,2]]], [1621,[8922.67,6935.53,0],[[1584,2],[1659,2]]], [1622,[8973.41,7473.48,0],[[1585,2],[1663,2]]], [1623,[8509.3,10316,0],[[1586,2],[1664,2]]], [1624,[8651.92,9925.08,0],[[1587,2],[1665,2]]], [1625,[8641.22,9824.13,0],[[1588,2],[1666,2]]],
+[1626,[7882.06,10809.6,-4.76837e-007],[[1589,2],[1667,2],[1668,2],[1669,2]]], [1627,[7938.54,10622.4,0],[[1589,2]]], [1628,[7635.57,10792.4,0],[[1589,2],[1590,2]]], [1629,[7465.34,11009.7,0],[[1590,2],[1670,2],[1671,2]]], [1630,[7305.37,10948.8,0],[[1590,2],[1672,2]]], [1631,[6992.03,11128,0],[[1591,2],[1673,2],[1631,2],[1672,2],[1674,2]]],
+[1632,[6585.07,11142.1,0],[[1592,2],[1675,2]]], [1633,[6484.62,11150.9,0],[[1593,2],[1676,2]]], [1634,[5285.46,11802.1,0],[[1594,2],[1677,2]]], [1635,[5380.83,11794.5,0],[[1595,2],[1677,2]]], [1636,[5815.35,11862.2,-1.90735e-006],[[1596,2],[1678,2]]], [1637,[5768.21,11900.6,0],[[1596,2],[1679,2]]],
+[1638,[5911.61,11671.5,0],[[1597,2],[1639,2],[1680,2],[1681,2]]], [1639,[5904.27,11600.1,4.76837e-007],[[1597,2],[1638,2],[1641,2],[1682,2]]], [1640,[6346.33,11152,0],[[1598,2],[1676,2]]], [1641,[5912.37,11505,0],[[1599,2],[1639,2]]], [1642,[2615.16,10759.4,-3.17891e-007],[[1600,2],[1611,2],[1612,2]]], [1643,[3278.92,11716.7,0],[[1601,2],[1683,2]]],
+[1644,[3297.06,11884.2,0],[[1602,2],[1684,2]]], [1645,[4554.08,12033,0],[[1603,2],[1685,2]]], [1646,[4307.25,11984.6,0],[[1604,2],[1686,2]]], [1647,[8976.6,1311.21,0],[[1605,2],[1687,2]]], [1648,[8446.58,1588.47,0],[[1606,2],[1688,2]]], [1649,[7883.19,2194.38,1.90735e-006],[[1607,2],[1689,2]]],
+[1650,[7961.54,2147.74,1.90735e-006],[[1608,2],[1690,2]]], [1651,[168.196,11598.9,0],[[1609,2],[1691,2]]], [1652,[2453.68,10892.7,0],[[1611,2],[1692,2]]], [1653,[1712.15,11380.2,0],[[1613,2],[1693,2]]], [1654,[9887.31,6397.55,0],[[1614,2],[1694,2]]], [1655,[9741.22,6485.07,0],[[1615,2],[1695,2]]],
+[1656,[9672.54,6601.47,0],[[1616,2],[1696,2]]], [1657,[9578.63,6739.13,0],[[1616,2],[1697,2]]], [1658,[9066.9,6835.87,0],[[1617,2]]], [1659,[8973.74,6905.22,0],[[1617,2],[1621,2]]], [1660,[9297.61,7184.76,0],[[1618,2],[1698,2]]], [1661,[8963.56,5550.06,-9.53674e-007],[[1619,2],[1699,2]]],
+[1662,[9690.24,5978.12,-9.53674e-007],[[1620,2],[1700,2]]], [1663,[9022.88,7472.55,0],[[1622,2],[1701,2]]], [1664,[8576.11,10376.5,0],[[1623,2]]], [1665,[8807.81,9934.01,0],[[1624,2],[1702,2]]], [1666,[8757.89,9806.75,9.53674e-007],[[1625,2],[1703,2]]], [1667,[7985.6,10963,0],[[1626,2],[1704,2]]],
+[1668,[7990.15,10695.3,-9.53674e-007],[[1626,2],[1705,2]]], [1669,[7766.16,10959.2,0],[[1626,2],[1706,2]]], [1670,[7449.91,11178.7,0],[[1629,2],[1707,2]]], [1671,[7340.03,11079.6,0],[[1629,2],[1708,2]]], [1672,[7198.33,11038.3,0],[[1630,2],[1631,2]]], [1673,[6939.99,11160.7,0],[[1631,2],[1675,2]]],
+[1674,[7007.4,11154.7,0],[[1631,2],[1708,2],[1709,2]]], [1675,[6649.72,11201,0],[[1632,2],[1673,2],[1710,2]]], [1676,[6508.84,11168.4,0],[[1633,2],[1640,2],[1710,2]]], [1677,[5248.53,11885,0],[[1634,2],[1635,2],[1711,2]]], [1678,[5863.91,11938.5,0],[[1636,2],[1680,2],[1712,2],[1679,2]]], [1679,[5823.39,12083.9,3.17891e-007],[[1637,2],[1678,2],[1713,2]]],
+[1680,[5890.32,11825.2,0],[[1638,2],[1678,2]]], [1681,[5965.27,11783.2,0],[[1638,2],[1714,2],[1715,2]]], [1682,[6055.94,11579.1,0],[[1639,2],[1716,2]]], [1683,[3171.15,11813.8,-1.90735e-006],[[1643,2],[1717,2],[1718,2]]], [1684,[3274.79,11930.5,0],[[1644,2],[1718,2],[1717,2],[1719,2]]], [1685,[4604.44,12160,0],[[1645,2],[1720,2]]],
+[1686,[4272,12102.6,0],[[1646,2],[1721,2]]], [1687,[9019.28,1331.94,3.17891e-007],[[1647,2],[1722,2],[1723,2]]], [1688,[8389.39,1735.69,0],[[1648,2],[1724,2]]], [1689,[7921.5,2341.11,0],[[1649,2],[1725,2]]], [1690,[8056.11,2258.73,2.38419e-007],[[1650,2],[1726,2],[1727,2],[1728,2]]], [1691,[161.262,11668.4,0],[[1651,2],[1729,2],[1730,2]]],
+[1692,[2504.45,11032.3,0],[[1652,2],[1731,2]]], [1693,[1786.64,11510.6,-9.53674e-007],[[1653,2],[1732,2]]], [1694,[9987.73,6415.77,0],[[1654,2],[1695,2],[1733,2]]], [1695,[9877.15,6454.18,3.17891e-007],[[1655,2],[1694,2],[1696,2]]], [1696,[9800.81,6502.53,0],[[1656,2],[1695,2]]], [1697,[9613.76,6870.54,0],[[1657,2],[1734,2]]],
+[1698,[9276.56,7319.74,0],[[1660,2],[1735,2]]], [1699,[8993.55,5321.81,0],[[1661,2],[1736,2]]], [1700,[9883.2,6035.95,9.53674e-007],[[1662,2],[1737,2]]], [1701,[9120.6,7464.45,0],[[1663,2],[1735,2]]], [1702,[8955.23,9922.53,9.53674e-007],[[1665,2],[1738,2]]], [1703,[8829.44,9718.06,0],[[1666,2],[1739,2]]],
+[1704,[8067.52,11096.5,0],[[1667,2],[1740,2]]], [1705,[8019.87,10668.8,-4.76837e-007],[[1668,2]]], [1706,[7666.95,11053.9,0],[[1669,2],[1741,2]]], [1707,[7392.27,11283.6,9.53674e-007],[[1670,2],[1741,2],[1742,2],[1743,2]]], [1708,[7199.51,11143.3,-1.90735e-006],[[1671,2],[1674,2]]], [1709,[7031.35,11320.8,0],[[1674,2],[1744,2]]],
+[1710,[6714.46,11277.4,0],[[1675,2],[1676,2],[1745,2]]], [1711,[5180.74,12074.1,0],[[1677,2],[1746,2]]], [1712,[6001.64,12040.5,0],[[1678,2],[1747,2]]], [1713,[5823.34,12278.9,-1.90735e-006],[[1679,2],[1748,2]]], [1714,[6026.82,11945.8,0],[[1681,2],[1749,2]]], [1715,[6104.6,11774,0],[[1681,2],[1750,2]]],
+[1716,[6186.03,11557.2,0],[[1682,2],[1751,2]]], [1717,[3111.89,11946.6,0],[[1683,2],[1684,2],[1752,2]]], [1718,[3131.88,11897.3,0],[[1684,2],[1753,2],[1683,2]]], [1719,[3247.98,12105.5,1.90735e-006],[[1684,2],[1754,2]]], [1720,[4676.18,12312.9,0],[[1685,2],[1755,2]]], [1721,[4222.8,12263.8,1.90735e-006],[[1686,2],[1756,2]]],
+[1722,[8969.55,1484,0],[[1687,2],[1757,2]]], [1723,[9180.71,1337.76,0],[[1687,2],[1758,2]]], [1724,[8328.24,1867.52,0],[[1688,2],[1759,2]]], [1725,[7941.81,2484.86,0],[[1689,2],[1760,2]]], [1726,[8189.24,2401.5,0],[[1690,2],[1761,2]]], [1727,[7999.79,2387.93,0],[[1690,2],[1760,2]]],
+[1728,[8160.43,2103.63,0],[[1690,2],[1759,2]]], [1729,[113.632,11862.8,0],[[1691,2],[1762,2]]], [1730,[222.309,11819.4,-1.90735e-006],[[1691,2],[1763,2]]], [1731,[2572.17,11169.7,0],[[1692,2],[1764,2]]], [1732,[1841.78,11648.5,0],[[1693,2],[1765,2]]], [1733,[10169.9,6415.25,9.53674e-007],[[1694,2],[1766,2]]],
+[1734,[9723.64,6977.12,0],[[1697,2],[1767,2]]], [1735,[9258.88,7422.65,-2.38419e-007],[[1698,2],[1701,2],[1768,2],[1769,2]]], [1736,[8978.27,5116.44,0],[[1699,2],[1770,2]]], [1737,[10049.4,6074.55,0],[[1700,2],[1771,2]]], [1738,[9122.67,9934.56,0],[[1702,2],[1772,2]]], [1739,[8825.19,9560.34,0],[[1703,2]]],
+[1740,[8134.41,11209.4,0],[[1704,2],[1773,2]]], [1741,[7554.9,11161.6,0],[[1706,2],[1707,2]]], [1742,[7346.79,11446.7,0],[[1707,2],[1774,2]]], [1743,[7221.45,11419.2,0],[[1707,2],[1775,2]]], [1744,[7051.93,11457.3,6.35783e-007],[[1709,2],[1776,2],[1775,2],[1744,2],[1777,2]]], [1745,[6872.76,11398,0],[[1710,2],[1777,2]]],
+[1746,[5131.97,12219.4,0],[[1711,2],[1778,2]]], [1747,[6087.11,12159.4,1.90735e-006],[[1712,2],[1779,2],[1749,2]]], [1748,[5827.29,12422.3,0],[[1713,2],[1780,2]]], [1749,[6083.3,12101.2,-1.90735e-006],[[1714,2],[1747,2],[1781,2]]], [1750,[6244.52,11764.2,0],[[1715,2],[1782,2]]], [1751,[6335.98,11496.5,0],[[1716,2],[1783,2]]],
+[1752,[3068.64,12084.9,0],[[1717,2],[1784,2]]], [1753,[2933.26,11860.4,0],[[1718,2],[1785,2]]], [1754,[3255.94,12257.4,0],[[1719,2],[1786,2]]], [1755,[4741.71,12441.1,0],[[1720,2],[1787,2]]], [1756,[4180.65,12402.5,0],[[1721,2],[1788,2]]], [1757,[8925.54,1629.51,0],[[1722,2],[1789,2]]],
+[1758,[9373.89,1306.29,-9.53674e-007],[[1723,2],[1790,2]]], [1759,[8261.35,1991.62,-9.53674e-007],[[1724,2],[1728,2]]], [1760,[7948.53,2565.06,3.17891e-007],[[1725,2],[1727,2],[1791,2]]], [1761,[8199.34,2557.28,0],[[1726,2],[1792,2]]], [1762,[77.306,11983.7,-1.90735e-006],[[1729,2],[1793,2]]], [1763,[292.436,11980.4,0],[[1730,2],[1794,2]]],
+[1764,[2642.09,11294.4,9.53674e-007],[[1731,2],[1795,2]]], [1765,[1942.08,11812.1,0],[[1732,2],[1796,2]]], [1766,[10297.9,6402.16,0],[[1733,2],[1797,2]]], [1767,[9787.66,7060.62,0],[[1734,2],[1798,2]]], [1768,[9449.69,7401.41,0],[[1735,2],[1799,2]]], [1769,[9184.38,7557.74,0],[[1735,2],[1800,2]]],
+[1770,[8922.14,4947.2,4.76837e-007],[[1736,2],[1801,2]]], [1771,[10195.2,6092.38,0],[[1737,2],[1802,2]]], [1772,[9249.16,9922.98,9.53674e-007],[[1738,2],[1803,2]]], [1773,[8241.17,11347.9,0],[[1740,2],[1804,2]]], [1774,[7322.15,11581.6,-6.35783e-007],[[1742,2],[1805,2],[1806,2]]], [1775,[7095.49,11502.9,0],[[1743,2],[1744,2],[1776,2]]],
+[1776,[7054.48,11531,1.14441e-006],[[1744,2],[1775,2],[1777,2],[1807,2]]], [1777,[7010.54,11533.3,3.8147e-007],[[1744,2],[1745,2],[1776,2],[1808,2],[1809,2]]], [1778,[5086.59,12345.2,0],[[1746,2],[1810,2]]], [1779,[6113.68,12174,0],[[1747,2],[1811,2]]], [1780,[5836.26,12563.1,0],[[1748,2],[1812,2]]], [1781,[6102.61,12150.2,0],[[1749,2]]],
+[1782,[6375.42,11760.1,0],[[1750,2],[1813,2]]], [1783,[6471.33,11508.1,0],[[1751,2],[1814,2]]], [1784,[3042.23,12217.3,0],[[1752,2],[1815,2]]], [1785,[2797.86,11855.8,9.53674e-007],[[1753,2],[1816,2]]], [1786,[3296.87,12360.5,0],[[1754,2],[1817,2],[1818,2]]], [1787,[4792.06,12521.9,1.27157e-006],[[1755,2],[1819,2],[1810,2]]],
+[1788,[4100.53,12529.4,0],[[1756,2],[1820,2]]], [1789,[8878.74,1763.98,9.53674e-007],[[1757,2],[1821,2]]], [1790,[9518.53,1287.32,9.53674e-007],[[1758,2],[1822,2]]], [1791,[7948,2763.47,0],[[1760,2],[1823,2]]], [1792,[8194.06,2698.07,1.90735e-006],[[1761,2],[1824,2]]], [1793,[63.497,12039.3,-4.76837e-007],[[1762,2],[1825,2],[1826,2],[1827,2]]],
+[1794,[345.644,12117.4,0],[[1763,2],[1828,2]]], [1795,[2647.37,11409.8,-9.53674e-007],[[1764,2],[1829,2]]], [1796,[2000.54,11954,0],[[1765,2],[1830,2]]], [1797,[10440.9,6416.67,0],[[1766,2],[1831,2]]], [1798,[9826.36,7173.88,-9.53674e-007],[[1767,2],[1832,2]]], [1799,[9603.51,7411.18,-9.53674e-007],[[1768,2],[1833,2]]],
+[1800,[9140.96,7693.01,0],[[1769,2],[1834,2]]], [1801,[8847.13,4817.8,2.38419e-007],[[1770,2],[1801,2],[1835,2],[1836,2]]], [1802,[10312.7,6131.25,0],[[1771,2],[1837,2]]], [1803,[9381.62,9928.46,0],[[1772,2],[1838,2]]], [1804,[8382.22,11430.7,0],[[1773,2],[1839,2],[1840,2]]], [1805,[7340.68,11744.1,0],[[1774,2],[1841,2]]],
+[1806,[7146.2,11610.5,1.90735e-006],[[1774,2],[1807,2]]], [1807,[7045.44,11607.7,4.76837e-007],[[1776,2],[1806,2],[1842,2]]], [1808,[6985.92,11577,0],[[1777,2],[1843,2],[1842,2],[1844,2],[1809,2]]], [1809,[6905.24,11559.5,0],[[1777,2],[1808,2],[1845,2]]], [1810,[4989.4,12441.6,0],[[1778,2],[1787,2]]], [1811,[6233.14,12338.5,0],[[1779,2],[1846,2]]],
+[1812,[5853.36,12695.6,1.90735e-006],[[1780,2],[1847,2]]], [1813,[6525.14,11752.5,0],[[1782,2],[1848,2]]], [1814,[6606.51,11502.5,1.90735e-006],[[1783,2],[1845,2]]], [1815,[3033.73,12322.2,0],[[1784,2],[1849,2],[1850,2]]], [1816,[2779.17,11860.7,-2.38419e-007],[[1785,2],[1851,2],[1852,2],[1853,2]]], [1817,[3476.84,12398.8,0],[[1786,2],[1854,2]]],
+[1818,[3296.67,12563.1,0],[[1786,2],[1855,2]]], [1819,[4845.53,12747.8,6.35783e-007],[[1787,2],[1856,2],[1857,2]]], [1820,[3999.67,12655.1,-1.90735e-006],[[1788,2],[1858,2]]], [1821,[8881.51,1912.54,0],[[1789,2],[1859,2]]], [1822,[9654.51,1261.68,0],[[1790,2],[1860,2]]], [1823,[7952.12,2878.75,0],[[1791,2],[1861,2]]],
+[1824,[8186.23,2858.81,1.90735e-006],[[1792,2],[1862,2]]], [1825,[10.1006,11995,1.90735e-006],[[1793,2]]], [1826,[29.0515,12221.6,0],[[1793,2],[1863,2]]], [1827,[173.117,12172.9,0],[[1793,2],[1864,2]]], [1828,[384.702,12271.7,0],[[1794,2],[1865,2]]], [1829,[2648.05,11552.3,0],[[1795,2],[1852,2]]],
+[1830,[2047.03,12084.3,0],[[1796,2],[1866,2]]], [1831,[10531.4,6393.33,4.76837e-007],[[1797,2],[1867,2],[1868,2],[1869,2]]], [1832,[9865.48,7275.02,0],[[1798,2],[1870,2]]], [1833,[9736.61,7410.22,0],[[1799,2],[1871,2]]], [1834,[9117.11,7850.39,0],[[1800,2],[1872,2]]], [1835,[8766.81,4667.78,0],[[1801,2],[1873,2]]],
+[1836,[8882.6,4667.65,9.53674e-007],[[1801,2],[1874,2]]], [1837,[10370.5,6161.5,0],[[1802,2],[1867,2],[1875,2]]], [1838,[9418.53,9916.74,-6.35783e-007],[[1803,2],[1876,2],[1877,2]]], [1839,[8480.48,11584.2,0],[[1804,2],[1878,2]]], [1840,[8599.58,11568.8,0],[[1804,2],[1879,2]]], [1841,[7339.19,11877,0],[[1805,2],[1880,2]]],
+[1842,[7038.95,11666.1,0],[[1807,2],[1808,2],[1842,2],[1843,2]]], [1843,[6963.37,11658.4,7.62939e-007],[[1808,2],[1842,2],[1843,2],[1881,2],[1882,2]]], [1844,[6923.5,11565.4,-1.90735e-006],[[1808,2]]], [1845,[6687.3,11509.3,0],[[1809,2],[1814,2]]], [1846,[6288.95,12502.4,0],[[1811,2],[1883,2]]], [1847,[5853.91,12831.6,9.53674e-007],[[1812,2],[1884,2]]],
+[1848,[6655.79,11731.8,-1.90735e-006],[[1813,2],[1882,2]]], [1849,[3097.99,12542,0],[[1815,2],[1885,2]]], [1850,[2960.27,12152.1,0],[[1815,2],[1853,2]]], [1851,[2617.17,11844.4,0],[[1816,2],[1886,2]]], [1852,[2718.99,11720.9,0],[[1816,2],[1829,2]]], [1853,[2876.21,11999.6,0],[[1816,2],[1850,2]]],
+[1854,[3586.27,12491.7,-1.90735e-006],[[1817,2],[1887,2]]], [1855,[3291.73,12691.1,0],[[1818,2],[1888,2]]], [1856,[4835.35,12942.7,0],[[1819,2],[1889,2]]], [1857,[4907.73,12947.1,1.90735e-006],[[1819,2],[1890,2]]], [1858,[3892.13,12728.7,0],[[1820,2],[1891,2]]], [1859,[8886.35,1971.94,3.17891e-007],[[1821,2],[1892,2],[1893,2]]],
+[1860,[9790.86,1257.69,-9.53674e-007],[[1822,2],[1894,2]]], [1861,[7959.33,3070.09,9.53674e-007],[[1823,2],[1895,2]]], [1862,[8175.43,3008.16,0],[[1824,2],[1896,2]]], [1863,[12.7808,12260.3,0],[[1826,2]]], [1864,[240.663,12290.2,0],[[1827,2],[1897,2],[1865,2]]], [1865,[385.015,12311.6,0],[[1828,2],[1864,2],[1898,2],[1899,2],[1897,2]]],
+[1866,[2049.54,12107.8,0],[[1830,2],[1900,2],[1901,2],[1902,2]]], [1867,[10433.9,6274.38,0],[[1831,2],[1837,2]]], [1868,[10541.8,6301.82,0],[[1831,2],[1903,2]]], [1869,[10710.7,6407.47,9.53674e-007],[[1831,2],[1904,2]]], [1870,[9898.01,7398.93,2.38419e-007],[[1832,2],[1905,2],[1906,2],[1871,2]]], [1871,[9802.29,7415.19,0],[[1833,2],[1870,2]]],
+[1872,[9101.58,7999.95,0],[[1834,2],[1907,2]]], [1873,[8722.93,4542.08,0],[[1835,2],[1908,2]]], [1874,[8916.52,4521.61,0],[[1836,2],[1909,2]]], [1875,[10447.3,6084.67,-4.76837e-007],[[1837,2],[1875,2],[1910,2],[1911,2]]], [1876,[9429.1,9791.98,-2.38419e-007],[[1838,2],[1876,2],[1912,2],[1913,2]]], [1877,[9458.13,10139.4,0],[[1838,2],[1914,2]]],
+[1878,[8576.06,11721.4,0],[[1839,2],[1915,2]]], [1879,[8724.34,11612.6,0],[[1840,2],[1916,2]]], [1880,[7307.34,12056.4,0],[[1841,2],[1917,2]]], [1881,[6909.78,11840.8,0],[[1843,2],[1918,2]]], [1882,[6781.33,11713.6,0],[[1843,2],[1848,2]]], [1883,[6319.85,12664.1,0],[[1846,2],[1919,2]]],
+[1884,[5829.73,12988.3,0],[[1847,2],[1920,2]]], [1885,[3108.62,12586.5,-3.17891e-007],[[1849,2],[1921,2],[1922,2]]], [1886,[2487.33,11834.4,0],[[1851,2],[1923,2]]], [1887,[3694.89,12612.7,0],[[1854,2],[1891,2]]], [1888,[3311.19,12867,-1.90735e-006],[[1855,2],[1924,2]]], [1889,[4806.98,13078.4,-1.90735e-006],[[1856,2],[1925,2]]],
+[1890,[4955.36,13078.5,-1.90735e-006],[[1857,2],[1926,2]]], [1891,[3832.42,12796.5,0],[[1858,2],[1887,2],[1927,2],[1928,2]]], [1892,[8851.19,2157.03,0],[[1859,2],[1929,2]]], [1893,[9032.86,2056.23,0],[[1859,2],[1930,2],[1931,2]]], [1894,[9919.7,1311.5,0],[[1860,2],[1932,2]]], [1895,[7991.44,3195.93,0],[[1861,2],[1933,2]]],
+[1896,[8149.41,3147.55,-1.90735e-006],[[1862,2],[1934,2],[1933,2]]], [1897,[289.151,12347,0],[[1864,2],[1865,2],[1935,2],[1936,2]]], [1898,[409.387,12474.3,0],[[1865,2],[1937,2]]], [1899,[529.253,12359.9,0],[[1865,2],[1938,2]]], [1900,[2145.1,12250.7,0],[[1866,2],[1939,2]]], [1901,[2168.64,11998.1,0],[[1866,2],[1940,2]]],
+[1902,[1902.19,12161.7,0],[[1866,2],[1941,2]]], [1903,[10548.3,6209.06,0],[[1868,2],[1910,2]]], [1904,[10867.8,6421.74,9.53674e-007],[[1869,2],[1942,2]]], [1905,[9953.04,7557.82,0],[[1870,2],[1943,2]]], [1906,[10091.3,7350.83,0],[[1870,2],[1944,2]]], [1907,[9086.31,8147.39,-9.53674e-007],[[1872,2],[1945,2]]],
+[1908,[8777.71,4385.51,0],[[1873,2],[1946,2]]], [1909,[9008.37,4366.42,0],[[1874,2],[1947,2]]], [1910,[10548.2,6164.76,0],[[1875,2],[1903,2]]], [1911,[10446.7,5976.85,-6.35783e-007],[[1875,2],[1948,2],[1911,2]]], [1912,[9427.73,9714.48,0],[[1876,2],[1949,2],[1913,2]]], [1913,[9470.29,9767.14,4.76837e-007],[[1876,2],[1912,2],[1913,2],[1950,2]]],
+[1914,[9484.11,10317.5,0],[[1877,2],[1951,2]]], [1915,[8684.97,11861.3,0],[[1878,2],[1952,2]]], [1916,[8855.14,11696,0],[[1879,2],[1953,2]]], [1917,[7282.24,12232.8,0],[[1880,2],[1954,2]]], [1918,[6881.67,11947.4,0],[[1881,2]]], [1919,[6352.57,12804.8,0],[[1883,2],[1955,2]]],
+[1920,[5820.31,13132.2,0],[[1884,2],[1956,2]]], [1921,[3227.41,12741.3,0],[[1885,2],[1924,2]]], [1922,[3102.11,12792.3,0],[[1885,2],[1957,2]]], [1923,[2336.01,11806.5,0],[[1886,2],[1940,2]]], [1924,[3306.05,12881.4,-1.27157e-006],[[1888,2],[1921,2],[1958,2]]], [1925,[4756.28,13223.1,0],[[1889,2],[1959,2]]],
+[1926,[5011.45,13235.9,-1.90735e-006],[[1890,2],[1960,2]]], [1927,[3745.78,12992.1,0],[[1891,2],[1961,2]]], [1928,[3972.11,12884.9,0],[[1891,2],[1962,2]]], [1929,[8832.43,2310.96,0],[[1892,2],[1963,2]]], [1930,[9143.07,2057.27,0],[[1893,2],[1964,2],[1931,2],[1930,2]]], [1931,[9132.52,2073.46,0],[[1930,2],[2000,2],[1931,2],[1893,2]]],
+[1932,[10061.9,1385.45,0],[[1894,2],[1965,2]]], [1933,[8060.76,3274.6,3.17891e-007],[[1895,2],[1896,2],[1966,2]]], [1934,[8127.74,3185,0],[[1896,2],[1967,2]]], [1935,[337.291,12458.6,0],[[1897,2],[1968,2],[1937,2]]], [1936,[132.226,12404.1,0],[[1897,2],[1969,2]]], [1937,[420.505,12541,0],[[1898,2],[1935,2],[1970,2],[1971,2]]],
+[1938,[697.512,12418.4,0],[[1899,2],[1972,2]]], [1939,[2229.92,12355.3,0],[[1900,2],[1973,2]]], [1940,[2262.49,11874.6,0],[[1901,2],[1923,2]]], [1941,[1715.67,12223.6,-1.90735e-006],[[1902,2],[1974,2]]], [1942,[11014.8,6405.51,0],[[1904,2],[1975,2],[1976,2]]], [1943,[9998.49,7711.83,0],[[1905,2],[1977,2]]],
+[1944,[10214.3,7326.48,0],[[1906,2],[1978,2]]], [1945,[9056.86,8307.73,0],[[1907,2],[1979,2]]], [1946,[8759.9,4257.45,0],[[1908,2],[1980,2]]], [1947,[9090.41,4223.84,0],[[1909,2],[1981,2]]], [1948,[10526.9,5845.95,9.53674e-007],[[1911,2],[1982,2]]], [1949,[9376.9,9549.97,0],[[1912,2],[1983,2]]],
+[1950,[9552.8,9812.66,0],[[1913,2],[1984,2],[1985,2]]], [1951,[9496.53,10456,-1.90735e-006],[[1914,2],[1986,2]]], [1952,[8786.52,11988.7,0],[[1915,2],[1987,2]]], [1953,[8997.52,11808.3,0],[[1916,2],[1988,2]]], [1954,[7257.1,12393.6,0],[[1917,2],[1989,2]]], [1955,[6377.66,12974.7,-1.90735e-006],[[1919,2],[1990,2]]],
+[1956,[5806.28,13286.2,9.53674e-007],[[1920,2],[1991,2]]], [1957,[3117.08,12938.4,0],[[1922,2],[1992,2]]], [1958,[3332.83,13054.7,0],[[1924,2],[1993,2]]], [1959,[4728.27,13367.3,0],[[1925,2],[1994,2]]], [1960,[5069.99,13382.8,0],[[1926,2],[1995,2]]], [1961,[3716.22,13129.9,0],[[1927,2],[1996,2]]],
+[1962,[4079.35,12952.3,0],[[1928,2],[1997,2]]], [1963,[8745.27,2384.98,0],[[1929,2],[1998,2]]], [1964,[9256.56,1939.23,0],[[1930,2],[1999,2]]], [1965,[10118,1410.25,0],[[1932,2],[2001,2],[2002,2]]], [1966,[8050.31,3330.78,-2.38419e-007],[[1933,2],[1966,2],[2003,2],[2004,2]]], [1967,[8282.42,3085.09,0],[[1934,2],[2005,2]]],
+[1968,[353.301,12653.6,0],[[1935,2],[2006,2]]], [1969,[20.6587,12434.3,0],[[1936,2]]], [1970,[539.794,12672.8,1.90735e-006],[[1937,2],[2007,2]]], [1971,[423.251,12727.8,0],[[1937,2],[2008,2],[2006,2]]], [1972,[848.022,12459.4,0],[[1938,2],[2009,2]]], [1973,[2301.55,12489.7,0],[[1939,2],[2010,2]]],
+[1974,[1579.85,12282.5,-1.90735e-006],[[1941,2],[2011,2]]], [1975,[10985.4,6276.59,0],[[1942,2],[2012,2]]], [1976,[11140.4,6406.29,0],[[1942,2],[2013,2],[2014,2],[2015,2]]], [1977,[10048.4,7863.26,0],[[1943,2],[2016,2]]], [1978,[10351,7286.77,-9.53674e-007],[[1944,2],[2017,2]]], [1979,[9037.5,8461.23,0],[[1945,2],[2018,2]]],
+[1980,[8747.87,4123.52,9.53674e-007],[[1946,2],[2019,2]]], [1981,[9177.85,4105.08,0],[[1947,2],[2020,2]]], [1982,[10557.1,5757.27,0],[[1948,2],[1982,2]]], [1983,[9320.9,9406.98,0],[[1949,2],[2021,2],[2022,2]]], [1984,[9634.74,9942.81,0],[[1950,2],[2023,2]]], [1985,[9700.02,9771.74,0],[[1950,2],[2024,2]]],
+[1986,[9526.5,10581.4,0],[[1951,2],[2025,2],[2026,2]]], [1987,[8875.76,12118.9,4.76837e-007],[[1952,2],[2027,2],[1987,2],[2028,2]]], [1988,[9017.07,11835.4,-4.76837e-007],[[1953,2],[2029,2],[2030,2],[1988,2]]], [1989,[7229.17,12540.6,0],[[1954,2],[2031,2]]], [1990,[6404.96,13149.1,0],[[1955,2],[2032,2]]], [1991,[5807.96,13410.1,0],[[1956,2],[2033,2]]],
+[1992,[3137.67,13055.7,3.17891e-007],[[1957,2],[2034,2],[2035,2]]], [1993,[3351.29,13212.4,0],[[1958,2],[2036,2]]], [1994,[4660.68,13508.1,-4.76837e-007],[[1959,2],[2037,2],[2038,2],[2039,2]]], [1995,[5136.48,13481.5,0],[[1960,2],[2040,2]]], [1996,[3681.14,13300.7,0],[[1961,2],[2041,2]]], [1997,[4191.06,13020.1,0],[[1962,2],[2042,2]]],
+[1998,[8646.21,2444,0],[[1963,2],[2043,2]]], [1999,[9349.33,1982.14,0],[[1964,2],[2044,2]]], [2000,[9102.49,2072.99,6.35783e-007],[[1931,2]]], [2001,[10280.5,1423.22,0],[[1965,2],[2045,2]]], [2002,[10266.7,1485.62,0],[[1965,2],[2046,2]]], [2003,[8106.29,3515.37,0],[[1966,2],[2047,2]]],
+[2004,[7926.19,3414.48,0],[[1966,2],[2048,2]]], [2005,[8372.9,3047.28,0],[[1967,2],[2049,2],[2050,2]]], [2006,[373.039,12829.1,0],[[1968,2],[1971,2],[2008,2]]], [2007,[639.4,12773.6,-1.90735e-006],[[1970,2],[2051,2]]], [2008,[380.673,12885,-4.76837e-007],[[1971,2],[2006,2],[2052,2],[2008,2]]], [2009,[977.797,12473.8,0],[[1972,2],[2053,2]]],
+[2010,[2369.14,12642.2,0],[[1973,2],[2054,2]]], [2011,[1471.92,12344.4,0],[[1974,2],[2055,2]]], [2012,[10955.2,6135.9,0],[[1975,2],[2056,2]]], [2013,[11155.5,6264.78,0],[[1976,2],[2057,2]]], [2014,[11322.6,6453.8,0],[[1976,2],[2058,2]]], [2015,[11083.5,6563.33,0],[[1976,2],[2059,2]]],
+[2016,[10060.7,7908.27,0],[[1977,2],[2060,2],[2061,2]]], [2017,[10482,7241.29,0],[[1978,2],[2062,2]]], [2018,[9017.45,8576.15,0],[[1979,2],[2063,2]]], [2019,[8719.69,3994.94,0],[[1980,2],[2064,2]]], [2020,[9268.66,3969.68,0],[[1981,2],[2065,2]]], [2021,[9207.56,9317.54,0],[[1983,2],[2066,2]]],
+[2022,[9221.5,9226.2,0],[[1983,2],[2067,2]]], [2023,[9681.24,10028.3,0],[[1984,2],[2068,2]]], [2024,[9837.02,9750.69,0],[[1985,2],[2069,2]]], [2025,[9545.19,10738.5,0],[[1986,2],[2070,2]]], [2026,[9663.51,10522,0],[[1986,2],[2071,2]]], [2027,[8898.07,12195.8,0],[[1987,2],[2072,2],[2073,2],[2074,2],[2075,2]]],
+[2028,[8734.21,12196.3,0],[[1987,2],[2076,2]]], [2029,[8897.22,11947.1,0],[[1988,2],[2077,2]]], [2030,[9092.69,11981.7,0],[[1988,2],[2078,2]]], [2031,[7241.48,12682.1,0],[[1989,2],[2079,2]]], [2032,[6449.49,13287.7,0],[[1990,2],[2080,2]]], [2033,[5778.84,13545.4,1.90735e-006],[[1991,2],[2081,2]]],
+[2034,[3177.68,13275.9,9.53674e-007],[[1992,2],[2082,2]]], [2035,[3148.76,13198.8,0],[[1992,2],[2083,2]]], [2036,[3365.48,13335.7,1.90735e-006],[[1993,2],[2084,2]]], [2037,[4583.42,13356.8,0],[[1994,2],[2085,2]]], [2038,[4756.64,13651.9,0],[[1994,2],[2086,2]]], [2039,[4541.97,13604,0],[[1994,2],[2087,2]]],
+[2040,[5207.82,13584.2,0],[[1995,2],[2088,2]]], [2041,[3643.27,13445.8,0],[[1996,2],[2089,2]]], [2042,[4302.09,13097.5,0],[[1997,2],[2085,2]]], [2043,[8674.7,2613.72,0],[[1998,2],[2090,2]]], [2044,[9527.22,1976.23,0],[[1999,2],[2091,2]]], [2045,[10435,1433.7,1.90735e-006],[[2001,2],[2092,2]]],
+[2046,[10392.9,1533.49,0],[[2002,2],[2093,2]]], [2047,[8159.48,3691.4,-3.17891e-007],[[2003,2],[2094,2],[2095,2]]], [2048,[7814.02,3462.38,-9.53674e-007],[[2004,2],[2096,2]]], [2049,[8363.01,3198.31,0],[[2005,2],[2097,2]]], [2050,[8540.02,2988.91,0],[[2005,2],[2098,2]]], [2051,[748.28,12881.7,0],[[2007,2],[2099,2]]],
+[2052,[374.782,12964.9,0],[[2008,2],[2100,2],[2101,2],[2102,2],[2103,2]]], [2053,[1156.18,12465,0],[[2009,2],[2104,2]]], [2054,[2453.72,12767.4,-9.53674e-007],[[2010,2],[2105,2]]], [2055,[1345.42,12398,0],[[2011,2],[2104,2]]], [2056,[10885.9,6046.38,0],[[2012,2],[2106,2]]], [2057,[11158.7,6128.27,0],[[2013,2],[2107,2]]],
+[2058,[11479.5,6476.75,0],[[2014,2],[2108,2]]], [2059,[11120.2,6701.69,0],[[2015,2],[2109,2]]], [2060,[10033.3,7964.49,0],[[2016,2],[2110,2],[2111,2]]], [2061,[10150.2,7769.53,0],[[2016,2],[2112,2]]], [2062,[10636,7168.13,0],[[2017,2],[2113,2]]], [2063,[8991.13,8748.32,-9.53674e-007],[[2018,2],[2114,2],[2115,2]]],
+[2064,[8714.29,3868.05,0],[[2019,2],[2116,2]]], [2065,[9344.7,3851.51,9.53674e-007],[[2020,2],[2117,2]]], [2066,[9107.35,9197.78,0],[[2021,2],[2066,2],[2118,2],[2067,2],[2119,2]]], [2067,[9190.97,9178.58,0],[[2022,2],[2066,2],[2067,2],[2120,2],[2118,2],[2121,2]]], [2068,[9807.67,10100.9,1.90735e-006],[[2023,2],[2122,2]]], [2069,[9940.54,9707.05,-9.53674e-007],[[2024,2],[2123,2],[2124,2],[2125,2]]],
+[2070,[9564.15,10897.3,0],[[2025,2],[2126,2]]], [2071,[9802.6,10462.4,1.90735e-006],[[2026,2],[2127,2]]], [2072,[9052.47,12103.4,0],[[2027,2],[2128,2],[2078,2]]], [2073,[8748.25,12312.3,0],[[2027,2],[2129,2]]], [2074,[8879.98,12360.6,0],[[2027,2],[2130,2]]], [2075,[8945.05,12349.6,0],[[2027,2],[2131,2]]],
+[2076,[8624.25,12268.8,0],[[2028,2],[2132,2]]], [2077,[8916.45,12053.3,0],[[2029,2],[2133,2]]], [2078,[9107.56,12001.3,0],[[2030,2],[2072,2],[2133,2],[2134,2],[2128,2]]], [2079,[7240.95,12825.3,0],[[2031,2],[2135,2]]], [2080,[6492.79,13418.7,0],[[2032,2],[2136,2]]], [2081,[5746.31,13673.8,-9.53674e-007],[[2033,2],[2137,2]]],
+[2082,[3262.32,13399.9,0],[[2034,2],[2138,2]]], [2083,[3077.16,13287.1,0],[[2035,2],[2139,2]]], [2084,[3382.17,13476.9,0],[[2036,2],[2140,2]]], [2085,[4457.89,13221.5,0],[[2037,2],[2042,2]]], [2086,[4867.54,13747.5,0],[[2038,2],[2141,2]]], [2087,[4449.98,13707.1,0],[[2039,2],[2142,2]]],
+[2088,[5279.35,13690.7,0],[[2040,2],[2143,2]]], [2089,[3641.36,13577,0],[[2041,2],[2144,2]]], [2090,[8782.85,2774.8,9.53674e-007],[[2043,2],[2145,2]]], [2091,[9634.79,2022.8,-9.53674e-007],[[2044,2],[2146,2]]], [2092,[10592.3,1439.15,0],[[2045,2],[2147,2]]], [2093,[10501.9,1608.52,0],[[2046,2],[2148,2]]],
+[2094,[8273.01,3841.89,0],[[2047,2],[2149,2]]], [2095,[8116.37,3871.94,-9.53674e-007],[[2047,2],[2150,2]]], [2096,[7713.68,3581.6,0],[[2048,2],[2151,2]]], [2097,[8369.75,3320.32,0],[[2049,2],[2152,2]]], [2098,[8685.88,2950.66,0],[[2050,2],[2145,2]]], [2099,[834.866,12972.4,0],[[2051,2],[2153,2]]],
+[2100,[411.133,13168.1,0],[[2052,2],[2154,2]]], [2101,[538.664,13071.2,0],[[2052,2],[2155,2]]], [2102,[285.86,13100.2,0],[[2052,2],[2156,2]]], [2103,[170.446,12881,0],[[2052,2],[2157,2]]], [2104,[1283.41,12418.7,-1.90735e-006],[[2053,2],[2055,2]]], [2105,[2535.83,12871.5,9.53674e-007],[[2054,2],[2158,2]]],
+[2106,[10855.2,5923.55,9.53674e-007],[[2056,2],[2159,2]]], [2107,[11149.7,5996.03,0],[[2057,2],[2160,2]]], [2108,[11612.2,6478.78,0],[[2058,2],[2161,2]]], [2109,[11104,6798.16,1.90735e-006],[[2059,2],[2162,2]]], [2110,[10018,8012.99,3.17891e-007],[[2060,2],[2163,2],[2164,2]]], [2111,[9918.9,8017,0],[[2060,2],[2165,2]]],
+[2112,[10238.7,7655.66,0],[[2061,2],[2166,2]]], [2113,[10683.6,7156.3,0],[[2062,2],[2167,2],[2168,2]]], [2114,[9040.58,8895.92,9.53674e-007],[[2063,2],[2121,2]]], [2115,[8995.71,8922.95,-9.53674e-007],[[2063,2],[2169,2]]], [2116,[8720.46,3727.04,0],[[2064,2],[2170,2]]], [2117,[9370.14,3710.13,4.76837e-007],[[2065,2],[2171,2]]],
+[2118,[9121.3,9175.52,9.53674e-007],[[2066,2],[2067,2],[2169,2],[2119,2]]], [2119,[9031.84,9171.1,-3.17891e-007],[[2066,2],[2172,2],[2169,2],[2118,2],[2173,2]]], [2120,[9203.59,9022.05,0],[[2067,2],[2174,2]]], [2121,[9127,9044.54,0],[[2067,2],[2114,2],[2174,2],[2175,2]]], [2122,[9925.72,10183.8,-1.90735e-006],[[2068,2],[2176,2]]], [2123,[9983.22,9866.64,0],[[2069,2],[2177,2]]],
+[2124,[10065.8,9655.55,0],[[2069,2],[2178,2]]], [2125,[9950.69,9594.1,0],[[2069,2],[2179,2],[2180,2]]], [2126,[9575.72,10944.3,0],[[2070,2],[2181,2],[2182,2]]], [2127,[9882.37,10354,0],[[2071,2],[2183,2]]], [2128,[9145.8,12078.4,0],[[2072,2],[2078,2],[2184,2],[2185,2]]], [2129,[8623.69,12376.6,0],[[2073,2],[2186,2]]],
+[2130,[8867.59,12498.1,0],[[2074,2],[2187,2]]], [2131,[8981.46,12474,0],[[2075,2],[2188,2]]], [2132,[8547.36,12359.6,0],[[2076,2],[2189,2],[2186,2]]], [2133,[8991.58,12059,0],[[2077,2],[2078,2]]], [2134,[9213.35,11812.9,0],[[2078,2],[2190,2]]], [2135,[7233.27,12977.6,0],[[2079,2],[2191,2]]],
+[2136,[6517.75,13543.7,0],[[2080,2],[2192,2]]], [2137,[5717.94,13837.7,0],[[2081,2],[2193,2]]], [2138,[3343.48,13490.3,0],[[2082,2],[2140,2]]], [2139,[2992.89,13264.6,0],[[2083,2],[2194,2]]], [2140,[3395.27,13545.5,0],[[2084,2],[2138,2],[2195,2],[2196,2]]], [2141,[5033.48,13883.2,0],[[2086,2],[2197,2]]],
+[2142,[4354.25,13804.5,0],[[2087,2],[2198,2]]], [2143,[5335.04,13797.2,0],[[2088,2],[2199,2]]], [2144,[3640.28,13717,0],[[2089,2],[2200,2]]], [2145,[8795.32,2943.22,0],[[2090,2],[2098,2],[2201,2]]], [2146,[9734.83,2125.52,0],[[2091,2],[2202,2]]], [2147,[10741.7,1416.19,0],[[2092,2],[2203,2]]],
+[2148,[10590.8,1686.97,0],[[2093,2],[2204,2]]], [2149,[8352.95,3936.46,0],[[2094,2],[2149,2]]], [2150,[8050.88,3999.84,-9.53674e-007],[[2095,2],[2205,2]]], [2151,[7593.53,3659.01,-9.53674e-007],[[2096,2],[2206,2]]], [2152,[8418.3,3445.93,9.53674e-007],[[2097,2],[2207,2]]], [2153,[941.274,13097.6,0],[[2099,2],[2208,2]]],
+[2154,[420.019,13365.3,0],[[2100,2],[2209,2]]], [2155,[655.667,13153.5,-1.90735e-006],[[2101,2],[2210,2]]], [2156,[231.879,13235.1,1.90735e-006],[[2102,2],[2211,2]]], [2157,[57.8069,12811.7,0],[[2103,2],[2212,2]]], [2158,[2643.3,12989.8,-1.90735e-006],[[2105,2],[2213,2]]], [2159,[10855.7,5784.37,0],[[2106,2],[2214,2]]],
+[2160,[11120.3,5875.02,0],[[2107,2],[2160,2]]], [2161,[11732.2,6509.95,0],[[2108,2],[2215,2]]], [2162,[11039.7,6938.21,0],[[2109,2],[2216,2]]], [2163,[9975.78,8141.6,0],[[2110,2],[2217,2],[2218,2]]], [2164,[10143.5,8002.69,0],[[2110,2],[2219,2]]], [2165,[9826.03,8080.22,0],[[2111,2],[2220,2]]],
+[2166,[10336.8,7576.7,0],[[2112,2],[2221,2]]], [2167,[10806.3,7118.38,-3.17891e-007],[[2113,2],[2216,2],[2222,2]]], [2168,[10617.8,7300.82,0],[[2113,2],[2221,2]]], [2169,[9057.71,9058.11,0],[[2115,2],[2118,2],[2119,2],[2172,2]]], [2170,[8762.03,3576.93,0],[[2116,2],[2223,2]]], [2171,[9425.67,3516.6,0],[[2117,2],[2224,2]]],
+[2172,[9070.18,9110.03,0],[[2119,2],[2169,2]]], [2173,[8874.82,9126.45,0],[[2119,2],[2225,2]]], [2174,[9217.12,8952.46,0],[[2120,2],[2121,2],[2226,2]]], [2175,[9088.75,9095.23,0],[[2121,2]]], [2176,[10078.3,10243.8,0],[[2122,2],[2227,2]]], [2177,[9993.29,9980.45,0],[[2123,2],[2228,2]]],
+[2178,[10151.3,9673.04,9.53674e-007],[[2124,2],[2229,2]]], [2179,[10078.4,9602.94,9.53674e-007],[[2125,2],[2230,2]]], [2180,[9990.98,9450.57,-9.53674e-007],[[2125,2],[2231,2]]], [2181,[9725.15,11002.5,0],[[2126,2],[2232,2]]], [2182,[9568.08,11130.2,0],[[2126,2],[2233,2]]], [2183,[9949.67,10326.3,0],[[2127,2],[2234,2]]],
+[2184,[9197.25,12249.4,0],[[2128,2],[2235,2]]], [2185,[9287.83,12063.8,9.53674e-007],[[2128,2],[2236,2]]], [2186,[8516.93,12432.6,0],[[2129,2],[2132,2],[2237,2]]], [2187,[8859.45,12624,1.90735e-006],[[2130,2],[2238,2]]], [2188,[9023.54,12602.1,-3.8147e-006],[[2131,2],[2239,2]]], [2189,[8467.09,12446.2,0],[[2132,2],[2240,2]]],
+[2190,[9269.32,11703.1,0],[[2134,2],[2241,2]]], [2191,[7243.27,13101.8,0],[[2135,2],[2242,2]]], [2192,[6550.46,13655.9,-1.90735e-006],[[2136,2],[2243,2]]], [2193,[5672.57,13978.6,0],[[2137,2],[2244,2]]], [2194,[2853,13201.9,0],[[2139,2],[2245,2],[2213,2]]], [2195,[3413.13,13713.7,0],[[2140,2],[2246,2]]],
+[2196,[3529.84,13691.1,9.53674e-007],[[2140,2],[2200,2]]], [2197,[5176.9,14010.5,0],[[2141,2],[2247,2]]], [2198,[4308.56,13957.3,0],[[2142,2],[2248,2]]], [2199,[5376.67,13908.3,0],[[2143,2],[2249,2]]], [2200,[3627.64,13831.7,0],[[2144,2],[2196,2],[2250,2],[2251,2]]], [2201,[8809.83,3112.37,0],[[2145,2],[2252,2]]],
+[2202,[9854.56,2194.78,-1.90735e-006],[[2146,2],[2253,2]]], [2203,[10880.3,1429.53,0],[[2147,2],[2254,2]]], [2204,[10697.3,1800.07,0],[[2148,2],[2255,2]]], [2205,[7950.95,4077.37,9.53674e-007],[[2150,2],[2256,2]]], [2206,[7451.29,3690.16,0],[[2151,2],[2257,2]]], [2207,[8454.64,3556.06,0],[[2152,2],[2258,2]]],
+[2208,[1034.89,13203.6,1.90735e-006],[[2153,2],[2259,2]]], [2209,[433.587,13505.5,0],[[2154,2],[2260,2]]], [2210,[756.24,13227.4,0],[[2155,2],[2261,2]]], [2211,[200.911,13336.5,0],[[2156,2],[2262,2],[2211,2],[2263,2],[2264,2]]], [2212,[14.7022,12776.7,0],[[2157,2]]], [2213,[2756.56,13138.5,0],[[2158,2],[2194,2],[2245,2]]],
+[2214,[10801,5651.55,0],[[2159,2],[2265,2]]], [2215,[11808.1,6530.15,-2.38419e-007],[[2161,2],[2266,2],[2267,2],[2268,2]]], [2216,[10944.6,7062.25,0],[[2162,2],[2167,2],[2269,2]]], [2217,[9980.58,8199.55,0],[[2163,2],[2217,2],[2270,2]]], [2218,[9954.71,8343.91,0],[[2163,2],[2271,2]]], [2219,[10267,7953.14,9.53674e-007],[[2164,2],[2272,2]]],
+[2220,[9714.74,8100.07,0],[[2165,2],[2273,2]]], [2221,[10457.5,7471.48,0],[[2166,2],[2168,2]]], [2222,[10934.8,7181.44,9.53674e-007],[[2167,2],[2274,2]]], [2223,[8809.04,3462.31,0],[[2170,2],[2252,2]]], [2224,[9454.9,3364.74,0],[[2171,2],[2275,2]]], [2225,[8791.1,9139.46,-9.53674e-007],[[2173,2],[2276,2]]],
+[2226,[9284.25,8813.91,0],[[2174,2],[2277,2]]], [2227,[10109.3,10233.8,0],[[2176,2],[2278,2],[2279,2]]], [2228,[10008,10067,0],[[2177,2],[2279,2]]], [2229,[10164.7,9663.27,3.17891e-007],[[2178,2],[2280,2],[2230,2]]], [2230,[10126.3,9635.85,0],[[2179,2],[2229,2]]], [2231,[10023.8,9318.66,0],[[2180,2],[2281,2]]],
+[2232,[9861.19,11027.6,0],[[2181,2],[2282,2]]], [2233,[9556.24,11277.2,0],[[2182,2],[2283,2]]], [2234,[10012.6,10407.1,0],[[2183,2],[2284,2]]], [2235,[9217.81,12400.4,0],[[2184,2],[2285,2]]], [2236,[9433.86,12083.1,0],[[2185,2],[2286,2]]], [2237,[8441.91,12472,0],[[2186,2]]],
+[2238,[8858.94,12778.2,0],[[2187,2],[2287,2]]], [2239,[9045.43,12745.5,0],[[2188,2],[2288,2]]], [2240,[8329.32,12576.3,0],[[2189,2],[2289,2]]], [2241,[9357.89,11572.9,0],[[2190,2],[2290,2]]], [2242,[7273.53,13266.8,1.90735e-006],[[2191,2],[2291,2]]], [2243,[6606.82,13762.1,1.90735e-006],[[2192,2],[2292,2]]],
+[2244,[5627.1,14108.9,-9.53674e-007],[[2193,2],[2293,2]]], [2245,[2775.9,13179.9,-4.76837e-007],[[2194,2],[2213,2],[2294,2],[2295,2]]], [2246,[3435.26,13888.2,0],[[2195,2],[2296,2]]], [2247,[5204.25,14037.2,2.38419e-007],[[2197,2],[2297,2],[2298,2],[2299,2]]], [2248,[4364.68,14108.7,0],[[2198,2],[2300,2]]], [2249,[5406.56,13976,2.38419e-007],[[2199,2],[2301,2],[2299,2],[2302,2]]],
+[2250,[3602.78,14030.8,9.53674e-007],[[2200,2],[2303,2]]], [2251,[3744.65,13966.3,0],[[2200,2],[2304,2]]], [2252,[8812.15,3271.89,-9.53674e-007],[[2201,2],[2223,2]]], [2253,[9932.99,2228.76,-1.90735e-007],[[2202,2],[2305,2],[2306,2],[2307,2],[2308,2]]], [2254,[10912.9,1445.4,-4.76837e-007],[[2203,2],[2309,2],[2254,2],[2310,2]]], [2255,[10733.4,1836.53,2.38419e-007],[[2204,2],[2311,2],[2312,2],[2313,2]]],
+[2256,[7815.99,4149.15,9.53674e-007],[[2205,2],[2314,2]]], [2257,[7349.22,3783.32,-4.76837e-007],[[2206,2]]], [2258,[8368.39,3660.72,0],[[2207,2]]], [2259,[1133.93,13293.5,0],[[2208,2],[2315,2]]], [2260,[455.962,13660.9,1.90735e-006],[[2209,2],[2316,2]]], [2261,[894.279,13351.6,-1.90735e-006],[[2210,2],[2317,2]]],
+[2262,[193.352,13296.5,0],[[2211,2],[2318,2]]], [2263,[184.115,13469.3,6.35783e-007],[[2211,2],[2319,2],[2320,2]]], [2264,[266.836,13518.9,0],[[2211,2],[2321,2]]], [2265,[10754,5526.34,0],[[2214,2],[2322,2]]], [2266,[11864.7,6435.7,0],[[2215,2],[2323,2]]], [2267,[12014.3,6563.56,-9.53674e-007],[[2215,2],[2324,2]]],
+[2268,[11797.3,6599.33,-9.53674e-007],[[2215,2],[2325,2]]], [2269,[11099.4,7026.05,-9.53674e-007],[[2216,2],[2326,2]]], [2270,[10042.6,8366.79,0],[[2217,2],[2327,2]]], [2271,[9938.59,8466.45,0],[[2218,2],[2328,2]]], [2272,[10354.5,7990.19,-6.35783e-007],[[2219,2],[2272,2],[2329,2]]], [2273,[9632.65,8210.61,0],[[2220,2],[2330,2]]],
+[2274,[11032.4,7272.79,0],[[2222,2],[2331,2]]], [2275,[9467.93,3304.55,0],[[2224,2],[2332,2],[2275,2]]], [2276,[8685.37,9184.63,0],[[2225,2],[2333,2]]], [2277,[9319.81,8723.47,-3.17891e-007],[[2226,2],[2334,2],[2335,2]]], [2278,[10047.7,10331.2,0],[[2227,2],[2284,2]]], [2279,[10044.8,10149.9,0],[[2227,2],[2228,2]]],
+[2280,[10294,9670.58,0],[[2229,2],[2336,2]]], [2281,[10028.6,9196.58,0],[[2231,2],[2337,2]]], [2282,[10055.8,11093.2,0],[[2232,2],[2338,2],[2339,2],[2340,2]]], [2283,[9557.46,11305.3,0],[[2233,2],[2341,2],[2290,2]]], [2284,[10053.2,10444.2,0],[[2234,2],[2278,2],[2342,2]]], [2285,[9168.46,12532.6,0],[[2235,2],[2343,2]]],
+[2286,[9591,12137.3,0],[[2236,2],[2344,2]]], [2287,[8842.6,12944.4,0],[[2238,2],[2345,2]]], [2288,[9041.78,12903,0],[[2239,2],[2346,2]]], [2289,[8191.13,12643.8,0],[[2240,2],[2347,2]]], [2290,[9497.28,11454.5,0],[[2241,2],[2283,2]]], [2291,[7279.09,13282.4,0],[[2242,2],[2348,2],[2349,2],[2350,2]]],
+[2292,[6662.56,13864.3,0],[[2243,2],[2351,2],[2352,2],[2353,2]]], [2293,[5586.21,14227.4,-2.38419e-007],[[2244,2],[2354,2],[2355,2],[2356,2]]], [2294,[2851.1,13333.3,0],[[2245,2],[2357,2]]], [2295,[2597.51,13187.4,1.90735e-006],[[2245,2],[2358,2]]], [2296,[3445.86,14045.6,0],[[2246,2],[2359,2]]], [2297,[5324.98,14152,9.53674e-007],[[2247,2],[2360,2]]],
+[2298,[5100.02,14080.9,0],[[2247,2],[2361,2]]], [2299,[5321.47,13999.2,0],[[2247,2],[2249,2]]], [2300,[4396.77,14157.1,0],[[2248,2],[2362,2],[2363,2]]], [2301,[5556.08,13928.9,0],[[2249,2],[2364,2],[2365,2],[2354,2]]], [2302,[5479.75,14169.9,9.53674e-007],[[2249,2],[2366,2],[2355,2],[2360,2]]], [2303,[3573.41,14178.3,0],[[2250,2],[2367,2]]],
+[2304,[3856.6,14074.9,0],[[2251,2],[2368,2]]], [2305,[9881.72,2391.08,-1.90735e-006],[[2253,2],[2369,2]]], [2306,[9859.88,2103.81,0],[[2253,2],[2370,2]]], [2307,[9964.02,2068.87,0],[[2253,2],[2371,2]]], [2308,[10130,2355.28,-9.53674e-007],[[2253,2],[2372,2]]], [2309,[10972.8,1470.83,3.17891e-007],[[2254,2],[2373,2],[2374,2]]],
+[2310,[10853.1,1591.72,9.53674e-007],[[2254,2],[2313,2]]], [2311,[10659.6,2002.83,-9.53674e-007],[[2255,2],[2375,2]]], [2312,[10870.5,1939.93,3.8147e-006],[[2255,2],[2376,2]]], [2313,[10820,1668.05,0],[[2255,2],[2310,2]]], [2314,[7778.6,4257.25,0],[[2256,2],[2377,2]]], [2315,[1241.78,13424.6,0],[[2259,2],[2378,2]]],
+[2316,[475.234,13787.1,-1.90735e-006],[[2260,2],[2379,2]]], [2317,[1030.38,13464.8,0],[[2261,2],[2380,2]]], [2318,[148.994,13119.1,-3.8147e-006],[[2262,2],[2381,2]]], [2319,[130.498,13669.8,0],[[2263,2],[2382,2]]], [2320,[220.981,13615.3,0],[[2263,2],[2383,2]]], [2321,[325.266,13687.7,-1.90735e-006],[[2264,2],[2384,2]]],
+[2322,[10837.2,5402.93,-9.53674e-007],[[2265,2],[2385,2]]], [2323,[11935.7,6437.15,0],[[2266,2],[2386,2]]], [2324,[12123.7,6563.55,-2.38419e-007],[[2267,2],[2387,2],[2324,2],[2388,2]]], [2325,[11784.1,6660.48,0],[[2268,2],[2389,2]]], [2326,[11134.6,7016.96,-3.17891e-007],[[2269,2],[2390,2],[2391,2]]], [2327,[10045.7,8465.52,0],[[2270,2],[2392,2]]],
+[2328,[9871.47,8573.84,-9.53674e-007],[[2271,2],[2393,2]]], [2329,[10462.7,7997.58,9.53674e-007],[[2272,2],[2394,2]]], [2330,[9558.1,8332.27,0],[[2273,2],[2395,2]]], [2331,[11118.8,7353.39,9.53674e-007],[[2274,2],[2396,2]]], [2332,[9571.5,3168.71,0],[[2275,2],[2397,2]]], [2333,[8611.86,9212.85,-4.76837e-007],[[2276,2],[2398,2]]],
+[2334,[9465.65,8812.67,0],[[2277,2],[2399,2]]], [2335,[9368.62,8526.58,0],[[2277,2],[2395,2]]], [2336,[10400.7,9647.53,0],[[2280,2],[2400,2]]], [2337,[10066.2,9089.66,0],[[2281,2],[2401,2]]], [2338,[9858.03,11166.7,0],[[2282,2],[2341,2]]], [2339,[10213.1,11106.5,0],[[2282,2],[2402,2]]],
+[2340,[10269,11055.3,0],[[2282,2],[2403,2]]], [2341,[9710.79,11250.2,-9.53674e-007],[[2283,2],[2338,2]]], [2342,[10156.4,10595.9,0],[[2284,2],[2404,2]]], [2343,[9106.1,12692.9,0],[[2285,2],[2405,2]]], [2344,[9730.14,12164.1,0],[[2286,2],[2406,2]]], [2345,[8849.05,13084.5,0],[[2287,2],[2407,2]]],
+[2346,[9072.34,12969,0],[[2288,2],[2405,2],[2408,2]]], [2347,[8069.7,12725.3,0],[[2289,2],[2409,2]]], [2348,[7395.23,13167.1,-1.90735e-006],[[2291,2],[2410,2]]], [2349,[7166.69,13384.9,0],[[2291,2],[2411,2]]], [2350,[7297.79,13460.7,0],[[2291,2],[2412,2]]], [2351,[6509.16,13988.3,0],[[2292,2],[2413,2]]],
+[2352,[6819.87,13729.6,-1.90735e-006],[[2292,2],[2414,2]]], [2353,[6770.37,14017.4,0],[[2292,2],[2415,2]]], [2354,[5565.75,14013,0],[[2293,2],[2301,2]]], [2355,[5559.29,14325.5,-4.76837e-007],[[2293,2],[2302,2],[2366,2],[2356,2],[2416,2]]], [2356,[5618.35,14322.6,0],[[2293,2],[2355,2],[2417,2],[2416,2]]], [2357,[2909.68,13462,0],[[2294,2],[2418,2]]],
+[2358,[2464.44,13302.4,0],[[2295,2],[2419,2]]], [2359,[3470.96,14195.5,0],[[2296,2],[2420,2]]], [2360,[5421.76,14247.2,0],[[2297,2],[2302,2],[2366,2]]], [2361,[5031.56,14097.4,0],[[2298,2],[2421,2],[2361,2]]], [2362,[4456.06,14240.7,0],[[2300,2],[2422,2],[2423,2],[2424,2]]], [2363,[4562.08,14125,0],[[2300,2],[2425,2]]],
+[2364,[5677.74,13883,0],[[2301,2]]], [2365,[5566.47,13886.3,-9.53674e-007],[[2301,2]]], [2366,[5492.45,14292.7,-3.8147e-007],[[2302,2],[2355,2],[2360,2],[2366,2],[2416,2]]], [2367,[3552.07,14279.3,-3.17891e-007],[[2303,2],[2426,2],[2420,2],[2427,2]]], [2368,[3954.8,14147.9,-9.53674e-007],[[2304,2],[2428,2]]], [2369,[9817.38,2531.79,9.53674e-007],[[2305,2],[2429,2]]],
+[2370,[9788.15,1993.02,0],[[2306,2],[2430,2]]], [2371,[9996.91,1942.52,0],[[2307,2],[2431,2]]], [2372,[10237.7,2394.83,-3.17891e-007],[[2308,2],[2372,2],[2432,2]]], [2373,[11120.7,1529.74,0],[[2309,2],[2433,2]]], [2374,[10947.5,1671,-1.90735e-006],[[2309,2],[2434,2]]], [2375,[10579.1,2128.99,-1.90735e-006],[[2311,2],[2435,2]]],
+[2376,[10896.3,1958.33,9.53674e-007],[[2312,2],[2436,2],[2434,2],[2437,2]]], [2377,[7727.38,4388.18,0],[[2314,2],[2438,2],[2439,2]]], [2378,[1254.48,13568,0],[[2315,2],[2440,2]]], [2379,[495.466,13908.4,0],[[2316,2],[2441,2]]], [2380,[1139.12,13539.4,0],[[2317,2],[2440,2]]], [2381,[97.7069,13012,0],[[2318,2],[2442,2]]],
+[2382,[75.6595,13812.2,0],[[2319,2],[2443,2]]], [2383,[275.04,13786.2,-1.90735e-006],[[2320,2],[2444,2]]], [2384,[371.676,13869,0],[[2321,2],[2445,2]]], [2385,[10948.8,5282.77,-6.35783e-007],[[2322,2],[2446,2],[2447,2]]], [2386,[11996,6411.96,0],[[2323,2],[2448,2]]], [2387,[12266.8,6495.67,9.53674e-007],[[2324,2],[2449,2]]],
+[2388,[12084.2,6745.51,0],[[2324,2],[2450,2]]], [2389,[11773.4,6679.15,3.17891e-007],[[2325,2],[2451,2],[2452,2]]], [2390,[11193.4,7121.93,0],[[2326,2],[2453,2]]], [2391,[11284.5,6970.69,0],[[2326,2],[2454,2]]], [2392,[10067.7,8610.03,0],[[2327,2],[2455,2]]], [2393,[9786.69,8681.52,0],[[2328,2],[2456,2]]],
+[2394,[10544.9,7994.51,2.38419e-007],[[2329,2],[2394,2],[2457,2],[2458,2]]], [2395,[9469.36,8434.32,0],[[2330,2],[2335,2]]], [2396,[11171.5,7414.33,3.17891e-007],[[2331,2],[2459,2],[2453,2],[2460,2]]], [2397,[9657.38,3015.98,9.53674e-007],[[2332,2],[2461,2]]], [2398,[8528.16,9209.8,0],[[2333,2],[2462,2]]], [2399,[9586.62,8877.61,-9.53674e-007],[[2334,2],[2463,2]]],
+[2400,[10487.6,9610.79,0],[[2336,2],[2464,2]]], [2401,[10081.8,8930.24,0],[[2337,2],[2455,2]]], [2402,[10355,11124.7,0],[[2339,2],[2465,2]]], [2403,[10296.1,11055.1,0],[[2340,2],[2466,2],[2465,2],[2467,2]]], [2404,[10176.8,10649.1,-3.17891e-007],[[2342,2],[2466,2],[2468,2]]], [2405,[9064.72,12854.7,0],[[2343,2],[2346,2]]],
+[2406,[9871.52,12176.3,0],[[2344,2],[2469,2]]], [2407,[8833.63,13223.9,1.90735e-006],[[2345,2],[2470,2]]], [2408,[9125.98,13162.1,0],[[2346,2],[2471,2]]], [2409,[7970.09,12818.8,1.90735e-006],[[2347,2],[2472,2]]], [2410,[7521.02,13081.3,0],[[2348,2],[2473,2]]], [2411,[7040.3,13503.6,0],[[2349,2],[2414,2]]],
+[2412,[7318.51,13618.7,0],[[2350,2],[2474,2]]], [2413,[6378.29,14055,1.90735e-006],[[2351,2],[2475,2]]], [2414,[6941.28,13598.4,0],[[2352,2],[2411,2]]], [2415,[6836.85,14189.2,0],[[2353,2],[2476,2]]], [2416,[5541.31,14366.5,2.38419e-007],[[2355,2],[2356,2],[2366,2],[2477,2],[2478,2],[2479,2]]], [2417,[5672.25,14149.4,0],[[2356,2],[2480,2]]],
+[2418,[2978.56,13585.5,0],[[2357,2],[2481,2]]], [2419,[2338.44,13388.4,0],[[2358,2],[2482,2]]], [2420,[3473.29,14315.2,3.17891e-007],[[2359,2],[2367,2],[2483,2],[2426,2]]], [2421,[4873.61,14115.7,-1.90735e-006],[[2361,2],[2425,2]]], [2422,[4561.24,14398.8,0],[[2362,2],[2484,2]]], [2423,[4268.63,14218.2,0],[[2362,2],[2428,2]]],
+[2424,[4635.8,14259.2,-9.53674e-007],[[2362,2],[2485,2]]], [2425,[4724.67,14107.9,0],[[2363,2],[2421,2]]], [2426,[3523.05,14349.4,0],[[2367,2],[2420,2],[2486,2]]], [2427,[3691.95,14253.3,0],[[2367,2],[2487,2]]], [2428,[4014.25,14216.6,0],[[2368,2],[2423,2],[2488,2],[2487,2]]], [2429,[9762.77,2715.05,-9.53674e-007],[[2369,2],[2461,2]]],
+[2430,[9710.74,1879.2,9.53674e-007],[[2370,2],[2489,2]]], [2431,[10060.7,1802.38,0],[[2371,2],[2490,2]]], [2432,[10335.7,2445.89,0],[[2372,2],[2491,2],[2492,2]]], [2433,[11253.2,1593.01,0],[[2373,2],[2493,2],[2494,2],[2495,2],[2496,2]]], [2434,[10931.7,1804.76,-9.53674e-007],[[2374,2],[2376,2]]], [2435,[10512.4,2257.29,0],[[2375,2],[2497,2],[2492,2]]],
+[2436,[11050.8,2038.69,0],[[2376,2],[2498,2]]], [2437,[10872.2,2159.61,0],[[2376,2],[2499,2]]], [2438,[7774.73,4561.53,9.53674e-007],[[2377,2],[2500,2]]], [2439,[7667.13,4538.51,0],[[2377,2],[2501,2],[2439,2],[2502,2],[2500,2]]], [2440,[1240.19,13622.9,6.35783e-007],[[2378,2],[2380,2],[2503,2]]], [2441,[526.934,14036.1,-4.76837e-007],[[2379,2],[2504,2],[2505,2],[2506,2],[2445,2]]],
+[2442,[32.3162,12881.9,0],[[2381,2],[2507,2]]], [2443,[10.1952,13902.4,0],[[2382,2]]], [2444,[298.074,13915,0],[[2383,2],[2508,2]]], [2445,[420.969,13988.8,0],[[2384,2],[2441,2],[2506,2]]], [2446,[11070.7,5154.11,0],[[2385,2],[2509,2]]], [2447,[11127,5359.95,0],[[2385,2],[2510,2]]],
+[2448,[12090.8,6347.1,0],[[2386,2],[2511,2]]], [2449,[12354.8,6479.61,0],[[2387,2],[2512,2],[2513,2],[2514,2]]], [2450,[11972.9,6806.26,3.17891e-007],[[2388,2],[2452,2],[2515,2]]], [2451,[11717.6,6774.24,0],[[2389,2],[2516,2]]], [2452,[11846.9,6739.25,9.53674e-007],[[2389,2],[2450,2]]], [2453,[11199.6,7271.67,0],[[2390,2],[2396,2],[2459,2]]],
+[2454,[11422.2,6962.23,9.53674e-007],[[2391,2],[2517,2]]], [2455,[10088.4,8801.39,0],[[2392,2],[2401,2]]], [2456,[9807.29,8800.22,0],[[2393,2],[2463,2],[2518,2]]], [2457,[10656,7910.62,0],[[2394,2],[2519,2]]], [2458,[10674.1,8053.28,0],[[2394,2],[2520,2]]], [2459,[11207.9,7332.44,-4.76837e-007],[[2396,2],[2453,2],[2521,2],[2459,2]]],
+[2460,[11088.8,7539.62,-9.53674e-007],[[2396,2],[2522,2]]], [2461,[9725.25,2838.42,0],[[2397,2],[2429,2]]], [2462,[8448.87,9154.07,0],[[2398,2],[2523,2]]], [2463,[9712.23,8836.89,0],[[2399,2],[2456,2]]], [2464,[10539.1,9533.94,0],[[2400,2],[2524,2]]], [2465,[10404.8,11122.2,-2.38419e-007],[[2402,2],[2403,2],[2525,2],[2467,2],[2526,2]]],
+[2466,[10203.6,10902.2,0],[[2403,2],[2404,2]]], [2467,[10427.5,11006.1,9.53674e-008],[[2403,2],[2465,2],[2527,2],[2525,2],[2528,2],[2529,2]]], [2468,[10256.1,10763.7,0],[[2404,2],[2529,2]]], [2469,[10003,12195.6,0],[[2406,2],[2530,2]]], [2470,[8819.56,13410.1,-1.90735e-006],[[2407,2],[2531,2]]], [2471,[9130.47,13298.4,0],[[2408,2],[2532,2]]],
+[2472,[7826.94,12923.4,0],[[2409,2],[2533,2]]], [2473,[7662.43,13013.5,0],[[2410,2],[2533,2]]], [2474,[7332.23,13787.1,0],[[2412,2],[2534,2]]], [2475,[6242.58,14127.3,0],[[2413,2],[2535,2]]], [2476,[6902.58,14369.7,1.90735e-006],[[2415,2],[2536,2]]], [2477,[5596.19,14388.6,0],[[2416,2],[2537,2],[2478,2],[2538,2]]],
+[2478,[5525.07,14396.5,-3.17891e-007],[[2416,2],[2477,2],[2537,2],[2539,2],[2479,2]]], [2479,[5493.07,14359.4,0],[[2416,2],[2478,2],[2539,2]]], [2480,[5692.44,14020.4,0],[[2417,2],[2540,2]]], [2481,[3062.22,13739.5,0],[[2418,2],[2541,2]]], [2482,[2210.18,13513.5,0],[[2419,2],[2542,2]]], [2483,[3359.05,14294.3,0],[[2420,2],[2543,2],[2544,2],[2545,2]]],
+[2484,[4606.35,14530.5,0],[[2422,2],[2546,2]]], [2485,[4735.83,14284.8,0],[[2424,2],[2547,2]]], [2486,[3517.82,14481.5,0],[[2426,2],[2548,2]]], [2487,[3821.1,14226.7,0],[[2427,2],[2428,2]]], [2488,[4105.23,14371.5,-9.53674e-007],[[2428,2],[2549,2]]], [2489,[9611.78,1768.07,0],[[2430,2],[2550,2]]],
+[2490,[10085.7,1647.62,3.8147e-006],[[2431,2],[2551,2]]], [2491,[10458.3,2559.12,0],[[2432,2],[2552,2]]], [2492,[10451.4,2371.63,0],[[2432,2],[2435,2],[2497,2]]], [2493,[11253.9,1383.75,0],[[2433,2],[2553,2]]], [2494,[11231.7,1727.9,0],[[2433,2],[2554,2]]], [2495,[11407.9,1652.82,0],[[2433,2],[2555,2]]],
+[2496,[11358.9,1787.94,0],[[2433,2],[2556,2]]], [2497,[10488.4,2310.22,0],[[2435,2],[2492,2],[2497,2]]], [2498,[11159.6,2108.81,2.38419e-007],[[2436,2],[2557,2],[2558,2],[2559,2]]], [2499,[10864.8,2333.37,0],[[2437,2],[2560,2]]], [2500,[7796.99,4584.19,0],[[2438,2],[2439,2],[2561,2],[2562,2]]], [2501,[7631.56,4583.29,0],[[2439,2],[2563,2],[2564,2]]],
+[2502,[7757.71,4647.1,0],[[2439,2],[2565,2]]], [2503,[1379.04,13733.4,-1.90735e-006],[[2440,2],[2566,2]]], [2504,[701.132,14019.8,1.90735e-006],[[2441,2],[2567,2]]], [2505,[593.727,14204.8,0],[[2441,2],[2568,2]]], [2506,[449.943,14048.9,-1.43051e-006],[[2441,2],[2445,2],[2508,2],[2569,2]]], [2507,[9.2294,12835.2,9.53674e-007],[[2442,2]]],
+[2508,[318.868,14064.1,4.76837e-007],[[2444,2],[2506,2],[2570,2],[2571,2]]], [2509,[11170.8,5075.6,-9.53674e-007],[[2446,2],[2572,2]]], [2510,[11302.2,5405.97,0],[[2447,2],[2573,2]]], [2511,[12174.2,6274.39,0],[[2448,2],[2574,2]]], [2512,[12388.9,6380.23,0],[[2449,2],[2575,2],[2514,2],[2512,2]]], [2513,[12512.8,6541.81,0],[[2449,2],[2576,2]]],
+[2514,[12385.3,6393.59,0],[[2512,2],[2628,2],[2514,2],[2449,2]]], [2515,[12055.5,6908.94,0],[[2450,2],[2577,2]]], [2516,[11622.6,6865.71,9.53674e-007],[[2451,2],[2517,2]]], [2517,[11470.9,6954.49,3.17891e-007],[[2454,2],[2516,2],[2578,2]]], [2518,[9941,8798.43,0],[[2456,2],[2518,2]]], [2519,[10774.8,7846.36,-9.53674e-007],[[2457,2],[2579,2]]],
+[2520,[10776.5,8090.71,0],[[2458,2],[2580,2]]], [2521,[11316.1,7211.34,0],[[2459,2],[2581,2]]], [2522,[11003.7,7637.76,-9.53674e-007],[[2460,2],[2579,2]]], [2523,[8340.69,9187.99,0],[[2462,2],[2582,2]]], [2524,[10664.9,9572.41,0],[[2464,2],[2583,2]]], [2525,[10471.5,11058.7,-4.76837e-007],[[2467,2],[2526,2]]],
+[2526,[10567.7,11183.4,0],[[2465,2],[2525,2],[2584,2]]], [2527,[10633.5,10985.1,0],[[2467,2],[2585,2]]], [2528,[10555.4,10924.9,-4.76837e-007],[[2467,2],[2586,2]]], [2529,[10320.7,10864.2,0],[[2467,2],[2468,2]]], [2530,[10159,12200.6,0],[[2469,2],[2587,2]]], [2531,[8798.76,13585.5,0],[[2470,2],[2588,2]]],
+[2532,[9136.29,13349.8,6.35783e-007],[[2471,2],[2589,2],[2590,2]]], [2533,[7725.71,12981.6,0],[[2472,2],[2473,2]]], [2534,[7332.26,13947.1,0],[[2474,2],[2591,2]]], [2535,[6116.17,14198,0],[[2475,2],[2592,2]]], [2536,[6948.2,14506.3,4.76837e-007],[[2476,2],[2593,2],[2594,2],[2595,2]]], [2537,[5575.07,14427.5,0],[[2477,2],[2478,2],[2596,2]]],
+[2538,[5692.66,14416.5,0],[[2477,2],[2538,2],[2597,2],[2598,2]]], [2539,[5468.8,14384.8,-4.76837e-007],[[2478,2],[2479,2],[2599,2],[2600,2],[2596,2]]], [2540,[5716.87,13894.6,0],[[2480,2],[2540,2]]], [2541,[3141.66,13865.1,0],[[2481,2],[2601,2]]], [2542,[2110.3,13667.8,0],[[2482,2],[2602,2]]], [2543,[3279.85,14146.8,-9.53674e-007],[[2483,2],[2601,2]]],
+[2544,[3376.04,14395.5,0],[[2483,2],[2603,2],[2544,2],[2604,2]]], [2545,[3136.15,14251.1,0],[[2483,2],[2605,2]]], [2546,[4659.84,14677,0],[[2484,2],[2606,2]]], [2547,[4898.1,14333.9,-9.53674e-007],[[2485,2],[2607,2]]], [2548,[3565.43,14607.2,9.53674e-007],[[2486,2],[2608,2]]], [2549,[4203.54,14491.2,0],[[2488,2],[2609,2]]],
+[2550,[9468.72,1750.01,0],[[2489,2]]], [2551,[10095.6,1569.81,-1.90735e-006],[[2490,2]]], [2552,[10568.2,2630.46,0],[[2491,2],[2610,2]]], [2553,[11287.9,1238.2,0],[[2493,2],[2611,2]]], [2554,[11231.4,1858.51,0],[[2494,2],[2557,2]]], [2555,[11522.6,1706.25,0],[[2495,2],[2612,2]]],
+[2556,[11428.4,1934.87,0],[[2496,2],[2613,2]]], [2557,[11215.3,1920.51,0],[[2498,2],[2554,2]]], [2558,[11110,2318.86,1.90735e-006],[[2498,2],[2614,2]]], [2559,[11299,2161.99,-9.53674e-007],[[2498,2],[2615,2]]], [2560,[10866.6,2466.42,-9.53674e-007],[[2499,2],[2616,2]]], [2561,[7862.1,4747.23,9.53674e-007],[[2500,2],[2617,2]]],
+[2562,[7769.02,4630.64,0],[[2500,2]]], [2563,[7524.59,4513.17,0],[[2501,2],[2618,2]]], [2564,[7541.79,4731.96,-9.53674e-007],[[2501,2],[2619,2]]], [2565,[7726.17,4733.44,0],[[2502,2]]], [2566,[1521.13,13810.1,0],[[2503,2],[2620,2]]], [2567,[861.346,14003.8,0],[[2504,2],[2621,2]]],
+[2568,[654.621,14351.6,0],[[2505,2],[2622,2]]], [2569,[507.292,14231.2,1.90735e-006],[[2506,2],[2623,2]]], [2570,[334.822,14219.6,0],[[2508,2],[2624,2]]], [2571,[128.489,14077.8,0],[[2508,2],[2625,2]]], [2572,[11315.1,5001.3,0],[[2509,2],[2626,2]]], [2573,[11419.9,5447.8,0],[[2510,2]]],
+[2574,[12244,6229.16,0],[[2511,2],[2627,2],[2574,2]]], [2575,[12363.4,6296.88,0],[[2512,2]]], [2576,[12589.1,6556.67,0],[[2513,2],[2629,2]]], [2577,[12086.6,6939.04,0],[[2515,2],[2630,2],[2577,2]]], [2578,[11666.3,6939.34,9.53674e-007],[[2517,2],[2631,2]]], [2579,[10884.9,7782.44,0],[[2519,2],[2522,2]]],
+[2580,[10922.4,8122.9,0],[[2520,2],[2632,2]]], [2581,[11466.6,7144.03,0],[[2521,2],[2633,2]]], [2582,[8267.31,9240.95,0],[[2523,2],[2634,2],[2635,2]]], [2583,[10807.7,9568.55,9.53674e-007],[[2524,2],[2636,2]]], [2584,[10764,11293.7,4.76837e-007],[[2526,2],[2637,2]]], [2585,[10796.6,10969.9,0],[[2527,2],[2638,2]]],
+[2586,[10672.7,10848.9,0],[[2528,2],[2639,2]]], [2587,[10305.8,12129,0],[[2530,2],[2640,2]]], [2588,[8771.22,13748.2,0],[[2531,2],[2641,2]]], [2589,[9221.04,13492.2,0],[[2532,2],[2642,2]]], [2590,[9132.65,13541,0],[[2532,2],[2643,2]]], [2591,[7332.35,14073.8,0],[[2534,2],[2644,2]]],
+[2592,[5991.21,14281.8,-9.53674e-007],[[2535,2],[2645,2]]], [2593,[7035.26,14714.4,-1.90735e-006],[[2536,2],[2646,2]]], [2594,[6797.91,14506.8,0],[[2536,2],[2647,2]]], [2595,[7094.47,14519.7,1.90735e-006],[[2536,2],[2648,2]]], [2596,[5542.66,14499.7,4.76837e-007],[[2537,2],[2649,2],[2539,2],[2650,2],[2598,2]]], [2597,[5801.99,14426.4,-2.38419e-007],[[2538,2],[2651,2],[2652,2],[2645,2]]],
+[2598,[5638.79,14545.6,0],[[2538,2],[2596,2]]], [2599,[5421.5,14546.5,-9.53674e-007],[[2539,2],[2653,2],[2649,2]]], [2600,[5291.19,14416.1,0],[[2539,2],[2654,2]]], [2601,[3192.16,13980.4,0],[[2541,2],[2543,2]]], [2602,[2048.35,13763.4,0],[[2542,2],[2655,2]]], [2603,[3421.81,14538.7,9.53674e-007],[[2544,2],[2656,2]]],
+[2604,[3236.59,14443.2,0],[[2544,2],[2657,2]]], [2605,[2991.49,14236.5,-9.53674e-007],[[2545,2],[2658,2]]], [2606,[4718.74,14826.3,9.53674e-007],[[2546,2],[2659,2]]], [2607,[5041.37,14374.8,0],[[2547,2],[2654,2]]], [2608,[3615.33,14746.8,0],[[2548,2],[2660,2]]], [2609,[4319.3,14612.5,0],[[2549,2],[2661,2]]],
+[2610,[10662.4,2620,0],[[2552,2],[2610,2],[2616,2]]], [2611,[11317.8,1064.66,0],[[2553,2],[2662,2]]], [2612,[11649.5,1721.9,0],[[2555,2],[2663,2]]], [2613,[11514.4,2065.19,0],[[2556,2],[2664,2]]], [2614,[11086.7,2502.02,1.90735e-006],[[2558,2],[2665,2]]], [2615,[11396,2269.13,0],[[2559,2],[2666,2]]],
+[2616,[10852.7,2589.93,0],[[2560,2],[2610,2],[2665,2]]], [2617,[7842.02,4829.54,0],[[2561,2]]], [2618,[7408.23,4607.31,0],[[2563,2],[2667,2]]], [2619,[7452.01,4831.68,0],[[2564,2],[2668,2]]], [2620,[1658.68,13865.2,0],[[2566,2],[2669,2]]], [2621,[997.759,14001.7,0],[[2567,2],[2670,2]]],
+[2622,[722.729,14495.4,1.90735e-006],[[2568,2],[2671,2]]], [2623,[568.157,14375,0],[[2569,2],[2672,2]]], [2624,[352.297,14353.2,0],[[2570,2],[2673,2]]], [2625,[15.1923,14093,0],[[2571,2]]], [2626,[11444.1,4960.49,0],[[2572,2],[2674,2]]], [2627,[12379.7,6174.44,9.53674e-007],[[2574,2],[2675,2]]],
+[2628,[12387.9,6413.74,0],[[2514,2]]], [2629,[12666.9,6575.85,0],[[2576,2],[2676,2]]], [2630,[12144.1,6996.92,3.17891e-007],[[2577,2],[2677,2],[2678,2]]], [2631,[11796.9,6985.4,0],[[2578,2],[2679,2]]], [2632,[11076.6,8086.08,0],[[2580,2],[2680,2]]], [2633,[11568.8,7098.47,0],[[2581,2],[2681,2]]],
+[2634,[8192.3,9216.58,0],[[2582,2]]], [2635,[8305.42,9298.2,0],[[2582,2]]], [2636,[10902.2,9567.28,-9.53674e-007],[[2583,2],[2682,2]]], [2637,[10924,11368.7,-9.53674e-007],[[2584,2],[2683,2]]], [2638,[10935.7,10927.3,-9.53674e-007],[[2585,2],[2684,2]]], [2639,[10785,10770,0],[[2586,2],[2685,2],[2686,2]]],
+[2640,[10443.2,12083.4,9.53674e-007],[[2587,2],[2687,2]]], [2641,[8729.29,13893,0],[[2588,2],[2688,2]]], [2642,[9291.64,13627.6,-9.53674e-007],[[2589,2],[2689,2]]], [2643,[9139.49,13707.5,9.53674e-007],[[2590,2],[2690,2]]], [2644,[7327.38,14240.7,0],[[2591,2],[2691,2]]], [2645,[5875.13,14367.6,9.53674e-007],[[2592,2],[2597,2]]],
+[2646,[7082.83,14864.8,0],[[2593,2],[2692,2]]], [2647,[6660.51,14477.9,0],[[2594,2],[2693,2]]], [2648,[7269.54,14530.1,0],[[2595,2],[2694,2]]], [2649,[5467.44,14472.8,0],[[2596,2],[2599,2]]], [2650,[5520.14,14554.6,0],[[2596,2],[2695,2],[2696,2]]], [2651,[5704.65,14546.1,0],[[2597,2],[2697,2]]],
+[2652,[5976.63,14424,-9.53674e-007],[[2597,2],[2698,2]]], [2653,[5318.01,14668.4,0],[[2599,2],[2699,2]]], [2654,[5130.67,14388.4,0],[[2600,2],[2607,2]]], [2655,[1988.94,13867.3,0],[[2602,2],[2700,2]]], [2656,[3394.3,14702.7,-9.53674e-007],[[2603,2],[2701,2]]], [2657,[3076.05,14506.3,0],[[2604,2],[2702,2]]],
+[2658,[2840.75,14210,0],[[2605,2],[2703,2]]], [2659,[4761.62,14962.8,-9.53674e-007],[[2606,2],[2704,2]]], [2660,[3689.92,14890,0],[[2608,2],[2705,2]]], [2661,[4381.58,14730,0],[[2609,2],[2706,2]]], [2662,[11362.2,880.326,0],[[2611,2],[2707,2]]], [2663,[11797.6,1751.6,1.90735e-006],[[2612,2],[2708,2]]],
+[2664,[11575,2173.87,0],[[2613,2],[2709,2]]], [2665,[11031.3,2627.69,4.76837e-007],[[2614,2],[2616,2],[2710,2]]], [2666,[11518.2,2341.07,0],[[2615,2],[2711,2]]], [2667,[7355.55,4613.85,0],[[2618,2],[2712,2],[2713,2]]], [2668,[7432.04,4880.6,3.17891e-007],[[2619,2],[2712,2],[2714,2]]], [2669,[1762.91,13905.3,-4.76837e-007],[[2620,2],[2715,2],[2700,2],[2716,2]]],
+[2670,[1121.61,13988.9,0],[[2621,2],[2717,2]]], [2671,[750.516,14638.6,-1.90735e-006],[[2622,2],[2718,2]]], [2672,[623.714,14561.8,0],[[2623,2],[2719,2]]], [2673,[397.98,14490.7,0],[[2624,2],[2720,2]]], [2674,[11542,4924.51,0],[[2626,2],[2721,2]]], [2675,[12464.1,6167.24,0],[[2627,2],[2722,2]]],
+[2676,[12737.9,6592.49,0],[[2629,2],[2723,2]]], [2677,[12309.9,7030.51,0],[[2630,2],[2724,2]]], [2678,[12093.3,6994.99,3.17891e-007],[[2630,2],[2725,2],[2679,2]]], [2679,[11949,6980.07,0],[[2631,2],[2678,2]]], [2680,[11121.6,7961.93,0],[[2632,2],[2726,2]]], [2681,[11639.2,7112.65,0],[[2633,2],[2727,2]]],
+[2682,[11043.7,9526.59,0],[[2636,2],[2728,2]]], [2683,[11042.1,11416.7,0],[[2637,2],[2729,2]]], [2684,[11067.8,10897.1,9.53674e-007],[[2638,2],[2730,2]]], [2685,[10984.2,10704,0],[[2639,2],[2731,2]]], [2686,[10924.4,10637.8,0],[[2639,2],[2732,2]]], [2687,[10567.2,12028.7,0],[[2640,2],[2733,2]]],
+[2688,[8688.31,14077.4,0],[[2641,2],[2734,2]]], [2689,[9376.52,13741.8,0],[[2642,2],[2735,2]]], [2690,[9146.09,13878.4,0],[[2643,2],[2736,2]]], [2691,[7336.36,14378.8,0],[[2644,2],[2694,2]]], [2692,[7132.8,15052.1,0],[[2646,2],[2737,2]]], [2693,[6523.23,14455.3,1.90735e-006],[[2647,2],[2738,2]]],
+[2694,[7349.09,14519.9,0],[[2648,2],[2691,2],[2739,2],[2740,2]]], [2695,[5528.39,14586.5,0],[[2650,2],[2741,2],[2697,2],[2742,2]]], [2696,[5400.8,14667.7,0],[[2650,2],[2743,2]]], [2697,[5623.59,14608.5,9.53674e-007],[[2651,2],[2695,2],[2741,2]]], [2698,[6164.62,14421.8,0],[[2652,2],[2744,2]]], [2699,[5201.75,14777.6,0],[[2653,2],[2745,2]]],
+[2700,[1947.58,13937.3,-4.76837e-007],[[2655,2],[2669,2],[2716,2],[2746,2]]], [2701,[3370.61,14856.5,0],[[2656,2],[2747,2]]], [2702,[2890.98,14564.6,0],[[2657,2],[2748,2]]], [2703,[2689.52,14187.4,1.90735e-006],[[2658,2],[2749,2]]], [2704,[4820.85,15115.7,-9.53674e-007],[[2659,2],[2750,2]]], [2705,[3745.14,15023.2,1.90735e-006],[[2660,2],[2751,2]]],
+[2706,[4437.89,14842.2,9.53674e-007],[[2661,2],[2752,2]]], [2707,[11459.7,760.535,1.90735e-006],[[2662,2],[2753,2]]], [2708,[11917.1,1741.67,-2.38419e-007],[[2663,2],[2754,2],[2755,2],[2756,2]]], [2709,[11651.1,2302.19,0],[[2664,2],[2757,2]]], [2710,[11187.2,2667.41,4.76837e-007],[[2665,2],[2758,2]]], [2711,[11696,2434.06,-9.53674e-007],[[2666,2],[2759,2],[2757,2]]],
+[2712,[7377.79,4761.7,0],[[2667,2],[2668,2]]], [2713,[7256.36,4600.37,0],[[2667,2]]], [2714,[7397.87,4996.74,0],[[2668,2],[2760,2]]], [2715,[1581.94,13915,-1.90735e-006],[[2669,2],[2761,2]]], [2716,[1892.45,13993.8,0],[[2669,2],[2700,2],[2762,2],[2763,2]]], [2717,[1271.15,13959.9,0],[[2670,2],[2764,2]]],
+[2718,[778.873,14776,0],[[2671,2],[2765,2]]], [2719,[681.579,14746.2,0],[[2672,2],[2766,2]]], [2720,[428.399,14589,0],[[2673,2],[2767,2]]], [2721,[11607.6,4896.95,-9.53674e-007],[[2674,2],[2768,2]]], [2722,[12599.3,6107.64,-9.53674e-007],[[2675,2],[2769,2]]], [2723,[12825.3,6592.63,0],[[2676,2],[2770,2]]],
+[2724,[12451,7062.54,9.53674e-007],[[2677,2],[2771,2]]], [2725,[12045.3,7119.18,0],[[2678,2],[2772,2]]], [2726,[11199.6,7849.18,0],[[2680,2],[2773,2]]], [2727,[11705.1,7107.88,0],[[2681,2]]], [2728,[11193.9,9555.57,-9.53674e-007],[[2682,2],[2774,2]]], [2729,[11115.1,11440.6,0],[[2683,2],[2775,2],[2776,2]]],
+[2730,[11200.5,10884.2,0],[[2684,2],[2777,2]]], [2731,[11160.3,10646.1,0],[[2685,2],[2778,2]]], [2732,[11020.2,10541.9,0],[[2686,2],[2779,2]]], [2733,[10734,11968.7,0],[[2687,2],[2780,2]]], [2734,[8657.99,14251,0],[[2688,2],[2781,2]]], [2735,[9397.96,13754.8,0],[[2689,2],[2782,2],[2783,2],[2784,2]]],
+[2736,[9099.73,14035.9,-9.53674e-007],[[2690,2],[2785,2]]], [2737,[7180.6,15224.2,0],[[2692,2],[2786,2]]], [2738,[6374.18,14453.9,1.90735e-006],[[2693,2],[2744,2]]], [2739,[7343.31,14707.5,0],[[2694,2],[2787,2]]], [2740,[7526.72,14504.9,0],[[2694,2],[2788,2]]], [2741,[5585.1,14621.4,0],[[2695,2],[2697,2],[2742,2],[2789,2]]],
+[2742,[5533.84,14655.7,0],[[2695,2],[2741,2],[2790,2],[2791,2]]], [2743,[5275.94,14789.2,0],[[2696,2],[2792,2]]], [2744,[6300.26,14442.5,0],[[2698,2],[2738,2]]], [2745,[5069.12,14900.6,0],[[2699,2],[2793,2]]], [2746,[2107.11,13971.1,-1.90735e-006],[[2700,2],[2794,2]]], [2747,[3336.56,14991.2,0],[[2701,2],[2795,2]]],
+[2748,[2704.07,14623.8,0],[[2702,2],[2796,2]]], [2749,[2567.97,14144.2,0],[[2703,2],[2797,2]]], [2750,[4817.77,15139.6,0],[[2704,2],[2793,2],[2798,2],[2799,2]]], [2751,[3786.38,15141.9,-1.90735e-006],[[2705,2],[2800,2]]], [2752,[4491.61,14953.8,0],[[2706,2],[2801,2]]], [2753,[11569.3,653.601,0],[[2707,2],[2802,2]]],
+[2754,[12073.7,1694.35,-9.53674e-007],[[2708,2],[2803,2]]], [2755,[11901.2,1538.47,0],[[2708,2],[2804,2]]], [2756,[11939.7,1929.98,0],[[2708,2],[2805,2]]], [2757,[11711.2,2409.06,-9.53674e-007],[[2709,2],[2711,2],[2759,2]]], [2758,[11353.7,2659.84,0],[[2710,2],[2806,2]]], [2759,[11732.5,2449.98,-2.38419e-007],[[2711,2],[2757,2],[2807,2],[2808,2]]],
+[2760,[7344.18,5048.84,0],[[2714,2]]], [2761,[1464.23,13934.3,0],[[2715,2],[2764,2]]], [2762,[2010.56,14073.4,0],[[2716,2],[2809,2]]], [2763,[1757.14,14115.6,0],[[2716,2],[2810,2]]], [2764,[1395.23,13938.8,0],[[2717,2],[2761,2]]], [2765,[820.382,14928.2,0],[[2718,2],[2811,2]]],
+[2766,[750.046,14904.9,0],[[2719,2],[2811,2]]], [2767,[445.213,14732.1,0],[[2720,2],[2812,2]]], [2768,[11714.4,4849.35,0],[[2721,2],[2813,2]]], [2769,[12719.1,6047.98,0],[[2722,2],[2814,2]]], [2770,[12966.4,6634.59,0],[[2723,2],[2815,2]]], [2771,[12557.9,7065.21,3.17891e-007],[[2724,2],[2816,2],[2817,2]]],
+[2772,[12007.5,7244.86,-9.53674e-007],[[2725,2],[2818,2]]], [2773,[11330.4,7875.01,9.53674e-007],[[2726,2],[2819,2]]], [2774,[11300.8,9663.15,0],[[2728,2],[2820,2]]], [2775,[11244.5,11490.2,0],[[2729,2],[2776,2],[2821,2]]], [2776,[11217.6,11534.4,0],[[2729,2],[2775,2],[2822,2],[2823,2]]], [2777,[11334.2,10879.7,-9.53674e-007],[[2730,2],[2824,2]]],
+[2778,[11334.9,10577.9,4.76837e-007],[[2731,2],[2825,2]]], [2779,[11102.2,10423.9,0],[[2732,2],[2826,2]]], [2780,[10884.8,11903.9,9.53674e-007],[[2733,2],[2827,2]]], [2781,[8654.67,14423.2,0],[[2734,2],[2828,2]]], [2782,[9324.65,13920,0],[[2735,2],[2829,2]]], [2783,[9511.27,13858.8,0],[[2735,2],[2830,2]]],
+[2784,[9531.96,13604.3,-9.53674e-007],[[2735,2],[2831,2]]], [2785,[9088.62,14142.5,2.38419e-007],[[2736,2],[2832,2],[2829,2],[2833,2],[2834,2]]], [2786,[7237.1,15397,0],[[2737,2],[2835,2]]], [2787,[7375.32,14893.3,-9.53674e-007],[[2739,2],[2836,2]]], [2788,[7662.01,14481,0],[[2740,2],[2837,2]]], [2789,[5698.78,14743.4,1.90735e-006],[[2741,2],[2838,2]]],
+[2790,[5429.96,14755,9.53674e-007],[[2742,2],[2839,2]]], [2791,[5577.67,14804.6,0],[[2742,2],[2840,2]]], [2792,[5155.9,14928.2,-2.38419e-007],[[2743,2],[2839,2],[2841,2],[2799,2]]], [2793,[4958.72,15006.6,0],[[2745,2],[2750,2]]], [2794,[2254.61,14015.6,-1.90735e-006],[[2746,2],[2797,2]]], [2795,[3261.13,15151.2,-1.90735e-006],[[2747,2],[2842,2]]],
+[2796,[2668.1,14629.4,-4.76837e-007],[[2748,2],[2843,2],[2844,2],[2845,2]]], [2797,[2434.25,14084.2,0],[[2749,2],[2794,2]]], [2798,[4660.55,15244.5,0],[[2750,2],[2846,2],[2847,2],[2848,2]]], [2799,[4978.58,15063.7,0],[[2750,2],[2792,2]]], [2800,[3845.35,15293.8,0],[[2751,2],[2849,2]]], [2801,[4545.84,15064.5,0],[[2752,2],[2846,2]]],
+[2802,[11661.9,550.892,-1.90735e-006],[[2753,2],[2850,2]]], [2803,[12201.5,1636.86,0],[[2754,2],[2851,2]]], [2804,[11902.7,1365.23,0],[[2755,2],[2852,2]]], [2805,[11942.9,2097.56,9.53674e-007],[[2756,2],[2853,2]]], [2806,[11504,2674.52,0],[[2758,2],[2854,2]]], [2807,[11819.1,2570.31,1.90735e-006],[[2759,2],[2855,2]]],
+[2808,[11883.9,2535.86,0],[[2759,2],[2856,2]]], [2809,[2105.5,14171.1,0],[[2762,2],[2857,2]]], [2810,[1626.49,14218.9,0],[[2763,2],[2858,2]]], [2811,[834.631,15093.7,-6.35783e-007],[[2765,2],[2766,2],[2859,2]]], [2812,[436.697,14885.4,0],[[2767,2],[2860,2]]], [2813,[11788,4812.21,0],[[2768,2],[2861,2]]],
+[2814,[12798.2,6015.67,-9.53674e-007],[[2769,2],[2862,2]]], [2815,[13068.6,6640.22,0],[[2770,2],[2863,2]]], [2816,[12725.6,7134.38,0],[[2771,2],[2864,2]]], [2817,[12702.4,7064.21,0],[[2771,2],[2865,2]]], [2818,[11920.7,7310.9,0],[[2772,2],[2866,2]]], [2819,[11452.4,7788.98,0],[[2773,2],[2867,2]]],
+[2820,[11329.9,9737.07,3.17891e-007],[[2774,2],[2868,2],[2869,2]]], [2821,[11345,11393.6,0],[[2775,2],[2870,2]]], [2822,[11322.7,11600.7,0],[[2776,2],[2871,2]]], [2823,[11153,11657.3,-3.17891e-007],[[2776,2],[2872,2],[2873,2],[2827,2]]], [2824,[11457.5,10895.7,0],[[2777,2],[2874,2]]], [2825,[11468.7,10514.4,0],[[2778,2],[2875,2]]],
+[2826,[11224.5,10293.8,0],[[2779,2],[2876,2]]], [2827,[11004.7,11838.2,0],[[2780,2],[2823,2],[2873,2]]], [2828,[8645.65,14445.6,0],[[2781,2],[2877,2],[2878,2],[2879,2]]], [2829,[9251.76,14030.9,0],[[2782,2],[2785,2],[2832,2]]], [2830,[9616.29,13944,-2.38419e-007],[[2783,2],[2880,2],[2881,2],[2882,2]]], [2831,[9650.69,13491.3,-9.53674e-007],[[2784,2],[2883,2]]],
+[2832,[9221.44,14068.7,-4.76837e-007],[[2785,2],[2829,2],[2833,2],[2884,2]]], [2833,[9126.92,14199,0],[[2785,2],[2832,2],[2885,2],[2834,2]]], [2834,[9040.36,14316.7,0],[[2785,2],[2833,2],[2885,2],[2886,2],[2878,2]]], [2835,[7315.66,15535,-9.53674e-007],[[2786,2],[2887,2]]], [2836,[7397.52,15080.3,0],[[2787,2],[2888,2]]], [2837,[7800.78,14456.7,0],[[2788,2],[2889,2]]],
+[2838,[5800.79,14875.2,0],[[2789,2],[2890,2]]], [2839,[5324.61,14837.3,0],[[2790,2],[2792,2]]], [2840,[5617.22,14931.5,0],[[2791,2],[2891,2]]], [2841,[5081.72,15087,-9.53674e-007],[[2792,2],[2892,2]]], [2842,[3249.73,15187.9,3.8147e-007],[[2795,2],[2893,2],[2842,2],[2894,2],[2895,2]]], [2843,[2819.16,14739.7,-1.90735e-006],[[2796,2],[2896,2]]],
+[2844,[2495.15,14484.7,0],[[2796,2],[2897,2]]], [2845,[2523.56,14672.4,0],[[2796,2],[2898,2]]], [2846,[4577.36,15114,0],[[2798,2],[2801,2]]], [2847,[4523.53,15387,0],[[2798,2],[2899,2]]], [2848,[4758.65,15383,0],[[2798,2],[2900,2]]], [2849,[3900.79,15418.5,0],[[2800,2],[2901,2]]],
+[2850,[11729.2,442.7,0],[[2802,2],[2902,2]]], [2851,[12311.7,1576.19,2.38419e-007],[[2803,2],[2903,2],[2904,2],[2905,2]]], [2852,[11898.9,1220.25,0],[[2804,2],[2906,2]]], [2853,[11923.5,2264.14,0],[[2805,2],[2907,2]]], [2854,[11622.1,2683.58,0],[[2806,2],[2855,2]]], [2855,[11868.2,2712.59,3.8147e-007],[[2807,2],[2854,2],[2908,2],[2856,2],[2909,2]]],
+[2856,[11896.1,2534.79,-2.38419e-007],[[2808,2],[2855,2],[2910,2],[2907,2]]], [2857,[2220.78,14265.5,0],[[2809,2],[2897,2]]], [2858,[1512.37,14320.9,0],[[2810,2],[2911,2]]], [2859,[883.339,15254.5,0],[[2811,2],[2912,2]]], [2860,[444.543,15027.9,-1.90735e-006],[[2812,2],[2913,2]]], [2861,[11848.1,4736.5,0],[[2813,2],[2914,2]]],
+[2862,[12881.2,5975,0],[[2862,2],[2915,2]]], [2863,[13181.5,6653.98,0],[[2815,2],[2916,2]]], [2864,[12878.1,7140.69,0],[[2816,2],[2917,2]]], [2865,[12848.4,7036.18,0],[[2817,2],[2918,2]]], [2866,[11847.8,7394.92,9.53674e-007],[[2818,2],[2919,2]]], [2867,[11600.2,7677.25,0],[[2819,2],[2920,2]]],
+[2868,[11361.7,9609.63,0],[[2820,2],[2921,2]]], [2869,[11323.1,9925.27,-9.53674e-007],[[2820,2],[2922,2]]], [2870,[11406.1,11249.5,0],[[2821,2],[2923,2]]], [2871,[11418.4,11569.1,0],[[2822,2],[2924,2]]], [2872,[11249.2,11606,-6.35783e-007],[[2823,2],[2872,2],[2925,2]]], [2873,[11040.2,11817.9,0],[[2823,2],[2827,2],[2926,2]]],
+[2874,[11513,10918,0],[[2824,2],[2927,2],[2928,2]]], [2875,[11591,10446.5,2.38419e-007],[[2825,2],[2929,2],[2930,2],[2931,2]]], [2876,[11363.9,10186,0],[[2826,2],[2932,2],[2922,2]]], [2877,[8451.65,14439.7,9.53674e-007],[[2828,2],[2933,2]]], [2878,[8835.12,14416.1,-7.15256e-007],[[2828,2],[2834,2],[2934,2],[2886,2]]], [2879,[8645.61,14617.3,-2.38419e-007],[[2828,2],[2934,2],[2935,2],[2936,2]]],
+[2880,[9463.72,13996.8,-9.53674e-007],[[2830,2],[2884,2]]], [2881,[9787.57,13906.8,0],[[2830,2],[2937,2]]], [2882,[9754.44,14038.7,0],[[2830,2],[2938,2]]], [2883,[9734.25,13381.4,0],[[2831,2],[2939,2]]], [2884,[9369.96,14018.9,0],[[2832,2],[2880,2]]], [2885,[9103.26,14312.9,0],[[2833,2],[2834,2],[2940,2],[2886,2],[2941,2]]],
+[2886,[9023.01,14408.3,-9.53674e-007],[[2834,2],[2878,2],[2885,2],[2940,2],[2942,2]]], [2887,[7396.42,15699.6,0],[[2835,2],[2943,2],[2944,2],[2945,2]]], [2888,[7416.12,15223.4,0],[[2836,2],[2946,2]]], [2889,[7924.13,14446,0],[[2837,2],[2947,2]]], [2890,[5898.2,15011.6,-9.53674e-007],[[2838,2],[2948,2]]], [2891,[5619.05,15081.9,9.53674e-007],[[2840,2],[2949,2]]],
+[2892,[5011.07,15196.4,0],[[2841,2],[2950,2]]], [2893,[3125.72,15052.3,0],[[2842,2],[2951,2]]], [2894,[3193.48,15328.5,0],[[2842,2],[2952,2]]], [2895,[3386.3,15331,-1.90735e-006],[[2842,2],[2953,2]]], [2896,[2937.84,14848.9,0],[[2843,2],[2951,2]]], [2897,[2372.79,14415.1,0],[[2844,2],[2857,2]]],
+[2898,[2365.61,14697.6,0],[[2845,2],[2954,2]]], [2899,[4420.65,15504,0],[[2847,2],[2955,2]]], [2900,[4814.39,15476.4,0],[[2848,2],[2956,2],[2950,2],[2957,2]]], [2901,[3981.92,15570.6,-1.90735e-006],[[2849,2],[2958,2]]], [2902,[11743.5,313.44,-1.90735e-006],[[2850,2],[2959,2]]], [2903,[12220.4,1388,0],[[2851,2],[2960,2]]],
+[2904,[12459,1566.19,0],[[2851,2],[2961,2]]], [2905,[12366.3,1716.82,0],[[2851,2],[2962,2]]], [2906,[11890.1,1075.25,9.53674e-007],[[2852,2],[2963,2]]], [2907,[11909.3,2401.12,0],[[2853,2],[2856,2]]], [2908,[11859.8,2876.64,-9.53674e-007],[[2855,2],[2964,2]]], [2909,[12015.2,2751.03,0],[[2855,2],[2965,2],[2966,2]]],
+[2910,[12047.6,2616.88,0],[[2856,2],[2967,2]]], [2911,[1403.01,14433.8,1.90735e-006],[[2858,2],[2968,2]]], [2912,[880.146,15302.3,6.35783e-007],[[2859,2],[2969,2],[2970,2]]], [2913,[476.505,15178.3,0],[[2860,2],[2971,2]]], [2914,[11943.8,4692.86,0],[[2861,2],[2972,2]]], [2915,[12930.9,5889.05,0],[[2862,2],[2973,2]]],
+[2916,[13267.4,6651.31,0],[[2863,2],[2974,2]]], [2917,[13003.5,7153.08,0],[[2864,2],[2975,2]]], [2918,[12987.2,6993.63,0],[[2865,2],[2976,2]]], [2919,[11768,7473.6,0],[[2866,2],[2920,2]]], [2920,[11697.8,7573.13,0],[[2867,2],[2919,2]]], [2921,[11378.9,9448.35,0],[[2868,2],[2977,2]]],
+[2922,[11340,10060.8,0],[[2869,2],[2978,2],[2876,2]]], [2923,[11439.5,11167.3,0],[[2870,2],[2928,2],[2979,2]]], [2924,[11550.6,11522,0],[[2871,2],[2980,2]]], [2925,[11312.3,11679.1,0],[[2872,2]]], [2926,[10989,11986.2,3.8147e-007],[[2873,2],[2981,2],[2926,2],[2982,2],[2983,2]]], [2927,[11571.5,10819.6,-7.94729e-008],[[2874,2],[2929,2],[2984,2]]],
+[2928,[11468.9,11040.8,0],[[2874,2],[2923,2]]], [2929,[11645.4,10597,0],[[2875,2],[2927,2],[2984,2]]], [2930,[11633.9,10421.8,6.35783e-007],[[2875,2],[2985,2],[2986,2]]], [2931,[11527.7,10365.1,4.76837e-007],[[2875,2],[2978,2],[2931,2],[2987,2],[2985,2]]], [2932,[11493.8,10089,0],[[2876,2],[2988,2],[2978,2]]], [2933,[8293.35,14431,0],[[2877,2],[2989,2]]],
+[2934,[8717.69,14527.8,-1.90735e-006],[[2878,2],[2879,2]]], [2935,[8542.41,14733.3,0],[[2879,2],[2990,2]]], [2936,[8610.77,14794.3,0],[[2879,2],[2991,2],[2992,2],[2993,2]]], [2937,[9918.87,13902.6,9.53674e-007],[[2881,2],[2994,2]]], [2938,[9836.24,14166.1,0],[[2882,2],[2995,2]]], [2939,[9855.78,13321.3,9.53674e-007],[[2883,2],[2996,2]]],
+[2940,[9085.43,14426.9,-4.76837e-007],[[2885,2],[2886,2],[2997,2],[2998,2],[2942,2]]], [2941,[9303.14,14366.1,-1.90735e-006],[[2885,2],[2999,2]]], [2942,[8987.24,14533,-4.76837e-007],[[2886,2],[2940,2],[2998,2],[3000,2],[3001,2]]], [2943,[7256.46,15769.3,0],[[2887,2],[3002,2]]], [2944,[7491.59,15632.5,4.76837e-007],[[2887,2],[3003,2],[3004,2],[2946,2]]], [2945,[7486.99,15844.3,0],[[2887,2],[3005,2]]],
+[2946,[7431.37,15413.6,0],[[2888,2],[2944,2]]], [2947,[8050.93,14429.8,0],[[2889,2],[2989,2]]], [2948,[5969.44,15125.9,0],[[2890,2],[3006,2]]], [2949,[5639.26,15231.3,-1.90735e-006],[[2891,2],[3007,2]]], [2950,[4917.41,15350.2,0],[[2892,2],[2900,2]]], [2951,[3027.06,14926.7,1.90735e-006],[[2893,2],[2896,2]]],
+[2952,[3113.73,15474.6,0],[[2894,2],[3008,2]]], [2953,[3495.78,15432.2,0],[[2895,2],[3009,2]]], [2954,[2233.95,14739.2,0],[[2898,2],[3010,2]]], [2955,[4301.26,15640.6,1.27157e-006],[[2899,2],[3011,2]]], [2956,[4891.61,15641.6,9.53674e-007],[[2900,2],[3012,2]]], [2957,[4696.14,15589.9,0],[[2900,2],[3013,2]]],
+[2958,[4021.96,15716.7,0],[[2901,2],[3014,2]]], [2959,[11745.4,169.974,-6.35783e-007],[[2902,2],[3015,2],[3016,2]]], [2960,[12118.8,1230.71,0],[[2903,2],[3017,2]]], [2961,[12598.9,1558.24,9.53674e-007],[[2904,2],[3018,2]]], [2962,[12419,1855.1,9.53674e-007],[[2905,2],[3019,2]]], [2963,[11876.8,944.717,0],[[2906,2],[3020,2]]],
+[2964,[11832.8,3056.36,0],[[2908,2],[3021,2]]], [2965,[12014.9,2915,0],[[2909,2],[3022,2]]], [2966,[12147.7,2804.01,0],[[2909,2],[3023,2]]], [2967,[12157.2,2666.27,0],[[2910,2],[3024,2]]], [2968,[1290.49,14597.6,0],[[2911,2],[3025,2]]], [2969,[839.947,15373.2,6.35783e-007],[[2912,2],[3026,2],[3027,2]]],
+[2970,[943.401,15337.2,0],[[2912,2],[3028,2],[3029,2]]], [2971,[536.253,15319.2,0],[[2913,2],[3030,2]]], [2972,[12022.5,4650.71,0],[[2914,2],[3031,2]]], [2973,[12937,5881.73,3.17891e-007],[[2915,2],[3032,2],[3033,2]]], [2974,[13426,6612.65,0],[[2916,2],[3034,2]]], [2975,[13044.1,7153.61,0],[[2917,2]]],
+[2976,[13086.7,6930.84,0],[[2918,2],[3035,2]]], [2977,[11399.6,9361.57,-1.90735e-006],[[2921,2],[3036,2]]], [2978,[11400.6,10162.7,0],[[2922,2],[2931,2],[2932,2]]], [2979,[11570.9,11058.7,0],[[2923,2],[3037,2]]], [2980,[11591.3,11456.9,9.53674e-007],[[2924,2],[3038,2]]], [2981,[11097.2,11888.9,0],[[2926,2],[3039,2]]],
+[2982,[10947.4,12057.9,-1.90735e-006],[[2926,2],[3040,2]]], [2983,[10944.8,12074.7,0],[[2926,2]]], [2984,[11659.6,10796.3,4.76837e-007],[[2927,2],[2929,2],[3037,2],[3041,2]]], [2985,[11568.3,10319.7,0],[[2930,2],[2931,2],[2987,2]]], [2986,[11684.8,10393.7,3.17891e-007],[[2930,2],[3042,2],[3043,2]]], [2987,[11539.9,10298.4,-9.53674e-007],[[2931,2],[2985,2],[3044,2]]],
+[2988,[11620.3,10005.3,0],[[2932,2],[3045,2]]], [2989,[8127.97,14428,0],[[2933,2],[2947,2]]], [2990,[8459.97,14834.5,0],[[2935,2]]], [2991,[8764.44,14706.5,0],[[2936,2],[3000,2]]], [2992,[8592.22,14968,0],[[2936,2],[3046,2]]], [2993,[8447.02,14883.3,0],[[2936,2],[3047,2]]],
+[2994,[10074.7,13891.9,-4.76837e-007],[[2937,2],[3048,2]]], [2995,[9836.45,14354.5,0],[[2938,2],[3049,2]]], [2996,[9982.03,13240.3,0],[[2939,2],[3050,2]]], [2997,[9247.13,14502.4,0],[[2940,2],[3051,2]]], [2998,[9046.05,14514.4,4.76837e-007],[[2940,2],[2942,2],[3052,2],[2998,2]]], [2999,[9438.91,14399.4,9.53674e-007],[[2941,2],[3053,2]]],
+[3000,[8827.86,14668.3,0],[[2942,2],[2991,2]]], [3001,[8956.15,14702.9,0],[[2942,2],[3054,2]]], [3002,[7126.19,15833.3,0],[[2943,2],[3055,2]]], [3003,[7537.83,15789.9,0],[[2944,2],[3056,2]]], [3004,[7661.3,15539.8,-9.53674e-007],[[2944,2],[3057,2]]], [3005,[7556.35,15950,0],[[2945,2],[3058,2]]],
+[3006,[6048.59,15246.5,0],[[2948,2],[3059,2]]], [3007,[5650.16,15388.6,0],[[2949,2],[3060,2]]], [3008,[3065.31,15599.4,1.90735e-006],[[2952,2]]], [3009,[3625.11,15530.4,0],[[2953,2],[3061,2]]], [3010,[2088.34,14793.8,0],[[2954,2],[3062,2]]], [3011,[4197.35,15732.6,-4.76837e-007],[[2955,2],[3014,2],[3063,2],[3064,2]]],
+[3012,[4986.61,15788.4,0],[[2956,2],[3065,2]]], [3013,[4689.46,15731,0],[[2957,2],[3066,2]]], [3014,[4024.28,15741.4,0],[[2958,2],[3011,2],[3064,2],[3067,2]]], [3015,[11747.5,20.6489,0],[[2959,2],[3015,2]]], [3016,[11777.4,334.356,0],[[2959,2],[3068,2]]], [3017,[12059.5,1131.3,-9.53674e-007],[[2960,2],[3069,2]]],
+[3018,[12743.4,1579.45,0],[[2961,2],[3070,2]]], [3019,[12465,1976.97,0],[[2962,2],[3071,2]]], [3020,[11860.1,783.315,0],[[2963,2],[3072,2]]], [3021,[11807.9,3170.58,0],[[2964,2],[3073,2]]], [3022,[12008.5,3068.22,0],[[2965,2],[3074,2]]], [3023,[12304.7,2838.87,0],[[2966,2],[3075,2]]],
+[3024,[12317.7,2730.88,-1.90735e-006],[[2967,2],[3076,2]]], [3025,[1217.46,14713.3,0],[[2968,2],[3077,2]]], [3026,[951.356,15425,0],[[2969,2],[3028,2]]], [3027,[734.099,15473.5,0],[[2969,2],[3078,2],[3030,2]]], [3028,[1028.67,15378,-4.76837e-007],[[2970,2],[3026,2],[3079,2],[3029,2],[3080,2]]], [3029,[1018.79,15246.8,-0.0455849],[[2970,2],[3028,2],[3081,2],[3079,2],[3082,2],[3083,2]]],
+[3030,[596.957,15472.1,0],[[2971,2],[3027,2],[3078,2]]], [3031,[12068.7,4582.5,0],[[2972,2],[3084,2]]], [3032,[12844.1,5825.96,0],[[2973,2],[3085,2]]], [3033,[12994.1,5908.45,-4.76837e-007],[[2973,2],[3033,2],[3086,2],[3087,2]]], [3034,[13521.6,6621.05,0],[[2974,2],[3088,2],[3089,2]]], [3035,[13188,6853.19,-1.90735e-006],[[2976,2],[3090,2]]],
+[3036,[11517,9231.65,0],[[2977,2],[3091,2]]], [3037,[11620.9,10983.4,1.19209e-007],[[2979,2],[2984,2],[3092,2],[3041,2]]], [3038,[11581.5,11298.8,0],[[2980,2],[3092,2]]], [3039,[11187.7,11834.4,0],[[2981,2],[3093,2]]], [3040,[10892,12163.5,0],[[2982,2],[3094,2],[3095,2]]], [3041,[11741.5,10811.2,0],[[2984,2],[3037,2],[3096,2]]],
+[3042,[11840.5,10326.7,0],[[2986,2],[3097,2]]], [3043,[11736,10259.7,0],[[2986,2],[3098,2]]], [3044,[11505,10244.1,0],[[2987,2]]], [3045,[11740,9917.42,0],[[2988,2],[3099,2]]], [3046,[8572.16,15121.3,0],[[2992,2],[3100,2]]], [3047,[8310.71,14965.1,0],[[2993,2],[3101,2]]],
+[3048,[10113,13896,-1.19209e-007],[[2994,2],[3102,2],[3103,2],[3104,2]]], [3049,[9849.71,14416.2,-2.72478e-007],[[2995,2],[3105,2],[3106,2],[3107,2],[3108,2],[3109,2],[3110,2]]], [3050,[10171.3,13172.4,0],[[2996,2],[3111,2]]], [3051,[9392.72,14604.5,0],[[2997,2],[3112,2]]], [3052,[8995.29,14703.4,0],[[2998,2],[3113,2]]], [3053,[9553.66,14404.9,-3.17891e-007],[[2999,2],[3110,2],[3105,2]]],
+[3054,[8923.98,14853.2,0],[[3001,2],[3114,2]]], [3055,[6977.26,15917.6,0],[[3002,2],[3115,2]]], [3056,[7572.2,15949.8,0],[[3003,2],[3116,2]]], [3057,[7780.71,15455.9,0],[[3004,2],[3117,2]]], [3058,[7576.33,15974.2,0],[[3005,2],[3118,2]]], [3059,[6157.4,15386,0],[[3006,2],[3119,2]]],
+[3060,[5657.91,15513.3,0],[[3007,2],[3120,2]]], [3061,[3751.3,15624.9,0],[[3009,2],[3067,2]]], [3062,[1976.62,14839.3,0],[[3010,2],[3121,2]]], [3063,[4139.22,15843.9,-6.35783e-007],[[3011,2],[3122,2],[3123,2]]], [3064,[4058.58,15794.6,-6.35783e-007],[[3014,2],[3126,2],[3122,2],[3011,2]]], [3065,[5087.7,15912.4,9.53674e-007],[[3012,2],[3124,2]]],
+[3066,[4653.3,15847.2,0],[[3013,2],[3125,2]]], [3067,[3859.75,15680.6,0],[[3014,2],[3061,2]]], [3068,[11804.2,472.005,0],[[3016,2],[3127,2]]], [3069,[12001.6,1027.01,9.53674e-007],[[3017,2],[3128,2]]], [3070,[12868.8,1607.36,0],[[3018,2],[3129,2]]], [3071,[12508.1,2140.12,0],[[3019,2],[3130,2]]],
+[3072,[11852.5,704.965,0],[[3020,2],[3131,2],[3127,2]]], [3073,[11776.8,3281.13,0],[[3021,2],[3132,2]]], [3074,[12000.7,3204.91,0],[[3022,2],[3133,2]]], [3075,[12442.9,2853.39,0],[[3023,2],[3134,2]]], [3076,[12492.7,2795.89,1.90735e-006],[[3024,2],[3135,2]]], [3077,[1164.81,14827.3,0],[[3025,2],[3136,2]]],
+[3078,[635.056,15546.1,-9.53674e-007],[[3027,2],[3030,2],[3137,2],[3138,2]]], [3079,[1050.79,15336.2,-4.76837e-007],[[3028,2],[3029,2],[3139,2],[3081,2],[3079,2]]], [3080,[1220.9,15445.3,0],[[3028,2],[3140,2]]], [3081,[1168.41,15196.9,0],[[3029,2],[3079,2],[3139,2]]], [3082,[1078.13,15064.6,0],[[3029,2],[3136,2]]], [3083,[991.375,15184.8,-0.235914],[[3029,2]]],
+[3084,[12171.2,4499.99,0],[[3084,2]]], [3085,[12759.8,5783.28,9.53674e-007],[[3032,2],[3141,2]]], [3086,[13139.4,6031.22,9.53674e-007],[[3033,2],[3142,2]]], [3087,[13113.2,5808.19,0],[[3033,2],[3143,2]]], [3088,[13488.7,6658.75,0],[[3034,2],[3144,2]]], [3089,[13643.2,6638.78,-3.17891e-007],[[3034,2],[3145,2],[3146,2]]],
+[3090,[13304.7,6770.76,0],[[3035,2],[3147,2]]], [3091,[11626.3,9130.55,-9.53674e-007],[[3036,2],[3148,2]]], [3092,[11599.7,11146,0],[[3037,2],[3038,2]]], [3093,[11298.8,11822.1,4.76837e-007],[[3039,2],[3149,2]]], [3094,[11068.3,12067,0],[[3040,2],[3150,2]]], [3095,[10794,12302,-9.53674e-007],[[3040,2],[3151,2]]],
+[3096,[11885.6,10837.9,0],[[3041,2],[3152,2]]], [3097,[11974,10274.2,-9.53674e-007],[[3042,2],[3153,2]]], [3098,[11757.8,10119.6,-9.53674e-007],[[3043,2],[3099,2]]], [3099,[11780.8,9903.64,0],[[3045,2],[3098,2],[3154,2]]], [3100,[8550.89,15254.8,0],[[3046,2],[3155,2]]], [3101,[8180.78,15074.5,0],[[3047,2],[3156,2]]],
+[3102,[9983.62,14026,0],[[3048,2],[3107,2]]], [3103,[10270.2,13896.7,0],[[3048,2],[3157,2]]], [3104,[10257.9,13767.8,-9.53674e-007],[[3048,2],[3158,2]]], [3105,[9677.46,14395.2,0],[[3049,2],[3053,2]]], [3106,[10072,14377.8,-9.53674e-007],[[3049,2],[3159,2]]], [3107,[9910.82,14223.7,-9.53674e-007],[[3049,2],[3102,2]]],
+[3108,[10045.8,14522.7,0],[[3049,2],[3160,2]]], [3109,[9881.44,14639.2,0],[[3049,2],[3161,2]]], [3110,[9671.6,14432.6,0],[[3049,2],[3053,2]]], [3111,[10322,13110.9,9.53674e-007],[[3050,2],[3162,2]]], [3112,[9518.52,14705.9,0],[[3051,2],[3163,2]]], [3113,[8957.56,14829.2,0],[[3052,2],[3114,2]]],
+[3114,[8922.74,15003.3,0],[[3054,2],[3113,2],[3164,2],[3165,2]]], [3115,[6865.39,15992.5,0],[[3055,2],[3166,2],[3167,2],[3168,2]]], [3116,[7566.15,15966.9,0],[[3056,2],[3116,2]]], [3117,[7901.65,15337.7,0],[[3057,2],[3169,2]]], [3118,[7645.24,16166.7,0],[[3058,2],[3170,2]]], [3119,[6264.86,15499.6,0],[[3059,2],[3171,2]]],
+[3120,[5697.35,15675.2,0],[[3060,2],[3172,2]]], [3121,[1831.68,14900.1,0],[[3062,2],[3173,2]]], [3122,[4089.72,15940.7,-4.76837e-007],[[3063,2],[3064,2],[3174,2],[3175,2],[3126,2]]], [3123,[4265.93,15821.4,0],[[3063,2],[3176,2]]], [3124,[5195.09,16023.9,0],[[3065,2],[3177,2]]], [3125,[4552.23,15873.4,-3.17891e-007],[[3066,2],[3176,2],[3178,2]]],
+[3126,[4021.99,15930.9,-4.76837e-007],[[3064,2],[3122,2],[3179,2],[3180,2]]], [3127,[11840.6,612.873,0],[[3068,2],[3072,2]]], [3128,[11945.4,910.209,0],[[3069,2],[3131,2]]], [3129,[12945,1623.75,4.76837e-007],[[3070,2],[3181,2],[3182,2],[3183,2]]], [3130,[12523.9,2257.68,0],[[3071,2],[3184,2]]], [3131,[11915.1,841.483,9.53674e-007],[[3072,2],[3128,2]]],
+[3132,[11699.9,3464.2,9.53674e-007],[[3073,2],[3185,2]]], [3133,[11990.7,3322.76,0],[[3074,2],[3186,2]]], [3134,[12632.2,2885.11,0],[[3075,2],[3187,2]]], [3135,[12640,2843.23,0],[[3076,2],[3188,2],[3187,2]]], [3136,[1102.46,14977.7,1.90735e-006],[[3077,2],[3082,2]]], [3137,[691.31,15698.7,-1.90735e-006],[[3078,2],[3189,2]]],
+[3138,[530.959,15679.1,1.90735e-006],[[3078,2],[3190,2]]], [3139,[1185.96,15198.2,-1.90735e-006],[[3079,2],[3081,2],[3191,2]]], [3140,[1387.25,15459.2,1.90735e-006],[[3080,2],[3192,2]]], [3141,[12694.6,5737.8,0],[[3085,2],[3193,2]]], [3142,[13195.8,6095.45,0],[[3086,2],[3142,2],[3194,2],[3195,2]]], [3143,[13159.7,5779.54,0],[[3087,2],[3196,2],[3197,2]]],
+[3144,[13420,6688.05,0],[[3088,2],[3147,2]]], [3145,[13785.8,6720.15,0],[[3089,2],[3198,2]]], [3146,[13516.3,6499.71,0],[[3089,2],[3199,2]]], [3147,[13379.3,6718.25,0],[[3090,2],[3144,2]]], [3148,[11779.2,9112.82,9.53674e-007],[[3091,2],[3200,2]]], [3149,[11411.4,11780.4,0],[[3093,2],[3201,2]]],
+[3150,[11199,12006,0],[[3094,2],[3202,2]]], [3151,[10716.6,12428.6,0],[[3095,2],[3203,2]]], [3152,[11962.6,10878.7,0],[[3096,2],[3204,2]]], [3153,[12094.5,10211.1,4.76837e-007],[[3097,2],[3205,2]]], [3154,[11873,9808.8,0],[[3099,2],[3206,2]]], [3155,[8511.48,15411.3,0],[[3100,2],[3207,2]]],
+[3156,[8071.88,15166.1,0],[[3101,2],[3169,2]]], [3157,[10432.4,13924.3,0],[[3103,2],[3208,2]]], [3158,[10397.5,13726.9,0],[[3104,2],[3209,2]]], [3159,[10223.9,14370.3,-9.53674e-007],[[3106,2],[3210,2]]], [3160,[10186.2,14570,0],[[3108,2],[3211,2]]], [3161,[9908.02,14771.9,0],[[3109,2],[3212,2]]],
+[3162,[10456.5,13058.1,0],[[3111,2],[3213,2]]], [3163,[9638.92,14812.8,0],[[3112,2],[3214,2]]], [3164,[8852.99,15209.4,0],[[3114,2],[3215,2]]], [3165,[8878.13,15218.6,-1.90735e-006],[[3114,2],[3216,2]]], [3166,[6989.75,16104.1,0],[[3115,2],[3217,2]]], [3167,[6727.43,16105.9,-9.53674e-007],[[3115,2],[3218,2]]],
+[3168,[6748.33,15889.1,0],[[3115,2],[3219,2]]], [3169,[8018.17,15226.2,0],[[3117,2],[3156,2]]], [3170,[7696.39,16315.3,0],[[3118,2],[3220,2]]], [3171,[6370.09,15585.5,0],[[3119,2],[3221,2]]], [3172,[5741.09,15824.8,0],[[3120,2],[3222,2]]], [3173,[1688.55,14962,0],[[3121,2],[3223,2]]],
+[3174,[4036.26,16070.2,0],[[3122,2],[3224,2]]], [3175,[4142.86,15968.9,-6.35783e-007],[[3122,2],[3225,2]]], [3176,[4416.47,15876.6,0],[[3123,2],[3125,2]]], [3177,[5260.82,16159.5,0],[[3124,2],[3226,2]]], [3178,[4379.78,15918,9.53674e-007],[[3125,2],[3227,2]]], [3179,[3994.82,16056,0],[[3126,2],[3228,2]]],
+[3180,[3899.3,15969.5,1.90735e-006],[[3126,2],[3229,2]]], [3181,[13126,1652.62,0],[[3129,2],[3230,2]]], [3182,[12922.1,1764.43,0],[[3129,2],[3231,2]]], [3183,[12986.9,1441.61,0],[[3129,2],[3232,2]]], [3184,[12544.3,2373.87,0],[[3130,2],[3233,2]]], [3185,[11672.3,3521.53,0],[[3132,2]]],
+[3186,[11965.4,3471.05,0],[[3133,2],[3234,2]]], [3187,[12731.8,2873.63,0],[[3134,2],[3135,2],[3235,2],[3236,2]]], [3188,[12687.3,2854.89,0],[[3135,2],[3237,2]]], [3189,[744.715,15841.2,0],[[3137,2],[3238,2]]], [3190,[404.693,15798.5,0],[[3138,2],[3239,2]]], [3191,[1325.99,15123.5,0],[[3139,2],[3240,2]]],
+[3192,[1522.43,15498.7,0],[[3140,2],[3241,2]]], [3193,[12642,5705.71,0],[[3141,2],[3242,2],[3243,2],[3244,2]]], [3194,[13263.3,6153.22,-9.53674e-007],[[3142,2],[3245,2],[3246,2],[3247,2]]], [3195,[13214.2,5963.49,-1.90735e-006],[[3142,2],[3196,2]]], [3196,[13224.9,5847.85,-9.53674e-007],[[3143,2],[3195,2]]], [3197,[13182.8,5706.05,0],[[3143,2],[3197,2],[3248,2]]],
+[3198,[13919.7,6795.48,9.53674e-007],[[3145,2],[3249,2]]], [3199,[13415,6379.41,1.90735e-006],[[3146,2],[3250,2]]], [3200,[11913.8,9082.49,-9.53674e-007],[[3148,2],[3251,2]]], [3201,[11501.2,11713,0],[[3149,2],[3252,2]]], [3202,[11352.6,11949.2,0],[[3150,2],[3253,2]]], [3203,[10652.4,12533.8,0],[[3151,2],[3254,2]]],
+[3204,[12072.7,10880.1,0],[[3152,2],[3255,2]]], [3205,[12258.1,10140.9,0],[[3153,2],[3256,2]]], [3206,[11961.2,9753.38,0],[[3154,2],[3257,2]]], [3207,[8504.1,15530.6,0],[[3155,2],[3258,2]]], [3208,[10604.7,13948.2,0],[[3157,2],[3259,2]]], [3209,[10493.5,13606.4,0],[[3158,2],[3260,2]]],
+[3210,[10398.6,14345.5,0],[[3159,2],[3261,2]]], [3211,[10235.1,14613.7,0],[[3160,2]]], [3212,[9938.96,14936.8,0],[[3161,2],[3262,2]]], [3213,[10545.3,13025.6,2.38419e-007],[[3162,2],[3263,2],[3264,2],[3265,2]]], [3214,[9738.76,14937.6,0],[[3163,2],[3266,2]]], [3215,[8810.76,15327.3,0],[[3164,2],[3267,2]]],
+[3216,[8827.81,15363.6,0],[[3165,2],[3267,2]]], [3217,[7129.52,16237,0],[[3166,2],[3268,2]]], [3218,[6612.91,16212.7,0],[[3167,2],[3269,2]]], [3219,[6628.62,15777.7,0],[[3168,2],[3221,2]]], [3220,[7706.43,16366.9,9.53674e-007],[[3170,2]]], [3221,[6492.8,15681.6,0],[[3171,2],[3219,2]]],
+[3222,[5779.59,15945.2,9.53674e-007],[[3172,2],[3270,2]]], [3223,[1584.57,15007.6,-1.90735e-006],[[3173,2],[3240,2]]], [3224,[3999.85,16142.2,3.17891e-007],[[3174,2],[3225,2],[3271,2]]], [3225,[4162.68,16011.4,-2.38419e-007],[[3175,2],[3224,2],[3272,2],[3227,2],[3273,2]]], [3226,[5343.26,16299.6,9.53674e-007],[[3177,2],[3274,2]]], [3227,[4214.52,15975,0],[[3178,2],[3225,2],[3272,2]]],
+[3228,[3953.38,16182.3,0],[[3179,2],[3271,2]]], [3229,[3747.3,15971.8,0],[[3180,2],[3275,2]]], [3230,[13229.1,1678.55,0],[[3181,2],[3276,2],[3277,2],[3278,2]]], [3231,[12909.2,1911.99,1.90735e-006],[[3182,2],[3279,2]]], [3232,[13013.4,1321.95,0],[[3183,2],[3280,2]]], [3233,[12573.1,2482.74,0],[[3184,2],[3237,2]]],
+[3234,[11958.1,3645.32,0],[[3186,2],[3281,2]]], [3235,[12791.1,2853.62,-2.38419e-007],[[3187,2],[3282,2],[3283,2],[3284,2]]], [3236,[12696.9,2854.85,0],[[3187,2]]], [3237,[12629.2,2661.62,0],[[3188,2],[3233,2]]], [3238,[790.037,16017.1,0],[[3189,2],[3285,2]]], [3239,[280.885,15887.3,0],[[3190,2],[3286,2]]],
+[3240,[1494.65,15047.4,-1.90735e-006],[[3191,2],[3223,2]]], [3241,[1659.36,15560.2,0],[[3192,2],[3287,2]]], [3242,[12481,5620.56,0],[[3193,2],[3288,2]]], [3243,[12606.5,5778.86,0],[[3193,2],[3289,2]]], [3244,[12641.1,5571.15,0],[[3193,2],[3290,2]]], [3245,[13335.2,6237.63,-1.90735e-006],[[3194,2],[3250,2]]],
+[3246,[13321.3,6130.21,0],[[3194,2]]], [3247,[13208.2,6239.59,0],[[3194,2],[3291,2]]], [3248,[13206,5670.05,0],[[3197,2],[3292,2],[3248,2]]], [3249,[14066.2,6839.11,-1.90735e-006],[[3198,2],[3293,2]]], [3250,[13367.4,6294.71,-1.90735e-006],[[3199,2],[3245,2]]], [3251,[12049.7,9068.5,0],[[3200,2],[3294,2]]],
+[3252,[11566.2,11614.2,0],[[3201,2],[3295,2]]], [3253,[11490.3,11874.6,0],[[3202,2],[3296,2]]], [3254,[10581.9,12635.6,0],[[3203,2],[3297,2]]], [3255,[12177.5,10912.5,0],[[3204,2],[3298,2]]], [3256,[12406.2,10084.8,0],[[3205,2],[3299,2]]], [3257,[12036.5,9658.44,0],[[3206,2],[3300,2]]],
+[3258,[8503.49,15649.8,9.53674e-007],[[3207,2],[3301,2]]], [3259,[10751,13955.1,-9.53674e-007],[[3208,2],[3302,2]]], [3260,[10530.8,13456,0],[[3209,2],[3303,2]]], [3261,[10546.7,14333.5,0],[[3210,2],[3304,2]]], [3262,[9954.43,15079.1,0],[[3212,2],[3305,2]]], [3263,[10569.9,13176.4,0],[[3213,2],[3303,2]]],
+[3264,[10479.3,12911.3,0],[[3213,2],[3297,2]]], [3265,[10691.4,12940.1,0],[[3213,2],[3306,2]]], [3266,[9843.35,15019.6,0],[[3214,2],[3305,2]]], [3267,[8783.08,15482.1,3.17891e-007],[[3215,2],[3216,2],[3307,2]]], [3268,[7227.53,16344.8,9.53674e-007],[[3217,2],[3308,2]]], [3269,[6490.58,16301.2,0],[[3218,2],[3309,2]]],
+[3270,[5810.92,16093.7,-1.90735e-006],[[3222,2],[3310,2]]], [3271,[3958.42,16268.7,0],[[3224,2],[3228,2],[3311,2]]], [3272,[4191.73,15991.5,0],[[3225,2],[3227,2],[3312,2]]], [3273,[4227.11,16162.7,-9.53674e-007],[[3225,2],[3313,2]]], [3274,[5384.62,16370.8,0],[[3226,2]]], [3275,[3609.89,15971.2,0],[[3229,2],[3314,2]]],
+[3276,[13179.7,1855.19,0],[[3230,2],[3315,2]]], [3277,[13241.1,1534.39,0],[[3230,2],[3316,2]]], [3278,[13372.2,1721.31,0],[[3230,2],[3317,2]]], [3279,[12904.3,2051.2,0],[[3231,2],[3318,2]]], [3280,[13043.5,1188.61,0],[[3232,2],[3319,2]]], [3281,[11980.9,3808.11,0],[[3234,2]]],
+[3282,[12790.1,3009.31,-2.38419e-007],[[3235,2],[3284,2],[3320,2],[3282,2]]], [3283,[12809.9,2675.22,0],[[3235,2],[3321,2]]], [3284,[12898.3,2807.67,-7.15256e-007],[[3235,2],[3282,2],[3322,2],[3323,2]]], [3285,[848.831,16185.2,0],[[3238,2],[3324,2]]], [3286,[149.59,15957.5,0],[[3239,2],[3325,2]]], [3287,[1799.93,15604.2,1.90735e-006],[[3241,2],[3326,2]]],
+[3288,[12366,5552.55,0],[[3242,2],[3327,2]]], [3289,[12531.7,5887.06,0],[[3243,2],[3328,2]]], [3290,[12649.8,5495.72,0],[[3244,2],[3329,2]]], [3291,[13149.3,6289.64,0],[[3247,2],[3330,2]]], [3292,[13294.3,5622.03,9.53674e-007],[[3248,2],[3331,2]]], [3293,[14180.3,6877.71,0],[[3249,2],[3332,2]]],
+[3294,[12211.4,9052.08,0],[[3251,2],[3333,2]]], [3295,[11648.5,11502.3,0],[[3252,2],[3334,2]]], [3296,[11639.6,11806.7,0],[[3253,2],[3335,2]]], [3297,[10499.1,12738.6,0],[[3254,2],[3264,2]]], [3298,[12301.5,10957.7,0],[[3255,2],[3336,2]]], [3299,[12545.4,9982.78,0],[[3256,2],[3337,2],[3338,2]]],
+[3300,[12112.5,9539.11,0],[[3257,2],[3339,2]]], [3301,[8493.11,15787.4,-9.53674e-007],[[3258,2],[3340,2]]], [3302,[10887.9,13972.3,0],[[3259,2],[3341,2]]], [3303,[10569.9,13325.8,0],[[3260,2],[3263,2]]], [3304,[10676,14306.7,0],[[3261,2],[3342,2]]], [3305,[9950.2,15101.6,0],[[3262,2],[3266,2],[3343,2],[3344,2],[3345,2]]],
+[3306,[10849.1,12838.7,0],[[3265,2],[3346,2]]], [3307,[8721.8,15719.3,0],[[3267,2],[3347,2]]], [3308,[7248.86,16370.5,0],[[3268,2]]], [3309,[6396.33,16373.7,0],[[3269,2]]], [3310,[5843.66,16264.6,0],[[3270,2],[3348,2]]], [3311,[3945.7,16368.5,0],[[3271,2]]],
+[3312,[4360.44,16027.7,-9.53674e-007],[[3272,2],[3349,2]]], [3313,[4277.73,16293.9,0],[[3273,2],[3350,2]]], [3314,[3472.03,15963,0],[[3275,2],[3351,2]]], [3315,[13136.8,1983.88,0],[[3276,2],[3352,2]]], [3316,[13254.1,1371.46,-4.76837e-007],[[3277,2],[3353,2],[3316,2],[3354,2]]], [3317,[13503.6,1761.82,0],[[3278,2],[3355,2]]],
+[3318,[12890.8,2202.71,9.53674e-007],[[3279,2],[3356,2]]], [3319,[13057.9,1120.49,0],[[3280,2],[3357,2],[3358,2],[3354,2]]], [3320,[12768.7,3101.24,3.8147e-007],[[3282,2],[3359,2],[3320,2],[3360,2]]], [3321,[12834.2,2526.75,-9.53674e-007],[[3283,2],[3356,2]]], [3322,[13067.3,2794.33,1.90735e-006],[[3284,2],[3361,2]]], [3323,[12967.7,2645.69,9.53674e-007],[[3284,2],[3362,2]]],
+[3324,[926.138,16351,0],[[3285,2],[3363,2]]], [3325,[15.4501,16019.1,1.90735e-006],[[3286,2]]], [3326,[1931.24,15647.6,0],[[3287,2],[3364,2]]], [3327,[12214.7,5509.71,-9.53674e-007],[[3288,2],[3365,2]]], [3328,[12525.4,5897.1,0],[[3289,2]]], [3329,[12614.7,5368.82,0],[[3290,2],[3366,2]]],
+[3330,[13049.5,6338.49,0],[[3291,2],[3367,2]]], [3331,[13350.3,5577.37,0],[[3292,2],[3368,2]]], [3332,[14261.1,6887.94,3.17891e-007],[[3293,2],[3369,2],[3370,2],[3371,2],[3372,2],[3373,2]]], [3333,[12352.3,9036.15,0],[[3294,2],[3374,2]]], [3334,[11724.1,11404.8,0],[[3295,2],[3375,2]]], [3335,[11797.6,11752.5,0],[[3296,2],[3376,2]]],
+[3336,[12388.1,10966.8,0],[[3298,2],[3377,2]]], [3337,[12735.8,9904.18,0],[[3299,2],[3378,2]]], [3338,[12570.6,9897.88,0],[[3299,2],[3379,2]]], [3339,[12176.4,9433.73,0],[[3300,2],[3380,2]]], [3340,[8455.28,15932.3,0],[[3301,2],[3381,2]]], [3341,[11023.3,13929.8,0],[[3302,2],[3382,2]]],
+[3342,[10827.4,14291.6,0],[[3304,2],[3383,2]]], [3343,[10118.9,15027.3,-4.76837e-007],[[3305,2],[3384,2]]], [3344,[9786.06,15192.5,0],[[3305,2],[3385,2]]], [3345,[10007.2,15281.8,0],[[3305,2],[3386,2]]], [3346,[10950.8,12858.1,0],[[3306,2],[3387,2]]], [3347,[8664.45,15864.1,0],[[3307,2],[3388,2]]],
+[3348,[5858.58,16371.1,0],[[3310,2]]], [3349,[4517.48,16049,0],[[3312,2],[3389,2]]], [3350,[4308.69,16372.7,0],[[3313,2]]], [3351,[3322.38,15963.4,0],[[3314,2],[3390,2]]], [3352,[13107.3,2131.29,0],[[3315,2],[3391,2]]], [3353,[13284.6,1209.78,0],[[3316,2],[3392,2]]],
+[3354,[13191.2,1253.59,9.53674e-007],[[3316,2],[3319,2]]], [3355,[13657.9,1786.96,-9.53674e-007],[[3317,2],[3393,2]]], [3356,[12870,2348.81,0],[[3318,2],[3321,2]]], [3357,[12928.1,966.485,0],[[3319,2],[3394,2]]], [3358,[13094.2,955.309,0],[[3319,2],[3395,2]]], [3359,[12765.8,3147.32,0],[[3320,2],[3396,2],[3359,2],[3397,2]]],
+[3360,[12705,3079.85,0],[[3320,2]]], [3361,[13217.5,2739.96,0],[[3322,2],[3398,2]]], [3362,[13013.7,2519.94,0],[[3323,2],[3399,2]]], [3363,[934.982,16372.9,0],[[3324,2]]], [3364,[2067.34,15694.8,0],[[3326,2],[3400,2]]], [3365,[12072.9,5486.2,0],[[3327,2],[3401,2]]],
+[3366,[12593,5233.4,0],[[3329,2],[3402,2]]], [3367,[12949.5,6395.31,1.90735e-006],[[3330,2],[3367,2]]], [3368,[13418.9,5510.82,0],[[3331,2],[3403,2],[3404,2],[3368,2]]], [3369,[14362.5,6933.47,0],[[3332,2],[3405,2]]], [3370,[14124.5,7038.16,0],[[3332,2],[3406,2]]], [3371,[14263.8,6822.64,0],[[3332,2],[3407,2]]],
+[3372,[14426.4,6818.15,0],[[3332,2],[3408,2]]], [3373,[14450.6,6912.04,0],[[3332,2],[3405,2]]], [3374,[12477.1,9018.57,3.17891e-007],[[3333,2],[3409,2],[3410,2]]], [3375,[11840.9,11371.7,0],[[3334,2],[3411,2]]], [3376,[11935,11829.4,0],[[3335,2],[3412,2]]], [3377,[12511.6,10972.7,1.90735e-006],[[3336,2],[3413,2]]],
+[3378,[12854.2,9848.9,0],[[3337,2],[3414,2]]], [3379,[12609.6,9834.17,0],[[3338,2],[3415,2]]], [3380,[12273,9345.43,0],[[3339,2],[3416,2]]], [3381,[8415.9,16089.2,9.53674e-007],[[3340,2],[3417,2]]], [3382,[11169.7,13944.5,0],[[3341,2],[3418,2]]], [3383,[11008.7,14277.1,0],[[3342,2],[3419,2]]],
+[3384,[10291.1,15000.9,9.53674e-007],[[3343,2],[3420,2]]], [3385,[9656.08,15260.7,0],[[3344,2],[3421,2]]], [3386,[10031,15429.5,0],[[3345,2],[3422,2]]], [3387,[11095.3,12918.8,0],[[3346,2],[3423,2]]], [3388,[8578.56,16014.5,0],[[3347,2],[3424,2]]], [3389,[4654.66,16109.9,0],[[3349,2],[3425,2]]],
+[3390,[3180.96,15956.8,0],[[3351,2],[3426,2]]], [3391,[13075.5,2289.39,-9.53674e-007],[[3352,2],[3399,2]]], [3392,[13282.8,1046.33,9.53674e-007],[[3353,2],[3427,2]]], [3393,[13795.9,1833.18,0],[[3355,2],[3428,2]]], [3394,[12803.5,856.793,9.53674e-007],[[3357,2],[3429,2]]], [3395,[13140.1,822.685,0],[[3358,2],[3430,2]]],
+[3396,[12735.4,3194.57,9.53674e-007],[[3359,2],[3431,2],[3432,2],[3397,2]]], [3397,[12774.7,3225.46,0],[[3359,2],[3396,2],[3433,2],[3432,2]]], [3398,[13311.6,2706.93,-3.17891e-007],[[3361,2],[3434,2],[3435,2]]], [3399,[13060.9,2363.41,0],[[3362,2],[3391,2]]], [3400,[2206.08,15734,-3.8147e-006],[[3364,2],[3436,2]]], [3401,[11917.8,5450.63,9.53674e-007],[[3365,2],[3437,2]]],
+[3402,[12581.5,5163.54,0],[[3366,2],[3438,2]]], [3403,[13460.6,5411.98,9.53674e-007],[[3368,2],[3439,2]]], [3404,[13415.7,5523.55,0],[[3368,2]]], [3405,[14488.2,6985.13,3.17891e-007],[[3369,2],[3373,2],[3440,2]]], [3406,[14048.9,7143.28,0],[[3370,2],[3441,2]]], [3407,[14397.3,6772.44,0],[[3371,2],[3442,2],[3408,2]]],
+[3408,[14482.8,6768.56,0],[[3372,2],[3407,2],[3443,2],[3442,2]]], [3409,[12379.6,9139.47,9.53674e-007],[[3374,2],[3416,2]]], [3410,[12660.1,8968.92,0],[[3374,2],[3444,2]]], [3411,[11954.5,11361,0],[[3375,2],[3445,2]]], [3412,[12081,11801.1,0],[[3376,2],[3446,2]]], [3413,[12610.6,10988.4,0],[[3377,2],[3447,2]]],
+[3414,[12995.8,9779.15,9.53674e-007],[[3378,2],[3448,2]]], [3415,[12639.2,9764.32,0],[[3379,2],[3449,2]]], [3416,[12338.1,9215.79,9.53674e-007],[[3380,2],[3409,2]]], [3417,[8355.51,16244.8,2.38419e-007],[[3381,2],[3424,2],[3450,2],[3451,2]]], [3418,[11314.1,13999,-4.76837e-007],[[3382,2],[3452,2]]], [3419,[11208.7,14274.1,0],[[3383,2],[3453,2]]],
+[3420,[10455,14975,0],[[3384,2],[3454,2]]], [3421,[9510.05,15350.5,-9.53674e-007],[[3385,2],[3455,2]]], [3422,[10050.2,15528.6,0],[[3386,2],[3456,2],[3457,2],[3458,2]]], [3423,[11214.1,12974,-9.53674e-007],[[3387,2],[3459,2]]], [3424,[8498.43,16137.9,3.17891e-007],[[3388,2],[3417,2],[3460,2]]], [3425,[4800.32,16180.6,0],[[3389,2],[3461,2]]],
+[3426,[3042.53,15921,0],[[3390,2],[3462,2]]], [3427,[13271.5,871.197,0],[[3392,2],[3463,2]]], [3428,[13940.7,1880.4,0],[[3393,2],[3464,2]]], [3429,[12653.5,728.684,0],[[3394,2],[3465,2]]], [3430,[13155.9,673.423,0],[[3395,2],[3466,2]]], [3431,[12698,3269.97,0],[[3396,2]]],
+[3432,[12748,3234.46,1.90735e-006],[[3396,2],[3397,2],[3432,2]]], [3433,[12757.4,3296.9,0],[[3397,2]]], [3434,[13460.5,2641.7,0],[[3398,2],[3467,2]]], [3435,[13480.1,2757.68,0],[[3398,2],[3468,2]]], [3436,[2334.18,15780,0],[[3400,2],[3469,2]]], [3437,[11853.5,5411.79,-9.53674e-007],[[3401,2]]],
+[3438,[12550.6,5088.94,0],[[3402,2],[3470,2]]], [3439,[13480.9,5405.28,0],[[3403,2]]], [3440,[14611.8,7050.97,9.53674e-007],[[3405,2],[3471,2]]], [3441,[14009.4,7194.05,0],[[3406,2],[3472,2],[3473,2],[3474,2]]], [3442,[14439.5,6757.8,0],[[3408,2],[3475,2]]], [3443,[14524.2,6769.4,0],[[3408,2],[3476,2],[3477,2]]],
+[3444,[12765.9,8930.57,0],[[3410,2],[3478,2]]], [3445,[12103.5,11361.1,0],[[3411,2],[3479,2]]], [3446,[12234.5,11774.4,0],[[3412,2],[3480,2]]], [3447,[12692.3,10983.6,0],[[3413,2],[3481,2]]], [3448,[13025.8,9767.51,4.76837e-007],[[3414,2],[3482,2],[3483,2],[3484,2]]], [3449,[12723.1,9698.06,0],[[3415,2],[3485,2]]],
+[3450,[8334.33,16372.8,0],[[3417,2]]], [3451,[8226.5,16330.4,9.53674e-007],[[3417,2],[3486,2]]], [3452,[11433.6,14017.3,0],[[3418,2],[3487,2]]], [3453,[11349.2,14279.4,-9.53674e-007],[[3419,2],[3488,2]]], [3454,[10588.5,14944.3,0],[[3420,2],[3489,2]]], [3455,[9393.79,15420.2,0],[[3421,2],[3490,2]]],
+[3456,[9877.48,15632.6,0],[[3422,2],[3491,2]]], [3457,[10109,15680,0],[[3422,2],[3492,2]]], [3458,[10189.5,15445.4,0],[[3422,2],[3493,2]]], [3459,[11371.6,13016.4,0],[[3423,2],[3494,2]]], [3460,[8635.42,16045,-9.53674e-007],[[3424,2],[3495,2]]], [3461,[4938.03,16264.4,0],[[3425,2],[3496,2]]],
+[3462,[2888.57,15869,0],[[3426,2],[3497,2]]], [3463,[13254.7,736.163,0],[[3427,2],[3466,2]]], [3464,[14049.5,1900.8,0],[[3428,2],[3498,2],[3499,2],[3500,2]]], [3465,[12502,599.298,-9.53674e-007],[[3429,2],[3501,2]]], [3466,[13179.9,618.395,3.17891e-007],[[3430,2],[3463,2],[3502,2]]], [3467,[13572.1,2536.89,0],[[3434,2],[3503,2]]],
+[3468,[13614.1,2808.89,0],[[3435,2],[3504,2]]], [3469,[2473.86,15832.7,0],[[3436,2],[3505,2]]], [3470,[12527.5,4994.58,-9.53674e-007],[[3438,2],[3506,2]]], [3471,[14751.3,7099.91,0],[[3440,2],[3507,2]]], [3472,[13884,7175.04,1.90735e-006],[[3441,2],[3508,2]]], [3473,[14078.4,7184.92,0],[[3441,2]]],
+[3474,[13917.2,7335.15,0],[[3441,2],[3509,2]]], [3475,[14420.6,6720.49,0],[[3442,2],[3510,2],[3511,2]]], [3476,[14623,6816.91,0],[[3443,2],[3512,2]]], [3477,[14611.8,6702.46,0],[[3443,2],[3513,2]]], [3478,[12898.3,8947.25,2.38419e-007],[[3444,2],[3514,2]]], [3479,[12248.7,11341,0],[[3445,2],[3515,2]]],
+[3480,[12383.2,11768.3,0],[[3446,2],[3516,2]]], [3481,[12803.3,10983.3,9.53674e-007],[[3447,2],[3517,2]]], [3482,[13174.6,9712,0],[[3448,2],[3518,2]]], [3483,[12973.3,9631.1,-9.53674e-007],[[3448,2],[3519,2]]], [3484,[13122.9,9900.75,0],[[3448,2],[3520,2]]], [3485,[12804.3,9651.42,0],[[3449,2],[3519,2]]],
+[3486,[8152.62,16373.2,0],[[3451,2]]], [3487,[11555.7,14015.2,0],[[3452,2],[3521,2]]], [3488,[11506.1,14243.5,0],[[3453,2],[3522,2]]], [3489,[10727.9,14931.6,-9.53674e-007],[[3454,2],[3523,2]]], [3490,[9256.94,15517.8,0],[[3455,2],[3524,2]]], [3491,[9826.94,15754,-9.53674e-007],[[3456,2],[3525,2]]],
+[3492,[10167.8,15807.9,0],[[3457,2],[3526,2]]], [3493,[10297.9,15370.6,-9.53674e-007],[[3458,2],[3527,2]]], [3494,[11423.6,13109.5,9.53674e-007],[[3459,2],[3528,2]]], [3495,[8739.88,15961.2,0],[[3460,2],[3529,2]]], [3496,[5069.29,16332,-9.53674e-007],[[3461,2],[3530,2]]], [3497,[2722.32,15866.1,-9.53674e-007],[[3462,2],[3505,2]]],
+[3498,[14002.6,1690.79,9.53674e-007],[[3464,2],[3531,2]]], [3499,[14096.4,2074.27,0],[[3464,2],[3532,2]]], [3500,[14242.6,1933.65,-1.90735e-006],[[3464,2],[3533,2]]], [3501,[12373,485.772,0],[[3465,2],[3534,2]]], [3502,[13210.1,423.039,0],[[3466,2],[3535,2]]], [3503,[13700.6,2434.97,0],[[3467,2],[3536,2]]],
+[3504,[13772.3,2894.29,0],[[3468,2],[3537,2],[3538,2]]], [3505,[2617.62,15867.3,0],[[3469,2],[3497,2]]], [3506,[12421.6,4892.87,0],[[3470,2],[3539,2]]], [3507,[14859.3,7177.77,1.90735e-006],[[3471,2],[3540,2]]], [3508,[13733.5,7147.33,0],[[3472,2],[3541,2]]], [3509,[13838.7,7346.26,0],[[3474,2],[3542,2]]],
+[3510,[14333.1,6679.09,-9.53674e-007],[[3475,2],[3543,2]]], [3511,[14500.7,6704.75,0],[[3475,2],[3544,2]]], [3512,[14723.8,6857.26,0],[[3476,2],[3545,2]]], [3513,[14628.2,6686.38,3.17891e-007],[[3477,2],[3544,2],[3546,2]]], [3514,[13055,8913.79,0],[[3478,2],[3547,2]]], [3515,[12373.7,11349.4,0],[[3479,2],[3548,2]]],
+[3516,[12513.4,11670.9,0],[[3480,2],[3549,2]]], [3517,[12959.4,10968.1,0],[[3481,2],[3550,2]]], [3518,[13318.1,9655.14,0],[[3482,2],[3551,2]]], [3519,[12951.4,9566.57,0],[[3483,2],[3485,2],[3552,2]]], [3520,[13139,10057.5,0],[[3484,2],[3553,2]]], [3521,[11702.6,13980.5,0],[[3487,2],[3554,2]]],
+[3522,[11629,14231.6,9.53674e-007],[[3488,2],[3555,2]]], [3523,[10851.6,14921.5,0],[[3489,2],[3556,2]]], [3524,[9101.26,15621.3,0],[[3490,2],[3557,2]]], [3525,[9710.01,15844.7,0],[[3491,2],[3558,2]]], [3526,[10227.5,15912.9,-9.53674e-007],[[3492,2],[3559,2]]], [3527,[10405.4,15295.4,-9.53674e-007],[[3493,2],[3560,2]]],
+[3528,[11527.2,13192.2,0],[[3494,2],[3561,2]]], [3529,[8835.42,15858.1,0],[[3495,2],[3557,2]]], [3530,[5147.1,16375.8,0],[[3496,2]]], [3531,[13963.8,1561.91,1.90735e-006],[[3498,2],[3562,2]]], [3532,[14113.9,2144.39,-4.76837e-007],[[3499,2],[3563,2],[3564,2],[3565,2]]], [3533,[14390.7,1978.55,-9.53674e-007],[[3500,2],[3563,2],[3566,2],[3567,2]]],
+[3534,[12258.8,375.955,-9.53674e-007],[[3501,2],[3568,2]]], [3535,[13261,282.701,0],[[3502,2],[3569,2]]], [3536,[13838.9,2318.34,0],[[3503,2],[3564,2]]], [3537,[13909.7,2999.6,0],[[3504,2],[3570,2]]], [3538,[13926.7,2932,0],[[3504,2],[3571,2]]], [3539,[12362.3,4819.07,9.53674e-007],[[3506,2]]],
+[3540,[14936.3,7225.75,-3.57628e-007],[[3507,2],[3572,2],[3573,2],[3574,2]]], [3541,[13604.4,7154.09,0],[[3508,2]]], [3542,[13755.1,7361.87,-9.53674e-007],[[3509,2],[3575,2]]], [3543,[14282.2,6637.38,0],[[3510,2],[3576,2]]], [3544,[14563.2,6686.78,0],[[3511,2],[3513,2],[3577,2]]], [3545,[14795.6,6908.44,-1.90735e-006],[[3512,2],[3578,2]]],
+[3546,[14707,6656.41,3.17891e-007],[[3513,2],[3579,2],[3580,2]]], [3547,[13193,8965.89,0],[[3514,2],[3581,2]]], [3548,[12496,11349.4,9.53674e-007],[[3515,2],[3582,2]]], [3549,[12603.7,11565.3,9.53674e-007],[[3516,2],[3583,2]]], [3550,[13078.9,10993.3,0],[[3517,2],[3584,2]]], [3551,[13391.6,9676.11,0],[[3518,2],[3585,2]]],
+[3552,[13015.6,9449.42,0],[[3519,2],[3586,2]]], [3553,[13199.7,10206.9,0],[[3520,2],[3587,2]]], [3554,[11869.7,13930.5,0],[[3521,2],[3588,2]]], [3555,[11774.8,14229,0],[[3522,2],[3589,2]]], [3556,[10977.6,14884.1,0],[[3523,2],[3590,2]]], [3557,[8966.85,15729.5,0],[[3524,2],[3529,2]]],
+[3558,[9589.13,15932.6,0],[[3525,2],[3591,2]]], [3559,[10293.5,16008.4,0],[[3526,2],[3592,2]]], [3560,[10519.8,15235.5,0],[[3527,2],[3593,2]]], [3561,[11568.8,13222.3,0],[[3528,2],[3594,2],[3595,2]]], [3562,[13942.8,1428.34,0],[[3531,2],[3596,2]]], [3563,[14288,2053.41,0],[[3532,2],[3533,2]]],
+[3564,[13972.4,2232.44,0],[[3532,2],[3536,2]]], [3565,[14177.5,2299.45,0],[[3532,2],[3597,2]]], [3566,[14557.8,1883.59,0],[[3533,2],[3598,2]]], [3567,[14556.1,2060.72,0],[[3533,2],[3599,2]]], [3568,[12167.4,260.844,0],[[3534,2],[3600,2]]], [3569,[13325.8,164.734,0],[[3535,2],[3601,2]]],
+[3570,[14026.8,3049.31,0],[[3537,2],[3602,2]]], [3571,[14057.1,2987.54,0],[[3538,2],[3603,2]]], [3572,[15019.2,7258.43,0],[[3540,2],[3604,2],[3573,2],[3572,2],[3605,2],[3574,2],[3606,2],[3607,2]]], [3573,[14921.6,7268.8,0],[[3540,2],[3572,2],[3604,2],[3608,2],[3609,2]]], [3574,[14973.2,7126.97,0],[[3540,2],[3572,2],[3605,2],[3610,2]]], [3575,[13689.8,7483.78,9.53674e-007],[[3542,2],[3611,2]]],
+[3576,[14217.1,6577.3,0],[[3543,2],[3612,2],[3576,2]]], [3577,[14598.1,6684.84,0],[[3544,2]]], [3578,[14871.4,6926.64,0],[[3545,2],[3613,2],[3610,2]]], [3579,[14798.2,6679.95,1.90735e-006],[[3546,2],[3614,2]]], [3580,[14902.6,6607.1,0],[[3546,2],[3615,2]]], [3581,[13317.9,8942.08,0],[[3547,2],[3616,2]]],
+[3582,[12555.3,11362.2,0],[[3548,2],[3617,2]]], [3583,[12723.7,11464.1,0],[[3549,2],[3618,2]]], [3584,[13177.6,11014,0],[[3550,2],[3619,2]]], [3585,[13487.2,9779.26,9.53674e-007],[[3551,2],[3620,2]]], [3586,[13079.6,9334.96,9.53674e-007],[[3552,2],[3621,2]]], [3587,[13279.2,10307.2,9.53674e-007],[[3553,2],[3622,2]]],
+[3588,[12014.4,13916.6,0],[[3554,2],[3623,2]]], [3589,[11915.9,14200.8,9.53674e-007],[[3555,2],[3624,2]]], [3590,[11121.7,14829.3,0],[[3556,2],[3625,2]]], [3591,[9466.44,16061.2,0],[[3558,2],[3626,2]]], [3592,[10388.2,16136.1,0],[[3559,2],[3627,2]]], [3593,[10700.2,15200.1,0],[[3560,2],[3628,2]]],
+[3594,[11414.4,13250.7,-9.53674e-007],[[3561,2],[3629,2]]], [3595,[11634.2,13363.8,0],[[3561,2],[3630,2]]], [3596,[13928.6,1292.88,0],[[3562,2],[3631,2]]], [3597,[14215.6,2422.73,-1.90735e-006],[[3565,2],[3632,2]]], [3598,[14685.9,1814.59,0],[[3566,2],[3633,2]]], [3599,[14593.8,2076.86,0],[[3567,2],[3634,2],[3635,2],[3636,2]]],
+[3600,[12109.1,147.692,0],[[3568,2],[3637,2]]], [3601,[13348.1,28.2114,0],[[3569,2],[3601,2]]], [3602,[14177.2,3109.86,0],[[3570,2],[3638,2],[3639,2],[3640,2],[3603,2]]], [3603,[14191.9,3007.99,-9.53674e-007],[[3571,2],[3602,2],[3640,2]]], [3604,[15003.9,7303.8,3.97364e-008],[[3572,2],[3573,2],[3641,2],[3608,2],[3604,2],[3642,2],[3607,2]]], [3605,[15026.9,7178.69,-4.76837e-007],[[3572,2],[3574,2],[3606,2]]],
+[3606,[15063,7201.61,0],[[3572,2],[3605,2],[3643,2],[3642,2]]], [3607,[15084.4,7264.12,0],[[3572,2],[3604,2],[3642,2]]], [3608,[14887.3,7347.22,5.96046e-008],[[3573,2],[3604,2],[3641,2],[3644,2],[3608,2]]], [3609,[14844.3,7246.59,0],[[3573,2]]], [3610,[14900.3,6985.17,0],[[3574,2],[3578,2],[3645,2],[3613,2]]], [3611,[13608.9,7609.55,0],[[3575,2],[3646,2]]],
+[3612,[14152.3,6476.03,0],[[3576,2],[3647,2]]], [3613,[14897,6938.1,0],[[3578,2],[3610,2],[3648,2]]], [3614,[14839.3,6728.57,0],[[3579,2],[3648,2]]], [3615,[15001.1,6545.33,0],[[3580,2],[3649,2]]], [3616,[13389.8,8920.63,0],[[3581,2],[3650,2],[3651,2]]], [3617,[12606.6,11416.2,0],[[3582,2],[3652,2]]],
+[3618,[12736.7,11411.6,6.35783e-007],[[3583,2],[3653,2],[3652,2]]], [3619,[13297.9,11024.5,0],[[3584,2],[3654,2],[3655,2],[3656,2]]], [3620,[13500.9,9785.57,-3.17891e-007],[[3585,2],[3657,2],[3658,2]]], [3621,[13187.8,9248.2,0],[[3586,2],[3659,2]]], [3622,[13355.4,10339.8,0],[[3587,2],[3660,2]]], [3623,[12181.1,13947.2,-3.17891e-007],[[3588,2],[3661,2],[3662,2]]],
+[3624,[12063.2,14176.1,0],[[3589,2],[3663,2]]], [3625,[11281.4,14803.3,-4.76837e-007],[[3590,2],[3664,2]]], [3626,[9347.76,16136.1,0],[[3591,2],[3665,2]]], [3627,[10482.9,16253.7,9.53674e-007],[[3592,2],[3666,2]]], [3628,[10866.6,15116.4,0],[[3593,2],[3667,2]]], [3629,[11298.4,13264.2,0],[[3594,2]]],
+[3630,[11686.4,13492.5,0],[[3595,2],[3668,2]]], [3631,[13896.9,1175.03,0],[[3596,2],[3669,2]]], [3632,[14217.9,2566.07,0],[[3597,2],[3670,2]]], [3633,[14811.6,1745.96,0],[[3598,2],[3671,2]]], [3634,[14465.2,2262.4,0],[[3599,2],[3672,2]]], [3635,[14709.7,1969.47,0],[[3599,2],[3673,2]]],
+[3636,[14750.6,2159.86,0],[[3599,2],[3674,2]]], [3637,[12011.4,25.5427,0],[[3600,2],[3637,2]]], [3638,[14241.1,3136.11,-4.76837e-007],[[3602,2],[3675,2],[3676,2],[3640,2]]], [3639,[14117.4,3243.67,0],[[3602,2],[3676,2],[3639,2]]], [3640,[14258.2,3026.86,-1.90735e-007],[[3602,2],[3603,2],[3638,2],[3677,2],[3678,2]]], [3641,[14974.7,7372.66,-3.97364e-008],[[3604,2],[3608,2],[3679,2],[3680,2],[3681,2],[3642,2]]],
+[3642,[15054,7331.67,0],[[3604,2],[3606,2],[3607,2],[3641,2],[3681,2],[3643,2]]], [3643,[15155.5,7357.68,0],[[3606,2],[3642,2],[3682,2],[3643,2],[3683,2],[3684,2]]], [3644,[14871.7,7397.16,0],[[3608,2]]], [3645,[14889.8,6944.46,-2.38419e-007],[[3610,2]]], [3646,[13537.2,7766.68,0],[[3611,2],[3685,2]]], [3647,[14090.2,6460.71,0],[[3612,2],[3686,2]]],
+[3648,[14912.4,6812.57,0],[[3613,2],[3614,2]]], [3649,[15081.6,6561.35,0],[[3615,2],[3687,2]]], [3650,[13344.6,9062.95,0],[[3616,2],[3659,2]]], [3651,[13460.6,8746.5,0],[[3616,2],[3688,2]]], [3652,[12673.7,11414.3,0],[[3617,2],[3618,2]]], [3653,[12872.3,11318.8,0],[[3618,2],[3689,2]]],
+[3654,[13173.2,11106.2,0],[[3619,2],[3690,2]]], [3655,[13428.8,11065.7,0],[[3619,2],[3691,2]]], [3656,[13393.3,10928.7,0],[[3619,2],[3656,2],[3692,2],[3693,2],[3694,2]]], [3657,[13552.2,9634.94,0],[[3620,2],[3695,2]]], [3658,[13476.9,9932.42,0],[[3620,2],[3696,2]]], [3659,[13274.6,9140.16,0],[[3621,2],[3650,2]]],
+[3660,[13481,10359.6,0],[[3622,2],[3697,2],[3698,2],[3660,2]]], [3661,[12003.7,13862.3,0],[[3623,2],[3699,2]]], [3662,[12421,14001.2,0],[[3623,2],[3700,2]]], [3663,[12218.3,14152.7,0],[[3624,2],[3701,2]]], [3664,[11419.6,14797.2,0],[[3625,2],[3702,2]]], [3665,[9247.15,16206.3,0],[[3626,2],[3703,2]]],
+[3666,[10585.5,16344.6,0],[[3627,2],[3704,2]]], [3667,[11019.3,15071.8,-9.53674e-007],[[3628,2],[3705,2]]], [3668,[11753.9,13638.4,0],[[3630,2],[3699,2]]], [3669,[13860.7,1003.43,0],[[3631,2],[3706,2]]], [3670,[14228.3,2721.69,0],[[3632,2],[3677,2]]], [3671,[14916.4,1667.56,0],[[3633,2],[3707,2],[3708,2]]],
+[3672,[14396.3,2392.28,0],[[3634,2],[3709,2]]], [3673,[14819.6,1876.6,-9.53674e-007],[[3635,2],[3707,2]]], [3674,[14875.6,2238.42,0],[[3636,2],[3710,2]]], [3675,[14392.7,3157.96,0],[[3638,2],[3711,2]]], [3676,[14198,3273.56,-6.35783e-007],[[3638,2],[3639,2],[3712,2]]], [3677,[14285.2,2908.97,3.17891e-007],[[3640,2],[3670,2],[3713,2]]],
+[3678,[14448.3,3101.79,0],[[3640,2],[3714,2],[3711,2]]], [3679,[14924.4,7476.03,0],[[3641,2]]], [3680,[14946.4,7481.1,0],[[3641,2]]], [3681,[15022.7,7406.41,0],[[3641,2],[3642,2],[3682,2],[3681,2],[3715,2]]], [3682,[15114.9,7397.02,0],[[3643,2],[3681,2],[3715,2],[3683,2]]], [3683,[15197.2,7418.44,0],[[3643,2],[3682,2],[3715,2],[3716,2],[3684,2]]],
+[3684,[15316.5,7432.16,2.86102e-007],[[3643,2],[3683,2],[3717,2],[3718,2],[3716,2],[3719,2],[3720,2]]], [3685,[13416.8,7839.03,0],[[3646,2],[3721,2]]], [3686,[14037.8,6490.56,1.58946e-007],[[3647,2],[3722,2],[3723,2]]], [3687,[15193.1,6532.72,0],[[3649,2],[3724,2]]], [3688,[13566.9,8680.36,0],[[3651,2],[3725,2]]], [3689,[12976.9,11217.5,0],[[3653,2],[3690,2]]],
+[3690,[13053.2,11185.7,0],[[3654,2],[3689,2]]], [3691,[13504.1,11167.9,1.90735e-006],[[3655,2],[3726,2]]], [3692,[13507.1,10942.2,0],[[3656,2],[3727,2],[3693,2]]], [3693,[13536.6,10824.7,0],[[3656,2],[3692,2],[3728,2],[3729,2],[3727,2]]], [3694,[13406.6,10803.2,0],[[3656,2],[3730,2],[3729,2]]], [3695,[13609.7,9520.09,0],[[3657,2],[3731,2]]],
+[3696,[13495.8,10078,0],[[3658,2],[3697,2]]], [3697,[13495.7,10187.3,-9.53674e-007],[[3660,2],[3696,2]]], [3698,[13452.3,10516.2,0],[[3660,2],[3732,2],[3730,2]]], [3699,[11898.8,13790.2,-9.53674e-007],[[3661,2],[3668,2]]], [3700,[12586.7,14035.3,0],[[3662,2],[3733,2]]], [3701,[12350.1,14146.6,-9.53674e-007],[[3663,2],[3734,2]]],
+[3702,[11573.5,14775.7,0],[[3664,2],[3735,2]]], [3703,[9125.71,16302.5,9.53674e-007],[[3665,2],[3736,2]]], [3704,[10620.7,16372.2,0],[[3666,2]]], [3705,[11172.7,15060.5,0],[[3667,2],[3737,2]]], [3706,[13849.4,862.918,-1.90735e-006],[[3669,2],[3738,2]]], [3707,[14941.9,1720.69,-2.38419e-007],[[3671,2],[3673,2],[3739,2],[3740,2]]],
+[3708,[14839.8,1481.89,0],[[3671,2],[3741,2]]], [3709,[14359.8,2517.26,1.90735e-006],[[3672,2],[3742,2]]], [3710,[15000,2308.65,0],[[3674,2],[3743,2]]], [3711,[14443.4,3164.91,-1.58946e-007],[[3675,2],[3678,2],[3712,2],[3714,2]]], [3712,[14323.6,3222.42,0],[[3676,2],[3711,2]]], [3713,[14317.1,2793.66,0],[[3677,2],[3742,2],[3744,2]]],
+[3714,[14518.4,3151.94,9.53674e-007],[[3678,2],[3711,2],[3745,2]]], [3715,[15116.3,7441.37,0],[[3682,2],[3683,2],[3681,2]]], [3716,[15258.7,7451.2,9.53674e-007],[[3683,2],[3684,2],[3746,2]]], [3717,[15357.5,7392.67,-1.58946e-007],[[3684,2],[3720,2],[3717,2],[3747,2]]], [3718,[15313.6,7526.33,0],[[3684,2],[3748,2]]], [3719,[15438.3,7475.6,0],[[3684,2],[3749,2],[3750,2]]],
+[3720,[15346.7,7392.32,0],[[3717,2],[3778,2],[3684,2],[3720,2]]], [3721,[13301.9,7932.71,0],[[3685,2],[3751,2]]], [3722,[14011.4,6535.2,0],[[3686,2]]], [3723,[13939,6484.83,0],[[3686,2],[3752,2],[3723,2],[3753,2]]], [3724,[15303.4,6444.58,0],[[3687,2],[3754,2]]], [3725,[13667.2,8603.02,9.53674e-007],[[3688,2],[3755,2]]],
+[3726,[13625.3,11214.6,0],[[3691,2],[3756,2]]], [3727,[13567.7,10932.4,0],[[3692,2],[3693,2],[3757,2],[3758,2]]], [3728,[13618.7,10753.4,3.17891e-007],[[3693,2],[3728,2],[3729,2]]], [3729,[13493.6,10720.1,-4.76837e-007],[[3693,2],[3694,2],[3728,2],[3732,2],[3730,2]]], [3730,[13403.2,10712.8,0],[[3694,2],[3698,2],[3729,2],[3759,2],[3760,2],[3732,2]]], [3731,[13692.1,9405.15,0],[[3695,2],[3761,2]]],
+[3732,[13431,10621.5,1.90735e-006],[[3698,2],[3729,2],[3730,2]]], [3733,[12649.2,14049.1,0],[[3700,2],[3734,2],[3762,2],[3763,2]]], [3734,[12502.7,14159.2,2.38419e-007],[[3701,2],[3733,2],[3764,2],[3765,2]]], [3735,[11708.4,14745.5,0],[[3702,2],[3766,2]]], [3736,[8969.8,16366.3,-9.53674e-007],[[3703,2],[3736,2]]], [3737,[11296.7,15032.6,0],[[3705,2],[3767,2]]],
+[3738,[13795.4,745.117,1.90735e-006],[[3706,2],[3768,2]]], [3739,[15016.7,1579.74,-6.35783e-007],[[3707,2],[3769,2],[3770,2]]], [3740,[15073.5,1852.02,0],[[3707,2],[3771,2]]], [3741,[14748.5,1393.92,0],[[3708,2],[3772,2]]], [3742,[14342.9,2651.39,0],[[3709,2],[3713,2]]], [3743,[15072.2,2357.49,0],[[3710,2],[3773,2],[3774,2],[3775,2]]],
+[3744,[14458.3,2705.84,0],[[3713,2],[3776,2]]], [3745,[14640.1,3258.51,0],[[3714,2],[3777,2]]], [3746,[15302.8,7507.9,0],[[3716,2]]], [3747,[15381.2,7376.92,0],[[3717,2]]], [3748,[15265.4,7663.59,0],[[3718,2],[3779,2]]], [3749,[15591.4,7569.6,0],[[3719,2],[3780,2]]],
+[3750,[15502.6,7599.82,0],[[3719,2],[3750,2]]], [3751,[13212.9,8052.17,0],[[3721,2],[3781,2]]], [3752,[13950.1,6488.87,0],[[3723,2]]], [3753,[13857.4,6469.69,0],[[3723,2],[3782,2]]], [3754,[15420.6,6353.76,0],[[3724,2],[3783,2]]], [3755,[13781.9,8543.46,0],[[3725,2],[3784,2]]],
+[3756,[13683.7,11231.2,0],[[3726,2],[3758,2],[3785,2]]], [3757,[13718.6,10920.3,0],[[3727,2],[3786,2]]], [3758,[13634.1,11098.1,0],[[3727,2],[3756,2]]], [3759,[13309.5,10698,0],[[3730,2]]], [3760,[13429.2,10607,0],[[3730,2]]], [3761,[13770.8,9288.87,0],[[3731,2],[3787,2]]],
+[3762,[12725.6,14061.4,0],[[3733,2],[3788,2],[3789,2],[3764,2]]], [3763,[12786,13933.2,0],[[3733,2],[3790,2]]], [3764,[12555.9,14171.7,2.38419e-007],[[3734,2],[3762,2],[3791,2],[3792,2]]], [3765,[12378,14250.6,-9.53674e-007],[[3734,2],[3793,2]]], [3766,[11837.2,14692.1,0],[[3735,2],[3794,2]]], [3767,[11459.4,15017.6,9.53674e-007],[[3737,2],[3795,2]]],
+[3768,[13762,604.119,0],[[3738,2],[3796,2]]], [3769,[15089.7,1464.29,0],[[3739,2],[3797,2]]], [3770,[15199.6,1525.7,-9.53674e-007],[[3739,2],[3798,2]]], [3771,[15186.1,1969.2,0],[[3740,2],[3799,2]]], [3772,[14636.1,1314.88,0],[[3741,2],[3800,2]]], [3773,[14979.2,2479.64,0],[[3743,2],[3801,2]]],
+[3774,[15214,2468.79,0],[[3743,2],[3802,2]]], [3775,[15215.3,2310.86,0],[[3743,2],[3803,2]]], [3776,[14607.8,2623.02,0],[[3744,2],[3804,2]]], [3777,[14771.5,3360.25,0],[[3745,2],[3805,2]]], [3778,[15332.5,7399.87,0],[[3720,2]]], [3779,[15191.5,7797.74,0],[[3748,2],[3806,2]]],
+[3780,[15682.8,7646.84,0],[[3749,2],[3807,2]]], [3781,[13115.8,8058.06,-9.53674e-007],[[3751,2],[3808,2]]], [3782,[13841.2,6467.39,4.76837e-007],[[3753,2]]], [3783,[15535.4,6271.08,0],[[3754,2],[3809,2]]], [3784,[13880.1,8483,0],[[3755,2],[3810,2]]], [3785,[13762.6,11339.1,0],[[3756,2],[3811,2],[3812,2]]],
+[3786,[13798.8,10881,0],[[3757,2],[3813,2]]], [3787,[13863.7,9140.63,0],[[3761,2],[3814,2]]], [3788,[12814.8,14053.5,1.90735e-007],[[3762,2],[3788,2],[3815,2],[3816,2]]], [3789,[12816,14003.6,2.38419e-007],[[3762,2],[3817,2],[3790,2]]], [3790,[12841.9,13871.1,2.38419e-007],[[3763,2],[3789,2],[3818,2],[3819,2]]], [3791,[12411.6,14266.4,1.90735e-006],[[3764,2],[3793,2]]],
+[3792,[12706.3,14193.2,2.38419e-007],[[3764,2],[3820,2],[3821,2],[3822,2]]], [3793,[12323.4,14316,0],[[3765,2],[3791,2],[3823,2]]], [3794,[11961.6,14601,0],[[3766,2],[3824,2]]], [3795,[11625.2,14997.7,0],[[3767,2],[3825,2]]], [3796,[13720,477.894,1.90735e-006],[[3768,2],[3826,2]]], [3797,[15144.5,1326.13,0],[[3769,2],[3827,2]]],
+[3798,[15332.5,1492.68,0],[[3770,2],[3828,2]]], [3799,[15207.1,1989.95,0],[[3771,2],[3829,2],[3830,2]]], [3800,[14537.9,1213.28,0],[[3772,2],[3831,2]]], [3801,[14865,2555.31,1.90735e-006],[[3773,2],[3804,2]]], [3802,[15255,2485.21,6.35783e-007],[[3774,2],[3832,2],[3833,2]]], [3803,[15373.4,2280.44,0],[[3775,2],[3834,2]]],
+[3804,[14729.3,2577.52,0],[[3776,2],[3801,2]]], [3805,[14956.8,3410.3,0],[[3777,2],[3835,2]]], [3806,[15090.2,7911.09,4.76837e-007],[[3779,2],[3836,2]]], [3807,[15791.8,7659.69,0],[[3780,2],[3837,2]]], [3808,[13004,8032.28,0],[[3781,2],[3838,2]]], [3809,[15674.4,6229.5,0],[[3783,2],[3839,2]]],
+[3810,[14000.1,8458.42,0],[[3784,2],[3840,2]]], [3811,[13885.9,11376.3,0],[[3785,2],[3841,2]]], [3812,[13773.7,11522.8,0],[[3785,2],[3842,2]]], [3813,[13887.9,10867.5,0],[[3786,2],[3843,2]]], [3814,[13968.9,9019.46,-9.53674e-007],[[3787,2],[3844,2]]], [3815,[12813.9,14024.6,0],[[3788,2]]],
+[3816,[12894.2,14068.6,0],[[3788,2],[3845,2],[3822,2],[3846,2]]], [3817,[12997.5,13887,0],[[3789,2],[3847,2]]], [3818,[12857.6,13670,0],[[3790,2],[3848,2]]], [3819,[13008.9,13772.5,0],[[3790,2],[3849,2]]], [3820,[12825.4,14207.6,0],[[3792,2],[3822,2],[3850,2],[3851,2]]], [3821,[12548.4,14257.2,0],[[3792,2],[3852,2]]],
+[3822,[12831.6,14168.4,0],[[3792,2],[3816,2],[3820,2],[3845,2]]], [3823,[12164.2,14445.7,0],[[3793,2],[3853,2],[3824,2]]], [3824,[12078.2,14517.6,0],[[3794,2],[3823,2],[3854,2]]], [3825,[11757.5,15000.7,0],[[3795,2],[3855,2]]], [3826,[13685.1,323.825,9.53674e-007],[[3796,2],[3856,2]]], [3827,[15198.2,1192.19,0],[[3797,2],[3857,2]]],
+[3828,[15479.6,1468.07,0],[[3798,2]]], [3829,[15331.1,2051.49,0],[[3799,2],[3858,2]]], [3830,[15318.6,2137.47,0],[[3799,2],[3859,2],[3834,2]]], [3831,[14419.5,1088.53,0],[[3800,2],[3860,2]]], [3832,[15414.7,2417.1,0],[[3802,2],[3861,2]]], [3833,[15391.7,2551.05,9.53674e-007],[[3802,2],[3862,2]]],
+[3834,[15422.2,2259.4,0],[[3803,2],[3830,2],[3861,2],[3863,2],[3859,2],[3864,2]]], [3835,[15101.4,3450.87,1.90735e-006],[[3805,2],[3865,2]]], [3836,[14988.7,8011.62,0],[[3806,2],[3866,2]]], [3837,[15807.9,7670.85,-3.17891e-007],[[3807,2],[3867,2],[3868,2]]], [3838,[12863.2,8032.83,0],[[3808,2],[3869,2]]], [3839,[15722.3,6198.08,0],[[3809,2]]],
+[3840,[14105,8465.76,0],[[3810,2],[3870,2]]], [3841,[13981.6,11471.6,9.53674e-007],[[3811,2],[3871,2]]], [3842,[13777.1,11657.9,0],[[3812,2],[3872,2]]], [3843,[14000.8,10857,0],[[3813,2],[3873,2]]], [3844,[13985.7,9010.36,-3.17891e-007],[[3814,2],[3874,2],[3875,2]]], [3845,[12909.1,14135.8,-4.76837e-007],[[3816,2],[3822,2],[3846,2],[3876,2],[3851,2]]],
+[3846,[12969.3,14092.1,-3.8147e-007],[[3816,2],[3845,2],[3877,2],[3876,2],[3878,2]]], [3847,[13149.5,13767,4.76837e-007],[[3817,2],[3879,2]]], [3848,[12849.2,13479,0],[[3818,2],[3880,2]]], [3849,[13142.5,13677.7,9.53674e-007],[[3819,2],[3881,2]]], [3850,[12842.5,14402.5,-3.17891e-007],[[3820,2],[3882,2],[3883,2]]], [3851,[12921.4,14227.2,0],[[3820,2],[3845,2],[3884,2],[3877,2],[3876,2]]],
+[3852,[12397.1,14327.7,1.90735e-006],[[3821,2],[3885,2]]], [3853,[12143.5,14469.3,9.53674e-007],[[3823,2],[3885,2]]], [3854,[12148.3,14476.1,0],[[3824,2]]], [3855,[11920.8,15010.9,0],[[3825,2],[3886,2]]], [3856,[13641.9,250.661,0],[[3826,2]]], [3857,[15263.5,1058.37,9.53674e-007],[[3827,2],[3887,2]]],
+[3858,[15453.6,2110.65,0],[[3829,2],[3864,2]]], [3859,[15368.8,2203.72,9.53674e-007],[[3830,2],[3834,2],[3863,2]]], [3860,[14327.5,1010.3,0],[[3831,2],[3888,2]]], [3861,[15511.4,2350.95,0],[[3832,2],[3834,2],[3864,2],[3889,2]]], [3862,[15501,2615.92,-9.53674e-007],[[3833,2],[3890,2]]], [3863,[15402.1,2233,0],[[3834,2],[3859,2]]],
+[3864,[15575.8,2256.19,0],[[3834,2],[3858,2],[3861,2],[3891,2]]], [3865,[15220.4,3491.98,-3.17891e-007],[[3835,2],[3892,2],[3893,2]]], [3866,[14923.8,8115.85,0],[[3836,2],[3894,2],[3895,2]]], [3867,[15764.4,7731.42,0],[[3837,2],[3896,2]]], [3868,[15995.2,7701.1,9.53674e-007],[[3837,2],[3897,2]]], [3869,[12770.1,8010.63,-9.53674e-007],[[3838,2],[3898,2]]],
+[3870,[14239.8,8387.79,-9.53674e-007],[[3840,2],[3899,2]]], [3871,[14068,11540.1,0],[[3841,2],[3900,2]]], [3872,[13767.6,11821.6,0],[[3842,2],[3901,2]]], [3873,[14149,10875.6,-9.53674e-007],[[3843,2],[3902,2]]], [3874,[14099.7,8873.3,0],[[3844,2],[3903,2]]], [3875,[14101.9,9062.84,9.53674e-007],[[3844,2],[3904,2]]],
+[3876,[12934,14150.7,-3.17891e-007],[[3845,2],[3846,2],[3851,2]]], [3877,[13025,14113.1,-1.90735e-007],[[3846,2],[3851,2],[3878,2],[3905,2],[3906,2]]], [3878,[13065,14010.4,-1.90735e-007],[[3846,2],[3877,2],[3907,2],[3878,2],[3908,2],[3909,2],[3906,2]]], [3879,[13252.5,13650.2,3.17891e-007],[[3847,2],[3910,2],[3911,2]]], [3880,[12838,13301.4,0],[[3848,2],[3912,2]]], [3881,[13269.4,13566,0],[[3849,2],[3911,2]]],
+[3882,[12865.3,14573.7,0],[[3850,2],[3913,2]]], [3883,[12825.6,14586.6,0],[[3850,2],[3914,2]]], [3884,[13015.6,14327.2,0],[[3851,2],[3915,2]]], [3885,[12255.7,14417.5,0],[[3852,2],[3853,2]]], [3886,[12085.4,15016.8,0],[[3855,2],[3916,2]]], [3887,[15319.9,947.561,9.53674e-007],[[3857,2],[3917,2]]],
+[3888,[14244.1,927.973,0],[[3860,2],[3918,2]]], [3889,[15629.3,2464.45,0],[[3861,2],[3919,2]]], [3890,[15627.2,2681.02,0],[[3862,2],[3920,2]]], [3891,[15695.4,2449.7,1.90735e-006],[[3864,2],[3921,2]]], [3892,[15323.7,3381.12,0],[[3865,2],[3922,2]]], [3893,[15256.5,3605.18,0],[[3865,2],[3923,2],[3924,2]]],
+[3894,[14959.8,8247.26,9.53674e-007],[[3866,2],[3925,2]]], [3895,[14796.3,8174.65,0],[[3866,2],[3926,2]]], [3896,[15794.7,7858.4,0],[[3867,2],[3927,2]]], [3897,[16022.6,7698.43,1.90735e-007],[[3868,2],[3928,2],[3929,2],[3897,2],[3930,2]]], [3898,[12669.2,7990.23,0],[[3869,2],[3931,2]]], [3899,[14342.4,8374.04,0],[[3870,2],[3932,2]]],
+[3900,[14167.9,11613.1,0],[[3871,2],[3933,2]]], [3901,[13764,11925.1,-6.35783e-007],[[3872,2],[3934,2],[3935,2]]], [3902,[14247.1,10931,0],[[3873,2],[3936,2]]], [3903,[14200.3,8767.66,0],[[3874,2],[3937,2]]], [3904,[14234.9,9092.45,0],[[3875,2],[3938,2]]], [3905,[13114,14155.3,1.90735e-007],[[3877,2],[3906,2],[3939,2],[3940,2],[3915,2]]],
+[3906,[13143.7,14067.7,0],[[3877,2],[3878,2],[3905,2],[3941,2],[3939,2],[3909,2]]], [3907,[13129.7,13908.4,0],[[3878,2],[3942,2],[3910,2],[3909,2],[3908,2]]], [3908,[13114.3,13925.6,0],[[3878,2],[3907,2]]], [3909,[13179.3,13980.8,1.90735e-007],[[3878,2],[3906,2],[3907,2],[3943,2],[3944,2]]], [3910,[13206.3,13819.8,9.53674e-007],[[3879,2],[3907,2],[3945,2]]], [3911,[13316.7,13500.4,3.17891e-007],[[3879,2],[3881,2],[3946,2],[3947,2],[3911,2],[3948,2]]],
+[3912,[12836,13167.8,0],[[3880,2],[3949,2]]], [3913,[12881.2,14695.6,-3.17891e-007],[[3882,2],[3950,2],[3913,2],[3951,2]]], [3914,[12830.9,14716.1,0],[[3883,2],[3951,2]]], [3915,[13034.2,14349.1,0],[[3884,2],[3905,2],[3952,2],[3953,2]]], [3916,[12111.2,15019.4,-3.17891e-007],[[3886,2],[3954,2],[3955,2]]], [3917,[15382.2,818.85,-1.90735e-006],[[3887,2],[3956,2]]],
+[3918,[14145.8,851.424,0],[[3888,2],[3957,2]]], [3919,[15725.1,2588.02,0],[[3889,2],[3958,2],[3921,2]]], [3920,[15747.4,2762.39,0],[[3890,2],[3959,2]]], [3921,[15758.8,2583.29,0],[[3891,2],[3919,2],[3960,2]]], [3922,[15382.5,3267.68,0],[[3892,2],[3961,2]]], [3923,[15323.2,3780.73,0],[[3893,2],[3962,2]]],
+[3924,[15443,3595.59,0],[[3893,2],[3963,2]]], [3925,[15002.5,8304.67,0],[[3894,2],[3964,2]]], [3926,[14656.1,8276.94,0],[[3895,2],[3965,2]]], [3927,[15794.5,7960.3,0],[[3896,2],[3966,2]]], [3928,[16222.9,7730.01,-1.90735e-006],[[3897,2],[3967,2]]], [3929,[16174.6,7618.84,-9.53674e-007],[[3897,2],[3968,2]]],
+[3930,[16003.4,7651.8,0],[[3897,2]]], [3931,[12607.5,7900.06,0],[[3898,2],[3969,2]]], [3932,[14483.4,8389.11,9.53674e-007],[[3899,2],[3970,2]]], [3933,[14273.8,11714.3,0],[[3900,2],[3971,2]]], [3934,[13774.8,12074.9,-1.90735e-006],[[3901,2],[3972,2]]], [3935,[13634.9,11789.2,0],[[3901,2],[3973,2]]],
+[3936,[14359.2,10953.3,0],[[3902,2],[3974,2]]], [3937,[14294.9,8667.64,0],[[3903,2],[3975,2]]], [3938,[14351.5,9151.87,-1.90735e-006],[[3904,2],[3976,2]]], [3939,[13178.1,14150.9,2.38419e-007],[[3905,2],[3906,2],[3940,2],[3977,2]]], [3940,[13173.4,14221.2,0],[[3905,2],[3939,2],[3953,2],[3978,2]]], [3941,[13185,14056.4,0],[[3906,2],[3979,2],[3944,2]]],
+[3942,[13193,13864.4,0],[[3907,2],[3944,2]]], [3943,[13190.2,13891.5,-9.53674e-007],[[3909,2]]], [3944,[13316.3,13957,-7.15256e-007],[[3909,2],[3941,2],[3942,2],[3979,2],[3980,2]]], [3945,[13198.8,13837.8,0],[[3910,2],[3945,2]]], [3946,[13453.4,13359.4,0],[[3911,2],[3981,2]]], [3947,[13328.2,13474,0],[[3911,2],[3982,2]]],
+[3948,[13176.1,13371.3,0],[[3911,2],[3983,2]]], [3949,[12912.2,13058.7,0],[[3912,2],[3984,2]]], [3950,[12889,14675.9,9.53674e-007],[[3913,2],[3952,2]]], [3951,[12870.4,14843.7,-3.17891e-007],[[3913,2],[3914,2],[3985,2]]], [3952,[12957.8,14533.4,0],[[3915,2],[3950,2]]], [3953,[13153.1,14428.5,2.38419e-007],[[3915,2],[3940,2],[3986,2],[3987,2]]],
+[3954,[12299.2,15006.1,0],[[3916,2],[3988,2]]], [3955,[12058.5,15095,0],[[3916,2],[3955,2]]], [3956,[15450.9,687.367,-9.53674e-007],[[3917,2],[3989,2]]], [3957,[14063.3,755.179,0],[[3918,2],[3990,2]]], [3958,[15765.4,2632.42,0],[[3919,2],[3991,2]]], [3959,[15889.5,2853.32,0],[[3920,2],[3992,2]]],
+[3960,[15783.6,2650.27,0],[[3921,2]]], [3961,[15517.1,3221.12,0],[[3922,2],[3993,2]]], [3962,[15302.7,3883.66,0],[[3923,2],[3994,2],[3995,2]]], [3963,[15601,3568.89,0],[[3924,2],[3996,2]]], [3964,[15021.3,8414.37,0],[[3925,2],[3997,2]]], [3965,[14542.4,8386.13,-9.53674e-007],[[3926,2],[3970,2]]],
+[3966,[15777.7,8089.28,0],[[3927,2],[3998,2]]], [3967,[16367.3,7764.11,0],[[3928,2]]], [3968,[16301.3,7583.99,9.53674e-007],[[3929,2],[3999,2]]], [3969,[12516.6,7862.22,0],[[3931,2],[4000,2]]], [3970,[14517.8,8401.1,2.38419e-007],[[3932,2],[3965,2],[3975,2],[4001,2]]], [3971,[14400.8,11747.7,4.76837e-007],[[3933,2],[4002,2]]],
+[3972,[13806.8,12220.7,0],[[3934,2],[4003,2]]], [3973,[13557.6,11677.8,0],[[3935,2],[4004,2]]], [3974,[14491.8,10883.9,0],[[3936,2],[4005,2]]], [3975,[14391.1,8556.19,0],[[3937,2],[3970,2]]], [3976,[14405,9199.98,0],[[3938,2],[4006,2],[4007,2]]], [3977,[13338.5,14200.4,0],[[3939,2],[4008,2]]],
+[3978,[13276.1,14332.3,0],[[3940,2],[4009,2]]], [3979,[13353,14012.8,-1.19209e-006],[[3941,2],[3944,2],[4008,2],[3980,2]]], [3980,[13383,13982.8,0],[[3944,2],[3979,2]]], [3981,[13554.6,13287.9,9.53674e-007],[[3946,2],[4010,2]]], [3982,[13398.7,13308.2,0],[[3947,2],[4011,2]]], [3983,[13100.9,13240.3,0],[[3948,2],[4012,2]]],
+[3984,[12963.7,13016.8,-1.58946e-007],[[3949,2],[4012,2],[4013,2]]], [3985,[12878.3,14980.8,0],[[3951,2],[4014,2],[4015,2]]], [3986,[13096.5,14569.7,0],[[3953,2],[4016,2]]], [3987,[13290.3,14545.8,-9.53674e-007],[[3953,2],[4017,2]]], [3988,[12452,15002,0],[[3954,2],[4018,2]]], [3989,[15542.1,600.013,0],[[3956,2],[4019,2]]],
+[3990,[13979.7,627.739,-1.90735e-006],[[3957,2],[4020,2]]], [3991,[15924.1,2809.52,0],[[3958,2],[3992,2]]], [3992,[15984,2883.08,-4.76837e-007],[[3959,2],[3991,2],[4021,2],[4022,2]]], [3993,[15644.1,3219.55,0],[[3961,2],[4023,2]]], [3994,[15476.6,3834.52,0],[[3962,2],[4024,2]]], [3995,[15362.3,4090.8,0],[[3962,2],[4025,2]]],
+[3996,[15734.1,3553.9,0],[[3963,2],[4026,2]]], [3997,[14988,8534.76,0],[[3964,2],[4027,2]]], [3998,[15774,8214.53,-9.53674e-007],[[3966,2],[4028,2]]], [3999,[16363,7598.26,-9.53674e-007],[[3968,2]]], [4000,[12420,7801.87,-9.53674e-007],[[3969,2],[4029,2]]], [4001,[14572.8,8437.74,0],[[3970,2]]],
+[4002,[14510,11777.3,0],[[3971,2],[4030,2]]], [4003,[13789.9,12357.6,0],[[3972,2],[4031,2]]], [4004,[13519.8,11574.6,9.53674e-007],[[3973,2]]], [4005,[14623,10877.2,0],[[3974,2],[4032,2]]], [4006,[14492.8,9141.28,0],[[3976,2],[4033,2]]], [4007,[14381.5,9289.57,0],[[3976,2],[4034,2]]],
+[4008,[13462.8,14235.4,-2.38419e-007],[[3977,2],[3979,2],[4035,2],[4036,2]]], [4009,[13384.9,14463,0],[[3978,2],[4037,2]]], [4010,[13619.5,13180.1,0],[[3981,2],[4038,2]]], [4011,[13457.8,13196,0],[[3982,2],[4039,2]]], [4012,[13023.4,13086.8,0],[[3983,2],[3984,2]]], [4013,[12876.3,12886.1,0],[[3984,2],[4040,2]]],
+[4014,[12961.4,14809.1,0],[[3985,2],[4016,2]]], [4015,[12856.1,15093.7,-6.35783e-007],[[3985,2],[4041,2],[4018,2]]], [4016,[13034.6,14690.5,0],[[3986,2],[4014,2]]], [4017,[13388.5,14630.2,0],[[3987,2],[4042,2]]], [4018,[12644.6,15028.5,0],[[3988,2],[4015,2]]], [4019,[15680.8,572.377,0],[[3989,2],[4043,2]]],
+[4020,[13914,523.849,0],[[3990,2],[4044,2]]], [4021,[16107.6,2992.5,0],[[3992,2],[4022,2],[4045,2],[4046,2]]], [4022,[16005.5,3023.51,-2.38419e-007],[[3992,2],[4021,2],[4047,2],[4048,2]]], [4023,[15795.2,3178.51,-1.90735e-006],[[3993,2],[4047,2]]], [4024,[15512.9,3828.99,6.35783e-007],[[3994,2],[4049,2],[4050,2]]], [4025,[15451.6,4141.43,-6.35783e-007],[[3995,2],[4051,2],[4052,2]]],
+[4026,[15870.6,3518.31,-1.90735e-006],[[3996,2],[4053,2]]], [4027,[14937.4,8657.43,-6.35783e-007],[[3997,2],[4054,2],[4055,2]]], [4028,[15820.6,8317.51,0],[[3998,2],[4056,2]]], [4029,[12361.1,7799.29,0],[[4000,2],[4057,2]]], [4030,[14582.3,11756.9,0],[[4002,2],[4058,2]]], [4031,[13746.5,12521.8,-4.76837e-007],[[4003,2],[4059,2]]],
+[4032,[14741.8,10966.4,0],[[4005,2],[4060,2]]], [4033,[14548.4,9111.7,6.35783e-007],[[4006,2],[4033,2],[4061,2]]], [4034,[14382.6,9342.74,0],[[4007,2],[4062,2]]], [4035,[13618.3,14266.2,-1.90735e-006],[[4008,2],[4063,2]]], [4036,[13481.9,14417.9,0],[[4008,2],[4064,2]]], [4037,[13505.9,14581.1,0],[[4009,2],[4065,2]]],
+[4038,[13643.4,13138.6,3.17891e-007],[[4010,2],[4066,2],[4067,2]]], [4039,[13506.7,13101.6,0],[[4011,2],[4068,2]]], [4040,[12802.6,12787.2,-1.90735e-006],[[4013,2]]], [4041,[12859.9,15300.4,9.53674e-007],[[4015,2],[4069,2]]], [4042,[13463.6,14723.4,0],[[4017,2]]], [4043,[15852.5,500.259,0],[[4019,2],[4070,2]]],
+[4044,[13828.7,375.101,0],[[4020,2],[4071,2]]], [4045,[16287.6,3131.46,3.17891e-007],[[4021,2],[4072,2],[4073,2]]], [4046,[16215.1,3156.29,0],[[4021,2],[4074,2]]], [4047,[15891.4,3117.76,0],[[4022,2],[4023,2]]], [4048,[15980.3,3218.67,0],[[4022,2],[4075,2]]], [4049,[15696.6,3786.25,0],[[4024,2],[4076,2]]],
+[4050,[15546.8,3939.01,-1.90735e-006],[[4024,2],[4051,2]]], [4051,[15517.9,4014.16,0],[[4025,2],[4050,2]]], [4052,[15576.8,4255.54,0],[[4025,2],[4077,2]]], [4053,[15964.7,3499.93,-4.76837e-007],[[4026,2],[4075,2],[4078,2],[4079,2]]], [4054,[14837.6,8712.06,0],[[4027,2],[4080,2]]], [4055,[14896.1,8788.25,-6.35783e-007],[[4027,2],[4081,2],[4082,2]]],
+[4056,[15841.9,8456.05,0],[[4028,2],[4083,2]]], [4057,[12344.5,7790.78,0],[[4029,2]]], [4058,[14661.2,11715.7,-4.76837e-007],[[4030,2],[4084,2]]], [4059,[13745.7,12542.4,1.58946e-007],[[4031,2],[4085,2],[4086,2]]], [4060,[14788,10983.9,0],[[4032,2],[4060,2],[4087,2]]], [4061,[14653.3,9029.36,0],[[4033,2],[4088,2]]],
+[4062,[14404.7,9387.87,3.17891e-007],[[4034,2],[4062,2],[4089,2]]], [4063,[13754.7,14264.8,0],[[4035,2],[4090,2]]], [4064,[13541.4,14565.8,0],[[4036,2],[4065,2]]], [4065,[13604.4,14714.5,0],[[4037,2],[4064,2],[4091,2]]], [4066,[13668.6,12968.8,0],[[4038,2],[4092,2]]], [4067,[13738.5,13000.8,0],[[4038,2],[4093,2]]],
+[4068,[13561.5,13052.9,0],[[4039,2],[4092,2]]], [4069,[12843,15432.4,0],[[4041,2],[4094,2]]], [4070,[15990.4,440.973,0],[[4043,2],[4095,2]]], [4071,[13717.5,230.002,0],[[4044,2],[4096,2]]], [4072,[16369.7,3207.08,0],[[4045,2]]], [4073,[16376.9,3183.02,0],[[4045,2]]],
+[4074,[16318.7,3280.81,0],[[4046,2],[4097,2]]], [4075,[15989.8,3380.58,0],[[4048,2],[4053,2]]], [4076,[15861.2,3717.06,0],[[4049,2],[4079,2]]], [4077,[15702.1,4319.97,0],[[4052,2],[4098,2]]], [4078,[16125.8,3486.41,0],[[4053,2],[4099,2]]], [4079,[15950.6,3672.97,6.35783e-007],[[4053,2],[4076,2],[4100,2],[4101,2]]],
+[4080,[14777.1,8688.86,0],[[4054,2],[4080,2]]], [4081,[15033.1,8688.72,0],[[4055,2],[4102,2]]], [4082,[14816.3,8870.54,0],[[4055,2],[4088,2]]], [4083,[15922.2,8554.19,-9.53674e-007],[[4056,2],[4103,2]]], [4084,[14771.6,11701.3,0],[[4058,2],[4104,2],[4105,2]]], [4085,[13587.7,12496.8,9.53674e-007],[[4059,2],[4106,2]]],
+[4086,[13894.4,12550.4,0],[[4059,2],[4107,2]]], [4087,[14915.6,11000.3,0],[[4060,2],[4108,2]]], [4088,[14744.6,8944.31,0],[[4061,2],[4082,2]]], [4089,[14451.6,9417.49,6.35783e-007],[[4062,2],[4109,2],[4089,2]]], [4090,[13880.2,14260.2,0],[[4063,2],[4110,2]]], [4091,[13746.8,14860.4,0],[[4065,2],[4111,2]]],
+[4092,[13682.7,12930,-3.17891e-007],[[4066,2],[4068,2],[4112,2]]], [4093,[13850.8,12907.5,0],[[4067,2],[4113,2]]], [4094,[12813.4,15582.5,0],[[4069,2],[4114,2]]], [4095,[16138.2,411.588,0],[[4070,2],[4115,2]]], [4096,[13636.3,119.958,0],[[4071,2],[4116,2]]], [4097,[16374.8,3359.98,9.53674e-007],[[4074,2]]],
+[4098,[15801.4,4371.46,2.38419e-007],[[4077,2],[4117,2],[4118,2],[4119,2]]], [4099,[16287.2,3442.62,0],[[4078,2],[4120,2]]], [4100,[15902.1,3704.29,4.76837e-007],[[4079,2],[4100,2],[4121,2]]], [4101,[16119.7,3613.74,-9.53674e-007],[[4079,2],[4122,2]]], [4102,[15075.6,8637.49,0],[[4081,2]]], [4103,[16001.6,8670.5,9.53674e-007],[[4083,2],[4123,2]]],
+[4104,[14814.9,11601,3.17891e-007],[[4084,2],[4124,2],[4125,2]]], [4105,[14721.5,11849.9,6.35783e-007],[[4084,2],[4124,2],[4126,2]]], [4106,[13458.9,12445.7,-4.76837e-007],[[4085,2],[4127,2]]], [4107,[14013.3,12646.6,0],[[4086,2],[4128,2]]], [4108,[15016.6,10953.9,0],[[4087,2],[4129,2],[4130,2],[4131,2],[4132,2]]], [4109,[14525,9493.27,0],[[4089,2],[4133,2]]],
+[4110,[14012.9,14255.9,9.53674e-007],[[4090,2],[4134,2]]], [4111,[13849.1,14965.7,0],[[4091,2],[4135,2]]], [4112,[13859.7,12771.2,-9.53674e-007],[[4092,2],[4128,2]]], [4113,[13980.5,12792.7,0],[[4093,2],[4136,2]]], [4114,[12783.7,15697.4,0],[[4094,2],[4137,2]]], [4115,[16190.1,298.588,0],[[4095,2],[4138,2]]],
+[4116,[13570.1,14.3778,-9.53674e-007],[[4096,2]]], [4117,[15823.6,4191.09,1.90735e-006],[[4098,2],[4139,2]]], [4118,[15973.2,4459.3,9.53674e-007],[[4098,2],[4140,2]]], [4119,[15680.5,4525.33,0],[[4098,2],[4141,2]]], [4120,[16369.3,3410.54,0],[[4099,2]]], [4121,[15895.9,3853.86,0],[[4100,2],[4139,2]]],
+[4122,[16255.4,3552.67,-9.53674e-007],[[4101,2],[4142,2]]], [4123,[16027.7,8762.28,-3.17891e-007],[[4103,2],[4143,2],[4123,2],[4144,2]]], [4124,[14814.9,11790.3,0],[[4104,2],[4105,2]]], [4125,[14847.3,11546,6.35783e-007],[[4104,2],[4145,2],[4146,2]]], [4126,[14660.3,11991.3,0],[[4105,2],[4147,2]]], [4127,[13383.9,12368.5,4.76837e-007],[[4106,2],[4148,2]]],
+[4128,[14020.1,12665.9,0],[[4107,2],[4112,2],[4149,2]]], [4129,[15040.6,10768.4,0],[[4108,2],[4150,2],[4151,2]]], [4130,[14974.9,11125.6,0],[[4108,2],[4152,2]]], [4131,[15065.7,10814.7,0],[[4108,2],[4132,2]]], [4132,[15095.2,10839.4,-9.53674e-007],[[4108,2],[4131,2],[4153,2]]], [4133,[14536.5,9642.25,0],[[4109,2],[4154,2]]],
+[4134,[14145.8,14297.3,0],[[4110,2],[4155,2]]], [4135,[13985.2,15098.4,0],[[4111,2],[4156,2]]], [4136,[13999.8,12774.9,0],[[4113,2],[4136,2],[4149,2]]], [4137,[12754.5,15812,0],[[4114,2],[4157,2]]], [4138,[16331,313.702,9.53674e-007],[[4115,2],[4158,2]]], [4139,[15847.6,4040.6,9.53674e-007],[[4117,2],[4121,2]]],
+[4140,[16138.9,4442.27,0],[[4118,2],[4159,2]]], [4141,[15589.1,4668.85,0],[[4119,2],[4160,2]]], [4142,[16370.2,3502.14,0],[[4122,2]]], [4143,[16028.5,8732.65,0],[[4123,2],[4143,2]]], [4144,[16059.4,8771.33,-9.53674e-007],[[4123,2]]], [4145,[14975.5,11627.8,0],[[4125,2],[4161,2],[4162,2]]],
+[4146,[14883.5,11376.5,-9.53674e-007],[[4125,2],[4152,2]]], [4147,[14581.5,12082.7,0],[[4126,2],[4163,2]]], [4148,[13264.7,12319.6,4.76837e-007],[[4127,2],[4164,2]]], [4149,[14133.9,12617.9,-2.38419e-007],[[4128,2],[4136,2],[4165,2],[4166,2]]], [4150,[15042.5,10711.8,-3.17891e-007],[[4129,2],[4167,2],[4151,2],[4168,2]]], [4151,[15082.6,10763.5,-3.17891e-007],[[4129,2],[4150,2],[4169,2],[4167,2],[4153,2]]],
+[4152,[14924.8,11278.5,0],[[4130,2],[4146,2]]], [4153,[15127.4,10773,7.15256e-007],[[4132,2],[4151,2],[4170,2],[4171,2]]], [4154,[14499.2,9753.37,9.53674e-007],[[4133,2],[4172,2]]], [4155,[14228.9,14181.4,0],[[4134,2],[4173,2]]], [4156,[14042.3,15164.1,0],[[4135,2],[4174,2],[4175,2],[4176,2]]], [4157,[12727.8,15928.1,0],[[4137,2],[4177,2]]],
+[4158,[16367.6,310.397,0],[[4138,2]]], [4159,[16262.2,4407.57,9.53674e-007],[[4140,2],[4178,2]]], [4160,[15514.1,4805.16,0],[[4141,2],[4179,2]]], [4161,[15106.7,11601.1,0],[[4145,2],[4180,2]]], [4162,[14970.7,11671.5,0],[[4145,2],[4162,2],[4181,2]]], [4163,[14516.5,12148.1,0],[[4147,2],[4182,2]]],
+[4164,[13144.4,12310.2,0],[[4148,2],[4183,2]]], [4165,[14271.5,12491.7,0],[[4149,2],[4184,2]]], [4166,[14270.8,12547.2,0],[[4149,2],[4185,2]]], [4167,[15093.3,10711.2,9.53674e-007],[[4150,2],[4151,2],[4186,2]]], [4168,[15022.5,10532.2,0],[[4150,2],[4187,2]]], [4169,[15085.7,10720.6,-4.76837e-007],[[4151,2]]],
+[4170,[15149.7,10717,3.17891e-007],[[4153,2],[4188,2],[4186,2]]], [4171,[15163.1,10790.3,0],[[4153,2]]], [4172,[14507.6,9893.35,0],[[4154,2],[4189,2]]], [4173,[14272.6,14131.9,2.38419e-007],[[4155,2],[4190,2],[4191,2],[4192,2]]], [4174,[14105.4,15044,9.53674e-007],[[4156,2],[4193,2]]], [4175,[13973.7,15241.5,-3.17891e-007],[[4156,2],[4194,2],[4195,2]]],
+[4176,[14062.5,15208,0],[[4156,2],[4196,2]]], [4177,[12703.6,16047.8,1.58946e-007],[[4157,2],[4197,2],[4198,2]]], [4178,[16361.3,4421.31,0],[[4159,2]]], [4179,[15438.6,4941.56,0],[[4160,2],[4199,2]]], [4180,[15141.3,11619.4,-3.17891e-007],[[4161,2],[4200,2],[4201,2]]], [4181,[15038.1,11676.1,0],[[4162,2],[4201,2]]],
+[4182,[14445.6,12248.9,0],[[4163,2],[4184,2]]], [4183,[13038.3,12318.7,0],[[4164,2],[4202,2]]], [4184,[14378.5,12363.9,-3.17891e-007],[[4165,2],[4182,2],[4203,2]]], [4185,[14355.5,12498.1,3.17891e-007],[[4166,2],[4203,2],[4204,2]]], [4186,[15133.1,10642.7,3.17891e-007],[[4167,2],[4170,2],[4205,2]]], [4187,[14947.2,10500.3,0],[[4168,2],[4206,2]]],
+[4188,[15199.9,10758.1,0],[[4170,2]]], [4189,[14574.8,9969.99,0],[[4172,2],[4207,2]]], [4190,[14426.1,14088.6,0],[[4173,2],[4208,2]]], [4191,[14304.6,14264.3,0],[[4173,2],[4209,2]]], [4192,[14305.6,13969.6,0],[[4173,2],[4210,2]]], [4193,[14169.4,14899.8,0],[[4174,2],[4211,2]]],
+[4194,[13913.5,15286.8,1.58946e-007],[[4175,2],[4212,2],[4213,2]]], [4195,[14068.8,15208.7,0],[[4175,2]]], [4196,[14214.2,15101,0],[[4176,2],[4214,2]]], [4197,[12789.6,15882.9,0],[[4177,2],[4215,2]]], [4198,[12629.7,16246,0],[[4177,2],[4216,2]]], [4199,[15272.6,5181.56,0],[[4179,2],[4217,2]]],
+[4200,[15323.5,11597.8,0],[[4180,2],[4218,2]]], [4201,[15075,11678.8,-9.53674e-007],[[4180,2],[4181,2]]], [4202,[12943.3,12368.6,0],[[4183,2],[4219,2]]], [4203,[14355.9,12448.6,0],[[4184,2],[4185,2]]], [4204,[14450.4,12456.7,0],[[4185,2],[4220,2]]], [4205,[15251.5,10521.1,-9.53674e-007],[[4186,2],[4221,2]]],
+[4206,[14886.7,10477.9,0],[[4187,2],[4222,2]]], [4207,[14632.4,10012.8,0],[[4189,2],[4223,2]]], [4208,[14539.6,14036.3,0],[[4190,2],[4224,2]]], [4209,[14381.9,14375.4,0],[[4191,2],[4225,2]]], [4210,[14240.4,13900.2,0],[[4192,2],[4226,2]]], [4211,[14253.9,14766.2,0],[[4193,2],[4227,2]]],
+[4212,[13739.6,15365.4,-9.53674e-007],[[4194,2],[4228,2]]], [4213,[14061.1,15275.5,0],[[4194,2],[4229,2]]], [4214,[14261.1,14949.7,0],[[4196,2],[4230,2]]], [4215,[12841,15808.8,3.17891e-007],[[4197,2],[4231,2],[4232,2]]], [4216,[12609.8,16360.5,0],[[4198,2]]], [4217,[15143.9,5359.57,0],[[4199,2],[4233,2]]],
+[4218,[15451.7,11621.7,-6.35783e-007],[[4200,2],[4234,2],[4235,2]]], [4219,[12824,12468.1,-9.53674e-007],[[4202,2],[4236,2]]], [4220,[14535.3,12458.2,0],[[4204,2],[4237,2]]], [4221,[15310,10508.7,-6.35783e-007],[[4205,2],[4238,2],[4221,2]]], [4222,[14865.4,10393.8,0],[[4206,2],[4239,2]]], [4223,[14675.3,10127,0],[[4207,2],[4239,2]]],
+[4224,[14550.4,14039.2,-2.38419e-007],[[4208,2],[4240,2],[4241,2]]], [4225,[14423.1,14448.6,-2.38419e-007],[[4209,2],[4242,2],[4227,2]]], [4226,[14143.8,13839.7,0],[[4210,2],[4243,2]]], [4227,[14355.5,14626.8,0],[[4211,2],[4225,2]]], [4228,[13584.4,15415.2,0],[[4212,2],[4244,2]]], [4229,[14215.1,15357.4,0],[[4213,2],[4245,2]]],
+[4230,[14313.8,14833,0],[[4214,2],[4246,2]]], [4231,[12934.8,15919.7,-9.53674e-007],[[4215,2],[4247,2]]], [4232,[12954.6,15658.3,-9.53674e-007],[[4215,2],[4248,2]]], [4233,[15052.4,5474.64,0],[[4217,2],[4249,2]]], [4234,[15527.5,11524,0],[[4218,2]]], [4235,[15425.9,11758.5,0],[[4218,2],[4250,2]]],
+[4236,[12753.2,12578.8,-9.53674e-007],[[4219,2],[4251,2]]], [4237,[14597.5,12475.3,9.53674e-007],[[4220,2],[4252,2]]], [4238,[15487.5,10496.8,0],[[4221,2],[4253,2]]], [4239,[14777,10271.7,-9.53674e-007],[[4222,2],[4223,2],[4254,2]]], [4240,[14662,13880.7,0],[[4224,2],[4255,2]]], [4241,[14505.2,14215.4,0],[[4224,2],[4242,2]]],
+[4242,[14482.3,14282.9,0],[[4225,2],[4241,2]]], [4243,[14111.3,13819.9,0],[[4226,2]]], [4244,[13431.5,15478.8,-9.53674e-007],[[4228,2],[4256,2]]], [4245,[14312.4,15405,2.38419e-007],[[4229,2],[4257,2],[4258,2],[4259,2]]], [4246,[14403.7,14721.7,0],[[4230,2],[4260,2]]], [4247,[13044.9,15995.2,9.53674e-007],[[4231,2],[4261,2]]],
+[4248,[13082.2,15612.8,0],[[4232,2],[4262,2]]], [4249,[14997.6,5586.65,0],[[4233,2],[4263,2]]], [4250,[15355.2,11903.9,0],[[4235,2],[4264,2]]], [4251,[12735.4,12615,0],[[4236,2]]], [4252,[14657.9,12435.2,0],[[4237,2],[4252,2],[4265,2]]], [4253,[15601.1,10525.5,0],[[4238,2],[4266,2]]],
+[4254,[14717.6,10170.1,0],[[4239,2]]], [4255,[14718,13787.6,0],[[4240,2],[4267,2]]], [4256,[13295.3,15532.6,0],[[4244,2],[4262,2]]], [4257,[14403.4,15248.3,0],[[4245,2],[4268,2]]], [4258,[14284.9,15442,-2.38419e-007],[[4245,2],[4269,2],[4270,2]]], [4259,[14493.9,15391.7,0],[[4245,2],[4259,2]]],
+[4260,[14518,14595.5,0],[[4246,2],[4271,2]]], [4261,[13170.6,16081,0],[[4247,2],[4272,2]]], [4262,[13212.4,15572,0],[[4248,2],[4256,2]]], [4263,[14928.8,5672.49,0],[[4249,2],[4273,2]]], [4264,[15315.3,12048.2,0],[[4250,2],[4274,2]]], [4265,[14729.8,12481.4,0],[[4252,2],[4275,2]]],
+[4266,[15702.1,10480.3,0],[[4253,2],[4276,2]]], [4267,[14760.5,13616.5,0],[[4255,2],[4277,2]]], [4268,[14450.7,15118.1,0],[[4257,2],[4278,2]]], [4269,[14429.6,15573,0],[[4258,2],[4279,2]]], [4270,[14186.2,15604.6,0],[[4258,2],[4280,2]]], [4271,[14644.4,14540.2,0],[[4260,2],[4281,2]]],
+[4272,[13274.1,16166.7,-9.53674e-007],[[4261,2],[4282,2]]], [4273,[14878.8,5754.73,9.53674e-007],[[4263,2],[4283,2],[4284,2]]], [4274,[15302,12090.8,0],[[4264,2],[4285,2],[4286,2]]], [4275,[14789.4,12567.7,7.94729e-008],[[4265,2],[4287,2],[4288,2]]], [4276,[15782.1,10381.9,4.76837e-007],[[4266,2],[4289,2]]], [4277,[14830.6,13525.2,0],[[4267,2],[4290,2]]],
+[4278,[14568.7,14994.6,0],[[4268,2],[4291,2]]], [4279,[14409.9,15680.5,0],[[4269,2],[4292,2]]], [4280,[14106.6,15741.9,0],[[4270,2],[4293,2]]], [4281,[14740.3,14458.7,0],[[4271,2],[4294,2]]], [4282,[13388,16253.6,-9.53674e-007],[[4272,2],[4295,2]]], [4283,[14861.1,5784.06,3.17891e-007],[[4273,2],[4283,2],[4296,2]]],
+[4284,[14755.6,5683.67,3.17891e-007],[[4273,2],[4297,2],[4298,2],[4296,2]]], [4285,[15308.1,12186.8,0],[[4274,2],[4299,2]]], [4286,[15161.5,12148,0],[[4274,2],[4300,2]]], [4287,[14876.9,12473.2,0],[[4275,2],[4301,2]]], [4288,[14816,12705.3,0],[[4275,2],[4302,2],[4303,2]]], [4289,[15839.8,10309.8,0],[[4276,2],[4304,2]]],
+[4290,[14848,13498.6,0],[[4277,2],[4305,2],[4306,2]]], [4291,[14639.2,14847.1,4.76837e-007],[[4278,2],[4307,2]]], [4292,[14287.7,15797.7,0],[[4279,2],[4308,2]]], [4293,[14027.5,15879.7,0],[[4280,2],[4309,2]]], [4294,[14801.5,14336,0],[[4281,2],[4310,2]]], [4295,[13535.9,16316.4,9.53674e-007],[[4282,2],[4311,2]]],
+[4296,[14853.1,5807.37,0],[[4283,2],[4284,2],[4312,2],[4298,2],[4313,2],[4314,2]]], [4297,[14678.1,5565.06,0],[[4284,2],[4315,2]]], [4298,[14764.6,5777.57,0],[[4284,2],[4296,2],[4316,2]]], [4299,[15277.8,12282.5,9.53674e-007],[[4285,2],[4317,2]]], [4300,[15084.4,12270.2,0],[[4286,2],[4318,2]]], [4301,[14922.9,12392.7,0],[[4287,2],[4318,2]]],
+[4302,[14805,12880.7,0],[[4288,2],[4319,2]]], [4303,[14838.6,12762.7,7.94729e-008],[[4288,2],[4303,2],[4320,2]]], [4304,[15904.1,10185.9,0],[[4289,2],[4321,2]]], [4305,[14930,13595.7,0],[[4290,2],[4322,2]]], [4306,[14878,13348,-4.76837e-007],[[4290,2],[4323,2]]], [4307,[14715.7,14736.8,4.76837e-007],[[4291,2],[4324,2]]],
+[4308,[14181,15925,0],[[4292,2],[4325,2]]], [4309,[13954.8,15982.6,0],[[4293,2],[4326,2]]], [4310,[14833.6,14280.7,9.53674e-007],[[4294,2],[4327,2],[4328,2]]], [4311,[13597.9,16352.3,0],[[4295,2],[4311,2],[4329,2]]], [4312,[14769.5,5766.76,0],[[4296,2]]], [4313,[14868.2,5909.99,-3.17891e-007],[[4296,2],[4330,2],[4314,2]]],
+[4314,[14904.8,5825.54,0],[[4296,2],[4313,2],[4331,2]]], [4315,[14593,5436.6,0],[[4297,2],[4332,2],[4333,2]]], [4316,[14611,5814.08,0],[[4298,2],[4334,2]]], [4317,[15232.6,12408.5,0],[[4299,2],[4335,2]]], [4318,[14988.9,12374.8,0],[[4300,2],[4301,2]]], [4319,[14843.3,13018,9.53674e-007],[[4302,2],[4336,2]]],
+[4320,[14846.8,12818.1,1.58946e-007],[[4303,2],[4337,2],[4320,2],[4338,2]]], [4321,[16015.3,10065.2,0],[[4304,2],[4339,2]]], [4322,[14949.8,13743.3,9.53674e-007],[[4305,2],[4340,2]]], [4323,[14859.2,13192.2,0],[[4306,2],[4336,2]]], [4324,[14802.6,14608.6,0],[[4307,2],[4341,2],[4328,2]]], [4325,[14061.9,16015.6,0],[[4308,2],[4342,2]]],
+[4326,[13887.3,16115.6,0],[[4309,2],[4329,2]]], [4327,[14914.6,14081.1,3.17891e-007],[[4310,2],[4340,2]]], [4328,[14855.2,14468.7,0],[[4310,2],[4324,2],[4341,2]]], [4329,[13794.2,16255.7,3.8147e-007],[[4311,2],[4326,2],[4343,2],[4344,2],[4342,2]]], [4330,[14904.8,6065.71,0],[[4313,2],[4345,2]]], [4331,[15080.7,5851.1,0],[[4314,2],[4346,2]]],
+[4332,[14436,5450.89,0],[[4315,2],[4347,2]]], [4333,[14594.8,5289.25,9.53674e-007],[[4315,2],[4348,2]]], [4334,[14475.9,5848.81,0],[[4316,2],[4349,2]]], [4335,[15222.9,12515.7,9.53674e-007],[[4317,2]]], [4336,[14848.3,13085.4,0],[[4319,2],[4323,2],[4350,2]]], [4337,[14842.7,12798.8,2.38419e-007],[[4320,2]]],
+[4338,[14859.1,12875.7,0],[[4338,2],[4351,2]]], [4339,[16116.4,9972.54,0],[[4321,2],[4352,2]]], [4340,[14973.6,13861.5,0],[[4322,2],[4327,2],[4353,2],[4340,2],[4354,2]]], [4341,[14886.5,14482.3,2.38419e-007],[[4324,2],[4328,2],[4355,2],[4356,2]]], [4342,[13954.4,16129.4,0],[[4325,2],[4329,2]]], [4343,[13722.9,16364.8,0],[[4329,2]]],
+[4344,[13936.2,16217.4,0],[[4329,2],[4357,2]]], [4345,[14918.3,6188.15,0],[[4330,2],[4358,2]]], [4346,[15188,5894.77,0],[[4331,2],[4359,2]]], [4347,[14300.1,5478.82,0],[[4332,2],[4360,2]]], [4348,[14552.9,5179.34,-9.53674e-007],[[4333,2],[4361,2]]], [4349,[14434.5,5858.46,0],[[4334,2],[4362,2],[4363,2]]],
+[4350,[14896.3,13016.1,0],[[4336,2],[4351,2]]], [4351,[14877.6,12954.5,0],[[4338,2],[4350,2]]], [4352,[16197.8,9860.78,0],[[4339,2],[4364,2]]], [4353,[14999.1,13814.8,0],[[4340,2],[4365,2]]], [4354,[14993.5,13839.6,-9.53674e-007],[[4340,2]]], [4355,[15033.1,14522.5,0],[[4341,2],[4366,2]]],
+[4356,[15010.1,14331.1,0],[[4341,2],[4367,2]]], [4357,[14106.6,16139.3,0],[[4344,2],[4368,2]]], [4358,[14930.3,6212.02,0],[[4345,2]]], [4359,[15218.1,5924.54,0],[[4346,2]]], [4360,[14208.7,5482.39,0],[[4347,2],[4369,2]]], [4361,[14502.4,5123.39,9.53674e-007],[[4348,2]]],
+[4362,[14317.7,5904.75,0],[[4349,2],[4370,2],[4371,2]]], [4363,[14325.5,5795.66,0],[[4349,2],[4372,2]]], [4364,[16301.2,9792.34,0],[[4352,2],[4373,2]]], [4365,[15092.6,13610.5,0],[[4353,2],[4374,2]]], [4366,[15158.3,14527.5,0],[[4355,2],[4375,2]]], [4367,[15127.1,14288,9.53674e-007],[[4356,2],[4376,2]]],
+[4368,[14279.4,16046.7,-9.53674e-007],[[4357,2],[4377,2]]], [4369,[14174.1,5469.72,3.17891e-007],[[4360,2],[4378,2],[4379,2]]], [4370,[14170,5809,0],[[4362,2],[4380,2]]], [4371,[14201.6,5985.26,0],[[4362,2],[4381,2]]], [4372,[14307.4,5771.76,0],[[4363,2],[4382,2],[4378,2]]], [4373,[16336.3,9662.17,0],[[4364,2],[4383,2]]],
+[4374,[15235.7,13540.6,9.53674e-007],[[4365,2],[4384,2]]], [4375,[15296.5,14540.1,0],[[4366,2],[4385,2]]], [4376,[15172.4,14169.1,0],[[4367,2],[4386,2]]], [4377,[14400.7,15969.2,0],[[4368,2],[4387,2]]], [4378,[14239.4,5599.02,-9.53674e-007],[[4369,2],[4372,2]]], [4379,[14124.8,5429.22,0],[[4369,2]]],
+[4380,[14157.5,5800.82,0],[[4370,2]]], [4381,[14137.1,6018.62,0],[[4371,2]]], [4382,[14171.3,5675.15,0],[[4372,2],[4382,2]]], [4383,[16369,9626.79,0],[[4373,2]]], [4384,[15354.8,13453.5,0],[[4374,2],[4388,2]]], [4385,[15403.4,14621.1,-9.53674e-007],[[4375,2],[4389,2]]],
+[4386,[15240.4,14054.8,0],[[4376,2],[4390,2]]], [4387,[14532.2,15891.6,0],[[4377,2],[4391,2]]], [4388,[15449.1,13367.6,-9.53674e-007],[[4384,2],[4392,2]]], [4389,[15542.4,14703,0],[[4385,2],[4393,2]]], [4390,[15331.9,13996.4,0],[[4386,2]]], [4391,[14664,15817,-2.38419e-007],[[4387,2],[4394,2]]],
+[4392,[15550.1,13277.9,-9.53674e-007],[[4388,2],[4395,2]]], [4393,[15667.1,14684,0],[[4389,2],[4396,2]]], [4394,[14840.8,15740.8,0],[[4391,2],[4397,2]]], [4395,[15683.1,13233.6,9.53674e-007],[[4392,2],[4398,2]]], [4396,[15703.9,14782.3,3.17891e-007],[[4393,2],[4399,2],[4400,2]]], [4397,[14976,15678.9,9.53674e-007],[[4394,2],[4401,2]]],
+[4398,[15786,13104.4,0],[[4395,2],[4402,2]]], [4399,[15845.9,14794.6,0],[[4396,2],[4403,2]]], [4400,[15765.4,14929.2,0],[[4396,2],[4404,2]]], [4401,[15115.8,15617.5,-2.38419e-007],[[4397,2],[4405,2]]], [4402,[15912.1,13028.3,-3.17891e-007],[[4398,2],[4406,2],[4407,2]]], [4403,[16002.9,14781,0],[[4399,2],[4408,2]]],
+[4404,[15668.9,15039.7,0],[[4400,2],[4409,2]]], [4405,[15263.4,15544.3,0],[[4401,2],[4410,2]]], [4406,[16014.5,13006.5,0],[[4402,2]]], [4407,[15989.5,12896.4,0],[[4402,2],[4411,2]]], [4408,[16123.1,14727.5,0],[[4403,2],[4412,2]]], [4409,[15562.5,15152.9,0],[[4404,2],[4413,2]]],
+[4410,[15283.4,15536.8,0],[[4405,2],[4414,2],[4415,2]]], [4411,[16056.4,12759.6,0],[[4407,2],[4416,2]]], [4412,[16167.5,14596,-9.53674e-007],[[4408,2],[4417,2]]], [4413,[15439.2,15264.8,0],[[4409,2],[4414,2]]], [4414,[15384.7,15362.3,0],[[4410,2],[4413,2]]], [4415,[15374.6,15680,0],[[4410,2],[4418,2]]],
+[4416,[16186.1,12686.9,0],[[4411,2],[4419,2]]], [4417,[16222.3,14480.9,0],[[4412,2],[4420,2]]], [4418,[15432.6,15809.5,0],[[4415,2],[4421,2]]], [4419,[16334.7,12591.7,0],[[4416,2],[4419,2]]], [4420,[16342.1,14399.2,9.53674e-007],[[4417,2],[4422,2]]], [4421,[15479.9,15923.2,0],[[4418,2],[4423,2]]],
+[4422,[16373.5,14379.7,0],[[4420,2]]], [4423,[15563.3,16044.9,0],[[4421,2],[4424,2]]], [4424,[15682.5,16138.6,0],[[4423,2],[4425,2]]], [4425,[15783.9,16217,9.53674e-007],[[4424,2],[4426,2]]], [4426,[15890.8,16301.2,0],[[4425,2],[4427,2]]], [4427,[15938.2,16370.3,-9.53674e-007],[[4426,2]]]];
\ No newline at end of file
diff --git a/A3-Antistasi/NavGrids/navGridvt7.sqf b/A3-Antistasi/NavGrids/navGridvt7.sqf
new file mode 100644
index 0000000000..52f560c199
--- /dev/null
+++ b/A3-Antistasi/NavGrids/navGridvt7.sqf
@@ -0,0 +1,1467 @@
+navGrid = [[0,[14787.9,14634.4,0],[[1,2],[2,2],[3,2],[4,2]]], [1,[14882.5,14567.5,0],[[0,2],[5,2],[1,2]]], [2,[14762.3,14600.4,-6.35783e-007],[[0,2],[6,2],[7,2]]], [3,[14828.6,14722.2,2.07999],[[0,2],[8,2],[3,2]]], [4,[14693.2,14678.7,0],[[0,2],[9,2]]], [5,[14911.6,14521.8,0],[[1,2],[5,2],[10,2],[11,2],[12,2]]],
+[6,[14730.7,14605.6,-2.38419e-007],[[2,2],[13,2],[9,2],[6,2]]], [7,[14726,14541.4,0],[[2,2],[14,2],[13,2],[15,2]]], [8,[14876.4,14811,0],[[3,2],[16,2],[17,2],[18,2]]], [9,[14693.7,14659.8,0],[[4,2],[6,2],[13,2],[19,2]]], [10,[14918.9,14406.3,0],[[5,2],[20,2],[21,2]]], [11,[14843.1,14443,0],[[5,2],[20,2],[14,2]]],
+[12,[15045.2,14560.5,3.57628e-007],[[5,2],[22,2],[23,2],[24,2]]], [13,[14669.4,14610.1,0],[[6,2],[7,2],[9,2],[25,2],[26,2],[27,2]]], [14,[14756.7,14490.4,6.35783e-007],[[7,2],[11,2],[28,2]]], [15,[14557.9,14459.8,0],[[7,2],[26,2],[29,2],[15,2],[30,2]]], [16,[14902.3,14963.5,0],[[8,2],[31,2]]], [17,[14852.2,14839.9,-3.17891e-007],[[8,2],[32,2],[33,2]]],
+[18,[14970,14804.4,0],[[8,2],[34,2],[35,2]]], [19,[14712.6,14636.1,0],[[9,2]]], [20,[14924.1,14368.8,-1.19209e-007],[[10,2],[11,2],[36,2],[37,2]]], [21,[14952.6,14415.2,2.38419e-007],[[10,2]]], [22,[15145.3,14475.6,0],[[12,2],[38,2]]], [23,[15036.6,14692.9,0],[[12,2],[39,2],[34,2]]],
+[24,[15204.8,14527.7,0],[[12,2],[40,2]]], [25,[14701.7,14568.4,4.76837e-007],[[13,2]]], [26,[14557.4,14586.9,0],[[13,2],[15,2],[41,2]]], [27,[14556.2,14724.4,9.53674e-007],[[13,2],[27,2]]], [28,[14721.5,14395.6,3.17891e-007],[[14,2],[42,2],[43,2]]], [29,[14525.7,14474,4.76837e-007],[[15,2]]],
+[30,[14496,14405.7,-3.17891e-007],[[15,2],[44,2],[45,2]]], [31,[14874,15033,3.17891e-007],[[16,2],[46,2],[32,2]]], [32,[14799.4,14978.3,0],[[17,2],[31,2],[47,2]]], [33,[14731.7,14854.6,1.90735e-006],[[17,2],[48,2]]], [34,[15015,14782.4,0],[[18,2],[23,2],[49,2],[39,2]]], [35,[14984,14854.1,0],[[18,2],[50,2],[51,2]]],
+[36,[14974.3,14387.8,-2.38419e-007],[[20,2],[52,2],[36,2]]], [37,[14992.1,14275,0],[[20,2],[53,2],[54,2]]], [38,[15247.2,14454.3,0],[[22,2],[55,2],[40,2],[56,2]]], [39,[15145,14662.3,0],[[23,2],[34,2],[49,2]]], [40,[15264.8,14497.9,0],[[24,2],[38,2],[55,2]]], [41,[14492.5,14640.7,-3.17891e-007],[[26,2],[57,2],[58,2]]],
+[42,[14785.3,14262.7,0],[[28,2],[59,2]]], [43,[14662.1,14362.6,-3.17891e-007],[[28,2],[59,2],[44,2]]], [44,[14492.9,14360,-3.17891e-007],[[30,2],[43,2],[60,2]]], [45,[14397.2,14457.2,-2.38419e-007],[[30,2],[61,2],[62,2],[63,2]]], [46,[14865.9,15099.1,0],[[31,2],[64,2],[65,2],[66,2]]], [47,[14716.9,14941.4,0],[[32,2]]],
+[48,[14664.7,14936.3,0],[[33,2],[67,2]]], [49,[15164.7,14718.1,-4.76837e-007],[[34,2],[39,2],[68,2],[69,2]]], [50,[15086.7,14877.5,0],[[35,2]]], [51,[15011.2,14971.5,-4.76837e-007],[[35,2],[70,2]]], [52,[15019.5,14420.4,0],[[36,2]]], [53,[14931.5,14189.7,0],[[37,2],[71,2],[54,2]]],
+[54,[15020.4,14231.2,-1.19209e-007],[[37,2],[53,2],[72,2],[73,2],[71,2]]], [55,[15296,14506.7,-1.90735e-007],[[38,2],[40,2],[74,2],[75,2],[76,2]]], [56,[15306.1,14354.7,0],[[38,2],[77,2]]], [57,[14470,14668.9,0],[[41,2],[78,2],[79,2]]], [58,[14442.9,14588.1,0],[[41,2]]], [59,[14717.5,14237,0],[[42,2],[43,2],[80,2]]],
+[60,[14462.4,14306.5,0],[[44,2],[81,2],[82,2],[83,2],[63,2]]], [61,[14339,14491.3,3.17891e-007],[[45,2],[84,2],[85,2]]], [62,[14409.2,14576.9,0],[[45,2]]], [63,[14347.8,14363.4,7.94729e-007],[[45,2],[60,2],[86,2],[83,2]]], [64,[14960.5,15099.3,-1.58946e-007],[[46,2],[87,2],[88,2]]], [65,[14761.4,15084.8,3.17891e-007],[[46,2],[89,2],[67,2],[65,2]]],
+[66,[14832.3,15215,1.58946e-007],[[46,2],[90,2],[91,2]]], [67,[14621.6,14990.3,-1.58946e-007],[[48,2],[65,2],[92,2],[89,2]]], [68,[15257.2,14710.5,-6.35783e-007],[[49,2],[93,2],[94,2]]], [69,[15209.1,14785.1,0],[[49,2]]], [70,[15062.8,14933.9,0],[[51,2]]], [71,[14923.7,14163.5,-5.96046e-008],[[53,2],[54,2],[95,2],[96,2]]],
+[72,[15075.6,14281.9,5.96046e-008],[[54,2],[97,2],[73,2],[98,2],[72,2]]], [73,[15093.4,14151.5,4.76837e-008],[[54,2],[72,2],[97,2],[99,2],[96,2],[100,2]]], [74,[15361.4,14474.5,0],[[55,2]]], [75,[15272.2,14587.7,3.17891e-007],[[55,2],[101,2],[93,2],[76,2],[102,2]]], [76,[15351.1,14577.6,-4.76837e-007],[[55,2],[75,2],[103,2],[104,2],[105,2]]], [77,[15292.6,14275.4,3.97364e-008],[[56,2],[77,2],[106,2]]],
+[78,[14313.2,14625.7,9.53674e-007],[[57,2],[107,2]]], [79,[14455.6,14792.2,0],[[57,2],[108,2]]], [80,[14631.6,14200.7,2.38419e-007],[[59,2],[80,2],[81,2]]], [81,[14530.2,14169.4,0],[[60,2],[80,2],[109,2]]], [82,[14447.4,14191.3,-4.76837e-007],[[60,2],[110,2],[83,2]]], [83,[14387.6,14289.4,0],[[60,2],[63,2],[82,2],[86,2],[110,2]]],
+[84,[14335.2,14546.9,0],[[61,2]]], [85,[14270.1,14440.9,0],[[61,2],[111,2],[112,2]]], [86,[14339.7,14288.8,0],[[63,2],[83,2],[113,2]]], [87,[15113.4,15063.6,-4.76837e-007],[[64,2],[114,2]]], [88,[14964.5,15132.8,-4.76837e-007],[[64,2]]], [89,[14617.6,15041.1,0],[[65,2],[67,2],[115,2],[89,2]]],
+[90,[14803.2,15244.2,-1.58946e-007],[[66,2],[116,2],[117,2]]], [91,[14884.6,15226.1,0],[[66,2]]], [92,[14591.6,14957.9,0],[[67,2]]], [93,[15265.4,14677.2,0],[[68,2],[75,2],[118,2],[119,2],[120,2],[101,2]]], [94,[15393.7,14806.2,0],[[68,2],[121,2],[122,2]]], [95,[14807,14096.7,1.58946e-007],[[71,2],[123,2],[124,2]]],
+[96,[14973.7,14068.8,-4.76837e-007],[[71,2],[73,2],[99,2]]], [97,[15138.4,14199.3,1.66893e-007],[[72,2],[73,2],[125,2],[126,2]]], [98,[15106.5,14310,0],[[72,2]]], [99,[15014.4,14040.6,0],[[73,2],[96,2],[127,2]]], [100,[15147.9,14090.4,3.17891e-007],[[73,2],[128,2],[129,2]]], [101,[15292.8,14622.6,0],[[75,2],[93,2],[120,2]]],
+[102,[15236.2,14581.1,9.53674e-007],[[75,2]]], [103,[15410.7,14532,-4.76837e-007],[[76,2],[130,2],[104,2],[131,2],[132,2]]], [104,[15397,14609.6,0],[[76,2],[103,2],[130,2],[133,2],[134,2]]], [105,[15312.6,14603.4,0],[[76,2],[105,2]]], [106,[15335.7,14206.5,0],[[77,2],[135,2]]], [107,[14203.7,14535.7,-9.53674e-007],[[78,2],[136,2]]],
+[108,[14382.7,14899.1,0],[[79,2],[137,2]]], [109,[14531.2,14125.2,0],[[81,2],[138,2],[109,2]]], [110,[14363,14195,0],[[82,2],[83,2],[139,2]]], [111,[14197.6,14417.3,3.17891e-007],[[85,2],[140,2],[141,2],[136,2]]], [112,[14266.2,14393.7,0],[[85,2]]], [113,[14290,14275.1,0],[[86,2]]],
+[114,[15254.1,15010.6,2.38419e-007],[[87,2],[122,2]]], [115,[14591.1,15029.9,-4.76837e-007],[[89,2],[142,2],[137,2]]], [116,[14787.1,15395.8,-3.17891e-007],[[90,2],[143,2]]], [117,[14749.6,15255.3,-1.58946e-007],[[90,2],[144,2],[145,2]]], [118,[15282.9,14633.2,0],[[93,2]]], [119,[15244.8,14672.7,-1.90735e-006],[[93,2]]],
+[120,[15308.5,14668.3,0],[[93,2],[101,2],[121,2]]], [121,[15435.2,14741.8,-1.58946e-007],[[94,2],[120,2],[134,2]]], [122,[15511.1,14955,-7.94729e-008],[[94,2],[114,2],[146,2],[147,2],[122,2],[148,2],[149,2]]], [123,[14722.7,14081.6,0],[[95,2],[138,2],[150,2]]], [124,[14827.5,13968.2,0],[[95,2],[151,2],[127,2]]], [125,[15184.9,14256.7,0],[[97,2]]],
+[126,[15252.5,14177.9,0],[[97,2],[126,2],[128,2]]], [127,[14895.7,13928.8,0],[[99,2],[124,2],[151,2]]], [128,[15231.7,14131.4,0],[[100,2],[126,2]]], [129,[15196.1,14042.9,0],[[100,2],[152,2],[153,2],[154,2],[155,2]]], [130,[15411.9,14565.3,0],[[103,2],[104,2],[132,2]]], [131,[15552.7,14438.8,-4.76837e-007],[[103,2],[156,2]]],
+[132,[15459.8,14536.5,0],[[103,2],[130,2],[157,2]]], [133,[15407.6,14575.8,4.76837e-007],[[104,2]]], [134,[15475.1,14658.3,-1.58946e-007],[[104,2],[121,2],[158,2]]], [135,[15384.3,14139.8,0],[[106,2],[159,2]]], [136,[14146.9,14512.8,3.17891e-007],[[107,2],[111,2],[141,2],[160,2]]], [137,[14367.5,14934.9,-1.19209e-007],[[108,2],[115,2],[161,2],[162,2],[142,2]]],
+[138,[14602.2,14051.8,2.38419e-007],[[109,2],[123,2],[163,2],[164,2]]], [139,[14300,14044.7,-4.76837e-007],[[139,2],[165,2]]], [140,[14200.1,14344.4,2.38419e-007],[[111,2],[140,2],[166,2],[167,2]]], [141,[14145.1,14446.3,0],[[111,2],[136,2],[141,2]]], [142,[14475.5,14979.5,-2.38419e-007],[[115,2],[137,2]]], [143,[14768.7,15474.5,-3.17891e-007],[[116,2],[168,2]]],
+[144,[14714.2,15193.2,-9.53674e-008],[[117,2],[169,2],[170,2],[171,2],[172,2]]], [145,[14695.1,15311.2,0],[[117,2],[173,2],[145,2],[174,2]]], [146,[15545.5,14933.8,0],[[122,2]]], [147,[15664.4,14969.7,0],[[122,2],[175,2]]], [148,[15484.7,15085.6,3.17891e-007],[[122,2],[176,2],[177,2]]], [149,[15616.4,14977.1,0],[[122,2],[178,2]]],
+[150,[14717,13988.6,4.76837e-007],[[123,2],[179,2]]], [151,[14840.8,13934.5,0],[[124,2],[127,2],[180,2],[179,2],[181,2]]], [152,[15131.8,13901.5,0],[[129,2],[182,2],[152,2],[153,2],[183,2]]], [153,[15222.4,13975,-1.58946e-007],[[129,2],[152,2],[184,2]]], [154,[15258.9,14031.2,-4.76837e-007],[[129,2]]], [155,[15268.8,14076.5,0],[[129,2]]],
+[156,[15567.3,14428.2,-2.38419e-007],[[131,2],[185,2],[186,2]]], [157,[15505.1,14525,-4.76837e-007],[[132,2]]], [158,[15626.9,14717.6,0],[[134,2],[187,2]]], [159,[15418.3,14121.8,0],[[135,2]]], [160,[14045.1,14556.4,-1.58946e-007],[[136,2],[188,2],[189,2]]], [161,[14282.2,14899.6,0],[[137,2],[190,2],[191,2]]],
+[162,[14313.2,15011.3,-6.35783e-007],[[137,2],[192,2],[193,2]]], [163,[14529.5,13909.2,0],[[138,2],[194,2]]], [164,[14629.6,13898.4,-6.35783e-007],[[138,2],[195,2],[179,2]]], [165,[14207.3,13970.5,0],[[139,2],[225,2],[165,2]]], [166,[14089.4,14343,0],[[140,2],[196,2]]], [167,[14196.3,14307,0],[[140,2]]],
+[168,[14709.7,15649.7,0],[[143,2],[197,2]]], [169,[14670.1,15222.7,-4.76837e-007],[[144,2]]], [170,[14775.4,15107.9,0],[[144,2]]], [171,[14690.6,15123.9,0],[[144,2]]], [172,[14646.6,15164.9,4.76837e-007],[[144,2]]], [173,[14681.6,15366.7,0],[[145,2]]],
+[174,[14664.8,15303.9,0],[[145,2],[198,2],[199,2]]], [175,[15793.2,15013.8,0],[[147,2],[200,2],[201,2]]], [176,[15544.7,15144.4,-9.53674e-007],[[148,2]]], [177,[15411.8,15147.7,0],[[148,2],[177,2],[202,2]]], [178,[15690.4,14975.3,0],[[149,2]]], [179,[14722.7,13917.3,-3.17891e-007],[[150,2],[151,2],[164,2],[180,2]]],
+[180,[14773,13885.6,0],[[151,2],[179,2],[203,2]]], [181,[14915.4,13830.8,9.53674e-007],[[151,2],[204,2]]], [182,[15105.6,13936.2,0],[[152,2]]], [183,[15183,13830.4,0],[[152,2],[205,2],[184,2],[206,2]]], [184,[15260.3,13948.1,-1.58946e-007],[[153,2],[183,2],[206,2],[207,2]]], [185,[15547.9,14371.5,7.94729e-008],[[156,2],[208,2],[209,2]]],
+[186,[15627.2,14458.9,4.76837e-007],[[156,2]]], [187,[15647.3,14747.4,5.96046e-008],[[158,2],[210,2],[187,2],[211,2]]], [188,[13924.4,14604.9,0],[[160,2],[188,2],[212,2],[213,2]]], [189,[13931,14443.3,-4.76837e-007],[[160,2],[214,2]]], [190,[14126.6,14822.9,0],[[161,2],[215,2]]], [191,[14195.7,14958.6,0],[[161,2],[191,2],[216,2],[217,2]]],
+[192,[14284.1,15039.8,-6.35783e-007],[[162,2],[193,2],[216,2]]], [193,[14305.8,15055.1,0],[[192,2],[218,2],[219,2],[193,2]]], [194,[14445.9,13787.7,0],[[163,2],[220,2],[221,2]]], [195,[14639.5,13732.5,-4.76837e-007],[[164,2],[222,2],[223,2],[224,2]]], [196,[14056.9,14323.4,-1.58946e-007],[[166,2],[196,2],[226,2]]], [197,[14712.3,15756.3,-2.38419e-007],[[168,2],[227,2],[228,2],[197,2],[229,2]]],
+[198,[14614.6,15257.8,0],[[174,2]]], [199,[14564.5,15395.9,0],[[174,2],[230,2],[231,2]]], [200,[15855.8,15009.3,0],[[175,2],[232,2],[233,2],[234,2]]], [201,[15827.9,15072.3,2.38419e-007],[[175,2],[235,2],[236,2],[237,2]]], [202,[15344.4,15196.6,-3.17891e-007],[[177,2],[238,2],[202,2],[239,2]]], [203,[14773.9,13763.9,1.90735e-006],[[180,2],[240,2]]],
+[204,[14934,13825.5,3.17891e-007],[[181,2],[241,2],[242,2]]], [205,[15134.4,13755.1,0],[[183,2],[243,2],[244,2],[242,2],[205,2]]], [206,[15274.1,13905.7,0],[[184,2],[183,2],[245,2]]], [207,[15308.4,13992,0],[[184,2],[246,2],[247,2]]], [208,[15572.4,14327.5,-5.96046e-008],[[185,2],[248,2],[249,2],[250,2]]], [209,[15477.1,14379.2,0],[[185,2]]],
+[210,[15789.1,14794.4,0],[[187,2],[251,2]]], [211,[15662.7,14802.1,0],[[187,2]]], [212,[13864.5,14680,1.58946e-007],[[188,2],[215,2],[252,2]]], [213,[13800.1,14530.4,-4.76837e-007],[[188,2],[253,2],[254,2],[213,2]]], [214,[13907.2,14417,1.19209e-007],[[189,2],[255,2],[214,2],[256,2]]], [215,[13975.1,14748.7,4.76837e-007],[[190,2],[212,2]]],
+[216,[14233.8,15062.5,0],[[191,2],[192,2]]], [217,[14099.5,15017.3,1.58946e-007],[[191,2],[257,2],[217,2],[258,2]]], [218,[14305.5,15101.1,0],[[218,2],[259,2]]], [219,[14308.1,15051.4,-3.17891e-007],[[193,2]]], [220,[14349.2,13842.2,-6.35783e-007],[[194,2],[260,2],[261,2]]], [221,[14476,13725.4,0],[[194,2],[262,2],[263,2]]],
+[222,[14678.9,13731.2,0],[[195,2]]], [223,[14560.4,13600.7,0],[[195,2],[264,2]]], [224,[14682.9,13699.3,0],[[195,2],[265,2],[266,2]]], [225,[14136.4,13954.7,0],[[165,2],[267,2],[268,2]]], [226,[13959.7,14186.6,9.53674e-007],[[196,2],[269,2]]], [227,[14704.4,15827.8,-7.62939e-007],[[197,2],[270,2],[227,2],[271,2],[272,2]]],
+[228,[14671.1,15739.2,0],[[197,2],[273,2]]], [229,[14672.2,15733.4,0],[[197,2]]], [230,[14501.2,15340.3,2.38419e-007],[[199,2],[274,2],[230,2]]], [231,[14435.9,15460.5,2.38419e-007],[[199,2],[275,2],[276,2],[277,2]]], [232,[16010.3,15069.4,-4.76837e-007],[[200,2],[278,2]]], [233,[15859.6,14968.6,0],[[200,2],[279,2],[280,2],[281,2]]],
+[234,[15865.3,15004.5,-9.53674e-007],[[200,2]]], [235,[15739.7,15164,0],[[201,2],[282,2]]], [236,[15939.1,15105,-9.53674e-007],[[201,2]]], [237,[15881.9,15216.5,-3.17891e-007],[[201,2],[283,2],[284,2]]], [238,[15360.9,15180.4,0],[[202,2],[285,2],[238,2]]], [239,[15273.1,15297.6,0],[[202,2],[286,2]]],
+[240,[14748.2,13646.6,0],[[203,2],[287,2]]], [241,[14960.4,13768.3,-3.17891e-007],[[204,2],[288,2],[241,2]]], [242,[15013.5,13857.9,-1.58946e-007],[[204,2],[205,2],[244,2],[242,2]]], [243,[15200.5,13712.2,0],[[205,2]]], [244,[15073.4,13812.4,0],[[205,2],[242,2],[289,2]]], [245,[15320.6,13830.1,-1.58946e-007],[[206,2],[290,2],[291,2]]],
+[246,[15372,14075.2,0],[[207,2]]], [247,[15359.7,14017.9,0],[[207,2],[292,2]]], [248,[15705.3,14400.8,0],[[208,2],[293,2],[294,2]]], [249,[15529.7,14300.2,0],[[208,2],[295,2],[249,2]]], [250,[15590.4,14206,0],[[208,2],[296,2]]], [251,[15834.1,14816,0],[[210,2],[251,2],[297,2],[281,2]]],
+[252,[13685.2,14600.9,0],[[212,2],[298,2],[253,2]]], [253,[13739.3,14541.3,-4.76837e-007],[[213,2],[299,2],[252,2],[300,2]]], [254,[13800.4,14484.6,0],[[213,2],[254,2],[301,2]]], [255,[13896.2,14427.7,0],[[214,2]]], [256,[13923.4,14313.6,0],[[214,2],[302,2]]], [257,[14109.4,14998.1,-2.38419e-007],[[217,2]]],
+[258,[14067,15085.1,6.35783e-007],[[217,2],[303,2],[304,2]]], [259,[14270.9,15121.8,0],[[218,2]]], [260,[14337,13805.6,0],[[220,2]]], [261,[14282.6,13865.2,-9.53674e-007],[[220,2]]], [262,[14549.2,13752.1,0],[[221,2],[262,2]]], [263,[14477.3,13673.7,0],[[221,2],[263,2],[305,2]]],
+[264,[14546.8,13582.8,0],[[223,2],[264,2],[265,2],[306,2]]], [265,[14646,13603.3,0],[[224,2],[264,2]]], [266,[14713.7,13751.3,-1.90735e-006],[[224,2]]], [267,[14012.9,13961,-3.17891e-007],[[225,2],[307,2],[269,2]]], [268,[14171.3,13891.5,9.53674e-007],[[225,2]]], [269,[13974.2,14075.9,4.76837e-007],[[226,2],[267,2]]],
+[270,[14663.6,15829.7,0],[[227,2],[308,2],[309,2]]], [271,[14803.3,15845.8,0],[[227,2],[310,2]]], [272,[14691.9,15997.9,0],[[227,2],[311,2]]], [273,[14540,15703.7,6.35783e-007],[[228,2],[312,2],[313,2]]], [274,[14462.3,15351.4,0],[[230,2],[314,2],[274,2]]], [275,[14466.1,15499.9,-1.90735e-006],[[231,2]]],
+[276,[14328.2,15521.8,0],[[231,2],[315,2],[277,2],[316,2]]], [277,[14307.6,15467.1,0],[[231,2],[276,2]]], [278,[16165.3,15117.5,0],[[232,2],[317,2]]], [279,[15797.7,14953.9,0],[[233,2]]], [280,[15933.3,14969.2,0],[[233,2]]], [281,[15875.7,14917,1.58946e-007],[[233,2],[251,2],[281,2],[297,2]]],
+[282,[15686.9,15249.5,-1.90735e-006],[[235,2],[318,2]]], [283,[15847.7,15367.8,-9.53674e-007],[[237,2],[319,2]]], [284,[15955.4,15318.5,0],[[237,2],[320,2]]], [285,[15367.1,15180.4,0],[[238,2]]], [286,[15254.8,15351.6,-3.8147e-006],[[239,2]]], [287,[14732.2,13528.9,0],[[240,2],[321,2]]],
+[288,[15015,13707.3,-3.8147e-007],[[241,2],[322,2],[323,2],[324,2]]], [289,[15029.8,13781.9,4.76837e-007],[[244,2]]], [290,[15279.9,13650.9,0],[[245,2],[325,2]]], [291,[15402.5,13938.4,0],[[245,2]]], [292,[15380.7,14027.2,1.19209e-007],[[247,2]]], [293,[15769.5,14438.6,3.17891e-007],[[248,2],[326,2],[327,2],[294,2]]],
+[294,[15819.9,14352.6,0],[[248,2],[293,2],[328,2],[327,2]]], [295,[15498.8,14263.1,0],[[249,2]]], [296,[15665.5,14110,0],[[250,2],[329,2]]], [297,[15933,14858.7,0],[[251,2],[281,2],[330,2],[331,2]]], [298,[13581.8,14547.8,0],[[252,2],[332,2],[299,2]]], [299,[13678,14575.9,0],[[253,2],[298,2]]],
+[300,[13687.1,14484.6,0],[[253,2]]], [301,[13678.5,14382.7,0],[[254,2],[333,2],[334,2],[335,2]]], [302,[13905.1,14236.9,9.53674e-007],[[256,2],[336,2]]], [303,[14079.2,15207.9,-3.17891e-007],[[258,2],[337,2],[338,2]]], [304,[13967.8,15213.1,-3.17891e-007],[[258,2],[338,2],[339,2],[340,2]]], [305,[14411,13627.7,4.76837e-007],[[263,2],[341,2],[305,2],[306,2]]],
+[306,[14467.2,13521.3,0],[[264,2],[305,2],[342,2],[343,2]]], [307,[13915.3,13878.4,0],[[267,2],[344,2]]], [308,[14629.4,15803.3,0],[[270,2]]], [309,[14642.2,15868.6,-4.76837e-007],[[270,2],[309,2],[345,2],[346,2]]], [310,[14858.3,15891.3,-3.17891e-007],[[271,2],[310,2],[347,2]]], [311,[14699,16069.8,-6.35783e-007],[[272,2],[348,2],[349,2]]],
+[312,[14477.3,15688.9,0],[[273,2],[313,2],[350,2]]], [313,[14454.3,15739,-3.8147e-007],[[273,2],[312,2],[313,2],[351,2],[350,2]]], [314,[14455.9,15368.8,-2.38419e-007],[[274,2]]], [315,[14354.2,15520.1,0],[[276,2]]], [316,[14252.2,15581.6,3.8147e-007],[[276,2],[316,2],[352,2],[353,2],[354,2]]], [317,[16282.8,15154,0],[[278,2],[355,2]]],
+[318,[15657.2,15322.7,6.35783e-007],[[282,2],[356,2],[357,2]]], [319,[15844.6,15460.5,0],[[283,2],[358,2]]], [320,[16067.1,15349.7,0],[[284,2],[359,2]]], [321,[14723.3,13468.1,0],[[287,2],[360,2],[361,2],[362,2],[342,2]]], [322,[15063.6,13510.7,0],[[288,2],[363,2]]], [323,[15152.7,13570,0],[[288,2],[364,2]]],
+[324,[15058.7,13746,0],[[288,2]]], [325,[15262.5,13490.7,0],[[290,2],[365,2]]], [326,[15728.5,14494.3,-4.76837e-007],[[293,2]]], [327,[15837.5,14410.7,0],[[293,2],[294,2],[366,2]]], [328,[15849.8,14188,0],[[294,2],[367,2]]], [329,[15708.9,14057,0],[[296,2],[368,2],[369,2]]],
+[330,[16041.1,14901.3,-4.76837e-007],[[297,2],[370,2]]], [331,[16082.3,14752.9,1.58946e-007],[[297,2],[371,2],[331,2]]], [332,[13444.6,14483.9,0],[[298,2],[372,2]]], [333,[13637.5,14506.3,-9.53674e-007],[[301,2]]], [334,[13625.7,14236.6,0],[[301,2],[373,2]]], [335,[13551.9,14290.7,0],[[301,2],[374,2]]],
+[336,[13860.6,14188.2,0],[[302,2],[375,2]]], [337,[14166.8,15213,0],[[303,2],[337,2]]], [338,[14069.5,15248.5,6.35783e-007],[[303,2],[304,2],[340,2],[376,2]]], [339,[13877.8,15239.8,4.76837e-007],[[304,2],[377,2],[339,2],[378,2]]], [340,[14059.5,15281,9.53674e-007],[[338,2],[304,2],[412,2],[413,2]]], [341,[14395.1,13634.6,0],[[305,2],[379,2]]],
+[342,[14572.8,13451.4,0],[[306,2],[321,2],[362,2]]], [343,[14392.6,13455.4,0],[[306,2],[380,2],[381,2]]], [344,[13903,13826.5,0],[[307,2]]], [345,[14604.8,15837.8,0],[[309,2],[345,2],[382,2]]], [346,[14636.2,15909.3,0],[[309,2],[383,2],[384,2]]], [347,[14936,15931.3,0],[[310,2],[385,2]]],
+[348,[14642.8,16216.1,6.35783e-007],[[311,2],[386,2],[387,2]]], [349,[14762,16107.6,6.35783e-007],[[311,2],[388,2]]], [350,[14421.8,15669.7,-6.35783e-007],[[312,2],[313,2],[352,2]]], [351,[14360.2,15844.6,0],[[313,2],[389,2]]], [352,[14337.3,15623.3,0],[[316,2],[350,2]]], [353,[14157.4,15593.8,0],[[316,2],[390,2],[353,2]]],
+[354,[14142.3,15737.8,0],[[316,2],[391,2]]], [355,[16411.1,15194.3,0],[[317,2],[392,2]]], [356,[15623,15425.2,-1.90735e-006],[[318,2],[393,2]]], [357,[15591.6,15379.1,6.35783e-007],[[318,2],[394,2]]], [358,[15797.7,15579.6,0],[[319,2],[395,2],[396,2]]], [359,[16150.7,15326.3,0],[[320,2],[397,2]]],
+[360,[14860.7,13524.5,0],[[321,2],[398,2]]], [361,[14714.1,13396.2,-9.53674e-007],[[321,2],[399,2],[361,2],[362,2]]], [362,[14628.7,13431.7,-1.90735e-006],[[321,2],[342,2],[361,2],[400,2]]], [363,[15048.4,13458.3,-1.27157e-006],[[322,2],[398,2],[401,2]]], [364,[15162.5,13534.3,-9.53674e-007],[[323,2]]], [365,[15281,13372,0],[[325,2],[402,2]]],
+[366,[15888.9,14387.6,0],[[327,2],[403,2],[404,2]]], [367,[15850,14079.4,0],[[328,2],[405,2]]], [368,[15808.4,13924.2,4.76837e-007],[[329,2],[406,2]]], [369,[15692.5,13968.3,0],[[329,2],[369,2]]], [370,[16146.1,14958.5,0],[[330,2],[407,2]]], [371,[16164.5,14640.8,-4.76837e-007],[[331,2],[408,2]]],
+[372,[13374.5,14479.3,-6.35783e-007],[[332,2],[409,2],[410,2]]], [373,[13653.7,14103.1,9.53674e-007],[[334,2],[373,2]]], [374,[13427.1,14253.8,0],[[335,2],[411,2]]], [375,[13831.2,14108.5,0],[[336,2]]], [376,[14091.9,15271.1,0],[[338,2],[414,2]]], [377,[13824.3,15357.6,0],[[339,2],[415,2]]],
+[378,[13850.6,15121.5,0],[[339,2]]], [379,[14330.7,13645.3,0],[[341,2]]], [380,[14270.1,13505.9,0],[[343,2],[416,2]]], [381,[14340.1,13270.5,0],[[343,2],[417,2]]], [382,[14542.9,15825,0],[[345,2]]], [383,[14646,15912,9.53674e-007],[[346,2]]],
+[384,[14609,15889.4,0],[[346,2]]], [385,[14963.7,15930.3,9.53674e-007],[[347,2]]], [386,[14534.9,16238.6,-6.35783e-007],[[348,2],[418,2],[419,2]]], [387,[14612.4,16354,0],[[348,2],[420,2],[421,2]]], [388,[14937.8,16149.2,-4.76837e-007],[[349,2],[422,2],[423,2]]], [389,[14327.1,15886.5,3.8147e-006],[[351,2],[424,2]]],
+[390,[14084.1,15578.1,-1.14441e-006],[[353,2],[425,2],[426,2],[413,2],[427,2]]], [391,[14061.2,15837.4,-3.8147e-007],[[354,2],[428,2],[425,2],[429,2],[430,2]]], [392,[16563.3,15241.3,9.53674e-007],[[355,2],[431,2]]], [393,[15594.3,15466.6,6.35783e-007],[[356,2],[432,2],[394,2],[433,2]]], [394,[15534.1,15466.5,0],[[357,2],[393,2],[432,2],[434,2]]], [395,[15735.4,15579.3,-6.35783e-007],[[358,2],[435,2],[433,2]]],
+[396,[15763.3,15655.9,-6.35783e-007],[[358,2],[436,2],[435,2],[437,2]]], [397,[16265.2,15309.8,9.53674e-007],[[359,2],[438,2]]], [398,[14960.6,13538.7,0],[[360,2],[363,2]]], [399,[14870.2,13366.9,0],[[361,2],[439,2],[401,2]]], [400,[14546.4,13310.3,3.8147e-006],[[362,2],[440,2]]], [401,[15003.3,13339.7,0],[[363,2],[399,2],[439,2]]],
+[402,[15366.3,13243.5,0],[[365,2],[441,2]]], [403,[16027.8,14325.8,0],[[366,2],[442,2]]], [404,[15881.4,14422.4,2.38419e-007],[[366,2]]], [405,[15921.8,13979.1,4.76837e-007],[[367,2],[443,2]]], [406,[15840.8,13910.7,1.58946e-007],[[368,2],[444,2],[406,2],[445,2]]], [407,[16201.9,14964.9,0],[[370,2]]],
+[408,[16238.7,14585.3,0],[[371,2],[446,2]]], [409,[13222.6,14403.4,0],[[372,2],[447,2]]], [410,[13301,14615.7,6.35783e-007],[[372,2],[448,2],[449,2]]], [411,[13323.8,14171.7,-1.90735e-006],[[374,2],[450,2]]], [412,[14082,15278.9,1.43051e-006],[[340,2]]], [413,[14037,15458.5,0],[[340,2],[390,2],[426,2]]],
+[414,[14213.7,15320.6,0],[[376,2],[451,2]]], [415,[13805.2,15382.5,0],[[377,2]]], [416,[14237.7,13507.8,0],[[380,2]]], [417,[14306.7,13146.5,0],[[381,2],[452,2],[453,2]]], [418,[14452.8,16169.9,0],[[386,2],[454,2]]], [419,[14525.3,16341.9,1.90735e-006],[[386,2],[455,2]]],
+[420,[14682.6,16370.6,0],[[387,2]]], [421,[14557.9,16540.8,0],[[387,2],[456,2]]], [422,[14967,16179.4,-1.27157e-006],[[388,2],[457,2],[458,2]]], [423,[15045.9,16067.4,9.53674e-007],[[388,2],[459,2]]], [424,[14317.2,15914.2,0],[[389,2]]], [425,[14069.1,15721.2,0],[[390,2],[391,2]]],
+[426,[14044.8,15511,0],[[390,2],[413,2],[460,2]]], [427,[13928.4,15564.6,0],[[390,2],[461,2]]], [428,[13951,15891.1,1.90735e-006],[[391,2],[428,2]]], [429,[14151.7,15903.6,0],[[391,2],[462,2]]], [430,[14022,15914.8,0],[[391,2],[463,2],[464,2]]], [431,[16626.3,15256.8,0],[[392,2],[465,2],[466,2],[467,2]]],
+[432,[15551.4,15507.6,4.76837e-007],[[393,2],[394,2],[434,2],[468,2],[433,2]]], [433,[15609.2,15507.6,-6.35783e-007],[[393,2],[395,2],[432,2],[469,2]]], [434,[15497.5,15527.9,0],[[394,2],[432,2],[470,2],[468,2],[471,2]]], [435,[15700.3,15624.6,0],[[395,2],[396,2],[472,2],[436,2]]], [436,[15732.5,15655.4,0],[[396,2],[435,2],[436,2]]], [437,[15711.3,15804.6,0],[[396,2],[473,2]]],
+[438,[16313.4,15319.4,0],[[397,2],[474,2],[465,2],[475,2]]], [439,[14935.7,13332.1,-4.76837e-007],[[399,2],[401,2],[439,2],[476,2]]], [440,[14544.9,13239.6,0],[[400,2]]], [441,[15398.1,13194.5,5.96046e-008],[[402,2],[477,2],[478,2],[479,2]]], [442,[16060.2,14300.7,0],[[403,2],[480,2],[481,2]]], [443,[15960.7,13952.1,0],[[405,2]]],
+[444,[15832.2,13906.1,2.38419e-007],[[406,2]]], [445,[15880,13915.9,0],[[406,2]]], [446,[16283.4,14468.5,2.38419e-007],[[408,2],[482,2]]], [447,[13136.2,14367.5,-5.44957e-007],[[409,2],[447,2],[483,2],[484,2],[485,2],[486,2],[487,2]]], [448,[13375.3,14647.2,9.53674e-007],[[410,2],[449,2],[488,2],[489,2]]], [449,[13248.1,14741.8,-6.35783e-007],[[410,2],[448,2],[490,2]]],
+[450,[13252.3,14100.4,0],[[411,2],[491,2],[485,2]]], [451,[14246.2,15323.1,0],[[414,2]]], [452,[14388.5,13069.1,0],[[417,2],[492,2],[493,2]]], [453,[14221.1,13108.6,1.58946e-007],[[417,2],[494,2],[495,2]]], [454,[14369.2,16083.2,0],[[418,2],[462,2]]], [455,[14423.5,16375,0],[[419,2],[496,2]]],
+[456,[14547.8,16605.5,0],[[421,2],[497,2],[498,2],[499,2]]], [457,[15080.5,16207.1,0],[[422,2],[500,2]]], [458,[14918,16352.1,0],[[422,2],[501,2]]], [459,[15110.6,16008.5,0],[[423,2],[502,2]]], [460,[14092.9,15463.6,1.90735e-006],[[426,2],[503,2]]], [461,[13747.6,15573.2,-4.76837e-007],[[427,2],[504,2],[505,2],[506,2]]],
+[462,[14245.2,15979.5,0],[[429,2],[454,2]]], [463,[14054.9,16026.5,0],[[430,2],[507,2]]], [464,[13896.6,15957.1,1.90735e-006],[[430,2],[508,2]]], [465,[16488,15305.8,-9.53674e-007],[[431,2],[438,2],[474,2]]], [466,[16709.3,15292.8,0],[[431,2],[509,2],[510,2],[511,2]]], [467,[16636.9,15191.2,2.38419e-007],[[431,2],[512,2],[513,2],[514,2]]],
+[468,[15565.8,15541,0],[[432,2],[434,2],[515,2]]], [469,[15572,15532.2,0],[[433,2]]], [470,[15550.1,15597.8,1.90735e-006],[[434,2],[516,2]]], [471,[15430.8,15627.9,0],[[434,2],[517,2]]], [472,[15694.3,15654.2,1.90735e-006],[[435,2],[518,2]]], [473,[15740.9,15941.8,0],[[437,2],[519,2]]],
+[474,[16428.2,15309.3,-9.53674e-007],[[438,2],[465,2],[520,2]]], [475,[16273.9,15449.3,-9.53674e-007],[[438,2],[521,2]]], [476,[15016.3,13247.8,0],[[439,2],[522,2]]], [477,[15449.6,13277.4,0],[[441,2],[523,2]]], [478,[15488.7,13119.1,0],[[441,2],[524,2],[525,2]]], [479,[15253.3,13241,0],[[441,2],[526,2]]],
+[480,[16091.3,14329.2,0],[[442,2]]], [481,[16112.5,14227.9,0],[[442,2],[527,2],[528,2],[529,2]]], [482,[16308.6,14460,0],[[446,2]]], [483,[12981.8,14283.5,-1.90735e-006],[[447,2],[530,2]]], [484,[13057,14227.4,0],[[447,2],[531,2]]], [485,[13158.9,14311.3,0],[[447,2],[450,2],[532,2]]],
+[486,[13030.3,14458.1,0],[[447,2],[533,2],[487,2],[534,2]]], [487,[13148.3,14528.5,-2.38419e-007],[[447,2],[486,2],[535,2],[533,2]]], [488,[13502.3,14617.1,0],[[448,2],[536,2],[488,2],[537,2]]], [489,[13414.7,14662.9,0],[[448,2],[489,2],[538,2]]], [490,[13231.3,14776.2,-6.35783e-007],[[449,2],[539,2],[535,2]]], [491,[13243.7,14042.5,0],[[450,2],[540,2],[541,2]]],
+[492,[14397,13134.9,0],[[452,2]]], [493,[14421.4,13050,0],[[452,2],[542,2],[543,2]]], [494,[14160,13285.8,0],[[453,2],[544,2]]], [495,[14168.2,12998.9,3.17891e-007],[[453,2],[545,2],[546,2]]], [496,[14350.3,16431.8,0],[[455,2],[547,2]]], [497,[14567.9,16777.6,6.35783e-007],[[456,2],[548,2],[549,2]]],
+[498,[14631.6,16596.6,0],[[456,2]]], [499,[14394,16716.3,0],[[456,2],[550,2]]], [500,[15195.7,16223.8,2.38419e-007],[[457,2],[500,2],[551,2],[552,2]]], [501,[14811.5,16420.2,0],[[458,2]]], [502,[15170.6,15902.4,0],[[459,2],[553,2]]], [503,[14116.5,15445.3,0],[[460,2]]],
+[504,[13752.7,15622.8,6.35783e-007],[[461,2],[504,2],[554,2]]], [505,[13685.2,15563.7,0],[[461,2],[555,2],[556,2]]], [506,[13692.6,15599.3,0],[[461,2]]], [507,[13969.6,16098.2,1.90735e-006],[[463,2],[557,2]]], [508,[13749.7,15996.9,0],[[464,2],[558,2]]], [509,[16782.7,15316,0],[[466,2],[559,2],[560,2],[510,2]]],
+[510,[16764.2,15247.4,3.17891e-007],[[466,2],[509,2],[560,2],[561,2]]], [511,[16755.9,15365.6,0],[[466,2],[562,2]]], [512,[16586,15049.8,0],[[467,2],[563,2]]], [513,[16574.7,15219.3,-9.53674e-007],[[467,2]]], [514,[16689,15187.2,0],[[467,2]]], [515,[15563,15615.3,0],[[468,2]]],
+[516,[15575.1,15762.8,1.90735e-006],[[470,2],[564,2]]], [517,[15350.9,15718.8,0],[[471,2],[553,2]]], [518,[15661,15687,0],[[472,2]]], [519,[15668.4,16021,0],[[473,2]]], [520,[16454.6,15423.3,0],[[474,2],[565,2]]], [521,[16219.7,15564.9,0],[[475,2]]],
+[522,[15050.7,13216,-3.17891e-007],[[476,2],[566,2],[526,2]]], [523,[15542.8,13368.3,0],[[477,2],[567,2]]], [524,[15507.5,13019.3,0],[[478,2],[568,2],[569,2]]], [525,[15650,13142.2,0],[[478,2],[570,2]]], [526,[15209.4,13274.2,0],[[479,2],[522,2],[571,2]]], [527,[16212,14187.1,-1.58946e-007],[[481,2],[572,2],[573,2]]],
+[528,[16133.8,14070.8,4.76837e-007],[[481,2],[574,2]]], [529,[16191.4,14142.4,0],[[481,2]]], [530,[12884.7,14209.7,0],[[483,2],[575,2]]], [531,[13066.3,14208.5,0],[[484,2],[576,2],[577,2]]], [532,[13287.2,14272.4,0],[[485,2],[532,2]]], [533,[13082.3,14490.5,0],[[486,2],[487,2]]],
+[534,[12934.8,14461.1,-3.8147e-007],[[486,2],[534,2],[578,2],[579,2],[580,2]]], [535,[13203.3,14679.5,0],[[487,2],[490,2]]], [536,[13496.1,14608,0],[[488,2]]], [537,[13553.2,14692.9,0],[[537,2],[581,2]]], [538,[13447.9,14708.3,3.17891e-007],[[489,2],[582,2],[583,2]]], [539,[13244.2,14953.5,0],[[490,2],[584,2]]],
+[540,[13230.4,13908.5,1.27157e-006],[[491,2],[585,2],[586,2]]], [541,[13126.1,14079.2,1.90735e-006],[[491,2],[587,2],[576,2]]], [542,[14586.1,13031.5,0],[[493,2],[588,2]]], [543,[14460.9,13091.5,9.53674e-007],[[493,2]]], [544,[14144,13306.2,-2.38419e-007],[[494,2],[589,2],[590,2],[591,2]]], [545,[14167.8,12930.7,0],[[495,2],[592,2],[593,2]]],
+[546,[14043,13104.1,0],[[495,2],[594,2]]], [547,[14317.6,16473.7,0],[[496,2]]], [548,[14565.3,16971.2,0],[[497,2],[595,2]]], [549,[14774.8,16758.9,0],[[497,2],[596,2]]], [550,[14350.3,16751.1,-6.35783e-007],[[499,2],[597,2],[598,2]]], [551,[15234.8,16203.7,-1.90735e-006],[[500,2]]],
+[552,[15241.4,16263.2,-1.27157e-006],[[500,2],[599,2],[600,2]]], [553,[15287.2,15787.3,0],[[502,2],[517,2]]], [554,[13732.5,15650,0],[[504,2],[554,2],[601,2]]], [555,[13623.7,15613.9,0],[[505,2]]], [556,[13571.5,15472.1,0],[[505,2],[602,2],[603,2]]], [557,[13848.5,16185.2,-1.90735e-006],[[507,2],[604,2]]],
+[558,[13667,16018.4,3.17891e-007],[[508,2],[605,2],[558,2],[606,2]]], [559,[16928.7,15386.6,0],[[509,2],[607,2]]], [560,[16795.1,15287.5,0],[[509,2],[510,2],[560,2],[561,2]]], [561,[16797.9,15198.6,0],[[510,2],[560,2],[608,2]]], [562,[16842.5,15464.3,0],[[511,2],[609,2]]], [563,[16592.8,15002.5,3.17891e-007],[[512,2],[610,2],[611,2]]],
+[564,[15536.2,15901.1,0],[[516,2],[612,2]]], [565,[16417.2,15550.5,0],[[520,2],[613,2]]], [566,[14960.2,13083.3,0],[[522,2],[614,2],[615,2]]], [567,[15607.3,13370.8,0],[[523,2],[567,2]]], [568,[15637.9,12910.2,0],[[524,2],[616,2]]], [569,[15425,12971.7,0],[[524,2],[617,2]]],
+[570,[15717,13144.5,0],[[525,2],[618,2],[619,2],[620,2]]], [571,[15244.5,13315.8,-9.53674e-007],[[526,2]]], [572,[16285,14047.3,0],[[527,2],[621,2]]], [573,[16211.2,14221.7,0],[[527,2]]], [574,[16193.6,13962.1,0],[[528,2],[621,2]]], [575,[12782,14110.9,0],[[530,2],[622,2]]],
+[576,[13038.7,14110.6,1.27157e-006],[[531,2],[541,2],[623,2],[587,2]]], [577,[13125,14200.2,-1.90735e-006],[[531,2]]], [578,[12907.1,14570.2,0],[[534,2],[624,2]]], [579,[12805.5,14380.4,6.35783e-007],[[534,2],[625,2],[626,2]]], [580,[12823.4,14507.4,-1.90735e-006],[[534,2],[627,2]]], [581,[13592,14779.7,9.53674e-007],[[537,2],[680,2]]],
+[582,[13467.2,14774.3,0],[[538,2],[628,2],[629,2]]], [583,[13522.4,14725.4,9.53674e-007],[[538,2]]], [584,[13224.1,14972.1,0],[[539,2],[630,2],[631,2]]], [585,[13276.4,13824.5,-1.52588e-006],[[540,2],[632,2],[633,2],[634,2],[635,2]]], [586,[13138.6,13980.2,1.90735e-006],[[540,2],[587,2]]], [587,[13072,14072,9.53674e-007],[[576,2],[586,2]]],
+[588,[14607.8,13026.8,-1.58946e-007],[[542,2],[636,2],[637,2]]], [589,[14027.9,13396.9,0],[[544,2],[589,2]]], [590,[14169.8,13338.8,0],[[544,2],[638,2],[639,2]]], [591,[14087.3,13207.2,0],[[544,2],[640,2]]], [592,[14100.6,12876,0],[[545,2]]], [593,[14188,12851.5,3.17891e-007],[[545,2],[641,2],[642,2]]],
+[594,[14024.4,13108.2,-4.76837e-007],[[546,2],[643,2],[640,2],[644,2],[645,2]]], [595,[14600.9,17079.9,-6.35783e-007],[[548,2],[646,2],[647,2]]], [596,[14937.3,16715.1,0],[[549,2],[648,2]]], [597,[14274.5,16798.8,0],[[550,2],[649,2],[650,2],[651,2]]], [598,[14318.4,16755.9,-3.8147e-006],[[550,2]]], [599,[15375.8,16211.9,0],[[552,2],[652,2]]],
+[600,[15222.4,16290.3,-9.53674e-007],[[600,2],[653,2]]], [601,[13688.6,15730.6,0],[[554,2]]], [602,[13428.5,15493.5,0],[[556,2],[654,2]]], [603,[13511,15358,3.17891e-007],[[556,2],[655,2],[656,2]]], [604,[13797.1,16308.1,0],[[557,2],[657,2]]], [605,[13687.5,16012.6,4.76837e-007],[[558,2]]],
+[606,[13550.2,16047,0],[[558,2]]], [607,[16973.3,15408.8,-1.58946e-007],[[559,2],[658,2],[609,2]]], [608,[16861.8,15084.1,0],[[561,2],[659,2],[660,2],[661,2]]], [609,[16954.5,15519.3,0],[[562,2],[607,2],[662,2],[663,2]]], [610,[16542.9,14943.4,3.17891e-007],[[563,2],[664,2],[665,2]]], [611,[16635.4,14956.5,0],[[563,2],[666,2],[667,2]]],
+[612,[15500.3,16037.1,0],[[564,2],[668,2]]], [613,[16383.7,15673.1,0],[[565,2],[669,2]]], [614,[15100.8,13025.4,-9.53674e-007],[[566,2],[670,2]]], [615,[14793.5,13086.3,-9.53674e-007],[[566,2],[636,2]]], [616,[15708.6,12791.3,0],[[568,2],[616,2]]], [617,[15335.3,12939.9,0],[[569,2],[671,2]]],
+[618,[15828,13259,-1.58946e-007],[[570,2],[618,2],[672,2]]], [619,[15761.8,13106.9,3.17891e-007],[[570,2],[673,2],[674,2]]], [620,[15708.3,13024.3,0],[[570,2]]], [621,[16290.7,14027.8,0],[[572,2],[574,2],[675,2]]], [622,[12664.4,13990.7,0],[[575,2],[676,2]]], [623,[12912.7,14045.4,0],[[576,2],[677,2]]],
+[624,[12844.9,14674.4,9.53674e-007],[[578,2]]], [625,[12789.9,14474.3,0],[[625,2]]], [626,[12668.4,14303.1,0],[[579,2],[678,2]]], [627,[12759.2,14562.3,0],[[580,2],[679,2]]], [628,[13495.8,14775.3,0],[[582,2]]], [629,[13494,14822.7,0],[[582,2]]],
+[630,[13240.8,15021.6,0.432984],[[584,2],[681,2],[682,2],[630,2],[683,2]]], [631,[13157.6,14931.8,0],[[584,2]]], [632,[13141,13864.5,-1.90735e-006],[[585,2],[684,2]]], [633,[13202.1,13674.5,-1.90735e-006],[[585,2],[685,2],[686,2]]], [634,[13496,13821.5,0],[[585,2],[687,2]]], [635,[13427.2,13720.7,0],[[585,2],[688,2]]],
+[636,[14659.4,13036,-6.35783e-007],[[588,2],[615,2],[689,2]]], [637,[14619.5,12959.8,2.38419e-007],[[588,2]]], [638,[14260.7,13354.5,0],[[590,2],[638,2]]], [639,[14112,13422.2,0],[[590,2],[690,2]]], [640,[14001.8,13216.2,0],[[591,2],[594,2],[643,2]]], [641,[14114.2,12817.2,0],[[593,2]]],
+[642,[14205.8,12792,-1.58946e-007],[[593,2],[691,2],[692,2]]], [643,[14011.5,13181.2,0],[[594,2],[640,2],[693,2],[643,2]]], [644,[13878.6,13153.9,1.90735e-006],[[594,2],[694,2]]], [645,[13932.3,13015,9.53674e-007],[[594,2],[695,2],[696,2]]], [646,[14628.4,17138.9,0],[[595,2],[697,2],[698,2]]], [647,[14679.7,16993.3,0],[[595,2],[699,2]]],
+[648,[15090.5,16661.9,0],[[596,2],[700,2],[701,2],[702,2]]], [649,[14174.5,16948,0],[[597,2],[703,2]]], [650,[14300.6,16765.8,1.90735e-006],[[597,2]]], [651,[14154.3,16799.4,0],[[597,2],[704,2]]], [652,[15435.7,16215.8,-6.35783e-007],[[599,2],[705,2],[706,2]]], [653,[15095.7,16374.5,-1.90735e-006],[[600,2],[707,2]]],
+[654,[13316,15566.8,0],[[602,2],[708,2]]], [655,[13549,15336.7,9.53674e-007],[[603,2]]], [656,[13423.2,15270.1,0],[[603,2],[709,2],[710,2]]], [657,[13777.6,16435.8,0],[[604,2],[711,2],[712,2],[713,2]]], [658,[17155.5,15490.1,0],[[607,2],[714,2]]], [659,[16770.3,15030.5,-9.53674e-007],[[608,2]]],
+[660,[16931.3,15021.3,-1.58946e-007],[[608,2],[715,2],[716,2]]], [661,[16918.7,15101.7,0],[[608,2]]], [662,[16903.1,15659.3,9.53674e-007],[[609,2],[717,2]]], [663,[17102,15566.2,0],[[609,2],[718,2]]], [664,[16464.4,14871.3,0],[[610,2],[719,2]]], [665,[16539.1,14890.7,0],[[610,2],[720,2],[667,2]]],
+[666,[16767.7,14872.7,9.53674e-007],[[611,2],[721,2]]], [667,[16602.5,14896,0],[[611,2],[665,2]]], [668,[15548.6,16120.7,9.53674e-007],[[612,2],[706,2]]], [669,[16362.1,15855.3,-9.53674e-007],[[613,2],[722,2]]], [670,[15202.3,12956.2,-9.53674e-007],[[614,2],[723,2]]], [671,[15321.6,12931,3.17891e-007],[[617,2],[723,2],[724,2]]],
+[672,[15971.2,13341.5,-2.38419e-007],[[618,2],[725,2]]], [673,[15860.9,13049.4,0],[[619,2],[726,2]]], [674,[15772.7,13035.4,0],[[619,2]]], [675,[16374.8,14027.7,-1.19209e-007],[[621,2]]], [676,[12570,13911.8,-6.35783e-007],[[622,2],[727,2],[728,2]]], [677,[12901.9,13983.6,0],[[623,2]]],
+[678,[12552.3,14291.7,0],[[626,2],[729,2]]], [679,[12645.1,14617.2,0],[[627,2]]], [680,[13646.1,14841.9,0],[[581,2]]], [681,[13180.4,15109.2,-3.17891e-007],[[630,2],[730,2],[731,2]]], [682,[13287.8,15047,4.76837e-007],[[630,2],[710,2]]], [683,[13308.4,15055.7,0],[[630,2]]],
+[684,[13072.6,13842,0],[[632,2],[732,2]]], [685,[13112.2,13787.7,0],[[633,2],[732,2]]], [686,[13284,13517.8,1.90735e-006],[[633,2],[733,2]]], [687,[13581.7,13760,0],[[634,2],[734,2]]], [688,[13469.2,13613.3,0],[[635,2],[735,2]]], [689,[14729,12874.2,0],[[636,2],[736,2]]],
+[690,[14067.4,13468.6,0],[[639,2],[737,2],[738,2]]], [691,[14285,12627,2.38419e-007],[[642,2],[739,2],[740,2],[741,2]]], [692,[14021.7,12764.7,0],[[642,2],[742,2]]], [693,[13988.6,13209.2,1.90735e-006],[[643,2],[743,2]]], [694,[13805.9,13167,6.35783e-007],[[644,2],[744,2],[745,2]]], [695,[13918.6,12887.2,0],[[645,2],[746,2],[742,2]]],
+[696,[13859.2,13028.4,0],[[645,2]]], [697,[14636.5,17260.3,0],[[646,2],[747,2],[748,2]]], [698,[14729.7,17210.7,0],[[646,2],[749,2]]], [699,[14771.4,16910.3,0],[[647,2]]], [700,[15037,16716.1,0],[[648,2]]], [701,[15278.8,16678,-9.53674e-007],[[648,2],[750,2]]],
+[702,[15220.2,16516.8,0],[[648,2],[751,2]]], [703,[14130.2,17052.5,0],[[649,2],[752,2],[753,2],[754,2]]], [704,[14139.7,16787,0],[[651,2],[704,2],[755,2],[756,2]]], [705,[15379.1,16328.1,0],[[652,2],[705,2]]], [706,[15522.5,16223.3,3.17891e-007],[[652,2],[668,2],[757,2]]], [707,[15037.1,16485.2,0],[[653,2],[758,2]]],
+[708,[13273.9,15552.6,-6.35783e-007],[[654,2],[759,2],[709,2]]], [709,[13320.4,15370.3,6.35783e-007],[[656,2],[708,2],[760,2]]], [710,[13380,15178.5,0],[[656,2],[682,2],[760,2]]], [711,[13851.5,16467.1,1.90735e-006],[[657,2],[761,2]]], [712,[13674.3,16625.5,0],[[657,2],[762,2]]], [713,[13633.7,16458.6,0],[[657,2],[763,2]]],
+[714,[17295.2,15548.8,0],[[658,2],[764,2]]], [715,[17070.3,15093.9,0],[[660,2],[765,2]]], [716,[17028.3,14855.4,0],[[660,2],[766,2]]], [717,[16858.5,15713.7,0],[[662,2],[767,2],[768,2]]], [718,[17199.2,15605.8,0],[[663,2],[769,2]]], [719,[16348.5,14821.1,4.76837e-007],[[664,2],[770,2]]],
+[720,[16516.8,14778.9,0],[[665,2],[771,2]]], [721,[16895.3,14795.6,0],[[666,2],[772,2]]], [722,[16368.6,15961.7,9.53674e-007],[[669,2],[773,2]]], [723,[15239.2,12905.5,3.17891e-007],[[670,2],[671,2],[774,2]]], [724,[15410.8,12917.2,0],[[671,2],[775,2]]], [725,[16035.6,13310.1,0],[[672,2],[776,2],[777,2]]],
+[726,[15915.9,12985.5,0],[[673,2]]], [727,[12461,13813,1.90735e-006],[[676,2],[778,2]]], [728,[12498.6,13909.1,1.90735e-006],[[676,2],[779,2]]], [729,[12417,14315.4,0],[[678,2],[780,2]]], [730,[13135.2,15091.2,0],[[681,2],[781,2],[782,2]]], [731,[13136.4,15281.7,9.53674e-007],[[681,2],[783,2]]],
+[732,[13085,13820.4,6.35783e-007],[[684,2],[685,2],[784,2],[732,2]]], [733,[13365.3,13361.6,0],[[686,2],[785,2]]], [734,[13721.7,13721.4,0],[[687,2]]], [735,[13480.4,13580.7,0],[[688,2],[786,2],[787,2]]], [736,[14780.4,12784.1,7.94729e-008],[[689,2],[736,2],[788,2]]], [737,[14051.4,13551.3,0],[[690,2]]],
+[738,[14016.1,13459.2,0],[[690,2],[743,2],[789,2]]], [739,[14226.9,12684.7,0],[[691,2]]], [740,[14428.5,12423.4,0],[[691,2],[790,2]]], [741,[14173.3,12563.1,2.38419e-007],[[691,2],[791,2],[792,2],[793,2]]], [742,[13983.7,12794.4,0],[[692,2],[695,2],[794,2],[746,2]]], [743,[13891.9,13284.7,-6.35783e-007],[[693,2],[738,2],[795,2]]],
+[744,[13645,13208.4,0],[[694,2],[796,2]]], [745,[13803.2,13240.3,0],[[694,2],[795,2]]], [746,[13921.1,12792,0],[[695,2],[742,2],[797,2]]], [747,[14569.7,17356.5,0],[[697,2],[798,2]]], [748,[14650,17391.3,0],[[697,2],[799,2],[800,2]]], [749,[14792.2,17260.9,-6.35783e-007],[[698,2],[801,2],[802,2]]],
+[750,[15322.7,16694.5,3.17891e-007],[[701,2],[803,2],[804,2]]], [751,[15237.9,16394.5,0],[[702,2],[805,2]]], [752,[13944.4,17096.9,0],[[703,2],[806,2]]], [753,[14214.8,17095.2,0],[[703,2],[807,2]]], [754,[14024.4,17211.2,0],[[703,2],[808,2]]], [755,[14117.1,16746.9,0],[[704,2]]],
+[756,[14099.9,16777.2,0],[[704,2]]], [757,[15551.2,16260.3,0],[[706,2]]], [758,[14998.1,16589.8,1.90735e-006],[[707,2],[809,2]]], [759,[13196.4,15634.9,-4.76837e-007],[[708,2],[810,2],[811,2],[812,2]]], [760,[13303.7,15249.5,0],[[709,2],[710,2]]], [761,[13938.4,16464.7,0],[[711,2],[813,2]]],
+[762,[13550.7,16689.2,0],[[712,2],[814,2]]], [763,[13545.5,16453.5,0],[[713,2],[815,2]]], [764,[17411.2,15571.6,0],[[714,2],[816,2],[817,2],[818,2],[819,2]]], [765,[17087.1,15116.8,1.58946e-007],[[715,2],[820,2],[821,2]]], [766,[17089.3,14746.9,0],[[716,2],[822,2]]], [767,[16712.3,15768.7,-3.17891e-007],[[717,2],[823,2],[824,2]]],
+[768,[16859.5,15832.1,0],[[717,2],[825,2]]], [769,[17221.8,15632.4,0],[[718,2],[826,2],[816,2]]], [770,[16334.1,14841.3,-4.76837e-007],[[719,2]]], [771,[16504.5,14750,0],[[720,2],[771,2],[827,2]]], [772,[16982.9,14741.3,0],[[721,2]]], [773,[16344.9,16069.7,0],[[722,2],[828,2]]],
+[774,[15305.5,12761.3,0],[[723,2],[829,2]]], [775,[15453.3,12925.1,0],[[724,2]]], [776,[16093,13185.3,0],[[725,2],[830,2]]], [777,[16219.6,13332.4,0],[[725,2],[831,2]]], [778,[12361.1,13746.3,0],[[727,2],[832,2]]], [779,[12479.1,13891.4,6.35783e-007],[[728,2],[833,2],[834,2]]],
+[780,[12281.2,14377.5,0],[[729,2],[835,2]]], [781,[12973,15097.6,0],[[730,2],[836,2]]], [782,[13133.2,14986.4,0],[[730,2],[837,2]]], [783,[13087.5,15326.2,-3.17891e-007],[[731,2],[838,2],[839,2]]], [784,[13078.1,13826.8,0],[[732,2]]], [785,[13381.9,13345.2,0],[[733,2],[840,2],[786,2]]],
+[786,[13422.5,13476.4,0],[[735,2],[785,2]]], [787,[13608.2,13467.4,0],[[735,2],[841,2]]], [788,[14863.2,12765.2,2.38419e-007],[[736,2],[842,2]]], [789,[13947.4,13553.4,0],[[738,2],[843,2]]], [790,[14402.6,12286.3,0],[[740,2],[844,2]]], [791,[14108,12612.5,-3.17891e-007],[[741,2],[791,2],[792,2]]],
+[792,[14057.1,12553.8,1.19209e-007],[[741,2],[791,2],[845,2],[846,2]]], [793,[14174,12356.2,0],[[741,2],[847,2]]], [794,[14010.7,12869.8,0],[[742,2]]], [795,[13833,13304.2,0],[[743,2],[745,2],[848,2],[841,2]]], [796,[13599.8,13215.7,6.35783e-007],[[744,2],[849,2],[850,2]]], [797,[13792.9,12749.8,-9.53674e-007],[[746,2],[851,2]]],
+[798,[14410.5,17365.8,0],[[747,2],[852,2]]], [799,[14591.8,17561.8,0],[[748,2],[853,2]]], [800,[14676.6,17581.2,0],[[748,2],[854,2]]], [801,[14824.6,17362.4,0],[[749,2],[855,2]]], [802,[14818.9,17254.8,-9.53674e-007],[[802,2],[856,2]]], [803,[15357.9,16711.9,0],[[750,2],[803,2],[804,2]]],
+[804,[15396.2,16641.6,0],[[750,2],[803,2]]], [805,[15266.5,16277.8,-1.90735e-006],[[751,2]]], [806,[13854.8,17179.4,0],[[752,2],[857,2]]], [807,[14234.1,17108.9,0],[[753,2]]], [808,[13968.8,17331.2,0],[[754,2],[858,2]]], [809,[14964.4,16618.5,0],[[758,2]]],
+[810,[13247.3,15736,0],[[759,2],[859,2]]], [811,[13171.8,15573.9,0],[[759,2]]], [812,[13102,15775.9,0],[[759,2],[860,2]]], [813,[13973,16509.8,0],[[761,2],[861,2],[862,2]]], [814,[13431.5,16769.2,0],[[762,2],[863,2]]], [815,[13503,16436.1,6.35783e-007],[[763,2],[864,2],[865,2]]],
+[816,[17363.4,15657.1,4.76837e-007],[[764,2],[769,2],[866,2]]], [817,[17617,15664.3,0],[[764,2],[867,2]]], [818,[17527.7,15539,0],[[764,2],[868,2]]], [819,[17417.2,15474.9,0],[[764,2]]], [820,[17182.3,15061.6,0],[[765,2],[869,2]]], [821,[17095.4,15189.6,0],[[765,2]]],
+[822,[17099.9,14663.3,4.76837e-007],[[766,2],[870,2]]], [823,[16709.8,15794.6,0],[[767,2]]], [824,[16641.3,15767,-3.17891e-007],[[767,2],[871,2],[824,2]]], [825,[16866.2,15891.6,-6.35783e-007],[[768,2],[872,2],[873,2]]], [826,[17256.1,15765.7,0],[[769,2]]], [827,[16538.1,14611.9,0],[[771,2],[874,2],[875,2]]],
+[828,[16311.5,16150.6,-6.35783e-007],[[773,2],[876,2],[877,2]]], [829,[15334.3,12697,0],[[774,2],[878,2],[829,2]]], [830,[16127.3,13125.5,1.58946e-007],[[776,2],[879,2],[880,2]]], [831,[16295.5,13302.3,0],[[777,2]]], [832,[12329.1,13732.3,6.35783e-007],[[778,2],[881,2],[833,2]]], [833,[12342.5,13778.9,0],[[779,2],[832,2]]],
+[834,[12381.5,13964.5,0],[[779,2],[882,2]]], [835,[12186.4,14442,-4.76837e-007],[[780,2],[835,2],[883,2],[884,2]]], [836,[12842.1,15145,0],[[781,2],[885,2]]], [837,[13126.2,14949.2,9.53674e-007],[[782,2]]], [838,[13034.7,15275.4,-9.53674e-007],[[783,2]]], [839,[12932.8,15493.6,0],[[783,2],[886,2]]],
+[840,[13416,13266.7,0],[[785,2],[887,2],[849,2]]], [841,[13681.8,13411.6,0],[[787,2],[795,2],[848,2],[888,2]]], [842,[14879.5,12762.3,0],[[788,2]]], [843,[13880,13630.8,0],[[789,2],[889,2]]], [844,[14378.2,12236.4,0],[[790,2],[890,2],[891,2]]], [845,[14052.4,12412.6,0],[[792,2]]],
+[846,[13933,12544.7,0],[[792,2],[892,2]]], [847,[14163.3,12215.4,0],[[793,2],[893,2],[894,2]]], [848,[13759.4,13379.3,0],[[795,2],[841,2],[848,2]]], [849,[13527.6,13217.1,0],[[796,2],[840,2],[895,2]]], [850,[13602.7,13125.8,0],[[796,2]]], [851,[13770,12746.8,-6.35783e-007],[[797,2],[896,2],[897,2]]],
+[852,[14341.4,17418.1,0],[[798,2]]], [853,[14539.9,17668.4,0],[[799,2],[898,2]]], [854,[14682.8,17698,0],[[800,2],[899,2]]], [855,[14955.3,17416.5,0],[[801,2],[900,2]]], [856,[14958.8,17233.7,0],[[802,2],[901,2],[902,2]]], [857,[13756.8,17307.9,0],[[806,2],[903,2]]],
+[858,[13933.2,17488.2,0],[[808,2],[904,2]]], [859,[13237.5,15778.2,0],[[810,2]]], [860,[13050.6,15860.6,3.17891e-007],[[812,2],[905,2],[906,2]]], [861,[14087.5,16527.9,0],[[813,2],[861,2]]], [862,[13943.9,16572.2,0],[[813,2],[862,2],[907,2]]], [863,[13349.8,16868.6,0],[[814,2],[908,2]]],
+[864,[13480.1,16408.1,0],[[815,2]]], [865,[13346.6,16421,0],[[815,2],[909,2],[910,2],[911,2]]], [866,[17513.5,15656.3,0],[[816,2],[912,2]]], [867,[17766.8,15696.4,0],[[817,2],[913,2],[914,2],[915,2],[916,2]]], [868,[17572.8,15430.4,-4.76837e-007],[[818,2],[917,2]]], [869,[17275.7,15004.8,0],[[820,2],[869,2],[918,2]]],
+[870,[17115.2,14618.9,1.58946e-007],[[822,2],[919,2],[920,2]]], [871,[16503.2,15843,9.53674e-007],[[824,2],[921,2]]], [872,[16960.8,16039.5,0],[[825,2],[922,2]]], [873,[16801.2,16011.8,0],[[825,2],[923,2]]], [874,[16473,14428.7,0],[[827,2]]], [875,[16632.1,14483.6,1.58946e-007],[[827,2],[924,2],[925,2]]],
+[876,[16303.7,16284.7,0],[[828,2],[926,2]]], [877,[16189.4,16237.5,9.53674e-007],[[828,2],[927,2]]], [878,[15416.9,12669.3,0],[[829,2],[928,2],[929,2]]], [879,[16052.4,13002,0],[[830,2],[930,2]]], [880,[16205.4,13111,0],[[830,2]]], [881,[12177.4,13643.8,0],[[832,2],[931,2]]],
+[882,[12276.6,13975.1,-3.8147e-006],[[834,2],[932,2]]], [883,[12125.6,14516,0],[[835,2],[933,2],[934,2]]], [884,[12131.9,14344,-1.90735e-006],[[835,2],[935,2]]], [885,[12786.4,15151.8,0],[[836,2],[936,2],[937,2]]], [886,[12905.2,15549.8,2.38419e-007],[[839,2],[938,2],[939,2],[940,2]]], [887,[13287.8,13207.2,0],[[840,2],[941,2]]],
+[888,[13744.3,13514.2,-1.90735e-006],[[841,2],[942,2]]], [889,[13863.1,13692.8,0],[[843,2]]], [890,[14518.2,12217.8,0],[[844,2],[943,2]]], [891,[14342.7,12192.2,1.58946e-007],[[844,2],[944,2],[945,2]]], [892,[13831.2,12465.5,0],[[846,2],[946,2]]], [893,[14108.1,12222,0],[[847,2]]],
+[894,[14171.5,12058.9,0],[[847,2],[947,2],[944,2]]], [895,[13463,13122.8,9.53674e-007],[[849,2]]], [896,[13775.2,12692.7,0],[[851,2]]], [897,[13581.8,12753.2,1.90735e-007],[[851,2],[948,2],[949,2],[950,2],[951,2]]], [898,[14407.4,17759.3,0],[[853,2],[952,2]]], [899,[14662.4,17830.7,0],[[854,2],[953,2],[954,2],[955,2]]],
+[900,[15064.7,17452.2,-6.35783e-007],[[855,2],[956,2],[957,2]]], [901,[14973,17231.9,1.90735e-006],[[856,2]]], [902,[15043.5,17172.7,-1.90735e-006],[[856,2],[958,2]]], [903,[13688.4,17355.9,0],[[857,2],[959,2],[960,2]]], [904,[13857.1,17624.5,0],[[858,2],[961,2]]], [905,[13064.8,15990.8,1.90735e-006],[[860,2],[962,2]]],
+[906,[12995,15912.9,9.53674e-007],[[860,2]]], [907,[13924.9,16610.9,0],[[862,2]]], [908,[13288.1,16967.5,-1.90735e-006],[[863,2],[963,2]]], [909,[13195.7,16507.6,0],[[865,2],[964,2]]], [910,[13444.9,16366.2,0],[[865,2]]], [911,[13188.7,16406.6,0],[[865,2],[965,2]]],
+[912,[17593.6,15689.2,0],[[866,2],[966,2]]], [913,[17914.6,15745.9,0],[[867,2],[967,2]]], [914,[17732.2,15735.4,3.17891e-007],[[867,2],[968,2]]], [915,[17737.5,15674.4,0],[[867,2]]], [916,[17801.9,15648.2,0],[[867,2],[969,2],[970,2]]], [917,[17648.9,15302.6,0],[[868,2],[971,2]]],
+[918,[17315.8,15030.8,0],[[869,2]]], [919,[17050.6,14545,0],[[870,2]]], [920,[17166.7,14446.3,1.19209e-007],[[870,2],[972,2],[973,2],[974,2]]], [921,[16442.7,15937,0],[[871,2]]], [922,[17051,16142.7,0],[[872,2],[975,2],[976,2],[977,2]]], [923,[16721.6,16045.5,-1.90735e-006],[[873,2],[978,2]]],
+[924,[16637,14338.7,0],[[875,2]]], [925,[16749.1,14353.5,0],[[875,2],[979,2]]], [926,[16287,16433.7,0],[[876,2],[980,2]]], [927,[16128.8,16256.7,0],[[877,2]]], [928,[15469.2,12659.7,-4.76837e-007],[[878,2]]], [929,[15555.3,12708.2,1.58946e-007],[[878,2],[981,2],[982,2]]],
+[930,[16011.2,12986.9,0],[[879,2]]], [931,[12134.3,13618.3,-6.35783e-007],[[881,2],[983,2],[984,2]]], [932,[12258.6,13965.9,0],[[882,2]]], [933,[12041,14468.8,0],[[883,2],[985,2]]], [934,[12042.9,14685.9,0],[[883,2],[986,2]]], [935,[12036.9,14335.9,3.8147e-006],[[884,2],[987,2]]],
+[936,[12630.3,15192.6,0],[[885,2],[988,2]]], [937,[12791.8,15055.7,0],[[885,2],[989,2]]], [938,[12800,15496.4,0],[[886,2],[990,2]]], [939,[12848.1,15696.5,0],[[886,2],[991,2]]], [940,[12909.9,15615.2,9.53674e-007],[[886,2]]], [941,[13261.1,13164.4,0],[[887,2],[992,2],[993,2]]],
+[942,[13769.6,13536.5,0],[[888,2]]], [943,[14657.8,12235.7,0],[[890,2],[994,2]]], [944,[14217.4,12083.3,9.53674e-007],[[891,2],[894,2],[947,2]]], [945,[14359.8,12160.4,-3.17891e-007],[[891,2],[995,2],[996,2]]], [946,[13779.9,12407.5,0],[[892,2]]], [947,[14176,12043.6,0],[[894,2],[944,2],[997,2],[998,2],[999,2]]],
+[948,[13597.2,12668,-9.53674e-007],[[897,2]]], [949,[13435.5,12742.5,0],[[897,2],[1000,2]]], [950,[13557.3,12715.4,0],[[897,2]]], [951,[13484.1,12830,0],[[897,2],[1001,2]]], [952,[14290.8,17810.2,0],[[898,2],[1002,2]]], [953,[14596.2,17982.8,0],[[899,2],[953,2]]],
+[954,[14532.4,17802.1,0],[[899,2],[1003,2]]], [955,[14849.3,17907.3,-1.90735e-006],[[899,2],[1004,2]]], [956,[15095.4,17413.5,0],[[900,2]]], [957,[15109.6,17477.6,0],[[900,2],[1005,2],[1006,2]]], [958,[15098.8,17162.9,0],[[902,2]]], [959,[13572,17322.5,0],[[903,2],[1007,2]]],
+[960,[13682.5,17388.6,1.27157e-006],[[903,2],[960,2],[1008,2]]], [961,[13834.8,17673.1,-6.35783e-007],[[904,2],[1009,2],[1010,2]]], [962,[13057.9,16103.1,9.53674e-007],[[905,2],[1011,2]]], [963,[13353.8,17109.3,0],[[908,2],[1012,2]]], [964,[13095.9,16567.6,0],[[909,2],[1013,2]]], [965,[13154.9,16409.7,0],[[911,2]]],
+[966,[17611.9,15736.6,0],[[912,2]]], [967,[17990.6,15763,0],[[913,2]]], [968,[17682.5,15734.9,0],[[914,2]]], [969,[17786.6,15609.9,0],[[916,2],[1014,2],[969,2]]], [970,[17962.1,15641,1.90735e-006],[[916,2]]], [971,[17688.4,15257.2,1.58946e-007],[[917,2],[1015,2],[1016,2]]],
+[972,[17312.1,14454.6,0],[[920,2]]], [973,[17191.1,14264.6,0],[[920,2],[1017,2]]], [974,[17077,14343.3,0],[[920,2],[1018,2]]], [975,[17174.5,16260.2,0],[[922,2],[1019,2],[1020,2]]], [976,[16932.2,16254.3,0],[[922,2],[1021,2]]], [977,[17160.1,16037.4,0],[[922,2],[1022,2]]],
+[978,[16648.1,16082.8,0],[[923,2],[978,2]]], [979,[16809,14218.3,0],[[925,2]]], [980,[16313.2,16584.5,6.35783e-007],[[926,2],[1023,2],[1024,2]]], [981,[15606.2,12670.6,0],[[929,2]]], [982,[15632.9,12736.3,0],[[929,2]]], [983,[11967.6,13545,0],[[931,2],[1025,2]]],
+[984,[12210.8,13497.9,0],[[931,2],[1026,2]]], [985,[11915,14436.4,0],[[933,2],[1027,2]]], [986,[11949.1,14792.3,-1.90735e-006],[[934,2],[1028,2]]], [987,[11977.2,14305.8,0],[[935,2],[1029,2]]], [988,[12541.1,15156.4,-3.8147e-007],[[936,2],[1030,2],[988,2],[1031,2],[1032,2]]], [989,[12765,15004,0],[[937,2]]],
+[990,[12691.9,15504.3,0],[[938,2],[1033,2]]], [991,[12824.7,15766.9,0],[[939,2],[1034,2],[1035,2]]], [992,[13220.9,13163.7,-3.17891e-007],[[941,2],[1036,2],[1037,2]]], [993,[13278.2,13038.5,0],[[941,2],[1038,2]]], [994,[14798.9,12243.6,0],[[943,2],[1039,2]]], [995,[14498.4,12102.8,0],[[945,2],[1040,2]]],
+[996,[14260.3,12100.6,0],[[945,2],[1041,2]]], [997,[14065.3,12108.7,0],[[947,2],[999,2]]], [998,[14126.4,11969.2,-3.17891e-007],[[947,2],[998,2],[1042,2],[1043,2],[1044,2],[1045,2]]], [999,[14071.2,12102.2,-1.90735e-006],[[997,2],[947,2]]], [1000,[13327.6,12652.5,0],[[949,2],[1046,2]]], [1001,[13405.6,12832.6,0],[[951,2],[1001,2],[1047,2],[1038,2]]],
+[1002,[14188.2,17899,0],[[952,2],[1048,2]]], [1003,[14507.2,17857.4,0],[[954,2],[1049,2]]], [1004,[14911.2,17930.1,-1.90735e-006],[[955,2]]], [1005,[15239.8,17429.2,1.90735e-006],[[957,2],[1050,2]]], [1006,[15117.3,17540.5,0],[[957,2],[1051,2],[1052,2],[1053,2]]], [1007,[13466.1,17347.5,3.8147e-006],[[959,2],[1054,2]]],
+[1008,[13667.1,17456.6,0],[[960,2],[1008,2],[1055,2]]], [1009,[13717.6,17813.9,0],[[961,2],[1056,2]]], [1010,[13890.8,17790.4,0],[[961,2]]], [1011,[13057,16196.8,-3.17891e-007],[[962,2],[1057,2],[1058,2]]], [1012,[13391.4,17188.5,1.27157e-006],[[963,2],[1054,2],[1059,2]]], [1013,[13009.3,16604.4,-4.76837e-007],[[964,2],[1060,2],[1061,2],[1062,2]]],
+[1014,[17782.7,15505.6,0],[[969,2],[1063,2],[1016,2]]], [1015,[17697.9,15136,-2.38419e-007],[[971,2],[1015,2],[1064,2],[1065,2]]], [1016,[17778.7,15398.1,0],[[971,2],[1014,2]]], [1017,[17188.2,14230.7,-1.19209e-007],[[973,2]]], [1018,[17036.9,14342.2,0],[[974,2]]], [1019,[17264.6,16125.4,0],[[975,2],[1066,2]]],
+[1020,[17244.1,16401.5,1.90735e-006],[[975,2],[1067,2]]], [1021,[16771.7,16326.8,0],[[976,2],[1068,2]]], [1022,[17212.2,15940.4,0],[[977,2],[1069,2]]], [1023,[16200.6,16725,0],[[980,2],[1070,2]]], [1024,[16479.9,16500.4,0],[[980,2],[1071,2]]], [1025,[11808.3,13484.3,0],[[983,2],[1072,2]]],
+[1026,[12240.4,13506.4,-9.53674e-007],[[984,2],[1026,2],[1073,2],[1074,2]]], [1027,[11862.3,14433.2,0],[[985,2],[1075,2],[1029,2],[1027,2]]], [1028,[11838,14908.7,0],[[986,2],[1076,2]]], [1029,[11877.2,14318.9,-3.8147e-006],[[987,2],[1027,2],[1075,2]]], [1030,[12554.5,15183,-6.35783e-007],[[988,2]]], [1031,[12463.4,15053.6,0],[[988,2],[1077,2]]],
+[1032,[12539.9,14971.6,0],[[988,2],[1078,2]]], [1033,[12623.3,15484.7,0],[[990,2],[1079,2],[1080,2]]], [1034,[12730.7,15757.8,0],[[991,2],[1081,2]]], [1035,[12775.5,15919.4,0],[[991,2],[1082,2]]], [1036,[13087.3,13056,0],[[992,2],[1083,2]]], [1037,[13167.5,13227.2,0],[[992,2],[1084,2]]],
+[1038,[13326.2,12975.6,0],[[993,2],[1001,2],[1085,2]]], [1039,[14927.9,12215.2,0],[[994,2],[1086,2]]], [1040,[14610.5,12055.5,0],[[995,2],[1087,2],[1088,2]]], [1041,[14267.6,12014,0],[[996,2],[1043,2],[1087,2]]], [1042,[14028.7,11921.8,0],[[998,2],[1089,2],[1090,2]]], [1043,[14192,11978,0],[[998,2],[1041,2],[1043,2]]],
+[1044,[14178.8,11873.7,-1.27157e-006],[[998,2],[1091,2],[1092,2]]], [1045,[14058.9,12018.5,0],[[998,2],[1093,2],[1045,2]]], [1046,[13325.7,12614,0],[[1000,2]]], [1047,[13298.3,12728.2,0],[[1001,2],[1094,2]]], [1048,[14102.4,17988.3,0],[[1002,2]]], [1049,[14522.5,17884.6,0],[[1003,2]]],
+[1050,[15342.8,17419.5,0],[[1005,2],[1095,2]]], [1051,[15016,17623.5,0],[[1006,2],[1051,2],[1052,2],[1096,2],[1097,2]]], [1052,[15121.8,17602.4,0],[[1006,2],[1051,2],[1052,2],[1098,2]]], [1053,[15173.4,17581.8,0],[[1006,2],[1099,2],[1100,2]]], [1054,[13337,17328.8,-1.27157e-006],[[1007,2],[1012,2],[1101,2]]], [1055,[13640.5,17521.1,0],[[1008,2],[1102,2],[1055,2],[1103,2],[1104,2]]],
+[1056,[13638.3,17899.5,0],[[1009,2],[1105,2]]], [1057,[12996.9,16223.7,0],[[1011,2]]], [1058,[13072,16290,6.35783e-007],[[1011,2],[1061,2],[1106,2]]], [1059,[13434.7,17169.6,-3.8147e-006],[[1012,2]]], [1060,[12897,16656.8,0],[[1013,2],[1107,2]]], [1061,[13030.7,16421.2,0],[[1013,2],[1058,2]]],
+[1062,[12975.5,16677.6,0],[[1013,2]]], [1063,[17762.9,15512.9,-9.53674e-007],[[1014,2]]], [1064,[17743.2,14943,0],[[1015,2],[1108,2]]], [1065,[17769.1,15110.2,0],[[1015,2]]], [1066,[17299.4,15998.6,0],[[1019,2],[1109,2]]], [1067,[17254.8,16433.3,4.76837e-007],[[1020,2],[1110,2],[1111,2],[1112,2]]],
+[1068,[16649.7,16408.5,0],[[1021,2],[1071,2]]], [1069,[17202.8,15911,0],[[1022,2]]], [1070,[16079.1,16800.9,-1.90735e-006],[[1023,2],[1113,2]]], [1071,[16526.3,16510.5,-4.76837e-007],[[1024,2],[1068,2],[1114,2],[1115,2]]], [1072,[11785.2,13465,0],[[1025,2],[1116,2],[1117,2]]], [1073,[12265.7,13505.2,0],[[1026,2],[1118,2],[1119,2]]],
+[1074,[12308.2,13524.9,0],[[1026,2],[1120,2]]], [1075,[11776.4,14321.8,0],[[1027,2],[1029,2],[1121,2],[1122,2],[1123,2]]], [1076,[11730,14996.6,0],[[1028,2],[1124,2]]], [1077,[12405.1,14953.8,1.90735e-006],[[1031,2],[1125,2]]], [1078,[12529.2,14921.7,0],[[1032,2],[1126,2],[1078,2]]], [1079,[12674.1,15424.1,-9.53674e-007],[[1033,2]]],
+[1080,[12603.1,15559.7,-1.27157e-006],[[1033,2],[1127,2],[1128,2]]], [1081,[12713.7,15755.2,0],[[1034,2],[1129,2],[1128,2],[1130,2]]], [1082,[12725.7,16039,0],[[1035,2],[1131,2]]], [1083,[12983.8,12944.8,0],[[1036,2],[1132,2]]], [1084,[13108.1,13270.6,0],[[1037,2],[1133,2],[1134,2]]], [1085,[13430.2,12933.2,-9.53674e-007],[[1038,2],[1085,2]]],
+[1086,[15041.5,12192.4,0],[[1039,2],[1135,2],[1136,2]]], [1087,[14440.6,12023.3,0],[[1040,2],[1041,2]]], [1088,[14719.9,12036.6,0],[[1040,2],[1137,2]]], [1089,[13922.4,11792.7,0],[[1042,2],[1138,2]]], [1090,[13966.4,11942.7,-4.08718e-007],[[1042,2],[1139,2],[1090,2],[1140,2]]], [1091,[14197,11775.3,6.35783e-007],[[1044,2],[1141,2],[1091,2]]],
+[1092,[14242.3,11897.5,0],[[1044,2]]], [1093,[14032.4,12013.7,0],[[1045,2]]], [1094,[13288.5,12669.1,9.53674e-007],[[1047,2],[1142,2]]], [1095,[15384.4,17372,0],[[1050,2],[1143,2]]], [1096,[15016.7,17762.2,-3.8147e-006],[[1051,2]]], [1097,[14979.1,17677.1,0],[[1051,2]]],
+[1098,[15127.7,17616.6,0],[[1052,2]]], [1099,[15165.8,17643.8,1.27157e-006],[[1053,2],[1144,2],[1099,2],[1145,2]]], [1100,[15294,17624.5,0],[[1053,2],[1146,2]]], [1101,[13195.7,17407.1,1.90735e-006],[[1054,2],[1147,2]]], [1102,[13648.2,17512.4,0],[[1055,2]]], [1103,[13590.8,17573.4,0],[[1103,2],[1148,2],[1104,2]]],
+[1104,[13600,17564.4,0],[[1103,2],[1055,2]]], [1105,[13553.9,17979.2,-3.8147e-006],[[1056,2]]], [1106,[13103.9,16323.8,0],[[1058,2]]], [1107,[12815.9,16711.6,-6.35783e-007],[[1060,2],[1149,2],[1150,2]]], [1108,[17803.5,14809.4,4.76837e-007],[[1064,2],[1151,2]]], [1109,[17294.9,15916.5,0],[[1066,2]]],
+[1110,[17396.1,16447.1,0],[[1067,2],[1152,2]]], [1111,[17162.9,16579.5,0],[[1067,2],[1153,2]]], [1112,[17281.2,16656.3,0],[[1067,2],[1154,2]]], [1113,[15980.2,16849.2,0],[[1070,2],[1155,2]]], [1114,[16534.9,16638.3,1.27157e-006],[[1071,2],[1156,2],[1157,2]]], [1115,[16692.9,16595.8,0],[[1071,2],[1158,2]]],
+[1116,[11853,13311.5,-1.90735e-006],[[1072,2],[1159,2]]], [1117,[11613.8,13422,0],[[1072,2],[1160,2]]], [1118,[12290.1,13418.5,0],[[1073,2],[1161,2],[1162,2],[1118,2]]], [1119,[12312.6,13512.2,0],[[1073,2]]], [1120,[12353.5,13505.9,0],[[1074,2]]], [1121,[11868.6,14187.9,0],[[1075,2],[1163,2]]],
+[1122,[11636.6,14221.6,0],[[1075,2],[1164,2]]], [1123,[11634.6,14398.3,0],[[1075,2],[1165,2]]], [1124,[11670.2,15066.5,0],[[1076,2],[1166,2],[1167,2]]], [1125,[12358.5,14960.9,6.35783e-007],[[1077,2],[1168,2],[1125,2],[1169,2]]], [1126,[12478.2,14909.1,0],[[1078,2]]], [1127,[12500.9,15522.3,0],[[1080,2],[1170,2]]],
+[1128,[12659.5,15664.1,0],[[1080,2],[1081,2]]], [1129,[12674.3,15875.9,0],[[1081,2],[1171,2]]], [1130,[12574.3,15796.4,0],[[1081,2],[1172,2]]], [1131,[12661.4,16192.6,9.53674e-007],[[1082,2],[1173,2]]], [1132,[12884.2,12874.3,0],[[1083,2],[1174,2]]], [1133,[13064.5,13304.1,-6.35783e-007],[[1084,2],[1134,2],[1133,2],[1175,2]]],
+[1134,[13073.4,13300,0],[[1133,2],[1224,2],[1084,2],[1134,2]]], [1135,[15088.4,12146.3,5.96046e-008],[[1086,2],[1176,2],[1177,2],[1178,2]]], [1136,[15085.8,12360.4,0],[[1086,2],[1179,2]]], [1137,[14850.2,11971.9,-1.90735e-006],[[1088,2],[1137,2],[1180,2],[1181,2]]], [1138,[13873.2,11731.2,0],[[1089,2],[1182,2],[1138,2],[1183,2]]], [1139,[13959.6,11918.6,0],[[1090,2]]],
+[1140,[13967.5,11995.1,0],[[1090,2],[1184,2],[1185,2]]], [1141,[14240.4,11636.6,6.35783e-007],[[1091,2],[1186,2],[1187,2]]], [1142,[13196,12599.2,0],[[1094,2],[1188,2]]], [1143,[15393.8,17246,0],[[1095,2],[1189,2]]], [1144,[15169.8,17623.2,1.90735e-006],[[1099,2]]], [1145,[15150.1,17746.1,-1.27157e-006],[[1099,2],[1190,2],[1191,2]]],
+[1146,[15374,17675.7,1.27157e-006],[[1100,2],[1192,2],[1193,2]]], [1147,[13097.8,17493.2,0],[[1101,2],[1194,2]]], [1148,[13542.4,17625.9,0],[[1103,2],[1195,2]]], [1149,[12705.5,16644.1,0],[[1107,2],[1196,2]]], [1150,[12798,16740.4,0],[[1107,2],[1197,2],[1198,2]]], [1151,[17898.6,14711,0],[[1108,2],[1199,2]]],
+[1152,[17476.6,16533.2,1.90735e-006],[[1110,2],[1200,2]]], [1153,[17106.4,16625.1,0],[[1111,2],[1201,2],[1202,2]]], [1154,[17301,16823.5,-1.90735e-006],[[1112,2],[1203,2]]], [1155,[15959.3,16972.1,0],[[1113,2],[1204,2]]], [1156,[16627.8,16641.7,0],[[1114,2],[1158,2]]], [1157,[16543.5,16715.6,0],[[1114,2],[1205,2]]],
+[1158,[16730.5,16662.8,0],[[1115,2],[1156,2],[1206,2]]], [1159,[11843.8,13293.7,-6.35783e-007],[[1116,2],[1207,2],[1159,2]]], [1160,[11435.6,13377.5,3.8147e-006],[[1117,2],[1208,2]]], [1161,[12395.7,13268.9,0],[[1118,2],[1209,2]]], [1162,[12238.9,13397.5,0],[[1118,2],[1210,2],[1211,2]]], [1163,[11987.5,14127,0],[[1121,2],[1163,2]]],
+[1164,[11520.7,14139.6,0],[[1122,2],[1212,2]]], [1165,[11541.4,14434.5,0],[[1123,2],[1213,2],[1214,2]]], [1166,[11633.1,15234.5,3.17891e-007],[[1124,2],[1215,2],[1216,2]]], [1167,[11533.6,15058.7,0],[[1124,2],[1217,2]]], [1168,[12381.9,14949.7,9.53674e-007],[[1125,2]]], [1169,[12282.8,14991.4,0],[[1125,2]]],
+[1170,[12425.3,15482.9,0],[[1127,2],[1218,2]]], [1171,[12664,15900.1,0],[[1129,2]]], [1172,[12490.5,15742.9,6.35783e-007],[[1130,2],[1219,2],[1220,2]]], [1173,[12618.4,16268.5,0],[[1131,2],[1221,2],[1222,2]]], [1174,[12755.8,12786.3,0],[[1132,2],[1223,2]]], [1175,[13010.3,13302,0],[[1133,2]]],
+[1176,[15219.9,12162.7,0],[[1135,2],[1225,2],[1226,2]]], [1177,[15153.1,12115.9,0],[[1135,2]]], [1178,[15078.3,12102.6,4.76837e-007],[[1135,2]]], [1179,[15090.7,12395.7,0],[[1136,2]]], [1180,[14955.8,11872.4,3.8147e-006],[[1137,2],[1227,2]]], [1181,[14818.1,11906.8,0],[[1137,2],[1181,2],[1228,2]]],
+[1182,[13882,11752.6,0],[[1138,2],[1229,2]]], [1183,[13743.5,11693.5,-4.76837e-007],[[1138,2],[1230,2],[1231,2],[1232,2]]], [1184,[13962,12059.1,0],[[1140,2],[1185,2],[1233,2]]], [1185,[13945.2,12021.2,9.53674e-007],[[1140,2],[1184,2],[1233,2],[1185,2]]], [1186,[14388.4,11552.6,0],[[1141,2],[1234,2]]], [1187,[14149.7,11573.6,0],[[1141,2],[1235,2]]],
+[1188,[13165.6,12574.5,0],[[1142,2],[1236,2],[1237,2]]], [1189,[15415.6,17159.2,0],[[1143,2],[1189,2]]], [1190,[15233.7,17747.3,0],[[1145,2]]], [1191,[15136.8,17791.1,0],[[1145,2]]], [1192,[15480.5,17759.2,1.90735e-006],[[1146,2],[1238,2]]], [1193,[15470.1,17618.7,3.8147e-006],[[1146,2],[1239,2]]],
+[1194,[13022.8,17585.7,0],[[1147,2],[1240,2],[1241,2]]], [1195,[13519.2,17671.3,0],[[1148,2],[1242,2]]], [1196,[12705.2,16610.2,0],[[1149,2]]], [1197,[12658.5,16847.4,0],[[1150,2],[1243,2]]], [1198,[12812.7,16847.7,0],[[1150,2],[1244,2]]], [1199,[17986.4,14579.9,0],[[1151,2],[1199,2]]],
+[1200,[17522.8,16525.6,9.53674e-007],[[1152,2],[1245,2],[1246,2]]], [1201,[17083,16659.7,0],[[1153,2],[1247,2],[1248,2]]], [1202,[17047.6,16610.8,-3.8147e-006],[[1153,2]]], [1203,[17317.7,16965.2,0],[[1154,2],[1249,2]]], [1204,[15951.7,17122.4,1.90735e-006],[[1155,2],[1250,2]]], [1205,[16541.1,16852.9,-1.90735e-006],[[1157,2],[1251,2]]],
+[1206,[16835.1,16706.3,0],[[1158,2],[1252,2]]], [1207,[11926.4,13169.1,-1.90735e-006],[[1159,2],[1253,2]]], [1208,[11236.7,13338.3,-3.8147e-006],[[1160,2],[1254,2]]], [1209,[12489.5,13250.8,0],[[1161,2],[1255,2]]], [1210,[12211.3,13349.9,0],[[1162,2],[1256,2],[1257,2],[1210,2]]], [1211,[12120.3,13278.6,-3.8147e-006],[[1162,2],[1258,2]]],
+[1212,[11496.6,14127.5,0],[[1164,2],[1259,2],[1260,2]]], [1213,[11422.6,14415.1,0],[[1165,2],[1260,2]]], [1214,[11457.7,14585.1,0],[[1165,2],[1261,2]]], [1215,[11673.9,15291.2,0],[[1166,2]]], [1216,[11472.2,15315.5,1.90735e-006],[[1166,2],[1262,2]]], [1217,[11480.8,15054.8,0],[[1167,2],[1263,2],[1264,2]]],
+[1218,[12361.2,15490.8,-1.90735e-006],[[1170,2],[1265,2]]], [1219,[12450.7,15623.3,-1.90735e-006],[[1172,2],[1266,2]]], [1220,[12413.1,15709.7,0],[[1172,2]]], [1221,[12585.1,16262.4,0],[[1173,2],[1221,2],[1267,2],[1222,2],[1268,2]]], [1222,[12602.1,16303.3,4.76837e-007],[[1173,2],[1221,2],[1269,2],[1270,2],[1271,2]]], [1223,[12605.2,12774.5,0],[[1174,2],[1272,2],[1273,2]]],
+[1224,[13086.9,13291,-6.35783e-007],[[1134,2]]], [1225,[15288.7,12269.1,7.94729e-008],[[1176,2],[1274,2],[1275,2]]], [1226,[15374.2,12083.5,0],[[1176,2],[1276,2]]], [1227,[15039.2,11803.3,-1.90735e-006],[[1180,2],[1277,2]]], [1228,[14727.7,11894.8,0],[[1181,2]]], [1229,[13857.7,11792.3,0],[[1182,2]]],
+[1230,[13727.4,11724.2,0],[[1183,2],[1278,2],[1279,2]]], [1231,[13763.8,11655.6,0],[[1183,2]]], [1232,[13661.4,11579.5,-9.53674e-007],[[1183,2],[1280,2],[1281,2],[1282,2]]], [1233,[13930.2,12041.9,9.53674e-007],[[1185,2],[1184,2]]], [1234,[14449.8,11412.9,1.90735e-006],[[1186,2],[1283,2]]], [1235,[14108.1,11548.7,-6.35783e-007],[[1187,2],[1284,2],[1285,2]]],
+[1236,[13043.1,12531.6,1.90735e-006],[[1188,2],[1286,2]]], [1237,[13069.9,12427.6,0],[[1188,2],[1287,2]]], [1238,[15491.3,17854.3,-1.90735e-006],[[1192,2],[1288,2]]], [1239,[15584.8,17594.5,0],[[1193,2],[1289,2]]], [1240,[13053.9,17697.5,0],[[1194,2],[1240,2]]], [1241,[12883.4,17626.6,0],[[1194,2],[1290,2]]],
+[1242,[13483.6,17751.2,0],[[1195,2],[1291,2],[1292,2]]], [1243,[12607.8,16894.5,0],[[1197,2],[1293,2],[1294,2]]], [1244,[12819.9,16930.8,-3.8147e-006],[[1198,2],[1244,2]]], [1245,[17559.9,16580.3,6.35783e-007],[[1200,2],[1295,2]]], [1246,[17682.3,16437.5,0],[[1200,2]]], [1247,[17012.8,16731.4,0],[[1201,2],[1296,2]]],
+[1248,[17152.9,16680,3.8147e-006],[[1201,2],[1248,2]]], [1249,[17345.5,17105.7,0],[[1203,2],[1297,2]]], [1250,[15966,17290.4,0],[[1204,2],[1298,2],[1299,2]]], [1251,[16522.2,16979.5,0],[[1205,2],[1300,2]]], [1252,[16866.4,16707.5,6.35783e-007],[[1206,2],[1301,2],[1302,2]]], [1253,[11943.9,13152,-6.35783e-007],[[1207,2],[1303,2],[1304,2]]],
+[1254,[11057.6,13311.6,-3.8147e-006],[[1208,2],[1305,2]]], [1255,[12600.9,13154.9,0],[[1209,2],[1306,2]]], [1256,[12167.2,13271.6,0],[[1210,2],[1307,2],[1258,2]]], [1257,[12217.1,13359,0],[[1210,2]]], [1258,[12110.9,13253.6,-3.8147e-006],[[1211,2],[1256,2],[1304,2],[1308,2],[1307,2]]], [1259,[11455,14002.6,0],[[1212,2],[1309,2]]],
+[1260,[11401,14242.7,0],[[1212,2],[1213,2]]], [1261,[11423.1,14608.8,0],[[1214,2],[1310,2],[1311,2]]], [1262,[11340.8,15380.5,0],[[1216,2],[1312,2]]], [1263,[11465.8,14987.7,3.8147e-006],[[1217,2],[1313,2]]], [1264,[11298.3,15061.8,0],[[1217,2],[1314,2]]], [1265,[12345.1,15494.4,-6.35783e-007],[[1218,2],[1265,2],[1315,2]]],
+[1266,[12448.2,15606,1.90735e-006],[[1219,2]]], [1267,[12573.5,16285.8,1.90735e-006],[[1221,2],[1316,2],[1268,2]]], [1268,[12542.8,16256.2,6.35783e-007],[[1221,2],[1267,2],[1316,2],[1317,2]]], [1269,[12480.7,16395.2,-1.90735e-006],[[1222,2],[1318,2],[1319,2]]], [1270,[12647,16328.5,0],[[1222,2]]], [1271,[12565.9,16296.5,0],[[1222,2]]],
+[1272,[12660.8,12886.1,0],[[1223,2],[1320,2]]], [1273,[12550.6,12777.7,2.54313e-006],[[1223,2],[1321,2],[1322,2]]], [1274,[15351.1,12274.4,0],[[1225,2],[1274,2],[1323,2]]], [1275,[15307.4,12328.9,0],[[1225,2]]], [1276,[15426.1,12054.4,-1.58946e-007],[[1226,2],[1324,2],[1325,2]]], [1277,[15074.4,11756.9,0],[[1227,2],[1326,2]]],
+[1278,[13775.6,11746.1,0],[[1230,2]]], [1279,[13656.8,11851.1,0],[[1230,2],[1327,2]]], [1280,[13538.6,11594.5,0],[[1232,2],[1328,2],[1280,2]]], [1281,[13586.5,11517.1,0],[[1232,2],[1329,2],[1328,2]]], [1282,[13685.2,11524.6,0],[[1232,2],[1330,2],[1331,2]]], [1283,[14451.9,11331.8,0],[[1234,2],[1332,2],[1333,2]]],
+[1284,[14034.2,11535.8,-6.35783e-007],[[1235,2],[1284,2],[1334,2]]], [1285,[14094,11441.3,0],[[1235,2],[1335,2]]], [1286,[12942.3,12513.4,0],[[1236,2],[1336,2]]], [1287,[12930.9,12381.7,0],[[1237,2],[1337,2]]], [1288,[15487,17966.7,0],[[1238,2],[1338,2]]], [1289,[15691.1,17624.8,0],[[1239,2],[1339,2]]],
+[1290,[12755.1,17662.5,0],[[1241,2],[1340,2]]], [1291,[13438.6,17840,0],[[1242,2],[1341,2],[1291,2],[1342,2]]], [1292,[13461.3,17796.3,0],[[1341,2],[1242,2]]], [1293,[12422.2,16981,-3.8147e-006],[[1243,2],[1343,2]]], [1294,[12584.4,17044.5,0],[[1243,2],[1344,2]]], [1295,[17688.2,16685.7,0],[[1245,2],[1345,2]]],
+[1296,[16998,16757,1.27157e-006],[[1247,2],[1301,2],[1346,2]]], [1297,[17425.9,17228.3,0],[[1249,2],[1347,2]]], [1298,[15974.9,17466.5,6.35783e-007],[[1250,2],[1348,2],[1349,2]]], [1299,[15857.7,17295.3,0],[[1250,2]]], [1300,[16465.6,17125.7,0],[[1251,2],[1350,2]]], [1301,[16901.5,16740.7,0],[[1252,2],[1296,2],[1302,2],[1351,2]]],
+[1302,[16867.7,16746.4,4.76837e-007],[[1252,2],[1301,2],[1352,2],[1353,2],[1351,2]]], [1303,[11949.5,13093.7,0],[[1253,2],[1354,2],[1355,2]]], [1304,[12059.5,13199.3,0],[[1253,2],[1258,2]]], [1305,[10976.6,13304.5,0],[[1254,2],[1356,2],[1357,2],[1358,2]]], [1306,[12672.8,13047.3,0],[[1255,2],[1320,2]]], [1307,[12154.3,13222.4,0],[[1256,2],[1258,2],[1359,2]]],
+[1308,[12145.9,13219.7,3.8147e-006],[[1258,2],[1308,2]]], [1309,[11423.1,13906.5,0],[[1259,2],[1360,2]]], [1310,[11307.1,14612.6,0],[[1261,2],[1361,2]]], [1311,[11350.7,14760.8,3.8147e-006],[[1261,2],[1362,2]]], [1312,[11227.6,15443.2,-1.90735e-006],[[1262,2],[1363,2]]], [1313,[11373.8,14961.6,-3.8147e-006],[[1263,2],[1364,2]]],
+[1314,[11171.7,15069.2,-9.53674e-007],[[1264,2],[1365,2],[1314,2],[1366,2]]], [1315,[12287.1,15503,1.90735e-006],[[1265,2]]], [1316,[12546.1,16291.2,0],[[1267,2],[1268,2],[1319,2],[1317,2]]], [1317,[12520.9,16238.3,4.76837e-007],[[1268,2],[1316,2],[1367,2],[1368,2],[1369,2]]], [1318,[12362.9,16490.9,0],[[1269,2],[1370,2]]], [1319,[12510.3,16297.1,0],[[1316,2],[1424,2],[1269,2]]],
+[1320,[12681.6,12957.9,1.27157e-006],[[1272,2],[1306,2],[1320,2]]], [1321,[12647.9,12659.5,-3.8147e-006],[[1273,2],[1371,2]]], [1322,[12391.9,12854.8,0],[[1273,2],[1372,2]]], [1323,[15381.9,12286.6,3.97364e-008],[[1274,2],[1373,2],[1323,2]]], [1324,[15459.1,12005.1,-5.96046e-008],[[1276,2],[1374,2],[1375,2],[1376,2]]], [1325,[15557.3,12081.2,5.96046e-008],[[1276,2],[1377,2],[1378,2],[1379,2]]],
+[1326,[15126.7,11705.4,0],[[1277,2],[1380,2],[1381,2]]], [1327,[13694.5,11972.6,9.53674e-007],[[1279,2],[1382,2]]], [1328,[13493.3,11568.6,0],[[1280,2],[1281,2],[1383,2],[1384,2]]], [1329,[13506.8,11357.6,9.53674e-007],[[1281,2],[1385,2],[1386,2],[1387,2]]], [1330,[13763.6,11607.7,0],[[1282,2]]], [1331,[13743.7,11449.9,-1.27157e-006],[[1282,2],[1388,2],[1334,2]]],
+[1332,[14439,11276.7,-3.8147e-007],[[1283,2],[1389,2],[1332,2],[1390,2]]], [1333,[14568.1,11284.8,-1.90735e-006],[[1283,2],[1391,2]]], [1334,[13861.7,11461.8,-9.53674e-007],[[1284,2],[1331,2]]], [1335,[14132,11366.8,6.35783e-007],[[1285,2],[1392,2],[1335,2],[1393,2]]], [1336,[12904,12514.4,0],[[1286,2],[1336,2],[1394,2]]], [1337,[12790,12354.5,0],[[1287,2],[1395,2]]],
+[1338,[15486.2,17992.4,0],[[1288,2]]], [1339,[15797.2,17627.7,3.8147e-006],[[1289,2],[1396,2]]], [1340,[12732.8,17667.9,0],[[1290,2],[1397,2],[1398,2]]], [1341,[13446,17825.6,0],[[1291,2],[1292,2],[1341,2]]], [1342,[13406,17907.7,0],[[1291,2],[1399,2]]], [1343,[12292.5,17022.1,-3.8147e-006],[[1293,2],[1400,2]]],
+[1344,[12588.6,17078.8,0],[[1294,2]]], [1345,[17775,16751.9,0],[[1295,2],[1401,2]]], [1346,[16927,16919.5,0],[[1296,2],[1352,2],[1402,2]]], [1347,[17542.8,17365.2,0],[[1297,2],[1403,2],[1404,2]]], [1348,[15940.7,17524.2,0],[[1298,2],[1405,2],[1396,2],[1406,2]]], [1349,[16061.8,17526.3,0],[[1298,2],[1407,2]]],
+[1350,[16454.7,17145.2,-1.90735e-006],[[1300,2]]], [1351,[16894.8,16809.1,0],[[1301,2],[1302,2],[1353,2],[1351,2]]], [1352,[16836.5,16787.5,0],[[1302,2],[1346,2],[1408,2],[1352,2],[1353,2]]], [1353,[16860,16815.2,0],[[1302,2],[1351,2],[1352,2]]], [1354,[11793.9,13016.9,0],[[1303,2],[1409,2]]], [1355,[12014.6,12985.6,1.90735e-006],[[1303,2],[1410,2]]],
+[1356,[10951,13206.1,0],[[1305,2],[1411,2],[1412,2]]], [1357,[10804.9,13286.2,0],[[1305,2],[1413,2]]], [1358,[11080.8,13382.3,3.8147e-006],[[1305,2],[1414,2]]], [1359,[12168.1,13156,0],[[1307,2]]], [1360,[11373.4,13804.6,-3.8147e-006],[[1309,2],[1415,2]]], [1361,[11175.2,14670.8,0],[[1310,2],[1416,2],[1417,2]]],
+[1362,[11323.1,14823.3,0],[[1311,2],[1364,2],[1418,2],[1416,2]]], [1363,[11090.5,15485.4,0],[[1312,2],[1419,2]]], [1364,[11348.5,14932.8,-1.27157e-006],[[1313,2],[1362,2],[1420,2],[1366,2]]], [1365,[11062.3,15077,0],[[1314,2],[1365,2],[1421,2],[1422,2]]], [1366,[11241.4,14980.3,3.8147e-006],[[1314,2],[1364,2],[1423,2]]], [1367,[12435,16123.1,0],[[1317,2],[1425,2]]],
+[1368,[12508.5,16292.2,9.53674e-007],[[1317,2]]], [1369,[12569.9,16160.4,0],[[1317,2]]], [1370,[12310,16561.4,0],[[1318,2],[1426,2],[1427,2]]], [1371,[12670.8,12556.6,0],[[1321,2],[1428,2],[1394,2],[1429,2]]], [1372,[12245.9,12869.8,0],[[1322,2],[1430,2],[1410,2]]], [1373,[15426.8,12247.3,0],[[1323,2]]],
+[1374,[15520.6,11987.1,0],[[1324,2]]], [1375,[15471.5,11972.4,0],[[1324,2]]], [1376,[15416.2,11867.7,0],[[1324,2],[1431,2]]], [1377,[15587.7,12089.6,-2.98023e-008],[[1325,2],[1377,2],[1432,2]]], [1378,[15554.5,12202.9,0],[[1325,2],[1379,2]]], [1379,[15544.3,12197.9,2.38419e-007],[[1378,2],[1325,2]]],
+[1380,[15190,11763.1,0],[[1326,2],[1380,2],[1433,2]]], [1381,[15204.2,11696.1,0],[[1326,2],[1431,2],[1434,2]]], [1382,[13664.2,12053.4,0],[[1327,2],[1435,2],[1436,2]]], [1383,[13354.6,11659.4,0],[[1328,2],[1437,2],[1438,2]]], [1384,[13363.6,11521.9,0],[[1328,2],[1439,2]]], [1385,[13633.1,11349.6,-3.8147e-006],[[1329,2],[1440,2]]],
+[1386,[13483.4,11175.8,-6.35783e-007],[[1329,2],[1441,2],[1442,2]]], [1387,[13391.7,11441.1,0],[[1329,2],[1443,2]]], [1388,[13828.3,11342.1,1.90735e-006],[[1331,2],[1444,2]]], [1389,[14432.2,11290.1,0],[[1332,2]]], [1390,[14545.1,11122.3,0],[[1332,2],[1445,2]]], [1391,[14656.9,11305.3,0],[[1333,2],[1446,2]]],
+[1392,[14122.6,11374.9,0],[[1335,2]]], [1393,[14201,11318.8,0],[[1335,2]]], [1394,[12807.7,12452.6,0],[[1336,2],[1371,2],[1428,2]]], [1395,[12654.3,12277.6,0],[[1337,2],[1447,2]]], [1396,[15875.4,17556.8,0],[[1339,2],[1348,2],[1448,2],[1405,2]]], [1397,[12672.2,17562.9,0],[[1340,2]]],
+[1398,[12564.1,17732.1,-1.90735e-006],[[1340,2],[1449,2]]], [1399,[13387.9,17930.4,1.27157e-006],[[1342,2],[1450,2],[1399,2],[1451,2]]], [1400,[12213,17097.2,0],[[1343,2],[1452,2]]], [1401,[17877.6,16751.7,0],[[1345,2]]], [1402,[16882.9,17014.2,1.27157e-006],[[1346,2],[1453,2],[1454,2]]], [1403,[17571.2,17363.9,0],[[1347,2],[1404,2],[1455,2]]],
+[1404,[17606.1,17514.8,0],[[1347,2],[1403,2],[1456,2],[1457,2],[1458,2]]], [1405,[15876,17533.2,0],[[1348,2],[1396,2],[1459,2]]], [1406,[15902.2,17594.8,-6.35783e-007],[[1348,2],[1460,2],[1461,2]]], [1407,[16205.1,17545.2,0],[[1349,2],[1462,2]]], [1408,[16835.4,16743,0],[[1352,2]]], [1409,[11770.4,13014.2,-6.35783e-007],[[1354,2],[1463,2],[1464,2]]],
+[1410,[12088,12839.8,0],[[1355,2],[1372,2],[1465,2]]], [1411,[10941.6,13142.9,-1.27157e-006],[[1356,2],[1466,2],[1467,2]]], [1412,[10889.2,13186.3,0],[[1356,2],[1468,2]]], [1413,[10632.1,13275.2,0],[[1357,2],[1469,2]]], [1414,[11184.4,13484.9,0],[[1358,2],[1470,2]]], [1415,[11300,13712.7,0],[[1360,2],[1471,2]]],
+[1416,[11239.3,14778.9,0],[[1361,2],[1362,2],[1472,2]]], [1417,[11062,14670.2,3.8147e-006],[[1361,2]]], [1418,[11278.2,14824.6,0],[[1362,2],[1420,2]]], [1419,[10936.7,15526.1,0],[[1363,2],[1473,2],[1474,2]]], [1420,[11260.4,14942,0],[[1364,2],[1418,2]]], [1421,[10992.9,14948.9,0],[[1365,2],[1475,2]]],
+[1422,[10920.7,15110.7,0],[[1365,2],[1476,2],[1477,2]]], [1423,[11251.4,14954,0],[[1366,2]]], [1424,[12472.1,16379.1,1.90735e-006],[[1319,2],[1424,2]]], [1425,[12304.5,16075.7,1.90735e-006],[[1367,2],[1478,2]]], [1426,[12221.5,16684.6,9.53674e-007],[[1370,2],[1479,2]]], [1427,[12143.8,16472,0],[[1370,2],[1480,2]]],
+[1428,[12747.6,12423.6,0],[[1371,2],[1394,2],[1481,2],[1482,2]]], [1429,[12522.3,12553.3,0],[[1371,2],[1483,2]]], [1430,[12116.3,12817.2,0],[[1372,2],[1484,2]]], [1431,[15343.8,11761.3,0],[[1376,2],[1381,2],[1433,2],[1485,2]]], [1432,[15598.5,12127.1,0],[[1377,2]]], [1433,[15251.5,11801.9,0],[[1380,2],[1431,2],[1486,2]]],
+[1434,[15180.5,11684.4,0],[[1381,2]]], [1435,[13564.1,12038.3,0],[[1382,2],[1487,2]]], [1436,[13568.7,12125.4,0],[[1382,2],[1488,2]]], [1437,[13377.4,11805.2,0],[[1383,2]]], [1438,[13206.5,11624.4,1.90735e-006],[[1383,2],[1489,2]]], [1439,[13222.5,11524.7,0],[[1384,2],[1490,2]]],
+[1440,[13639,11338.3,0],[[1385,2]]], [1441,[13511.1,11162.6,0],[[1386,2],[1491,2],[1441,2]]], [1442,[13325.5,11051.8,1.90735e-006],[[1386,2],[1492,2]]], [1443,[13214.2,11416.5,1.90735e-006],[[1387,2],[1493,2]]], [1444,[13846.3,11325.6,6.35783e-007],[[1388,2],[1494,2],[1495,2]]], [1445,[14554.2,11100.5,0],[[1390,2],[1496,2],[1497,2]]],
+[1446,[14765.8,11304.8,0],[[1391,2],[1498,2]]], [1447,[12554.9,12159.4,1.90735e-006],[[1395,2],[1499,2]]], [1448,[15886.3,17544.1,0],[[1396,2]]], [1449,[12542,17742.1,-1.27157e-006],[[1398,2],[1500,2],[1501,2]]], [1450,[13394.8,17923.4,0],[[1399,2]]], [1451,[13338.7,17969.2,3.8147e-006],[[1399,2],[1502,2]]],
+[1452,[12200.8,17173,0],[[1400,2]]], [1453,[16768.5,17056.4,0],[[1402,2],[1503,2]]], [1454,[16867.5,17177.6,-3.8147e-006],[[1402,2],[1504,2]]], [1455,[17654.9,17306.8,0],[[1403,2],[1505,2]]], [1456,[17640,17685.4,0],[[1404,2],[1506,2],[1457,2]]], [1457,[17546.3,17608.4,0],[[1404,2],[1456,2],[1507,2]]],
+[1458,[17794.2,17509,0],[[1404,2],[1508,2]]], [1459,[15847.4,17491.4,3.8147e-006],[[1405,2]]], [1460,[15889.4,17771.8,0],[[1406,2],[1509,2]]], [1461,[15761.2,17708.9,0],[[1406,2],[1461,2]]], [1462,[16235.3,17547.2,0],[[1407,2]]], [1463,[11605,12926.5,0],[[1409,2],[1510,2]]],
+[1464,[11764.2,13067.6,0],[[1409,2]]], [1465,[12106.3,12817.9,1.90735e-006],[[1410,2]]], [1466,[10967.1,13012.8,2.54313e-006],[[1411,2],[1511,2],[1512,2]]], [1467,[10794,13102.1,-3.8147e-006],[[1411,2],[1513,2]]], [1468,[10846.2,13246.5,3.8147e-006],[[1412,2]]], [1469,[10493.4,13269.6,0],[[1413,2],[1514,2]]],
+[1470,[11283.2,13577.5,0],[[1414,2],[1471,2]]], [1471,[11210.9,13648.3,0],[[1415,2],[1470,2],[1515,2]]], [1472,[11267.9,14809.1,0],[[1416,2]]], [1473,[10965.2,15662.5,0],[[1419,2],[1516,2],[1517,2]]], [1474,[10789,15551.8,0],[[1419,2],[1518,2]]], [1475,[10963.6,14825.4,0],[[1421,2],[1475,2]]],
+[1476,[10787.8,15094.9,1.27157e-006],[[1422,2],[1519,2],[1520,2]]], [1477,[10922.2,15190.2,0],[[1422,2],[1477,2],[1521,2]]], [1478,[12175.8,15983.6,0],[[1425,2],[1522,2]]], [1479,[12127,16804.2,0],[[1426,2],[1523,2]]], [1480,[12043.2,16396.2,0],[[1427,2],[1524,2],[1525,2]]], [1481,[12753.1,12408.5,-3.8147e-006],[[1428,2]]],
+[1482,[12642.9,12342.3,0],[[1428,2],[1526,2]]], [1483,[12381.8,12541.1,0],[[1429,2],[1527,2]]], [1484,[12111.6,12806.9,0],[[1430,2]]], [1485,[15375.7,11695.3,0],[[1431,2],[1528,2],[1485,2]]], [1486,[15218.2,11890,0],[[1433,2],[1486,2]]], [1487,[13480.8,11985,0],[[1435,2],[1529,2]]],
+[1488,[13569.6,12151.7,-3.17891e-007],[[1436,2],[1530,2],[1531,2]]], [1489,[13158.7,11622.2,0],[[1438,2]]], [1490,[13144.8,11502.1,0],[[1439,2]]], [1491,[13532,11164.5,-1.90735e-006],[[1441,2],[1491,2]]], [1492,[13313.5,11038.7,4.76837e-007],[[1442,2],[1532,2],[1492,2],[1533,2]]], [1493,[13168.7,11412.4,0],[[1443,2]]],
+[1494,[13904.9,11176.8,0],[[1444,2],[1534,2]]], [1495,[13888.6,11326,0],[[1444,2]]], [1496,[14479,10994.8,-9.53674e-007],[[1445,2]]], [1497,[14712.5,11028.6,0],[[1445,2],[1535,2]]], [1498,[14792.6,11308.3,0],[[1446,2],[1536,2],[1537,2]]], [1499,[12479.3,12080.8,1.90735e-006],[[1447,2],[1538,2]]],
+[1500,[12405.7,17881.8,-1.90735e-006],[[1449,2],[1539,2]]], [1501,[12376.9,17698.3,1.90735e-006],[[1449,2],[1540,2]]], [1502,[13333.9,17974.2,0],[[1451,2]]], [1503,[16686.2,17149.9,0],[[1503,2],[1453,2]]], [1504,[16849.4,17241.8,-2.54313e-006],[[1454,2],[1541,2],[1542,2]]], [1505,[17655.7,17225.9,2.54313e-006],[[1455,2],[1505,2],[1543,2]]],
+[1506,[17751.8,17879.5,0],[[1456,2],[1544,2]]], [1507,[17377.1,17553.5,-3.8147e-006],[[1457,2],[1545,2]]], [1508,[17923.1,17547.9,0],[[1458,2]]], [1509,[15886.6,17870.1,-6.35783e-007],[[1460,2],[1546,2],[1547,2]]], [1510,[11486,12861,0],[[1463,2],[1548,2]]], [1511,[11109.7,12998,3.8147e-006],[[1466,2],[1549,2]]],
+[1512,[10960,12876.8,-1.27157e-006],[[1466,2],[1550,2],[1551,2]]], [1513,[10688.9,13093.2,0],[[1467,2]]], [1514,[10464.2,13257.7,-1.27157e-006],[[1469,2],[1552,2],[1553,2]]], [1515,[11024.4,13696.7,-1.27157e-006],[[1471,2],[1554,2],[1555,2]]], [1516,[10971.1,15808.5,0],[[1473,2],[1556,2]]], [1517,[11127.8,15740.5,0],[[1473,2],[1557,2]]],
+[1518,[10718.7,15587.5,4.76837e-007],[[1474,2],[1558,2],[1559,2],[1560,2]]], [1519,[10661.5,14995.8,0],[[1476,2],[1561,2]]], [1520,[10749.3,15131.1,1.27157e-006],[[1476,2],[1562,2],[1520,2]]], [1521,[10940.8,15308.7,0],[[1477,2],[1563,2]]], [1522,[12045.1,15938.7,1.90735e-006],[[1478,2],[1564,2]]], [1523,[12102.5,16839,0],[[1479,2],[1565,2],[1566,2]]],
+[1524,[12024.6,16459.4,0],[[1480,2],[1567,2]]], [1525,[11929.7,16315.9,0],[[1480,2],[1568,2]]], [1526,[12575.7,12307.4,0],[[1482,2],[1569,2]]], [1527,[12252.7,12498.5,-1.90735e-006],[[1483,2],[1527,2]]], [1528,[15382.7,11548.9,0],[[1485,2],[1570,2]]], [1529,[13476,11937.6,0],[[1487,2]]],
+[1530,[13567.7,12200.3,0],[[1488,2]]], [1531,[13554.3,12237,0],[[1488,2],[1571,2]]], [1532,[13387.1,10883.1,0],[[1492,2],[1572,2]]], [1533,[13138.6,11021.3,1.90735e-006],[[1492,2],[1573,2]]], [1534,[13928.2,11073.6,-4.76837e-007],[[1494,2],[1574,2],[1575,2],[1576,2]]], [1535,[14726.8,11013.4,-6.35783e-007],[[1497,2],[1577,2],[1578,2]]],
+[1536,[14885.6,11346.9,1.90735e-006],[[1498,2],[1579,2]]], [1537,[14869.1,11261.5,0],[[1498,2],[1580,2]]], [1538,[12347.1,12067,0],[[1499,2],[1581,2]]], [1539,[12350.2,17927.2,6.35783e-007],[[1500,2],[1582,2],[1583,2]]], [1540,[12244.3,17669,-1.90735e-006],[[1501,2],[1584,2]]], [1541,[16776.2,17359.8,-3.8147e-006],[[1504,2],[1585,2]]],
+[1542,[16937.8,17354.9,0],[[1504,2],[1586,2],[1587,2]]], [1543,[17731,17226.5,0],[[1505,2],[1588,2],[1589,2]]], [1544,[17783.7,17926.2,-6.35783e-007],[[1506,2],[1590,2],[1591,2]]], [1545,[17243.5,17514.7,0],[[1507,2],[1592,2],[1587,2],[1593,2]]], [1546,[15806.5,17934.4,0],[[1509,2]]], [1547,[15996.8,17914.3,0],[[1509,2]]],
+[1548,[11463.8,12831,-1.27157e-006],[[1510,2],[1548,2],[1594,2]]], [1549,[11165.1,12990.8,0],[[1511,2],[1549,2],[1595,2]]], [1550,[10861.4,12875.3,0],[[1512,2],[1596,2],[1597,2]]], [1551,[10985.3,12721.8,3.8147e-006],[[1512,2],[1598,2]]], [1552,[10306,13265.7,0],[[1514,2],[1599,2]]], [1553,[10456.9,13121.2,0],[[1514,2],[1600,2]]],
+[1554,[11032.1,13790.6,0],[[1515,2],[1601,2]]], [1555,[10859.6,13733.9,0],[[1515,2],[1602,2]]], [1556,[11009.7,15921.2,0],[[1516,2],[1603,2]]], [1557,[11197.6,15831.8,0],[[1517,2],[1604,2]]], [1558,[10759.9,15623.8,-6.35783e-007],[[1518,2],[1558,2],[1605,2]]], [1559,[10686.7,15727.3,-1.90735e-006],[[1518,2],[1606,2]]],
+[1560,[10500.8,15571.4,0],[[1518,2],[1607,2]]], [1561,[10547.7,14962.7,-1.90735e-006],[[1519,2],[1608,2]]], [1562,[10808.7,15196.5,0],[[1520,2],[1609,2]]], [1563,[10938.8,15340,0],[[1521,2]]], [1564,[11963.6,16006.5,0],[[1522,2],[1610,2]]], [1565,[12078.7,16782.3,0],[[1523,2]]],
+[1566,[12009.9,16996.5,0],[[1523,2],[1611,2],[1612,2]]], [1567,[12017.1,16515,0],[[1524,2],[1567,2]]], [1568,[11829.4,16277.4,4.76837e-007],[[1525,2],[1613,2],[1568,2],[1614,2]]], [1569,[12533.8,12252.5,1.90735e-006],[[1526,2]]], [1570,[15409.6,11455.2,0],[[1528,2],[1615,2]]], [1571,[13527.2,12332.9,3.17891e-007],[[1531,2],[1616,2],[1617,2]]],
+[1572,[13476.3,10767.6,0],[[1532,2],[1618,2]]], [1573,[12993.1,11057.4,6.35783e-007],[[1533,2],[1619,2],[1620,2]]], [1574,[13978.2,11057.6,1.27157e-006],[[1534,2],[1621,2],[1576,2]]], [1575,[13926.9,10983.8,0],[[1534,2],[1576,2]]], [1576,[13973,10980.3,0],[[1534,2],[1574,2],[1575,2],[1622,2],[1623,2]]], [1577,[14887.2,10974.9,0],[[1535,2],[1624,2]]],
+[1578,[14708.4,10977.1,-3.17891e-007],[[1535,2],[1625,2],[1626,2]]], [1579,[14957.4,11387.6,0],[[1536,2],[1627,2]]], [1580,[14954.6,11193,9.53674e-007],[[1537,2],[1628,2]]], [1581,[12327.2,12077.4,-1.90735e-006],[[1538,2]]], [1582,[12331.2,17975.5,0],[[1539,2]]], [1583,[12188.4,17895.6,3.8147e-006],[[1539,2]]],
+[1584,[12193.7,17598.7,0],[[1540,2],[1629,2],[1630,2]]], [1585,[16724.2,17442.2,0],[[1541,2],[1631,2]]], [1586,[16915.4,17437.4,-3.8147e-006],[[1542,2],[1632,2]]], [1587,[17072.8,17466.5,0],[[1542,2],[1545,2],[1633,2]]], [1588,[17764.4,17140.6,0],[[1543,2],[1634,2]]], [1589,[17757.8,17280.6,0],[[1543,2]]],
+[1590,[17878.5,17899.3,0],[[1544,2],[1590,2],[1635,2]]], [1591,[17796.3,17970,0],[[1544,2]]], [1592,[17152.2,17485.3,-3.8147e-006],[[1545,2],[1593,2]]], [1593,[17195.2,17568.2,0],[[1545,2],[1592,2]]], [1594,[11408.7,12721.1,0],[[1548,2],[1636,2]]], [1595,[11212.8,12977.8,0],[[1549,2],[1637,2],[1595,2],[1638,2]]],
+[1596,[10764.6,12948.5,0],[[1550,2],[1639,2]]], [1597,[10747.4,12864.7,0],[[1550,2]]], [1598,[10997.1,12677.5,0],[[1551,2],[1640,2],[1598,2],[1641,2]]], [1599,[10183.8,13266.7,0],[[1552,2],[1642,2]]], [1600,[10536,13052.5,-2.54313e-006],[[1553,2],[1643,2],[1639,2]]], [1601,[10998.7,13907.6,0],[[1554,2],[1644,2]]],
+[1602,[10681.6,13758.8,0],[[1555,2],[1645,2]]], [1603,[11047,16028.5,0],[[1556,2],[1646,2]]], [1604,[11252,15935.1,0],[[1557,2]]], [1605,[10808.4,15681.5,0],[[1558,2]]], [1606,[10688,15756,-6.35783e-007],[[1559,2],[1606,2],[1647,2]]], [1607,[10348.6,15603.8,0],[[1560,2],[1648,2]]],
+[1608,[10440.1,15024.2,0],[[1561,2],[1649,2]]], [1609,[10830.2,15218.6,0],[[1562,2]]], [1610,[11807.1,16015.8,0],[[1564,2],[1610,2]]], [1611,[11931.3,17051.2,6.35783e-007],[[1566,2],[1650,2],[1611,2]]], [1612,[12075.6,17089.9,0],[[1566,2]]], [1613,[11794.1,16261.1,9.53674e-007],[[1568,2]]],
+[1614,[11716,16290.6,0],[[1568,2],[1651,2],[1614,2]]], [1615,[15438.6,11363.1,-2.38419e-007],[[1570,2]]], [1616,[13600.5,12395.6,-3.17891e-007],[[1571,2],[1616,2],[1652,2]]], [1617,[13360.2,12290.9,0],[[1571,2],[1653,2]]], [1618,[13528.6,10708,0],[[1618,2]]], [1619,[12960.2,11033.2,0],[[1573,2],[1654,2],[1655,2]]],
+[1620,[12901.3,11186.4,1.27157e-006],[[1573,2],[1656,2],[1654,2],[1657,2]]], [1621,[14133,11090.7,1.90735e-006],[[1574,2],[1658,2]]], [1622,[14137.4,10966.1,0],[[1576,2],[1659,2]]], [1623,[13989.7,10871.7,0],[[1576,2]]], [1624,[14982.7,10914.5,0],[[1577,2],[1660,2]]], [1625,[14724.1,10925.7,0],[[1578,2],[1661,2],[1625,2],[1662,2]]],
+[1626,[14616.5,10952,0],[[1578,2],[1663,2]]], [1627,[15053.7,11404.6,-9.53674e-007],[[1579,2],[1664,2]]], [1628,[15027.2,11155.5,0],[[1580,2]]], [1629,[12238.8,17443.9,0],[[1584,2],[1665,2]]], [1630,[12057.3,17604.9,0],[[1584,2],[1666,2]]], [1631,[16707.2,17532,0],[[1585,2],[1667,2]]],
+[1632,[16987.5,17538.1,0],[[1586,2],[1668,2]]], [1633,[17129.2,17479.3,0],[[1587,2]]], [1634,[17804.1,17089.1,0],[[1588,2]]], [1635,[17931.3,17972.3,0],[[1590,2]]], [1636,[11387.5,12652.2,0],[[1594,2],[1669,2]]], [1637,[11198.4,12977.3,0],[[1595,2]]],
+[1638,[11269.3,12983.7,-3.8147e-006],[[1638,2],[1670,2]]], [1639,[10670.6,13004.3,0],[[1596,2],[1600,2]]], [1640,[11100.3,12641.8,0],[[1598,2],[1671,2]]], [1641,[10947.7,12563.5,0],[[1598,2],[1672,2]]], [1642,[10042.7,13267.3,0],[[1599,2],[1673,2],[1674,2]]], [1643,[10455.8,12976.5,0],[[1600,2]]],
+[1644,[10994.2,13970.3,0],[[1601,2],[1675,2],[1676,2]]], [1645,[10559.2,13845.5,0],[[1602,2],[1677,2]]], [1646,[11104.1,16103.1,-1.90735e-006],[[1603,2],[1678,2]]], [1647,[10745.1,15781.8,1.90735e-006],[[1606,2],[1679,2]]], [1648,[10323.3,15617.9,0],[[1607,2],[1680,2],[1681,2]]], [1649,[10306.3,14983.5,0],[[1608,2],[1682,2]]],
+[1650,[11875,17090.4,0],[[1611,2],[1683,2],[1684,2]]], [1651,[11548.6,16206,0],[[1614,2],[1685,2]]], [1652,[13594.4,12500.1,0],[[1616,2]]], [1653,[13339.5,12283.3,0],[[1617,2],[1686,2],[1687,2]]], [1654,[12898.8,11038.1,1.43051e-006],[[1619,2],[1620,2],[1656,2],[1654,2],[1689,2]]], [1655,[12961,10861.4,0],[[1619,2],[1690,2]]],
+[1656,[12834.1,11103,0],[[1620,2],[1654,2],[1691,2],[1692,2]]], [1657,[12875.7,11332.5,6.35783e-007],[[1620,2],[1693,2],[1694,2]]], [1658,[14276.5,11054.1,0],[[1621,2],[1695,2]]], [1659,[14279.2,10886.7,0],[[1622,2],[1696,2]]], [1660,[14993.2,10893.4,0],[[1624,2],[1697,2],[1698,2]]], [1661,[14732.9,10867.2,0],[[1625,2],[1699,2]]],
+[1662,[14732,10856,0],[[1625,2]]], [1663,[14589.4,10846.8,6.35783e-007],[[1626,2],[1700,2],[1663,2]]], [1664,[15135.2,11342.1,9.53674e-007],[[1627,2],[1701,2]]], [1665,[12285.2,17324.8,0],[[1629,2]]], [1666,[11968.1,17602.4,0],[[1630,2],[1666,2]]], [1667,[16677.6,17597.6,0],[[1631,2],[1702,2],[1703,2]]],
+[1668,[17034,17644,0],[[1632,2],[1704,2]]], [1669,[11287.2,12613.9,0],[[1636,2],[1671,2]]], [1670,[11333,13074.4,0],[[1638,2],[1705,2]]], [1671,[11167.8,12559.3,9.53674e-007],[[1640,2],[1669,2],[1706,2],[1707,2]]], [1672,[10914.1,12531.6,0],[[1641,2],[1708,2],[1672,2]]], [1673,[9869.84,13279.2,3.8147e-006],[[1642,2],[1709,2]]],
+[1674,[10030.4,13220,0],[[1642,2]]], [1675,[11022.4,14130.4,0],[[1644,2],[1710,2]]], [1676,[10938.5,14002.9,0],[[1644,2],[1711,2],[1676,2]]], [1677,[10514.4,13984.1,3.8147e-006],[[1645,2],[1712,2]]], [1678,[11124.2,16251.9,0],[[1646,2],[1713,2]]], [1679,[10780.2,15811.7,1.90735e-006],[[1647,2],[1714,2]]],
+[1680,[10241.9,15638.1,6.35783e-007],[[1648,2],[1715,2],[1716,2]]], [1681,[10360.3,15704.8,-6.35783e-007],[[1648,2],[1717,2]]], [1682,[10178.7,14976.5,3.8147e-006],[[1649,2],[1718,2]]], [1683,[11731.6,17224,0],[[1650,2],[1719,2]]], [1684,[11775.1,17061.8,0],[[1650,2],[1720,2]]], [1685,[11447.6,16156.5,0],[[1651,2],[1721,2],[1685,2]]],
+[1686,[13329.8,12252.9,9.53674e-007],[[1653,2]]], [1687,[13287.8,12311.4,4.76837e-007],[[1653,2],[1722,2],[1723,2],[1687,2]]], [1688,[13553.8,10536.7,-9.53674e-007],[[1618,2]]], [1689,[12746.3,10961.4,0],[[1654,2],[1724,2],[1725,2]]], [1690,[12991.4,10705,-1.27157e-006],[[1655,2],[1726,2],[1727,2]]], [1691,[12793.9,11131.7,0],[[1656,2],[1728,2],[1729,2],[1730,2]]],
+[1692,[12725.3,11078.2,6.35783e-007],[[1656,2],[1731,2],[1730,2],[1729,2]]], [1693,[12800.2,11408.2,0],[[1657,2]]], [1694,[12911.5,11356.6,0],[[1657,2]]], [1695,[14392.1,10977.3,1.90735e-006],[[1658,2],[1732,2]]], [1696,[14331.9,10767.9,0],[[1659,2],[1733,2]]], [1697,[15125.9,10831.8,9.53674e-007],[[1660,2],[1734,2]]],
+[1698,[14973.1,10752.1,-4.76837e-007],[[1660,2],[1735,2]]], [1699,[14708.8,10832.8,-6.35783e-007],[[1661,2],[1736,2],[1737,2]]], [1700,[14559.9,10812.4,4.76837e-007],[[1663,2],[1738,2],[1739,2]]], [1701,[15236.6,11343.7,0],[[1664,2],[1740,2]]], [1702,[16643.8,17769.1,0],[[1667,2],[1741,2]]], [1703,[16598.6,17552.1,0],[[1667,2],[1742,2],[1743,2]]],
+[1704,[17061.9,17767.2,0],[[1668,2],[1744,2]]], [1705,[11341.1,13137.5,-2.54313e-006],[[1670,2],[1745,2],[1705,2]]], [1706,[11044.4,12505.5,3.8147e-006],[[1671,2],[1746,2]]], [1707,[11273.9,12421.7,0],[[1671,2],[1747,2]]], [1708,[10830.9,12429.4,0],[[1672,2],[1748,2],[1749,2]]], [1709,[9714.93,13290.1,0],[[1673,2],[1750,2]]],
+[1710,[10920.4,14265,0],[[1675,2],[1751,2]]], [1711,[10800.1,13993.2,-3.8147e-006],[[1676,2]]], [1712,[10460.5,14053.5,-9.53674e-007],[[1677,2],[1712,2],[1752,2],[1753,2]]], [1713,[11168.4,16303.9,0],[[1678,2]]], [1714,[10790,15858.9,0],[[1679,2],[1754,2]]], [1715,[10128.9,15773.8,0],[[1680,2],[1755,2]]],
+[1716,[10068.1,15601.1,0],[[1680,2],[1756,2]]], [1717,[10367.2,15735.8,9.53674e-007],[[1681,2]]], [1718,[10087.5,14888.1,0],[[1682,2],[1757,2]]], [1719,[11586,17309.6,0],[[1683,2],[1758,2]]], [1720,[11717.1,17000.9,0],[[1684,2],[1759,2]]], [1721,[11345.3,16295.3,0],[[1685,2],[1760,2]]],
+[1722,[13138,12231.8,0],[[1687,2],[1761,2]]], [1723,[13270.6,12349.1,1.90735e-006],[[1687,2]]], [1724,[12814.8,10826.8,1.90735e-006],[[1689,2],[1762,2],[1726,2]]], [1725,[12586.2,10914.9,1.90735e-006],[[1689,2],[1763,2]]], [1726,[12902.9,10704.6,-1.90735e-006],[[1690,2],[1724,2],[1764,2]]], [1727,[13005.4,10523.5,0],[[1690,2],[1765,2],[1766,2],[1767,2],[1768,2],[1769,2],[1770,2],[1771,2]]],
+[1728,[12724,11311.8,0],[[1691,2],[1772,2]]], [1729,[12693.7,11144.6,0],[[1691,2],[1692,2],[1731,2]]], [1730,[12697.8,11127.9,0],[[1691,2],[1692,2],[1731,2]]], [1731,[12630.7,11119.4,2.38419e-007],[[1692,2],[1729,2],[1730,2],[1773,2],[1774,2],[1775,2]]], [1732,[14435.3,10964.7,0],[[1695,2]]], [1733,[14250,10690.1,0],[[1696,2],[1776,2],[1777,2]]],
+[1734,[15233.5,10832.8,0],[[1697,2],[1778,2]]], [1735,[14997.9,10679.8,0],[[1698,2],[1779,2]]], [1736,[14680.8,10719.4,0],[[1699,2],[1780,2]]], [1737,[14672.6,10924.2,-1.90735e-006],[[1699,2],[1781,2]]], [1738,[14524.3,10722.6,0],[[1700,2],[1782,2],[1781,2]]], [1739,[14417.9,10737.6,0],[[1700,2],[1783,2]]],
+[1740,[15326.1,11321.1,-9.53674e-007],[[1701,2],[1784,2]]], [1741,[16627.9,17898.3,0],[[1702,2],[1785,2]]], [1742,[16544,17556.8,0],[[1703,2]]], [1743,[16633.9,17359.9,1.90735e-006],[[1703,2],[1786,2]]], [1744,[17055.6,17880.3,0],[[1704,2],[1787,2],[1788,2]]], [1745,[11283.6,13182.6,0],[[1705,2],[1789,2]]],
+[1746,[10970.5,12382,0],[[1706,2],[1790,2]]], [1747,[11333.5,12288.3,0],[[1707,2],[1791,2],[1747,2],[1792,2]]], [1748,[10818.2,12320.5,0],[[1708,2],[1793,2],[1794,2]]], [1749,[10748.3,12289.8,0],[[1708,2],[1795,2]]], [1750,[9692.37,13293.6,0],[[1709,2],[1796,2],[1797,2]]], [1751,[10812.3,14314.7,0],[[1710,2],[1751,2]]],
+[1752,[10414.6,14212.8,3.8147e-006],[[1712,2],[1798,2]]], [1753,[10384.3,13966.9,3.8147e-006],[[1712,2],[1799,2]]], [1754,[10764,15899.2,0],[[1714,2],[1800,2]]], [1755,[10018.3,15833.2,-6.35783e-007],[[1715,2],[1801,2],[1802,2]]], [1756,[10019.2,15590,0],[[1716,2],[1756,2],[1802,2],[1803,2]]], [1757,[9926.17,14828.4,-3.8147e-006],[[1718,2],[1804,2]]],
+[1758,[11442.2,17404.3,0],[[1719,2],[1805,2]]], [1759,[11671.7,16999.3,-3.8147e-006],[[1720,2]]], [1760,[11262,16423.4,0],[[1721,2],[1806,2]]], [1761,[13121.8,12212.2,0],[[1722,2]]], [1762,[12864.9,10735.3,0],[[1724,2],[1807,2],[1762,2]]], [1763,[12490.5,10911.8,1.27157e-006],[[1725,2],[1808,2],[1809,2]]],
+[1764,[12875.3,10724.4,0],[[1726,2]]], [1765,[13227.6,10496.9,0],[[1727,2],[1810,2]]], [1766,[13019,10369,0],[[1727,2],[1811,2],[1770,2]]], [1767,[12849.9,10623.4,0],[[1727,2],[1812,2]]], [1768,[12923,10409.5,0],[[1727,2]]], [1769,[13051,10605.3,0],[[1727,2],[1813,2],[1814,2],[1769,2],[1815,2]]],
+[1770,[13021.3,10446.3,-1.90735e-006],[[1727,2],[1771,2],[1766,2]]], [1771,[13015.5,10417,0],[[1770,2],[1858,2],[1727,2]]], [1772,[12677.4,11398.8,0],[[1728,2],[1816,2]]], [1773,[12674.3,11139,0],[[1731,2]]], [1774,[12568.1,11071.2,0],[[1731,2],[1817,2]]], [1775,[12481.9,11095.5,0],[[1731,2],[1818,2]]],
+[1776,[14179.8,10666.7,-1.27157e-006],[[1733,2],[1819,2],[1777,2],[1820,2]]], [1777,[14239,10599.1,-2.54313e-006],[[1733,2],[1776,2],[1821,2],[1819,2]]], [1778,[15354.7,10824.7,0],[[1734,2],[1822,2],[1823,2],[1824,2],[1778,2]]], [1779,[15067.9,10575.8,0],[[1735,2],[1825,2]]], [1780,[14677.1,10680.7,-6.35783e-007],[[1736,2],[1826,2],[1827,2]]], [1781,[14631.9,10841.4,0],[[1737,2],[1738,2]]],
+[1782,[14499.3,10671.4,0],[[1738,2],[1828,2],[1782,2]]], [1783,[14342.4,10728.9,0],[[1739,2]]], [1784,[15408.2,11287.9,-4.76837e-007],[[1740,2],[1829,2]]], [1785,[16682.7,17946.2,1.90735e-006],[[1741,2]]], [1786,[16657,17284.3,0],[[1743,2]]], [1787,[17228.7,17908.6,0],[[1744,2],[1830,2]]],
+[1788,[17044.7,17977.3,0],[[1744,2]]], [1789,[11262.3,13195,0],[[1745,2]]], [1790,[10961.7,12377.7,1.27157e-006],[[1746,2],[1794,2],[1790,2]]], [1791,[11360.8,12285.3,3.8147e-006],[[1747,2],[1831,2],[1791,2]]], [1792,[11369,12095.6,0],[[1747,2],[1832,2]]], [1793,[10734,12170.9,0],[[1748,2],[1833,2]]],
+[1794,[10879.3,12412.3,0],[[1748,2],[1790,2]]], [1795,[10708.6,12143.1,0],[[1749,2],[1834,2]]], [1796,[9503.54,13309.6,0],[[1750,2],[1835,2]]], [1797,[9693.71,13320.2,0],[[1750,2],[1836,2],[1837,2]]], [1798,[10369.2,14294.3,0],[[1752,2],[1838,2]]], [1799,[10341.7,13945.4,0],[[1753,2],[1839,2],[1840,2]]],
+[1800,[10710.7,15930.3,0],[[1754,2],[1841,2]]], [1801,[9990.73,15987.4,0],[[1755,2],[1842,2],[1843,2],[1844,2]]], [1802,[9975.8,15731.2,-1.90735e-006],[[1755,2],[1756,2]]], [1803,[9909.18,15461.3,1.90735e-006],[[1756,2],[1845,2]]], [1804,[9805.75,14755.1,0],[[1757,2],[1846,2]]], [1805,[11422.2,17432.7,0],[[1758,2],[1847,2],[1848,2]]],
+[1806,[11209.5,16545.2,-1.90735e-006],[[1760,2],[1849,2]]], [1807,[12856.1,10763.8,9.53674e-007],[[1762,2]]], [1808,[12336.3,11051.2,0],[[1763,2],[1850,2],[1851,2],[1852,2]]], [1809,[12404.2,10858,0],[[1763,2],[1850,2],[1853,2],[1854,2]]], [1810,[13251,10500.3,0],[[1765,2]]], [1811,[13023.6,10253.3,-1.90735e-006],[[1766,2],[1855,2]]],
+[1812,[12762.2,10710.4,0],[[1767,2],[1812,2],[1856,2],[1857,2]]], [1813,[13071.5,10707,0],[[1769,2]]], [1814,[13043.7,10600.3,6.35783e-007],[[1769,2]]], [1815,[13023.2,10628.9,0],[[1769,2]]], [1816,[12550.3,11472.2,0],[[1772,2],[1859,2]]], [1817,[12533.8,10986.2,-1.90735e-006],[[1774,2],[1818,2]]],
+[1818,[12486.9,11008.6,0],[[1775,2],[1817,2]]], [1819,[14164.6,10586.8,0],[[1776,2],[1777,2],[1820,2],[1860,2]]], [1820,[14083.6,10608.7,0],[[1776,2],[1819,2],[1861,2],[1862,2]]], [1821,[14290.9,10528,0],[[1777,2],[1863,2],[1860,2]]], [1822,[15481.3,10747.5,0],[[1778,2],[1864,2]]], [1823,[15477.7,10863.9,1.58946e-007],[[1778,2],[1865,2],[1866,2]]],
+[1824,[15303.4,10705.7,0],[[1778,2],[1867,2]]], [1825,[15084.4,10559.1,-1.19209e-007],[[1779,2],[1825,2],[1868,2],[1869,2]]], [1826,[14667.7,10636.6,0],[[1780,2]]], [1827,[14720.4,10573.3,0],[[1780,2],[1870,2]]], [1828,[14472.7,10587,-9.53674e-007],[[1782,2],[1828,2],[1871,2]]], [1829,[15452,11294.3,4.76837e-007],[[1784,2]]],
+[1830,[17368.2,17963.1,0],[[1787,2],[1872,2]]], [1831,[11387.7,12274.5,0],[[1791,2],[1873,2]]], [1832,[11320.2,11973.1,0],[[1792,2],[1874,2]]], [1833,[10771.8,12088.8,0],[[1793,2],[1875,2],[1834,2]]], [1834,[10724.7,12093,-1.27157e-006],[[1795,2],[1833,2],[1876,2]]], [1835,[9335.14,13326.6,0],[[1796,2],[1877,2],[1878,2]]],
+[1836,[9610.69,13358.2,0],[[1797,2]]], [1837,[9685.82,13465.3,0],[[1797,2],[1879,2]]], [1838,[10354.5,14332.1,3.8147e-006],[[1798,2]]], [1839,[10308.5,13826.1,0],[[1799,2],[1880,2]]], [1840,[10185.5,14038.7,0],[[1799,2],[1881,2]]], [1841,[10685.2,15958.8,1.27157e-006],[[1800,2],[1882,2],[1883,2]]],
+[1842,[9825.35,16030.3,0],[[1801,2],[1884,2]]], [1843,[10061.2,16144.7,0],[[1801,2],[1885,2]]], [1844,[10023.5,15875.4,0],[[1801,2],[1844,2]]], [1845,[9802.3,15355.3,-1.90735e-006],[[1803,2],[1886,2]]], [1846,[9706.09,14692.3,-3.8147e-006],[[1804,2],[1887,2]]], [1847,[11273.1,17486,6.35783e-007],[[1805,2],[1888,2],[1889,2]]],
+[1848,[11444.1,17493.5,-2.00878],[[1805,2],[1890,2],[1848,2]]], [1849,[11147.1,16646.6,0],[[1806,2],[1891,2]]], [1850,[12296.1,11028,-1.27157e-006],[[1808,2],[1809,2],[1892,2]]], [1851,[12297.5,11098.9,0],[[1808,2],[1852,2],[1893,2]]], [1852,[12329.8,11125.2,-9.53674e-007],[[1808,2],[1851,2]]], [1853,[12230.8,10818.2,1.90735e-006],[[1809,2],[1894,2]]],
+[1854,[12528.4,10811.1,1.90735e-006],[[1809,2],[1857,2]]], [1855,[13022.6,10137.8,0],[[1811,2],[1895,2],[1858,2],[1855,2],[1896,2],[1897,2]]], [1856,[12612.2,10708.3,1.90735e-006],[[1812,2],[1898,2]]], [1857,[12625.5,10791,0],[[1812,2],[1854,2]]], [1858,[13038.6,10241.8,1.90735e-006],[[1771,2],[1855,2],[1895,2]]], [1859,[12452.1,11592.7,0],[[1816,2],[1899,2]]],
+[1860,[14235.7,10462.4,0],[[1819,2],[1821,2],[1863,2]]], [1861,[14008.9,10532.3,0],[[1820,2]]], [1862,[14020.5,10642.5,-1.27157e-006],[[1820,2],[1900,2],[1901,2]]], [1863,[14281.6,10424.7,-1.90735e-006],[[1821,2],[1860,2],[1902,2],[1903,2]]], [1864,[15535.5,10717.7,2.38419e-007],[[1822,2]]], [1865,[15565,10988.1,0],[[1823,2],[1904,2]]],
+[1866,[15534.8,10788,0],[[1823,2]]], [1867,[15337.8,10644,0],[[1824,2],[1867,2]]], [1868,[15137.8,10433.6,0],[[1825,2],[1905,2]]], [1869,[15194.6,10556,-2.38419e-007],[[1825,2],[1906,2]]], [1870,[14717.1,10468.9,-1.27157e-006],[[1827,2],[1907,2],[1908,2]]], [1871,[14403,10425.1,0],[[1828,2],[1903,2]]],
+[1872,[17402.1,17990.6,0],[[1830,2]]], [1873,[11528.3,12201.6,0],[[1831,2],[1909,2]]], [1874,[11387,11845.2,0],[[1832,2],[1910,2]]], [1875,[10792.4,11961.2,1.27157e-006],[[1833,2],[1911,2],[1912,2]]], [1876,[10748.9,12028.8,0],[[1834,2]]], [1877,[9171.02,13319.2,0],[[1835,2],[1913,2]]],
+[1878,[9261.42,13378.5,0],[[1835,2],[1914,2]]], [1879,[9630.47,13609.8,0],[[1837,2],[1915,2],[1916,2]]], [1880,[10244.1,13771.6,3.8147e-006],[[1839,2]]], [1881,[10064.7,14097.5,0],[[1840,2],[1917,2]]], [1882,[10629.5,15865.5,-1.90735e-006],[[1841,2]]], [1883,[10773.1,16150.1,0],[[1841,2],[1918,2]]],
+[1884,[9725.35,16085.6,4.76837e-007],[[1842,2],[1919,2],[1920,2],[1921,2]]], [1885,[10053.2,16282.8,-1.90735e-006],[[1843,2],[1922,2]]], [1886,[9734.97,15225.8,0],[[1845,2],[1923,2]]], [1887,[9627.76,14546.4,3.8147e-006],[[1846,2],[1924,2]]], [1888,[11057.6,17502.8,1.90735e-006],[[1847,2],[1925,2]]], [1889,[11157.9,17446.8,1.90735e-006],[[1847,2]]],
+[1890,[11357.9,17676.6,0],[[1848,2],[1926,2]]], [1891,[11045.6,16743.6,0],[[1849,2],[1927,2]]], [1892,[12146.3,11139.2,1.90735e-006],[[1850,2],[1928,2]]], [1893,[12257.4,11126.8,0],[[1851,2]]], [1894,[12082.6,10799.2,0],[[1853,2],[1929,2]]], [1895,[13027.7,10205.8,4.76837e-007],[[1855,2],[1858,2]]],
+[1896,[13009.5,10046.8,6.35783e-007],[[1855,2],[1930,2],[1897,2],[1896,2],[1931,2]]], [1897,[13050.5,10084.9,0],[[1855,2],[1896,2],[1932,2],[1930,2]]], [1898,[12581.7,10699.3,0],[[1856,2],[1933,2],[1934,2]]], [1899,[12381,11685,0],[[1859,2]]], [1900,[14008.5,10684.7,6.35783e-007],[[1862,2],[1935,2],[1900,2]]], [1901,[13941.6,10584.8,1.27157e-006],[[1862,2],[1936,2],[1937,2]]],
+[1902,[14272.2,10375.4,-1.27157e-006],[[1863,2],[1938,2],[1939,2]]], [1903,[14383.5,10357,0],[[1863,2],[1871,2],[1940,2]]], [1904,[15597.9,11034.5,0],[[1865,2],[1904,2],[1941,2]]], [1905,[15134,10373.2,-7.94729e-008],[[1868,2],[1905,2],[1942,2]]], [1906,[15293.7,10467.6,-1.19209e-007],[[1869,2],[1943,2]]], [1907,[14715.2,10397.5,2.54313e-006],[[1870,2],[1944,2],[1945,2]]],
+[1908,[14622,10453.4,3.8147e-006],[[1870,2]]], [1909,[11649.9,12166.6,-1.90735e-006],[[1873,2],[1946,2]]], [1910,[11411.8,11725.9,-3.8147e-006],[[1874,2],[1947,2]]], [1911,[10871.7,11827.2,0],[[1875,2],[1948,2]]], [1912,[10738.2,11890.5,0],[[1875,2],[1949,2]]], [1913,[9013.5,13307.4,0],[[1877,2],[1950,2]]],
+[1914,[9229.8,13407.2,0],[[1878,2]]], [1915,[9554.19,13746.5,-3.8147e-006],[[1879,2],[1951,2]]], [1916,[9742.91,13713.6,3.8147e-006],[[1879,2],[1952,2]]], [1917,[10049.3,14122.2,0],[[1881,2]]], [1918,[10845.9,16273.9,0],[[1883,2],[1953,2]]], [1919,[9576.26,15997.9,0],[[1884,2],[1954,2]]],
+[1920,[9629.16,16208.1,0],[[1884,2]]], [1921,[9700.74,16194.7,1.90735e-006],[[1884,2]]], [1922,[10033.1,16392.8,0],[[1885,2],[1955,2],[1956,2],[1957,2],[1958,2]]], [1923,[9723.81,15178.1,0],[[1886,2],[1923,2]]], [1924,[9510.55,14444.3,-3.8147e-006],[[1887,2],[1959,2]]], [1925,[10897.8,17485.6,1.90735e-006],[[1888,2],[1960,2]]],
+[1926,[11355.3,17803.7,-1.90735e-006],[[1890,2],[1961,2],[1962,2]]], [1927,[11028.1,16743.6,0],[[1891,2]]], [1928,[12124.3,11180.7,6.35783e-007],[[1892,2],[1963,2],[1964,2]]], [1929,[11977.8,10704.8,0],[[1894,2],[1965,2]]], [1930,[13042.5,10056.6,0],[[1896,2],[1897,2],[1966,2]]], [1931,[12962.4,9854.1,0],[[1896,2],[1967,2]]],
+[1932,[13070,10104.9,-9.53674e-007],[[1897,2]]], [1933,[12548.3,10603.9,0],[[1898,2]]], [1934,[12406.9,10663.5,-1.90735e-006],[[1898,2],[1968,2]]], [1935,[14011.3,10702.5,0],[[1900,2]]], [1936,[13822.7,10571.7,0],[[1901,2],[1969,2]]], [1937,[13820.7,10474.2,0],[[1901,2],[1970,2]]],
+[1938,[14184.4,10268.4,0],[[1902,2],[1971,2]]], [1939,[14370.3,10255.5,-1.90735e-006],[[1902,2],[1940,2]]], [1940,[14460.9,10227.2,-3.17891e-007],[[1903,2],[1939,2],[1972,2],[1973,2],[1974,2],[1975,2]]], [1941,[15604.4,11085.6,0],[[1904,2]]], [1942,[15131.7,10214.9,-4.76837e-007],[[1905,2],[1976,2]]], [1943,[15333.8,10480.8,0],[[1906,2],[1977,2],[1978,2],[1979,2]]],
+[1944,[14643.3,10288.9,0],[[1907,2],[1972,2]]], [1945,[14752.8,10365.2,0],[[1907,2]]], [1946,[11791.8,12203,-1.90735e-006],[[1909,2],[1980,2]]], [1947,[11470.3,11620.2,-3.8147e-006],[[1910,2],[1981,2]]], [1948,[10899.9,11750.6,0],[[1911,2],[1982,2],[1983,2]]], [1949,[10729.3,11772.9,0],[[1912,2],[1984,2],[1985,2],[1986,2]]],
+[1950,[8852.37,13282.7,0],[[1913,2],[1987,2]]], [1951,[9480.11,13905.3,0],[[1915,2],[1988,2]]], [1952,[9787.61,13776.3,-1.27157e-006],[[1916,2],[1989,2],[1952,2],[1990,2]]], [1953,[10965.3,16300.7,0],[[1918,2]]], [1954,[9558.33,15986.8,-4.76837e-007],[[1919,2],[1991,2],[1954,2],[1992,2]]], [1955,[10130.2,16438.3,3.8147e-006],[[1922,2],[1993,2]]],
+[1956,[10003.4,16556.8,-1.27157e-006],[[1922,2],[1994,2],[1995,2]]], [1957,[9879.1,16420.1,0],[[1957,2]]], [1958,[9970.04,16318.4,0],[[1922,2]]], [1959,[9356.37,14327.3,0],[[1924,2],[1996,2]]], [1960,[10811.8,17493.9,0],[[1925,2],[1997,2],[1998,2]]], [1961,[11396.8,17863.2,1.27157e-006],[[1926,2],[1962,2],[1961,2],[1999,2]]],
+[1962,[11384.4,17853.3,0],[[1961,2],[2039,2],[1962,2],[1926,2]]], [1963,[11998.1,11276,0],[[1928,2],[2000,2]]], [1964,[12192.2,11309.9,0],[[1928,2],[1964,2]]], [1965,[11924.3,10678.1,0],[[1929,2],[2001,2],[2002,2]]], [1966,[13208.5,9986.63,0],[[1930,2],[2003,2]]], [1967,[12971.4,9846.99,0],[[1931,2],[2004,2],[2005,2]]],
+[1968,[12310.5,10583.1,0],[[1934,2],[2006,2]]], [1969,[13803.6,10562.1,0],[[1936,2]]], [1970,[13805.4,10457.7,-1.27157e-006],[[1937,2],[2007,2]]], [1971,[14135.7,10257.6,-6.35783e-007],[[1938,2],[2008,2],[2009,2]]], [1972,[14515.1,10258.3,0],[[1940,2],[1944,2],[1972,2],[2010,2]]], [1973,[14606.1,10232.4,0],[[1940,2],[2011,2]]],
+[1974,[14435.6,10127.1,0],[[1940,2]]], [1975,[14515.6,10037.8,1.90735e-006],[[1940,2],[2012,2]]], [1976,[15135.4,10132,0],[[1942,2],[2013,2]]], [1977,[15337.4,10495.5,0],[[1943,2]]], [1978,[15415.5,10464.7,-3.97364e-008],[[1943,2],[2014,2],[1978,2],[2015,2]]], [1979,[15393.7,10466.7,0],[[2014,2],[1943,2]]],
+[1980,[11902.3,12209.3,0],[[1946,2],[2016,2]]], [1981,[11494.6,11550,0],[[1947,2],[2017,2],[2018,2]]], [1982,[11042.9,11809,0],[[1948,2],[2019,2]]], [1983,[10895.1,11579.7,-9.53674e-007],[[1948,2],[1986,2],[2020,2],[2021,2]]], [1984,[10650.7,11786.6,0],[[1949,2]]], [1985,[10659.5,11633.5,0],[[1949,2],[2022,2]]],
+[1986,[10819.9,11642.5,0],[[1949,2],[1983,2],[1986,2]]], [1987,[8827.71,13279.4,-1.27157e-006],[[1950,2],[2023,2],[2024,2]]], [1988,[9428.76,14014.7,-3.8147e-006],[[1951,2],[2025,2]]], [1989,[9804.44,13799.7,0],[[1952,2],[2026,2]]], [1990,[9800.13,13802.8,0],[[1952,2],[1990,2]]], [1991,[9634.05,15848.5,0],[[1954,2],[2027,2]]],
+[1992,[9511.11,16001.4,0],[[1954,2],[2028,2],[2029,2]]], [1993,[10211.7,16447.2,0],[[1955,2],[2030,2]]], [1994,[10019.3,16702.5,0],[[1956,2],[2031,2]]], [1995,[9836.86,16524.8,0],[[1956,2],[2032,2],[1995,2]]], [1996,[9308.05,14270.9,0],[[1959,2],[2033,2],[2025,2]]], [1997,[10837,17578,0],[[1960,2],[2034,2]]],
+[1998,[10693.3,17567.2,3.8147e-007],[[1960,2],[2035,2],[2036,2],[2037,2],[2038,2]]], [1999,[11476.4,17989.1,0],[[1961,2]]], [2000,[11944.7,11309.8,9.53674e-007],[[1963,2],[2040,2],[2000,2],[2041,2]]], [2001,[11999.5,10601,0],[[1965,2],[2042,2]]], [2002,[11762,10638.5,0],[[1965,2],[2043,2]]], [2003,[13214.7,9978.1,0],[[1966,2],[2004,2],[2044,2]]],
+[2004,[13046.2,9865.96,-3.17891e-007],[[1967,2],[2003,2],[2045,2]]], [2005,[12935.3,9752.18,0],[[1967,2],[2046,2],[2047,2]]], [2006,[12277.9,10502.3,1.90735e-006],[[1968,2],[2048,2]]], [2007,[13756.7,10430.7,0],[[1970,2]]], [2008,[14014,10321.3,-3.8147e-006],[[1971,2],[2049,2]]], [2009,[14109,10222.1,0],[[1971,2],[2050,2],[2009,2]]],
+[2010,[14595.8,10319.5,0],[[1972,2],[2051,2]]], [2011,[14629.9,10258.4,0],[[1973,2]]], [2012,[14564.8,9942.17,-1.90735e-006],[[1975,2],[2052,2]]], [2013,[15117.8,10097.6,0],[[1976,2],[2013,2],[2053,2]]], [2014,[15410.9,10477.8,0],[[1978,2],[1979,2],[2014,2]]], [2015,[15448,10425.7,0],[[1978,2]]],
+[2016,[12006.1,12213.5,-1.90735e-006],[[1980,2],[2054,2]]], [2017,[11516.9,11514.6,0],[[1981,2],[2055,2],[2018,2],[2056,2]]], [2018,[11453.4,11412.7,0],[[1981,2],[2017,2],[2057,2],[2058,2],[2055,2]]], [2019,[11087.5,11810.2,0],[[1982,2]]], [2020,[10833.2,11392.3,0],[[1983,2],[2059,2]]], [2021,[11026.9,11434,3.8147e-006],[[1983,2],[2060,2]]],
+[2022,[10580.4,11490,0],[[1985,2],[2061,2]]], [2023,[8632.65,13229.2,0],[[1987,2],[2062,2]]], [2024,[8780.86,13396.7,0],[[1987,2],[2063,2],[2064,2]]], [2025,[9354.68,14171.8,0],[[1988,2],[1996,2]]], [2026,[9848.47,13915.3,0],[[1989,2],[2065,2]]], [2027,[9538.55,15786.8,0],[[1991,2],[2066,2]]],
+[2028,[9381.03,16066.9,-4.76837e-007],[[1992,2],[2067,2],[2068,2],[2069,2]]], [2029,[9455.4,15977.3,0],[[1992,2],[2029,2],[2070,2]]], [2030,[10218.4,16350.7,0],[[1993,2]]], [2031,[10037.3,16778.5,1.27157e-006],[[1994,2],[2031,2],[2071,2]]], [2032,[9783.56,16553.7,1.52588e-006],[[1995,2],[2032,2],[2072,2]]], [2033,[9232.69,14205.9,0],[[1996,2]]],
+[2034,[10878.7,17629.9,0],[[1997,2],[2073,2]]], [2035,[10707.8,17749.4,0],[[1998,2],[2074,2]]], [2036,[10683.1,17478.2,0],[[1998,2],[2075,2],[2076,2]]], [2037,[10568,17522.4,0],[[1998,2],[2077,2],[2037,2],[2078,2]]], [2038,[10643.6,17641.3,-1.90735e-006],[[1998,2],[2038,2]]], [2039,[11369,17840.4,0],[[1962,2]]],
+[2040,[11946.7,11385.8,0],[[2000,2]]], [2041,[11848.1,11366.1,6.35783e-007],[[2000,2],[2079,2],[2041,2]]], [2042,[12029.1,10487.3,0],[[2001,2],[2080,2]]], [2043,[11700.1,10605.6,0],[[2002,2],[2081,2],[2082,2]]], [2044,[13259.7,9991.77,3.17891e-007],[[2003,2],[2083,2],[2084,2]]], [2045,[13093.1,9789.25,0],[[2004,2]]],
+[2046,[12990.2,9624.15,0],[[2005,2],[2085,2]]], [2047,[12822.4,9624.44,0],[[2005,2],[2086,2]]], [2048,[12202.9,10441.6,-6.35783e-007],[[2006,2],[2087,2],[2088,2]]], [2049,[13876.7,10328.6,0],[[2008,2],[2089,2]]], [2050,[14118.4,10025.5,0],[[2009,2],[2090,2]]], [2051,[14603.5,10349.5,3.8147e-006],[[2010,2]]],
+[2052,[14657.1,9836.53,0],[[2012,2],[2091,2]]], [2053,[15129.4,9964.32,0],[[2013,2],[2092,2]]], [2054,[12109.5,12213.5,1.90735e-006],[[2016,2],[2093,2]]], [2055,[11513.2,11404.4,-3.8147e-006],[[2017,2],[2018,2],[2094,2]]], [2056,[11657.2,11474,-3.8147e-006],[[2017,2],[2079,2]]], [2057,[11321.6,11381.8,0],[[2018,2],[2095,2]]],
+[2058,[11427.6,11249.4,0],[[2018,2],[2096,2]]], [2059,[10832.8,11347.6,-1.27157e-006],[[2020,2],[2097,2],[2098,2]]], [2060,[11049.6,11410.3,1.27157e-006],[[2021,2],[2095,2],[2099,2]]], [2061,[10520.8,11402.9,0],[[2022,2],[2100,2]]], [2062,[8469.99,13179.6,0],[[2023,2],[2101,2]]], [2063,[8638.37,13372.5,3.8147e-006],[[2024,2],[2102,2]]],
+[2064,[8902.24,13455.2,0],[[2024,2],[2103,2]]], [2065,[9870.61,13990.1,-3.8147e-006],[[2026,2]]], [2066,[9428.96,15671.5,0],[[2027,2],[2104,2]]], [2067,[9433.04,16170.4,0],[[2028,2],[2067,2],[2105,2],[2106,2]]], [2068,[9315.03,16013.5,0],[[2028,2]]], [2069,[9231.55,16156.2,0],[[2028,2],[2107,2]]],
+[2070,[9405.05,15943,0],[[2029,2]]], [2071,[10160,16887.6,0],[[2031,2],[2108,2]]], [2072,[9638.31,16673.4,0],[[2032,2],[2109,2]]], [2073,[10927.4,17641,0],[[2034,2],[2073,2],[2110,2]]], [2074,[10737.5,17870.3,0],[[2035,2],[2111,2]]], [2075,[10692.5,17413.8,0],[[2036,2]]],
+[2076,[10604,17417.4,0],[[2036,2]]], [2077,[10437.9,17451.3,3.8147e-006],[[2037,2],[2112,2]]], [2078,[10531.1,17435.3,0],[[2037,2],[2113,2],[2114,2]]], [2079,[11810.6,11380.8,4.76837e-007],[[2041,2],[2056,2],[2115,2]]], [2080,[12045.3,10474.9,0],[[2042,2],[2116,2],[2080,2]]], [2081,[11671,10496.3,0],[[2043,2],[2117,2],[2118,2]]],
+[2082,[11526.9,10556.7,0],[[2043,2],[2119,2]]], [2083,[13244.4,10125.3,0],[[2044,2],[2120,2]]], [2084,[13429.8,10025.2,-4.76837e-007],[[2044,2],[2121,2],[2084,2],[2122,2],[2123,2]]], [2085,[13070.1,9531.02,0],[[2046,2],[2124,2]]], [2086,[12697,9552.58,0],[[2047,2],[2125,2]]], [2087,[12230.3,10296.1,0],[[2048,2],[2087,2]]],
+[2088,[12104.3,10371.2,0],[[2048,2],[2116,2]]], [2089,[13818.9,10206.7,0],[[2049,2],[2089,2],[2126,2]]], [2090,[14111.4,10008.1,6.35783e-007],[[2050,2],[2090,2],[2127,2]]], [2091,[14670.5,9713.11,0],[[2052,2],[2128,2]]], [2092,[15146,9944.48,0],[[2053,2],[2129,2],[2092,2]]], [2093,[12196.6,12204.4,0],[[2054,2],[2093,2]]],
+[2094,[11597.7,11361.3,0],[[2055,2],[2115,2]]], [2095,[11151.5,11429.8,0],[[2057,2],[2060,2]]], [2096,[11418.5,11093.4,0],[[2058,2],[2130,2]]], [2097,[10993.3,11335.8,0],[[2059,2],[2099,2]]], [2098,[10717,11308.5,0],[[2059,2],[2131,2]]], [2099,[11066.8,11362.7,0],[[2060,2],[2097,2],[2132,2]]],
+[2100,[10514.5,11382.5,0],[[2061,2],[2131,2],[2133,2]]], [2101,[8404.9,13153.8,0],[[2062,2],[2134,2],[2135,2]]], [2102,[8592.56,13370.4,1.27157e-006],[[2063,2],[2136,2],[2137,2]]], [2103,[8973.83,13576.4,0],[[2064,2],[2103,2]]], [2104,[9400.1,15529.3,0],[[2066,2],[2138,2]]], [2105,[9381.76,16202.2,0],[[2067,2]]],
+[2106,[9470.46,16210.5,-1.90735e-006],[[2067,2]]], [2107,[9089.42,16230.9,0],[[2069,2],[2139,2]]], [2108,[10208.9,16937.3,-1.27157e-006],[[2071,2],[2140,2],[2141,2]]], [2109,[9547.56,16793.4,0],[[2072,2],[2142,2]]], [2110,[10949.9,17661.8,1.90735e-006],[[2073,2]]], [2111,[10694.9,17884.2,6.35783e-007],[[2074,2],[2143,2],[2111,2],[2144,2]]],
+[2112,[10307.6,17514.1,1.27157e-006],[[2077,2],[2145,2],[2112,2]]], [2113,[10603.5,17262.8,0],[[2078,2],[2146,2]]], [2114,[10455.9,17350.4,-1.27157e-006],[[2078,2],[2147,2],[2148,2]]], [2115,[11667.3,11371.2,0],[[2079,2],[2094,2]]], [2116,[12041.8,10336,0],[[2080,2],[2088,2],[2149,2]]], [2117,[11813.9,10515.9,0],[[2081,2],[2150,2]]],
+[2118,[11570.1,10423.4,0],[[2081,2],[2151,2]]], [2119,[11426.2,10489.1,0],[[2082,2],[2152,2]]], [2120,[13344.1,10153.1,0],[[2083,2],[2153,2]]], [2121,[13386.6,10010.3,-4.76837e-007],[[2084,2]]], [2122,[13467.1,10081.6,0],[[2084,2]]], [2123,[13580.9,10067.1,-3.17891e-007],[[2084,2],[2154,2],[2155,2]]],
+[2124,[13130.5,9400.11,0],[[2085,2],[2156,2]]], [2125,[12608,9444.67,3.17891e-007],[[2086,2],[2157,2],[2158,2]]], [2126,[13727.8,10133.7,0],[[2089,2],[2159,2]]], [2127,[14082.8,9923.3,-4.76837e-007],[[2090,2],[2160,2],[2161,2],[2162,2]]], [2128,[14647.5,9655.33,6.35783e-007],[[2091,2],[2163,2],[2164,2]]], [2129,[15138.5,9918.16,0],[[2092,2]]],
+[2130,[11436.8,10982,0],[[2096,2],[2165,2]]], [2131,[10693,11301.3,-1.27157e-006],[[2098,2],[2100,2],[2166,2]]], [2132,[11150,11226.9,0],[[2099,2],[2167,2]]], [2133,[10441.8,11381.1,1.27157e-006],[[2100,2],[2168,2],[2169,2]]], [2134,[8326.2,13144.6,6.35783e-007],[[2101,2],[2170,2],[2171,2],[2134,2],[2172,2],[2173,2],[2174,2],[2136,2]]], [2135,[8472.75,13056.4,-3.8147e-006],[[2101,2],[2175,2]]],
+[2136,[8448.04,13266.1,0],[[2102,2],[2134,2],[2174,2]]], [2137,[8561.49,13418.8,1.27157e-006],[[2102,2],[2176,2],[2177,2]]], [2138,[9303.64,15440.5,0],[[2104,2],[2178,2]]], [2139,[9038.32,16260,6.35783e-007],[[2107,2],[2179,2],[2180,2]]], [2140,[10301.5,17041.7,-3.8147e-006],[[2108,2],[2181,2],[2182,2],[2148,2]]], [2141,[10167.9,16990.6,-3.8147e-006],[[2108,2]]],
+[2142,[9419.02,16868.2,0],[[2109,2],[2183,2],[2184,2]]], [2143,[10712.5,17879.2,0],[[2111,2]]], [2144,[10639.3,17890.1,-1.90735e-006],[[2111,2]]], [2145,[10298.5,17636.9,0],[[2112,2],[2185,2]]], [2146,[10676.7,17134.1,-1.27157e-006],[[2113,2],[2186,2],[2187,2]]], [2147,[10299.3,17307.8,0],[[2114,2]]],
+[2148,[10391,17238.1,0],[[2114,2],[2140,2],[2188,2],[2182,2]]], [2149,[12055,10171.8,3.8147e-006],[[2116,2],[2189,2]]], [2150,[11905.4,10448.5,3.8147e-006],[[2117,2],[2190,2]]], [2151,[11550.3,10284.5,0],[[2118,2],[2191,2]]], [2152,[11426,10483.3,0],[[2119,2],[2192,2],[2193,2]]], [2153,[13404.2,10234.5,9.53674e-007],[[2120,2],[2194,2]]],
+[2154,[13603.1,10116.1,0],[[2123,2]]], [2155,[13645.8,9990.48,0],[[2123,2],[2195,2],[2196,2]]], [2156,[13148.4,9354.85,0],[[2124,2],[2197,2],[2198,2]]], [2157,[12500.4,9357.53,-3.17891e-007],[[2125,2],[2199,2],[2200,2]]], [2158,[12641.9,9280.17,0],[[2125,2],[2201,2]]], [2159,[13816.1,10009.9,0],[[2126,2],[2162,2]]],
+[2160,[14076.4,9748.94,-1.90735e-006],[[2127,2],[2202,2]]], [2161,[14054.8,9952.74,1.90735e-006],[[2127,2]]], [2162,[13953.5,9937.79,0],[[2127,2],[2159,2]]], [2163,[14532.9,9564.11,0],[[2128,2],[2203,2]]], [2164,[14728,9521.18,0],[[2128,2],[2204,2]]], [2165,[11424.4,10919.7,0],[[2130,2]]],
+[2166,[10764.3,11181.9,0],[[2131,2]]], [2167,[11151.3,11095.2,0],[[2132,2],[2205,2]]], [2168,[10292.4,11340.8,3.8147e-006],[[2133,2],[2206,2]]], [2169,[10418.9,11266.9,-3.8147e-006],[[2133,2],[2207,2]]], [2170,[8143.87,13072.6,-1.90735e-006],[[2134,2],[2208,2]]], [2171,[8332.12,13122.3,0],[[2134,2]]],
+[2172,[8356.31,13005.6,0],[[2134,2],[2209,2],[2210,2]]], [2173,[8291.99,13261.9,0],[[2134,2],[2211,2],[2212,2]]], [2174,[8396.63,13250.8,0],[[2134,2],[2136,2],[2213,2],[2211,2],[2174,2]]], [2175,[8552.68,13046.2,0],[[2135,2],[2214,2]]], [2176,[8580,13552.9,0],[[2137,2],[2215,2]]], [2177,[8491.02,13534.2,0],[[2137,2],[2213,2],[2177,2],[2216,2]]],
+[2178,[9210.08,15346.7,0],[[2138,2],[2217,2]]], [2179,[9056.86,16295.8,-6.35783e-007],[[2139,2],[2179,2],[2218,2],[2180,2]]], [2180,[8998.09,16288.8,0],[[2139,2],[2179,2],[2219,2],[2218,2],[2220,2]]], [2181,[10263.2,17050.3,0],[[2140,2]]], [2182,[10371.5,17179.5,-3.8147e-006],[[2140,2],[2148,2],[2221,2]]], [2183,[9299.16,16825.7,0],[[2142,2],[2222,2]]],
+[2184,[9400.17,16994.7,0],[[2142,2],[2223,2],[2184,2],[2224,2]]], [2185,[10275.2,17737.7,1.90735e-006],[[2145,2]]], [2186,[10773.4,17031.1,0],[[2146,2],[2225,2]]], [2187,[10611.3,17091.7,-2.54313e-006],[[2146,2],[2221,2],[2226,2]]], [2188,[10370.7,17166.4,0],[[2148,2],[2227,2],[2188,2]]], [2189,[12053.3,10005,0],[[2149,2],[2228,2]]],
+[2190,[11900,10369.6,0],[[2150,2]]], [2191,[11540.6,10248.5,9.53674e-007],[[2151,2],[2229,2],[2230,2],[2192,2]]], [2192,[11485.8,10340,0],[[2152,2],[2191,2]]], [2193,[11306,10486.2,9.53674e-007],[[2152,2],[2231,2],[2232,2],[2233,2]]], [2194,[13430.6,10353.7,0],[[2153,2]]], [2195,[13671.5,9897.08,0],[[2155,2],[2234,2]]],
+[2196,[13678.7,9989.75,9.53674e-007],[[2155,2]]], [2197,[13184.9,9362.16,0],[[2156,2]]], [2198,[13183,9256.44,0],[[2156,2],[2235,2],[2236,2]]], [2199,[12407.5,9508.65,0],[[2157,2],[2237,2]]], [2200,[12509.4,9264.27,0],[[2157,2],[2238,2],[2239,2]]], [2201,[12653.8,9253.5,0],[[2158,2]]],
+[2202,[14042.1,9611.21,0],[[2160,2],[2240,2]]], [2203,[14533.8,9459.26,0],[[2163,2]]], [2204,[14749.3,9502.35,0],[[2164,2],[2241,2],[2242,2]]], [2205,[11151.5,10984.2,9.53674e-007],[[2167,2],[2243,2],[2244,2],[2245,2]]], [2206,[10239.2,11326.2,0],[[2168,2],[2246,2],[2206,2],[2247,2]]], [2207,[10427.7,11193.4,3.8147e-006],[[2169,2],[2248,2]]],
+[2208,[8012.87,13031.4,0],[[2170,2],[2249,2]]], [2209,[8287.57,13044.6,0],[[2172,2]]], [2210,[8443.2,12851.5,0],[[2172,2],[2250,2]]], [2211,[8336.46,13317.8,0],[[2173,2],[2174,2],[2251,2],[2252,2],[2211,2]]], [2212,[8256.73,13358.4,1.27157e-006],[[2173,2],[2253,2],[2254,2]]], [2213,[8414.95,13356.3,-3.8147e-006],[[2174,2],[2177,2]]],
+[2214,[8657.64,13061.6,0],[[2175,2]]], [2215,[8636.58,13701.4,0],[[2176,2],[2255,2]]], [2216,[8543.22,13692.7,0],[[2177,2],[2256,2]]], [2217,[9149.91,15235.4,0],[[2178,2],[2257,2],[2258,2]]], [2218,[9042.64,16320.6,0],[[2179,2],[2180,2],[2259,2]]], [2219,[9037.45,16316.4,0],[[2180,2]]],
+[2220,[8852.87,16291.1,1.90735e-006],[[2180,2],[2260,2]]], [2221,[10462.7,17108.8,-3.8147e-006],[[2182,2],[2187,2]]], [2222,[9242.87,16769.2,0],[[2183,2],[2261,2],[2262,2]]], [2223,[9407.86,16978.8,0],[[2184,2]]], [2224,[9352.42,17163.8,-1.90735e-006],[[2184,2],[2263,2]]], [2225,[10837.4,16988.5,2.54313e-006],[[2186,2],[2225,2],[2264,2]]],
+[2226,[10509.7,16973.6,0],[[2187,2],[2265,2]]], [2227,[10376.6,17161.8,0],[[2188,2]]], [2228,[12068.5,9861.42,1.90735e-006],[[2189,2],[2266,2]]], [2229,[11621.5,10210.9,0],[[2191,2],[2267,2]]], [2230,[11574.7,10157,-2.54313e-006],[[2191,2],[2267,2],[2268,2]]], [2231,[11342.4,10390.9,0],[[2193,2],[2269,2]]],
+[2232,[11154.1,10410.9,-1.27157e-006],[[2193,2],[2270,2],[2271,2]]], [2233,[11293.9,10652.4,-3.8147e-006],[[2193,2],[2272,2]]], [2234,[13682.1,9872.23,0],[[2195,2]]], [2235,[13241.4,9119.98,0],[[2198,2],[2273,2]]], [2236,[13304.6,9149.36,0],[[2198,2],[2274,2]]], [2237,[12363.5,9546.65,3.17891e-007],[[2199,2],[2275,2],[2276,2]]],
+[2238,[12465.8,9234.15,0],[[2200,2],[2277,2],[2278,2],[2238,2]]], [2239,[12581,9102.43,0],[[2200,2],[2279,2]]], [2240,[14031.9,9599.18,2.38419e-007],[[2202,2],[2240,2],[2280,2]]], [2241,[14745.6,9342.27,0],[[2204,2],[2281,2]]], [2242,[14879.1,9616.91,0],[[2204,2],[2282,2]]], [2243,[11117.2,11055.1,0],[[2205,2]]],
+[2244,[11232.8,10849.8,-3.8147e-006],[[2205,2],[2283,2],[2272,2]]], [2245,[11133.9,10862.2,0],[[2205,2],[2284,2]]], [2246,[10162,11322.3,0],[[2206,2],[2285,2]]], [2247,[10175.6,11314.7,0],[[2206,2],[2247,2]]], [2248,[10335.3,11105.7,0],[[2207,2],[2286,2]]], [2249,[7850.49,12987.8,0],[[2208,2],[2287,2]]],
+[2250,[8530.02,12730.7,0],[[2210,2],[2288,2]]], [2251,[8419.7,13373.5,-3.8147e-006],[[2211,2]]], [2252,[8325.9,13308.8,0],[[2211,2]]], [2253,[8114.27,13405.4,0],[[2212,2],[2289,2]]], [2254,[8162.02,13521.9,0],[[2212,2],[2290,2]]], [2255,[8637.26,13727.1,0],[[2215,2],[2256,2],[2291,2]]],
+[2256,[8569.22,13714,1.27157e-006],[[2216,2],[2255,2],[2292,2]]], [2257,[9036.84,15158,-3.8147e-006],[[2217,2],[2293,2]]], [2258,[9155.81,15132.9,0],[[2217,2],[2294,2],[2295,2]]], [2259,[9104.08,16495.1,0],[[2218,2],[2296,2]]], [2260,[8773.96,16312.6,-6.35783e-007],[[2220,2],[2297,2],[2298,2]]], [2261,[9185.65,16596.7,0],[[2222,2],[2296,2]]],
+[2262,[9340.31,16654.7,0],[[2222,2],[2262,2]]], [2263,[9387.67,17301.1,0],[[2224,2],[2299,2]]], [2264,[10943.1,16860.5,-1.90735e-006],[[2225,2],[2300,2]]], [2265,[10506,16844.6,0],[[2226,2],[2301,2]]], [2266,[12082.4,9694.47,0],[[2228,2],[2302,2]]], [2267,[11647.4,10165.8,-9.53674e-007],[[2229,2],[2230,2],[2267,2],[2303,2]]],
+[2268,[11578.2,10075.5,0],[[2230,2],[2304,2]]], [2269,[11363,10334.6,0],[[2231,2]]], [2270,[11148.6,10568.6,0],[[2232,2],[2305,2]]], [2271,[11117.5,10238.6,0],[[2232,2],[2306,2]]], [2272,[11281,10789.1,-3.8147e-006],[[2233,2],[2244,2],[2283,2]]], [2273,[13277.5,9071.27,-6.35783e-007],[[2235,2],[2307,2],[2274,2],[2308,2]]],
+[2274,[13326,9118.13,0],[[2236,2],[2273,2],[2309,2],[2307,2]]], [2275,[12384.8,9628.82,1.90735e-006],[[2237,2],[2310,2]]], [2276,[12190.4,9637.72,0],[[2237,2],[2311,2],[2302,2]]], [2277,[12328.2,9190.01,0],[[2238,2],[2312,2]]], [2278,[12484.2,9216.13,-1.90735e-006],[[2238,2]]], [2279,[12603.6,8966.19,0],[[2239,2],[2313,2]]],
+[2280,[13965.3,9561.49,3.17891e-007],[[2240,2],[2314,2]]], [2281,[14863.8,9253.6,9.53674e-007],[[2241,2],[2315,2]]], [2282,[14900,9730.07,0],[[2242,2],[2316,2],[2317,2],[2318,2]]], [2283,[11261.9,10821,0],[[2244,2],[2272,2],[2284,2]]], [2284,[11119.6,10860.4,0],[[2245,2],[2283,2],[2319,2]]], [2285,[10018,11283,-9.53674e-007],[[2246,2],[2285,2],[2320,2],[2321,2]]],
+[2286,[10267.6,11053.9,0],[[2248,2],[2322,2]]], [2287,[7727.61,12960.4,-1.90735e-006],[[2249,2],[2323,2]]], [2288,[8596.82,12584.7,0],[[2250,2],[2324,2]]], [2289,[8079.51,13402.3,0],[[2253,2]]], [2290,[8114.62,13650.9,3.8147e-006],[[2254,2],[2325,2]]], [2291,[8667.38,13899.2,0],[[2255,2],[2326,2]]],
+[2292,[8582.31,13833.8,3.8147e-006],[[2256,2],[2327,2]]], [2293,[8919.06,15179.3,3.8147e-006],[[2257,2],[2328,2]]], [2294,[9112.4,15054,0],[[2258,2],[2329,2]]], [2295,[9263.01,15047,0],[[2258,2],[2295,2]]], [2296,[9137.14,16509.8,6.35783e-007],[[2259,2],[2261,2],[2330,2]]], [2297,[8675.54,16298.7,-6.35783e-007],[[2260,2],[2331,2],[2332,2]]],
+[2298,[8744.81,16386.1,0],[[2260,2],[2298,2],[2333,2]]], [2299,[9425,17388.7,-6.35783e-007],[[2263,2],[2334,2],[2335,2]]], [2300,[10962.9,16832.9,0],[[2264,2]]], [2301,[10623.1,16727.1,1.90735e-006],[[2265,2],[2301,2]]], [2302,[12158.1,9659.69,0],[[2266,2],[2276,2],[2311,2]]], [2303,[11703.5,10081,0],[[2267,2]]],
+[2304,[11573.8,9996.04,0],[[2268,2],[2336,2]]], [2305,[11128.1,10575.3,0],[[2270,2]]], [2306,[11049.2,10120.5,0],[[2271,2],[2337,2]]], [2307,[13320.6,9081.91,0],[[2273,2],[2274,2],[2307,2],[2338,2],[2339,2]]], [2308,[13343.3,8901.56,0],[[2273,2],[2340,2],[2341,2],[2342,2]]], [2309,[13430.6,9223.28,0],[[2274,2],[2343,2]]],
+[2310,[12361.5,9693.97,0],[[2275,2],[2344,2]]], [2311,[12181.6,9648.03,0],[[2276,2],[2302,2]]], [2312,[12320.3,9163.89,0],[[2277,2],[2345,2],[2346,2]]], [2313,[12591.8,8814.01,0],[[2279,2],[2347,2]]], [2314,[13936.2,9511.06,0],[[2280,2],[2348,2],[2349,2],[2314,2]]], [2315,[14943.6,9194.13,0],[[2281,2],[2350,2]]],
+[2316,[15027.8,9704.53,0],[[2282,2],[2351,2]]], [2317,[14841.9,9743.41,0],[[2282,2]]], [2318,[14916.9,9829.26,0],[[2282,2]]], [2319,[10972,10945.2,0],[[2284,2],[2352,2]]], [2320,[9944.8,11137.1,0],[[2285,2],[2353,2]]], [2321,[9943.97,11295.3,6.35783e-007],[[2285,2],[2321,2],[2354,2]]],
+[2322,[10210.3,10932.2,0],[[2286,2],[2355,2]]], [2323,[7593.51,12937.3,0],[[2287,2],[2356,2]]], [2324,[8633.3,12469.1,1.27157e-006],[[2288,2],[2357,2],[2358,2]]], [2325,[8096.92,13755.7,-3.8147e-006],[[2290,2],[2359,2]]], [2326,[8656.87,13969.6,1.90735e-006],[[2291,2],[2360,2],[2327,2]]], [2327,[8580.76,13853.6,1.27157e-006],[[2292,2],[2326,2]]],
+[2328,[8793.78,15198.3,0],[[2293,2],[2361,2]]], [2329,[9095.12,15021.3,3.8147e-006],[[2294,2]]], [2330,[9129.49,16459,1.90735e-006],[[2296,2]]], [2331,[8635.18,16289.5,-1.27157e-006],[[2297,2],[2362,2],[2332,2]]], [2332,[8652.95,16329.5,4.76837e-007],[[2297,2],[2331,2],[2332,2]]], [2333,[8628.57,16480.7,3.8147e-006],[[2298,2],[2363,2]]],
+[2334,[9473.44,17421.1,0],[[2299,2],[2364,2],[2335,2]]], [2335,[9430.95,17481.3,2.54313e-006],[[2299,2],[2334,2],[2365,2]]], [2336,[11577,9870.58,1.90735e-006],[[2304,2],[2366,2]]], [2337,[10918.3,10056.6,0],[[2306,2],[2367,2]]], [2338,[13421.2,9030.67,3.17891e-007],[[2307,2],[2368,2],[2369,2]]], [2339,[13389.4,9099.71,0],[[2307,2]]],
+[2340,[13371.8,8731.03,0],[[2308,2],[2370,2]]], [2341,[13426.1,8944.4,0],[[2308,2]]], [2342,[13381.1,8857.95,3.17891e-007],[[2308,2],[2371,2],[2372,2]]], [2343,[13486.1,9271.98,-3.17891e-007],[[2309,2],[2373,2],[2374,2]]], [2344,[12390,9781.23,0],[[2310,2],[2375,2]]], [2345,[12390.7,9126.24,0],[[2312,2]]],
+[2346,[12207.5,9122.91,1.90735e-006],[[2312,2],[2376,2]]], [2347,[12573.8,8785.43,0],[[2313,2],[2377,2],[2378,2]]], [2348,[14005.3,9339.54,0],[[2314,2],[2379,2]]], [2349,[13931.7,9529.22,0],[[2314,2]]], [2350,[14990.8,9103.07,0],[[2315,2],[2380,2],[2381,2]]], [2351,[15128.3,9758.54,0],[[2316,2]]],
+[2352,[10929,10957.2,0],[[2319,2],[2382,2],[2383,2]]], [2353,[9929.76,11104.9,-1.90735e-006],[[2320,2]]], [2354,[9765.96,11267.7,1.27157e-006],[[2321,2],[2384,2],[2385,2]]], [2355,[10130.1,10826.5,0],[[2322,2]]], [2356,[7459.38,12920.1,0],[[2323,2],[2386,2]]], [2357,[8607.74,12376,0],[[2324,2],[2387,2],[2388,2]]],
+[2358,[8687.57,12621.3,3.8147e-006],[[2324,2],[2389,2]]], [2359,[8091.55,13878.2,0],[[2325,2],[2390,2]]], [2360,[8638.74,14127.8,-3.8147e-006],[[2326,2],[2391,2]]], [2361,[8697.45,15297.3,0],[[2328,2],[2392,2]]], [2362,[8486.15,16233.5,1.90735e-006],[[2331,2],[2393,2]]], [2363,[8518.28,16543.4,0],[[2333,2],[2394,2]]],
+[2364,[9557.54,17321,0],[[2334,2],[2395,2]]], [2365,[9471.33,17656.6,0],[[2335,2],[2396,2]]], [2366,[11540.7,9832.69,3.8147e-006],[[2336,2],[2397,2]]], [2367,[10801.2,10006.9,0],[[2337,2],[2398,2]]], [2368,[13510.5,9123.07,0],[[2338,2],[2399,2]]], [2369,[13519,8919.99,3.17891e-007],[[2338,2],[2400,2],[2401,2]]],
+[2370,[13400.5,8668.6,3.17891e-007],[[2340,2],[2402,2],[2403,2]]], [2371,[13406.5,8844.87,0],[[2342,2]]], [2372,[13389.3,8823.41,0],[[2342,2],[2372,2],[2404,2]]], [2373,[13638.4,9306.79,0],[[2343,2]]], [2374,[13539.2,9388.37,0],[[2343,2],[2405,2]]], [2375,[12371.2,9913.47,0],[[2344,2],[2406,2]]],
+[2376,[12126.8,9114.3,0],[[2346,2],[2407,2]]], [2377,[12427.5,8759.35,-3.17891e-007],[[2347,2],[2408,2],[2409,2]]], [2378,[12700,8698.16,1.58946e-007],[[2347,2],[2410,2],[2411,2]]], [2379,[14119.4,9234.4,0],[[2348,2],[2412,2]]], [2380,[15096.6,9136.34,0],[[2350,2],[2413,2]]], [2381,[14984.6,9036.68,-2.38419e-007],[[2350,2],[2414,2],[2415,2],[2416,2]]],
+[2382,[10863.9,10946.5,-1.27157e-006],[[2352,2],[2417,2],[2383,2]]], [2383,[10866.9,10994.8,0],[[2352,2],[2382,2],[2418,2],[2419,2]]], [2384,[9756.25,11408.7,-1.90735e-006],[[2354,2],[2420,2]]], [2385,[9707.69,11203.7,0],[[2354,2],[2421,2]]], [2386,[7349.29,12904.4,0],[[2356,2],[2422,2],[2423,2]]], [2387,[8640.97,12326.9,0],[[2357,2],[2388,2],[2424,2]]],
+[2388,[8572.76,12296.4,3.8147e-006],[[2357,2],[2387,2],[2425,2]]], [2389,[8727.29,12677.4,-3.8147e-006],[[2358,2]]], [2390,[8080.27,13909.2,0],[[2359,2],[2426,2],[2427,2]]], [2391,[8594.02,14276.3,-1.27157e-006],[[2360,2],[2428,2],[2429,2]]], [2392,[8691.92,15446.4,0],[[2361,2],[2430,2],[2431,2]]], [2393,[8425.66,16232.1,-6.35783e-007],[[2362,2],[2432,2],[2433,2]]],
+[2394,[8496.99,16676.5,0],[[2363,2],[2434,2]]], [2395,[9572.69,17243.3,0],[[2395,2]]], [2396,[9489.43,17712.5,-1.27157e-006],[[2365,2],[2435,2],[2436,2]]], [2397,[11503.5,9803.52,0],[[2366,2],[2437,2]]], [2398,[10744.2,9924.9,3.8147e-007],[[2367,2],[2438,2],[2398,2],[2439,2],[2440,2]]], [2399,[13573.6,9146.43,0],[[2368,2]]],
+[2400,[13593.3,8883.71,0],[[2369,2],[2441,2],[2401,2],[2442,2]]], [2401,[13536.9,8877.31,0],[[2369,2],[2400,2],[2443,2],[2404,2]]], [2402,[13544.9,8719.04,0],[[2370,2],[2444,2]]], [2403,[13447.5,8495.62,0],[[2370,2],[2445,2]]], [2404,[13437.9,8813.22,0],[[2372,2],[2401,2],[2404,2]]], [2405,[13526.8,9471.68,0],[[2374,2]]],
+[2406,[12374.2,9999.81,0],[[2375,2],[2446,2]]], [2407,[12121.8,9074.26,-9.53674e-007],[[2376,2],[2447,2],[2448,2]]], [2408,[12284,8819.6,0],[[2377,2],[2449,2]]], [2409,[12438.8,8584.64,0],[[2377,2],[2450,2]]], [2410,[12739.5,8731.54,0],[[2378,2]]], [2411,[12805.6,8573.31,0],[[2378,2],[2451,2]]],
+[2412,[14213.4,9254.69,0],[[2379,2],[2452,2]]], [2413,[15160.6,9196.74,-9.53674e-007],[[2380,2],[2453,2]]], [2414,[15053.3,9041.02,0],[[2381,2]]], [2415,[14890.1,9111.45,-4.76837e-007],[[2381,2]]], [2416,[14885,8891.12,0],[[2381,2],[2454,2]]], [2417,[10793.6,10809.9,-1.27157e-006],[[2382,2],[2455,2],[2456,2]]],
+[2418,[10822.1,11004.2,0],[[2383,2],[2457,2],[2458,2]]], [2419,[10839.2,11180.3,-3.8147e-006],[[2383,2],[2459,2]]], [2420,[9772.36,11551,0],[[2384,2],[2460,2]]], [2421,[9615.87,11136.3,-1.90735e-006],[[2385,2],[2421,2]]], [2422,[7168.93,12893.8,0],[[2386,2],[2461,2],[2462,2],[2463,2],[2423,2]]], [2423,[7238.18,12803,-9.53674e-007],[[2386,2],[2422,2],[2464,2],[2465,2]]],
+[2424,[8754.18,12358.5,0],[[2387,2],[2466,2],[2424,2]]], [2425,[8455.03,12176.3,3.8147e-006],[[2388,2],[2467,2]]], [2426,[8086.55,14065.5,3.8147e-006],[[2390,2],[2468,2]]], [2427,[7958.33,13906.5,0],[[2390,2],[2427,2]]], [2428,[8610.02,14433,3.8147e-006],[[2391,2],[2469,2]]], [2429,[8467.79,14339.3,3.8147e-006],[[2391,2],[2470,2]]],
+[2430,[8765.62,15630.6,0],[[2392,2],[2471,2]]], [2431,[8627.37,15600.5,0],[[2392,2],[2472,2]]], [2432,[8309.46,16253.4,0],[[2393,2],[2473,2],[2474,2]]], [2433,[8359.85,16191.9,0],[[2393,2],[2475,2]]], [2434,[8466.81,16808.5,0],[[2394,2],[2434,2]]], [2435,[9556.66,17681.5,0],[[2396,2]]],
+[2436,[9515.48,17847.3,0],[[2396,2],[2476,2]]], [2437,[11492,9795.3,0],[[2397,2]]], [2438,[10629.8,9899.71,6.35783e-007],[[2398,2],[2477,2],[2478,2]]], [2439,[10755.4,9897.85,0],[[2398,2]]], [2440,[10877.6,9911.82,0],[[2398,2],[2479,2]]], [2441,[13571.5,8858.07,0],[[2400,2],[2480,2],[2444,2]]],
+[2442,[13694.5,8779.78,0],[[2400,2],[2481,2],[2482,2]]], [2443,[13564,8856.77,0],[[2401,2]]], [2444,[13577.1,8774.1,-2.38419e-007],[[2402,2],[2441,2],[2480,2]]], [2445,[13468.3,8452.67,2.38419e-007],[[2403,2],[2483,2],[2484,2],[2485,2]]], [2446,[12361.2,10017.9,0],[[2406,2]]], [2447,[12051.6,9201.42,0],[[2407,2],[2486,2]]],
+[2448,[12123.2,8936.06,0],[[2407,2],[2449,2]]], [2449,[12216.4,8857.79,-6.35783e-007],[[2408,2],[2448,2],[2487,2]]], [2450,[12464.8,8468.23,0],[[2409,2],[2488,2]]], [2451,[12915.9,8482.92,0],[[2411,2],[2489,2]]], [2452,[14280.8,9142.51,0],[[2412,2],[2490,2]]], [2453,[15192.1,9197.93,-4.76837e-007],[[2413,2],[2491,2],[2492,2]]],
+[2454,[14898.5,8828.46,0],[[2416,2],[2493,2],[2494,2]]], [2455,[10647.1,10779.7,3.8147e-006],[[2417,2],[2495,2]]], [2456,[10748.1,10736.3,1.27157e-006],[[2417,2],[2496,2],[2497,2]]], [2457,[10727.5,11085.8,-3.8147e-006],[[2418,2]]], [2458,[10723.9,10962.9,0],[[2418,2],[2495,2],[2498,2],[2458,2]]], [2459,[10915.2,11220.6,0],[[2419,2],[2499,2]]],
+[2460,[9775.37,11684.8,0],[[2420,2],[2500,2]]], [2461,[6954.4,12904.7,0],[[2422,2],[2501,2]]], [2462,[7124,12958.2,0],[[2422,2],[2502,2],[2503,2]]], [2463,[7042.32,12835.6,0],[[2422,2],[2504,2]]], [2464,[7278.27,12767.5,-6.35783e-007],[[2423,2],[2505,2],[2506,2]]], [2465,[7135.52,12751,0],[[2423,2],[2465,2],[2507,2],[2508,2]]],
+[2466,[8796.5,12370.8,1.27157e-006],[[2424,2],[2466,2],[2509,2],[2510,2]]], [2467,[8510.77,12031.9,0],[[2425,2],[2511,2]]], [2468,[8043.02,14212.7,0],[[2426,2],[2512,2]]], [2469,[8617.81,14497.3,0],[[2428,2],[2513,2],[2514,2]]], [2470,[8451.74,14354,1.27157e-006],[[2429,2],[2515,2],[2516,2]]], [2471,[8810.8,15703.8,0],[[2430,2],[2471,2]]],
+[2472,[8583.21,15679.6,-1.27157e-006],[[2431,2],[2517,2],[2518,2]]], [2473,[8347.44,16201.4,0],[[2432,2]]], [2474,[8259.5,16266.9,0],[[2432,2],[2519,2],[2520,2]]], [2475,[8338.82,16026.3,0],[[2433,2],[2521,2]]], [2476,[9434.42,17958.4,0],[[2436,2],[2522,2]]], [2477,[10594,9997.12,0],[[2438,2],[2523,2],[2524,2],[2525,2]]],
+[2478,[10488.9,9830.03,0],[[2438,2],[2526,2]]], [2479,[10967.6,9866.76,1.90735e-006],[[2440,2],[2527,2],[2528,2]]], [2480,[13573.4,8819.32,-3.17891e-007],[[2441,2],[2444,2]]], [2481,[13687.6,8748,0],[[2442,2],[2481,2],[2529,2]]], [2482,[13806.8,8782.03,2.38419e-007],[[2442,2],[2530,2],[2531,2],[2532,2]]], [2483,[13520,8448.33,0],[[2445,2],[2533,2],[2534,2]]],
+[2484,[13384.1,8474.83,0],[[2445,2],[2535,2],[2536,2]]], [2485,[13530.7,8284.96,0],[[2445,2],[2537,2]]], [2486,[11970.3,9298.96,0],[[2447,2],[2538,2]]], [2487,[12064.5,8848.58,0],[[2449,2],[2539,2]]], [2488,[12483,8412.45,-3.17891e-007],[[2450,2],[2540,2],[2541,2]]], [2489,[12932.9,8466.33,-1.58946e-007],[[2451,2],[2542,2],[2543,2]]],
+[2490,[14390.9,9075.03,9.53674e-007],[[2452,2],[2544,2]]], [2491,[15263.2,9298.08,0],[[2453,2],[2545,2]]], [2492,[15261.5,9126.35,0],[[2453,2],[2546,2]]], [2493,[14866.6,8808.95,1.58946e-007],[[2454,2],[2493,2],[2547,2]]], [2494,[14998.6,8700.31,2.38419e-007],[[2454,2],[2548,2]]], [2495,[10625.9,10788.5,9.53674e-007],[[2455,2],[2458,2],[2549,2],[2550,2]]],
+[2496,[10719.3,10735.5,3.8147e-006],[[2456,2]]], [2497,[10742.5,10563.7,0],[[2456,2],[2551,2]]], [2498,[10737.8,10975.1,0],[[2458,2]]], [2499,[11039.2,11245.8,-3.8147e-006],[[2459,2],[2552,2]]], [2500,[9733.06,11743.2,0],[[2460,2],[2553,2],[2554,2]]], [2501,[6770.46,12907.3,0],[[2461,2],[2555,2],[2556,2]]],
+[2502,[7093.93,13044.1,-4.76837e-007],[[2462,2],[2503,2],[2557,2],[2558,2]]], [2503,[7091.28,12994.1,-1.90735e-006],[[2462,2],[2502,2],[2559,2]]], [2504,[7024.71,12847.1,0],[[2463,2]]], [2505,[7410.84,12667,0],[[2464,2],[2560,2]]], [2506,[7320.22,12786.5,0],[[2464,2]]], [2507,[7132.5,12723,0],[[2465,2]]],
+[2508,[6995.62,12678.6,9.53674e-007],[[2465,2],[2561,2]]], [2509,[8848.89,12272.4,0],[[2466,2],[2562,2],[2563,2]]], [2510,[8874.03,12519.1,0],[[2466,2],[2564,2]]], [2511,[8555.62,11961.4,0],[[2467,2],[2565,2],[2566,2]]], [2512,[8036.71,14331.1,-9.53674e-007],[[2468,2],[2567,2],[2568,2],[2569,2]]], [2513,[8562.83,14652.1,0],[[2469,2],[2570,2]]],
+[2514,[8645.54,14524.1,0],[[2469,2]]], [2515,[8509.72,14395.6,0],[[2470,2]]], [2516,[8294.75,14393.1,0],[[2470,2],[2571,2],[2572,2],[2567,2]]], [2517,[8600.07,15717.9,3.8147e-006],[[2472,2]]], [2518,[8450.17,15825.2,1.90735e-006],[[2472,2],[2521,2]]], [2519,[8208.35,16411.7,0],[[2474,2],[2573,2]]],
+[2520,[8111.27,16237,0],[[2474,2],[2574,2]]], [2521,[8379.85,15910.9,0],[[2475,2],[2518,2]]], [2522,[9350.31,17871.8,0],[[2476,2],[2575,2]]], [2523,[10620.5,10133.6,-6.35783e-007],[[2477,2],[2576,2],[2524,2]]], [2524,[10597.2,10144.8,0],[[2477,2],[2523,2],[2524,2],[2577,2]]], [2525,[10480.5,10063.1,-9.53674e-007],[[2477,2],[2578,2]]],
+[2526,[10366.5,9755.45,-6.35783e-007],[[2478,2],[2579,2],[2580,2]]], [2527,[11011.2,9797.96,0],[[2527,2],[2581,2],[2582,2],[2479,2]]], [2528,[10941.5,9824.36,0],[[2479,2]]], [2529,[13771.1,8630.92,0],[[2481,2],[2583,2]]], [2530,[13887.6,8630.34,-9.53674e-007],[[2482,2],[2584,2]]], [2531,[13823.2,8899.46,-4.76837e-007],[[2482,2]]],
+[2532,[13890.6,8818.7,0],[[2482,2]]], [2533,[13678.2,8473.23,-9.53674e-007],[[2483,2],[2585,2]]], [2534,[13601.1,8271.76,0],[[2483,2],[2586,2]]], [2535,[13252.4,8506.76,0],[[2484,2],[2542,2]]], [2536,[13282.8,8642.92,0],[[2484,2],[2587,2]]], [2537,[13571.3,8147.13,-9.53674e-007],[[2485,2],[2588,2]]],
+[2538,[11922.6,9331.66,0],[[2486,2],[2538,2],[2589,2]]], [2539,[12050.8,8844.55,0],[[2487,2],[2590,2],[2591,2]]], [2540,[12346.2,8328.52,0],[[2488,2],[2592,2]]], [2541,[12507.2,8245.11,0],[[2488,2],[2593,2]]], [2542,[13090,8519.59,0],[[2489,2],[2535,2],[2594,2]]], [2543,[12966.9,8311.52,0],[[2489,2],[2543,2]]],
+[2544,[14418,9059.67,-3.17891e-007],[[2490,2],[2544,2],[2595,2]]], [2545,[15341,9369.56,-4.76837e-007],[[2491,2],[2596,2]]], [2546,[15316.8,9095.78,1.58946e-007],[[2492,2],[2597,2],[2598,2]]], [2547,[14804,8816.29,-9.53674e-007],[[2493,2]]], [2548,[15065.8,8563.93,4.76837e-007],[[2494,2],[2599,2]]], [2549,[10558.4,10613.1,3.8147e-006],[[2495,2],[2600,2]]],
+[2550,[10512.3,10761.6,-3.8147e-006],[[2495,2]]], [2551,[10762.1,10415.9,0],[[2497,2],[2601,2]]], [2552,[11090.1,11205.7,0],[[2499,2]]], [2553,[9594.88,11780.2,0],[[2500,2],[2602,2]]], [2554,[9836.53,11817.7,0],[[2500,2],[2603,2]]], [2555,[6601.79,12909.8,0],[[2501,2],[2604,2],[2605,2]]],
+[2556,[6681.18,12846.4,4.76837e-007],[[3189,2],[3293,2],[2556,2],[2605,2],[2501,2],[3294,2]]], [2557,[7027.8,13057.8,-3.17891e-007],[[2502,2],[2606,2],[2557,2],[2607,2]]], [2558,[7116.72,13238.8,-4.76837e-007],[[2502,2],[2558,2],[2608,2],[2609,2]]], [2559,[6982.19,12955.7,-3.17891e-007],[[2503,2],[2559,2],[2610,2]]], [2560,[7526.98,12565.7,0],[[2505,2],[2611,2]]], [2561,[6926.92,12672.6,0],[[2508,2],[2612,2]]],
+[2562,[8754.04,12198.9,0],[[2509,2],[2562,2],[2613,2]]], [2563,[8976.6,12323.7,0],[[2509,2],[2614,2]]], [2564,[8888.2,12636,-1.27157e-006],[[2510,2],[2615,2],[2616,2]]], [2565,[8446.49,11894.8,0],[[2511,2],[2617,2]]], [2566,[8650.68,11806,0],[[2511,2],[2618,2]]], [2567,[8124.76,14351.8,-1.27157e-006],[[2512,2],[2516,2],[2571,2]]],
+[2568,[7880.75,14398.2,0],[[2512,2],[2619,2]]], [2569,[8064.85,14494,0],[[2512,2],[2620,2]]], [2570,[8512.61,14778.3,1.27157e-006],[[2513,2],[2621,2],[2622,2]]], [2571,[8291.81,14355.7,0],[[2516,2],[2567,2],[2623,2]]], [2572,[8365.78,14465.7,0],[[2516,2]]], [2573,[8203.17,16472.9,0],[[2519,2],[2624,2],[2625,2]]],
+[2574,[7996.77,16228,0],[[2520,2],[2626,2]]], [2575,[9296.93,17768,0],[[2522,2],[2627,2]]], [2576,[10640.7,10278,0],[[2523,2],[2628,2]]], [2577,[10549.2,10168.9,0],[[2524,2]]], [2578,[10398.7,10094.6,0],[[2525,2],[2578,2]]], [2579,[10270.2,9721.71,-4.76837e-007],[[2526,2],[2629,2],[2630,2],[2631,2]]],
+[2580,[10471.3,9743.77,-6.35783e-007],[[2526,2],[2632,2],[2633,2]]], [2581,[11130.7,9769.07,-1.90735e-006],[[2527,2],[2634,2]]], [2582,[10999.6,9815.51,6.35783e-007],[[2527,2]]], [2583,[13862.5,8512.44,0],[[2529,2],[2635,2],[2584,2]]], [2584,[13921.3,8535.43,3.17891e-007],[[2530,2],[2583,2],[2584,2],[2635,2]]], [2585,[13818.8,8476.79,0],[[2533,2],[2635,2]]],
+[2586,[13638.8,8250.09,0],[[2534,2]]], [2587,[13242.4,8797.32,0],[[2536,2],[2636,2]]], [2588,[13596.6,8054.56,0],[[2537,2],[2637,2],[2638,2]]], [2589,[11786.4,9389.24,0],[[2589,2],[2639,2]]], [2590,[11876.4,8793.31,6.35783e-007],[[2539,2],[2640,2],[2641,2]]], [2591,[12053.6,8736.61,3.8147e-006],[[2539,2],[2642,2]]],
+[2592,[12306.7,8251.78,-3.17891e-007],[[2540,2],[2643,2],[2644,2]]], [2593,[12475.3,8190.63,0],[[2541,2],[2643,2],[2645,2]]], [2594,[13064.7,8657.8,4.76837e-007],[[2542,2],[2646,2]]], [2595,[14431.5,8970.96,6.35783e-007],[[2544,2],[2647,2],[2648,2]]], [2596,[15423.8,9410.84,0],[[2545,2],[2649,2],[2650,2]]], [2597,[15344.3,9055.9,0],[[2546,2],[2651,2],[2652,2]]],
+[2598,[15396.8,9143.92,0],[[2546,2],[2598,2]]], [2599,[15099.8,8490.39,-7.94729e-008],[[2548,2],[2653,2],[2654,2]]], [2600,[10523.7,10487.6,0],[[2549,2],[2655,2]]], [2601,[10821.9,10317.2,0],[[2551,2],[2656,2]]], [2602,[9492.85,11812.9,0],[[2553,2],[2657,2],[2658,2]]], [2603,[9934.31,11848.1,0],[[2554,2]]],
+[2604,[6456.86,12907.8,-1.90735e-006],[[2555,2],[2659,2]]], [2605,[6692.08,12905.8,-9.53674e-007],[[2556,2],[2555,2]]], [2606,[7041.72,13049.6,-9.53674e-007],[[2557,2]]], [2607,[6989.84,13109,-9.53674e-007],[[2557,2]]], [2608,[7106.32,13340.5,0],[[2558,2],[2660,2],[2661,2]]], [2609,[6993.78,13309.3,0],[[2558,2],[2662,2]]],
+[2610,[6929.79,13011.7,0],[[2559,2]]], [2611,[7586.95,12446.3,1.90735e-006],[[2560,2],[2663,2]]], [2612,[6913.23,12706.5,-9.53674e-007],[[2561,2]]], [2613,[8819.91,12082.5,0],[[2562,2],[2664,2]]], [2614,[9091.6,12391.5,0],[[2563,2],[2665,2]]], [2615,[8997.93,12646.4,0],[[2564,2],[2665,2]]],
+[2616,[8852.52,12768.4,0],[[2564,2],[2666,2]]], [2617,[8410.69,11904.6,0],[[2565,2],[2667,2],[2668,2]]], [2618,[8703.88,11733.4,0],[[2566,2],[2669,2]]], [2619,[7773.13,14444.5,0],[[2568,2],[2670,2]]], [2620,[8084.26,14590.8,0],[[2569,2],[2671,2],[2672,2],[2673,2]]], [2621,[8536.42,14906.1,0],[[2570,2],[2674,2]]],
+[2622,[8414.29,14725.9,-3.8147e-006],[[2570,2],[2675,2]]], [2623,[8371.69,14303.3,-3.8147e-006],[[2571,2],[2676,2]]], [2624,[8150.21,16551.3,0],[[2573,2],[2677,2]]], [2625,[8313.94,16590.9,0],[[2573,2],[2678,2]]], [2626,[7904.71,16198.2,-3.8147e-006],[[2574,2],[2679,2]]], [2627,[9198.45,17682.5,3.8147e-006],[[2575,2],[2680,2]]],
+[2628,[10514.7,10388.9,-1.90735e-006],[[2576,2],[2655,2]]], [2629,[10268.2,9843.13,0],[[2579,2]]], [2630,[10282.4,9580.5,9.53674e-007],[[2579,2],[2681,2]]], [2631,[10099.9,9710.64,0],[[2579,2],[2682,2]]], [2632,[10565.8,9740.38,0],[[2580,2],[2683,2],[2633,2]]], [2633,[10468.2,9717,0],[[2580,2],[2632,2],[2684,2]]],
+[2634,[11248.4,9718.94,0],[[2581,2],[2685,2]]], [2635,[13921.1,8471.97,-2.38419e-007],[[2583,2],[2584,2],[2585,2],[2686,2]]], [2636,[13169.3,8933.52,-9.53674e-007],[[2587,2],[2687,2]]], [2637,[13513.8,8069.53,1.58946e-007],[[2588,2],[2688,2],[2637,2]]], [2638,[13644,7923.03,-1.58946e-007],[[2588,2],[2689,2],[2690,2]]], [2639,[11674.1,9440.83,0],[[2589,2]]],
+[2640,[11838.2,8872.72,-1.90735e-006],[[2590,2],[2691,2]]], [2641,[11776.4,8731.3,6.35783e-007],[[2590,2],[2692,2],[2693,2]]], [2642,[12092.1,8710.44,0],[[2591,2],[2694,2],[2695,2]]], [2643,[12415.7,8186.29,-9.53674e-007],[[2592,2],[2593,2]]], [2644,[12261.4,8099.79,9.53674e-007],[[2592,2],[2696,2]]], [2645,[12523.5,8015.63,0],[[2593,2],[2697,2],[2698,2]]],
+[2646,[12986.9,8731.18,0],[[2594,2]]], [2647,[14450.6,8804.55,0],[[2595,2],[2699,2]]], [2648,[14527.9,9041.61,0],[[2595,2],[2700,2]]], [2649,[15568.1,9361.23,0],[[2596,2],[2701,2]]], [2650,[15498.8,9542.58,0],[[2596,2],[2702,2],[2703,2]]], [2651,[15363.9,8982.97,1.19209e-007],[[2597,2],[2704,2]]],
+[2652,[15377.1,9018.46,2.38419e-007],[[2597,2]]], [2653,[15211.7,8530.58,0],[[2599,2],[2705,2],[2706,2]]], [2654,[15155.1,8355.87,0],[[2599,2],[2707,2],[2708,2],[2654,2],[2709,2]]], [2655,[10440.8,10441.3,-6.35783e-007],[[2600,2],[2628,2],[2710,2]]], [2656,[10870.7,10197.6,0],[[2656,2]]], [2657,[9540.91,11977.6,-1.90735e-006],[[2602,2],[2711,2],[2712,2],[2713,2]]],
+[2658,[9387.42,11681.2,0],[[2602,2],[2714,2]]], [2659,[6311.74,12901.2,0],[[2604,2],[2715,2]]], [2660,[7183.52,13333.5,1.90735e-006],[[2608,2],[2716,2]]], [2661,[7092.22,13525.5,0],[[2608,2],[2717,2],[2718,2]]], [2662,[6891.07,13385.9,0],[[2609,2],[2719,2]]], [2663,[7628.53,12374.9,6.35783e-007],[[2611,2],[2720,2],[2721,2]]],
+[2664,[8855.87,11993.7,0],[[2613,2],[2722,2]]], [2665,[9116.95,12524.8,-9.53674e-007],[[2614,2],[2615,2],[2723,2],[2724,2]]], [2666,[8833.77,12854.2,0],[[2616,2],[2725,2],[2726,2]]], [2667,[8301.83,12008.1,-1.90735e-006],[[2617,2],[2727,2]]], [2668,[8277.14,11878.7,0],[[2617,2],[2728,2]]], [2669,[8712.72,11638.1,0],[[2618,2],[2729,2],[2730,2],[2731,2]]],
+[2670,[7734.3,14529.8,1.27157e-006],[[2619,2],[2732,2],[2733,2]]], [2671,[7938.65,14547.9,0],[[2620,2],[2733,2]]], [2672,[8227.82,14627.9,0],[[2620,2],[2675,2]]], [2673,[8031.93,14694.4,0],[[2620,2],[2734,2]]], [2674,[8612.27,14939.6,0],[[2621,2]]], [2675,[8337.74,14658.8,0],[[2622,2],[2672,2]]],
+[2676,[8444.16,14252.6,0],[[2623,2],[2735,2],[2676,2]]], [2677,[8099.75,16572.7,0],[[2624,2],[2736,2],[2677,2]]], [2678,[8285.6,16687.7,0],[[2625,2],[2737,2]]], [2679,[7795.09,16186.5,0],[[2626,2],[2738,2]]], [2680,[9138.71,17553.9,0],[[2627,2],[2739,2]]], [2681,[10295.7,9561.36,9.53674e-007],[[2630,2]]],
+[2682,[10013.2,9741.8,-6.35783e-007],[[2631,2],[2740,2],[2741,2]]], [2683,[10712,9678.11,0],[[2632,2],[2742,2]]], [2684,[10435.1,9670.97,0],[[2633,2],[2743,2],[2744,2]]], [2685,[11341.5,9649.6,0],[[2634,2],[2745,2]]], [2686,[14047.8,8384.98,9.53674e-007],[[2635,2],[2746,2]]], [2687,[13070.8,9015.96,0],[[2636,2],[2747,2]]],
+[2688,[13378.6,7959.56,0],[[2637,2],[2748,2]]], [2689,[13725.9,7926.17,0],[[2638,2],[2749,2],[2750,2]]], [2690,[13597,7768.17,4.76837e-007],[[2638,2],[2751,2]]], [2691,[11828.5,8894.9,-6.35783e-007],[[2640,2],[2752,2],[2753,2]]], [2692,[11686.4,8613.2,0],[[2641,2],[2754,2]]], [2693,[11712.1,8837.77,0],[[2641,2],[2755,2],[2753,2]]],
+[2694,[12178.7,8718.17,0],[[2642,2]]], [2695,[12122.5,8751.6,0],[[2642,2]]], [2696,[12223.5,8079.25,3.17891e-007],[[2644,2],[2696,2],[2756,2]]], [2697,[12587.9,8035.01,0],[[2645,2]]], [2698,[12524.8,7839.79,4.76837e-007],[[2645,2],[2757,2]]], [2699,[14402.3,8712.83,-3.17891e-007],[[2647,2],[2758,2],[2759,2]]],
+[2700,[14556.4,9074.43,0],[[2648,2]]], [2701,[15665.4,9286.97,0],[[2649,2],[2760,2],[2761,2]]], [2702,[15597.8,9562.92,-9.53674e-007],[[2650,2],[2762,2]]], [2703,[15382.5,9703.67,0],[[2650,2],[2763,2],[2764,2],[2765,2]]], [2704,[15421.7,8978.2,0],[[2651,2],[2766,2],[2704,2]]], [2705,[15249,8491.66,-7.94729e-008],[[2653,2],[2767,2],[2768,2]]],
+[2706,[15348.4,8576.56,0],[[2653,2],[2769,2]]], [2707,[15154.9,8285.66,-1.58946e-007],[[2654,2],[2770,2],[2771,2]]], [2708,[15160.7,8361.21,0],[[2654,2]]], [2709,[15203.7,8339.66,0],[[2654,2]]], [2710,[10240,10547.6,0],[[2655,2],[2772,2],[2773,2]]], [2711,[9678.6,12058.9,0],[[2657,2],[2774,2]]],
+[2712,[9408.5,11978.6,0],[[2657,2],[2775,2]]], [2713,[9500.19,12045.9,0],[[2657,2],[2776,2],[2777,2]]], [2714,[9321.86,11573.6,0],[[2658,2],[2778,2]]], [2715,[6146.11,12885.8,0],[[2659,2],[2779,2],[2780,2],[2781,2]]], [2716,[7208.85,13319.3,0],[[2660,2],[2716,2],[2782,2]]], [2717,[7210.66,13548.1,0],[[2661,2],[2783,2]]],
+[2718,[7079.48,13630.2,0],[[2661,2],[2784,2],[2785,2]]], [2719,[6870.21,13405.6,0],[[2662,2]]], [2720,[7714.18,12467.9,0],[[2663,2],[2786,2]]], [2721,[7618.2,12289.7,-4.76837e-007],[[2663,2],[2787,2],[2788,2],[2789,2]]], [2722,[8935.75,11927.5,0],[[2664,2],[2790,2]]], [2723,[9238.34,12377,0],[[2665,2],[2791,2]]],
+[2724,[9144.11,12669,-3.8147e-006],[[2665,2]]], [2725,[8805.29,12997.5,0],[[2666,2],[2792,2]]], [2726,[8969.44,12920.5,0],[[2666,2]]], [2727,[8256.68,12115.7,1.90735e-006],[[2667,2],[2793,2]]], [2728,[8155.51,11829.9,0],[[2668,2],[2794,2]]], [2729,[8785.23,11488.1,1.90735e-006],[[2669,2],[2795,2]]],
+[2730,[8656.47,11644.8,-4.76837e-007],[[2669,2],[2730,2],[2796,2],[2797,2]]], [2731,[8690.39,11589,1.90735e-006],[[2669,2]]], [2732,[7679.67,14636.1,0],[[2670,2],[2798,2],[2799,2],[2800,2]]], [2733,[7877.19,14531.7,0],[[2670,2],[2671,2]]], [2734,[7937.91,14768,0],[[2673,2],[2801,2]]], [2735,[8423.9,14265.3,0],[[2676,2]]],
+[2736,[8081.37,16584.6,0],[[2677,2]]], [2737,[8225.11,16809,0],[[2678,2],[2802,2]]], [2738,[7783.88,16161.3,1.27157e-006],[[2679,2],[2803,2],[2804,2]]], [2739,[9125.53,17458.9,1.27157e-006],[[2680,2],[2805,2],[2806,2]]], [2740,[10092.6,9849.58,0],[[2682,2],[2807,2]]], [2741,[9882.73,9636.23,-6.35783e-007],[[2682,2],[2808,2],[2809,2]]],
+[2742,[10825.6,9620.84,0],[[2683,2],[2810,2]]], [2743,[10492.7,9631.48,0],[[2684,2]]], [2744,[10373.2,9563.63,0],[[2684,2],[2811,2]]], [2745,[11397.1,9540.77,0],[[2685,2],[2812,2]]], [2746,[14074.5,8359.16,3.17891e-007],[[2686,2],[2813,2],[2814,2]]], [2747,[12961.3,9094.2,0],[[2687,2],[2815,2]]],
+[2748,[13293.7,7926.99,-1.49012e-007],[[2688,2],[2816,2],[2817,2],[2818,2]]], [2749,[13800.6,7970.53,-3.17891e-007],[[2689,2],[2819,2],[2820,2]]], [2750,[13790.5,7878.28,-1.58946e-007],[[2689,2],[2821,2],[2822,2]]], [2751,[13545.4,7715.85,0],[[2690,2],[2823,2],[2824,2],[2825,2]]], [2752,[11862.9,8938.88,0],[[2691,2]]], [2753,[11753.8,8956.27,-6.35783e-007],[[2691,2],[2693,2],[2755,2],[2826,2]]],
+[2754,[11607.3,8527.93,0],[[2692,2],[2827,2],[2828,2]]], [2755,[11713.4,8952.32,0],[[2693,2],[2753,2],[2829,2]]], [2756,[12184.5,8010.72,-1.58946e-007],[[2696,2],[2830,2],[2831,2]]], [2757,[12485.7,7773.61,0],[[2698,2],[2832,2],[2833,2],[2834,2]]], [2758,[14516.6,8581.04,0],[[2699,2],[2835,2]]], [2759,[14295.7,8772.08,0],[[2699,2],[2836,2]]],
+[2760,[15756.5,9308.94,-9.53674e-008],[[2701,2],[2837,2],[2838,2],[2839,2],[2840,2]]], [2761,[15681.9,9235.33,0],[[2701,2],[2841,2],[2761,2],[2842,2]]], [2762,[15683.1,9519.87,0],[[2702,2],[2762,2]]], [2763,[15425.1,9765.54,0],[[2703,2]]], [2764,[15283.5,9671.35,0],[[2703,2],[2843,2]]], [2765,[15329.6,9756.15,1.58946e-007],[[2703,2],[2765,2],[2843,2]]],
+[2766,[15471.9,8935.12,0],[[2704,2]]], [2767,[15352,8424.5,0],[[2705,2],[2844,2]]], [2768,[15432.5,8489.84,9.53674e-007],[[2705,2],[2845,2]]], [2769,[15497.2,8607.37,0],[[2706,2],[2846,2]]], [2770,[15116.8,8195.14,0],[[2707,2],[2847,2],[2848,2]]], [2771,[15199.3,8287.02,0],[[2707,2]]],
+[2772,[10278.7,10666.6,0],[[2710,2],[2772,2]]], [2773,[10123.6,10620.4,0],[[2710,2],[2849,2],[2773,2]]], [2774,[9692.92,12075.2,-9.53674e-007],[[2711,2],[2774,2],[2850,2],[2851,2]]], [2775,[9306.61,12011.2,0],[[2712,2],[2852,2]]], [2776,[9546.2,12182.3,0],[[2713,2],[2853,2]]], [2777,[9384.38,12126.9,0],[[2713,2],[2791,2]]],
+[2778,[9362.97,11449.1,0],[[2714,2],[2854,2]]], [2779,[5965.45,12845.1,0],[[2715,2],[2855,2]]], [2780,[6116.57,12792.2,0],[[2715,2],[2856,2],[2857,2]]], [2781,[6179.28,13005,0],[[2715,2],[2858,2],[2859,2]]], [2782,[7399.3,13330,0],[[2716,2],[2860,2]]], [2783,[7256.5,13593.2,-6.35783e-007],[[2717,2],[2861,2],[2783,2],[2862,2]]],
+[2784,[7091.05,13804.6,0],[[2718,2],[2863,2]]], [2785,[6983.27,13653.1,0],[[2718,2],[2864,2],[2865,2]]], [2786,[7758.67,12468.8,0],[[2720,2]]], [2787,[7466.56,12359.5,0],[[2721,2],[2787,2]]], [2788,[7658.41,12240,-6.35783e-007],[[2721,2],[2866,2],[2867,2]]], [2789,[7546.94,12137.2,0],[[2721,2],[2868,2],[2869,2]]],
+[2790,[9007.37,11892,-1.90735e-006],[[2722,2]]], [2791,[9311.91,12225,0],[[2723,2],[2777,2]]], [2792,[8839.12,13143.2,0],[[2725,2],[2792,2]]], [2793,[8222.85,12211.6,0],[[2727,2]]], [2794,[8023.83,11819.5,0],[[2728,2],[2870,2]]], [2795,[8816.52,11382.9,0],[[2729,2],[2871,2]]],
+[2796,[8618.63,11622.7,0],[[2730,2]]], [2797,[8599.79,11690.2,-1.90735e-006],[[2730,2]]], [2798,[7802.18,14754.7,0],[[2732,2],[2801,2]]], [2799,[7602.88,14795.2,0],[[2732,2],[2872,2]]], [2800,[7530.23,14564.5,-3.8147e-006],[[2732,2],[2873,2]]], [2801,[7879.2,14839.2,9.53674e-007],[[2734,2],[2798,2],[2874,2],[2875,2]]],
+[2802,[8095.37,16855.5,0],[[2737,2],[2876,2]]], [2803,[7810.47,16119.5,0],[[2738,2]]], [2804,[7635.05,16078.3,0],[[2738,2],[2877,2]]], [2805,[9164,17314.8,0],[[2739,2],[2878,2]]], [2806,[9038.86,17367.6,0],[[2739,2],[2879,2]]], [2807,[10069.8,9986.14,0],[[2740,2],[2880,2]]],
+[2808,[9901.54,9471.26,0],[[2741,2],[2881,2]]], [2809,[9770.8,9651.72,0],[[2741,2],[2882,2],[2883,2]]], [2810,[10940.7,9575.1,0],[[2742,2],[2884,2]]], [2811,[10360.6,9518.77,-1.90735e-006],[[2744,2]]], [2812,[11469.4,9477.77,0],[[2745,2]]], [2813,[14165.9,8327.96,6.35783e-007],[[2746,2],[2885,2],[2886,2]]],
+[2814,[14122.9,8200.5,0],[[2746,2],[2887,2]]], [2815,[12835,9140.76,0],[[2747,2],[2888,2]]], [2816,[13347.8,7856.08,0],[[2748,2],[2889,2]]], [2817,[13280.4,8077.29,0],[[2748,2],[2890,2],[2817,2]]], [2818,[13154.9,7928.92,0],[[2818,2]]], [2819,[13967.9,8033.93,0],[[2749,2],[2891,2],[2887,2]]],
+[2820,[13828.5,8080.95,0],[[2749,2]]], [2821,[13920.2,7802.87,0],[[2750,2],[2892,2]]], [2822,[13754.4,7789.1,0],[[2750,2],[2893,2]]], [2823,[13467,7557.25,0],[[2751,2],[2894,2]]], [2824,[13474.1,7755.53,-4.76837e-007],[[2751,2],[2825,2]]], [2825,[13483.6,7756.48,0],[[2824,2],[2751,2]]],
+[2826,[11756,9091.04,0],[[2753,2],[2826,2]]], [2827,[11469.9,8589.72,0],[[2754,2],[2827,2]]], [2828,[11510.7,8447.07,-6.35783e-007],[[2754,2],[2895,2],[2896,2]]], [2829,[11626.5,9107.41,0],[[2755,2],[2897,2]]], [2830,[12304.2,7907.43,0],[[2756,2],[2832,2]]], [2831,[12085.5,8017.56,0],[[2756,2],[2898,2],[2899,2]]],
+[2832,[12346,7817.6,0],[[2757,2],[2830,2]]], [2833,[12513,7739.36,-4.76837e-007],[[2757,2]]], [2834,[12493.4,7705.29,-7.94729e-008],[[2757,2],[2900,2],[2901,2]]], [2835,[14557,8532.26,4.76837e-007],[[2835,2]]], [2836,[14176.9,8746.96,0],[[2759,2],[2902,2]]], [2837,[15775.1,9260.09,4.76837e-007],[[2760,2]]],
+[2838,[15820.8,9308.19,-9.53674e-007],[[2760,2]]], [2839,[15748,9362.96,0],[[2839,2],[2903,2],[2904,2]]], [2840,[15804.6,9342.28,0],[[2760,2]]], [2841,[15709.8,9185.63,0],[[2761,2],[2841,2]]], [2842,[15716.2,9199.04,0],[[2761,2]]], [2843,[15262.4,9677.73,0],[[2764,2],[2765,2],[2843,2]]],
+[2844,[15396.2,8385.7,0],[[2767,2]]], [2845,[15519.5,8433.62,1.58946e-007],[[2768,2],[2905,2],[2906,2]]], [2846,[15639.6,8642.32,0],[[2769,2],[2907,2]]], [2847,[15048,8068.05,-9.53674e-007],[[2770,2],[2908,2]]], [2848,[15238.2,8143.96,0],[[2770,2],[2909,2]]], [2849,[10102.5,10600.3,0],[[2773,2]]],
+[2850,[9824.62,12142.3,0],[[2774,2],[2910,2]]], [2851,[9711.65,12210.8,3.8147e-006],[[2774,2],[2851,2]]], [2852,[9196.29,12044.3,0],[[2775,2],[2911,2]]], [2853,[9558.24,12296.1,3.8147e-006],[[2776,2],[2912,2]]], [2854,[9381.58,11305,0],[[2778,2],[2913,2]]], [2855,[5825.89,12801.7,0],[[2779,2],[2914,2]]],
+[2856,[6052.07,12793.1,0],[[2780,2]]], [2857,[6196.53,12673.2,0],[[2780,2],[2915,2]]], [2858,[6105.13,13139.6,0],[[2781,2],[2916,2]]], [2859,[6036.15,12978.3,0],[[2781,2],[2859,2],[2917,2],[2918,2]]], [2860,[7465.15,13330.5,-6.35783e-007],[[2782,2],[2919,2],[2920,2]]], [2861,[7247.11,13581.2,-9.53674e-007],[[2783,2]]],
+[2862,[7339.7,13589.1,0],[[2783,2],[2921,2]]], [2863,[7068.04,13920,0],[[2784,2],[2922,2],[2923,2],[2924,2]]], [2864,[6979.22,13694.6,0],[[2785,2]]], [2865,[6945.63,13668.7,0],[[2785,2],[2925,2],[2865,2],[2926,2]]], [2866,[7716.24,12146.5,-1.90735e-006],[[2788,2],[2927,2]]], [2867,[7756.27,12160.6,0],[[2788,2]]],
+[2868,[7494.01,12011.8,0],[[2789,2],[2928,2]]], [2869,[7638.08,12097.6,-1.90735e-006],[[2789,2],[2929,2]]], [2870,[7956.91,11798.9,0],[[2794,2],[2930,2],[2931,2]]], [2871,[8828.86,11340.5,4.76837e-007],[[2795,2],[2932,2],[2871,2],[2933,2]]], [2872,[7536.05,14896.7,0],[[2799,2],[2934,2],[2935,2],[2936,2]]], [2873,[7499.86,14495,0],[[2800,2],[2937,2]]],
+[2874,[8009.21,14906.8,0],[[2801,2],[2938,2]]], [2875,[7810.46,15039.3,0],[[2801,2],[2939,2]]], [2876,[7991.28,16969.3,0],[[2802,2],[2940,2]]], [2877,[7642.37,15978.5,0],[[2804,2],[2941,2],[2942,2]]], [2878,[9187.14,17267.4,0],[[2805,2],[2878,2],[2943,2],[2944,2]]], [2879,[8960,17281.7,0],[[2806,2],[2945,2]]],
+[2880,[9972.64,10115.2,0],[[2807,2],[2946,2]]], [2881,[9858.22,9356.29,0],[[2808,2],[2947,2]]], [2882,[9736.04,9739.87,0],[[2809,2],[2948,2],[2883,2]]], [2883,[9643.03,9680.88,0],[[2809,2],[2882,2],[2949,2]]], [2884,[10981,9525.05,0],[[2810,2],[2884,2],[2950,2],[2951,2]]], [2885,[14153.1,8376.32,-9.53674e-007],[[2813,2]]],
+[2886,[14344.2,8265.08,0],[[2813,2],[2952,2]]], [2887,[14139.6,8134.41,0],[[2814,2],[2819,2],[2891,2],[2952,2]]], [2888,[12798.4,9139.07,0],[[2815,2]]], [2889,[13307.8,7787.31,-1.19209e-007],[[2816,2],[2953,2]]], [2890,[13314.9,8222.43,2.38419e-007],[[2817,2],[2954,2]]], [2891,[14145,8064.14,2.38419e-007],[[2819,2],[2887,2],[2955,2],[2956,2]]],
+[2892,[14015.8,7734.66,0],[[2821,2],[2957,2],[2958,2]]], [2893,[13731.3,7759.73,0],[[2822,2]]], [2894,[13440.5,7396.42,0],[[2823,2],[2959,2]]], [2895,[11431.6,8437.22,6.35783e-007],[[2828,2],[2896,2],[2960,2]]], [2896,[11525.2,8314.59,0],[[2828,2],[2895,2],[2961,2],[2962,2]]], [2897,[11547.9,9146.87,0],[[2829,2],[2897,2]]],
+[2898,[12097.7,7920.41,1.58946e-007],[[2831,2],[2963,2],[2964,2]]], [2899,[12006.3,8082.96,3.17891e-007],[[2831,2],[2965,2],[2966,2]]], [2900,[12588.3,7778.69,0],[[2834,2],[2967,2]]], [2901,[12518.5,7620.66,-1.19209e-007],[[2834,2]]], [2902,[14124.5,8735.37,0],[[2836,2]]], [2903,[15734.4,9445.74,0],[[2839,2]]],
+[2904,[15760.7,9358.75,0],[[2839,2]]], [2905,[15549.5,8461.23,1.58946e-007],[[2845,2],[2972,2],[2973,2]]], [2906,[15532.6,8368.32,0],[[2845,2],[2974,2],[2975,2]]], [2907,[15717.1,8750.6,0],[[2846,2],[2976,2]]], [2908,[14921.8,7982.17,-2.38419e-007],[[2847,2],[2977,2],[2978,2],[2979,2]]], [2909,[15282.1,8106.16,-1.58946e-007],[[2848,2],[2909,2],[2980,2]]],
+[2910,[9876.75,12243.8,0],[[2850,2]]], [2911,[9119.62,11983.3,-3.8147e-006],[[2852,2],[2911,2]]], [2912,[9561.85,12366.9,0],[[2853,2]]], [2913,[9327.99,11163.3,0],[[2854,2],[2981,2]]], [2914,[5758.97,12769.9,0],[[2855,2],[2982,2],[2983,2]]], [2915,[6247.74,12607.5,7.62939e-007],[[2857,2],[2984,2],[2915,2],[2985,2],[2986,2]]],
+[2916,[6061.93,13210.7,0],[[2858,2],[2987,2],[2988,2]]], [2917,[6010.89,12926.2,0],[[2859,2]]], [2918,[5970.84,13017.4,0],[[2859,2]]], [2919,[7613.94,13339.7,0],[[2860,2],[2989,2]]], [2920,[7511.33,13427.4,0],[[2860,2]]], [2921,[7428.44,13558.5,-1.90735e-006],[[2862,2],[2990,2]]],
+[2922,[6983.29,13894.5,1.90735e-006],[[2863,2],[2991,2]]], [2923,[7213.43,13891.8,-1.90735e-006],[[2863,2],[2992,2]]], [2924,[7090.79,14116.9,0],[[2863,2],[2993,2]]], [2925,[6944.28,13656.5,0],[[2865,2],[2925,2]]], [2926,[6919.46,13690.1,0],[[2865,2]]], [2927,[7767.31,12113.5,0],[[2866,2]]],
+[2928,[7570.33,11867.8,0],[[2868,2],[2994,2]]], [2929,[7675.92,12029.7,0],[[2869,2]]], [2930,[7970.75,11618.4,0],[[2870,2],[2995,2]]], [2931,[7900.95,11970.6,-1.90735e-006],[[2870,2],[2996,2]]], [2932,[8716.68,11394.4,4.76837e-007],[[2871,2],[2997,2],[2998,2],[2999,2]]], [2933,[8922.11,11234.8,0],[[2871,2],[3000,2]]],
+[2934,[7359.82,14822.8,3.8147e-006],[[2872,2],[3001,2]]], [2935,[7609.05,15033.9,0],[[2872,2],[3002,2]]], [2936,[7462.3,15066.5,3.8147e-006],[[2872,2],[3003,2]]], [2937,[7370.11,14417.8,-1.90735e-006],[[2873,2],[3004,2]]], [2938,[8122.81,14919.7,0],[[2874,2],[3005,2]]], [2939,[7754.49,15184.9,0],[[2875,2],[3006,2],[3002,2]]],
+[2940,[7911.99,17054.2,0],[[2876,2],[3007,2]]], [2941,[7547.74,15864.5,9.53674e-007],[[2877,2],[3008,2],[3009,2],[3010,2]]], [2942,[7740.67,15961.2,0],[[2877,2],[3011,2]]], [2943,[9090.93,17170.6,1.90735e-006],[[2878,2],[3012,2]]], [2944,[9228.27,17256.5,0],[[2878,2],[3013,2],[3014,2]]], [2945,[8851.67,17162.5,0],[[2879,2],[3015,2]]],
+[2946,[9933.95,10167.1,0],[[2880,2]]], [2947,[9861.73,9335.57,6.35783e-007],[[2881,2],[3016,2],[3017,2]]], [2948,[9736.01,9845.7,0],[[2882,2],[3018,2]]], [2949,[9506.66,9600.63,3.17891e-007],[[2883,2],[3019,2],[3020,2]]], [2950,[10939.5,9411.27,0],[[2884,2],[3021,2]]], [2951,[11110.4,9426.97,-9.53674e-007],[[2884,2],[3022,2]]],
+[2952,[14372.8,8257.65,-2.38419e-007],[[2886,2],[2887,2],[2968,2],[2970,2],[3023,2]]], [2953,[13315,7699.52,-7.94729e-008],[[2889,2],[2953,2],[3024,2]]], [2954,[13235.5,8279.98,0],[[2890,2],[3025,2]]], [2955,[14195.3,7912.03,0],[[2891,2],[2957,2],[3026,2],[3027,2]]], [2956,[14324.3,8087.67,0],[[2891,2],[3028,2]]], [2957,[14111.6,7821.21,0],[[2892,2],[2955,2]]],
+[2958,[14025.6,7662.14,0],[[2892,2],[3029,2],[3030,2]]], [2959,[13387.8,7262.14,0],[[2894,2],[3031,2]]], [2960,[11280.5,8463.04,1.90735e-006],[[2895,2],[3032,2]]], [2961,[11586.1,8232.07,0],[[2896,2],[2962,2],[3033,2]]], [2962,[11535.7,8221.82,0],[[2896,2],[2961,2],[3034,2]]], [2963,[11996.7,7878.05,-4.76837e-007],[[2898,2],[3035,2]]],
+[2964,[12155,7784.29,0],[[2898,2]]], [2965,[11886.8,8108.01,-3.17891e-007],[[2899,2],[3036,2],[3037,2]]], [2966,[12008.1,8118.06,4.76837e-007],[[2899,2],[2966,2],[3038,2]]], [2967,[12615.7,7811.52,0],[[2900,2]]], [2968,[14524.7,8371.69,2.38419e-007],[[2835,2],[2969,2],[2970,2],[2952,2],[2971,2]]], [2969,[14422.4,8413.54,2.38419e-007],[[2968,2],[3039,2],[2969,2],[3040,2],[2970,2]]],
+[2970,[14448.8,8291.61,0],[[2968,2],[2952,2],[2969,2],[3041,2],[3023,2],[2971,2]]], [2971,[14529.5,8217.48,-2.38419e-007],[[2968,2],[2970,2],[3042,2],[2971,2],[3043,2],[3023,2]]], [2972,[15614.4,8460.67,7.94729e-008],[[2905,2],[3044,2],[3045,2]]], [2973,[15556.8,8495.18,-4.76837e-007],[[2905,2]]], [2974,[15526.1,8355.75,0],[[2906,2]]], [2975,[15556.4,8332.49,-5.96046e-008],[[2906,2]]],
+[2976,[15730.3,8763.03,0],[[2907,2],[3046,2],[3047,2]]], [2977,[14742.1,8091.18,0],[[2908,2],[3048,2]]], [2978,[15088.1,7922.91,-1.58946e-007],[[2908,2],[2980,2],[2978,2]]], [2979,[14915.1,7875.59,0],[[2908,2],[3049,2],[3050,2]]], [2980,[15218,8016.18,2.38419e-007],[[2909,2],[2978,2]]], [2981,[9333.54,11081.6,0],[[2913,2],[3051,2],[3052,2]]],
+[2982,[5581.58,12711,-3.8147e-006],[[2914,2],[3053,2]]], [2983,[5818.29,12717.8,6.35783e-007],[[2914,2],[2983,2],[3054,2]]], [2984,[6118.99,12505.8,0],[[2915,2],[3055,2]]], [2985,[6268.27,12562.3,0],[[2915,2],[3056,2],[2985,2]]], [2986,[6404.48,12662.8,0],[[2915,2],[3057,2]]], [2987,[6041.37,13255.7,6.35783e-007],[[2916,2],[3058,2],[3059,2]]],
+[2988,[6044.37,13205.1,0],[[2916,2]]], [2989,[7647.07,13323.6,0],[[2919,2]]], [2990,[7446.3,13552.3,-6.35783e-007],[[2921,2],[3060,2],[2990,2]]], [2991,[6907.66,13876.4,9.53674e-007],[[2922,2]]], [2992,[7326.17,13976.7,-1.90735e-006],[[2923,2],[3061,2]]], [2993,[7098.5,14247.7,-6.35783e-007],[[2924,2],[3062,2],[3004,2]]],
+[2994,[7610.77,11769.8,-6.35783e-007],[[2928,2],[3063,2],[3064,2]]], [2995,[8034.34,11489.7,0],[[2930,2],[3065,2]]], [2996,[7886.64,12006.3,-1.90735e-006],[[2931,2]]], [2997,[8680.18,11440.9,0],[[2932,2]]], [2998,[8688.02,11326.1,0],[[2932,2],[3066,2]]], [2999,[8537.07,11391.1,-9.53674e-007],[[2932,2],[3067,2]]],
+[3000,[8945.79,11140.5,0],[[2933,2],[3068,2]]], [3001,[7231.83,14742.6,0],[[2934,2],[3069,2]]], [3002,[7686.76,15158.1,0],[[2935,2],[2939,2],[3070,2]]], [3003,[7419.67,15147.4,-9.53674e-007],[[2936,2],[3071,2],[3072,2],[3073,2]]], [3004,[7274.89,14323,-1.90735e-006],[[2937,2],[2993,2]]], [3005,[8202.85,14924,0],[[2938,2],[3074,2]]],
+[3006,[7734.03,15203.8,3.8147e-006],[[2939,2],[3075,2]]], [3007,[7857.91,17165,3.8147e-006],[[2940,2],[3076,2]]], [3008,[7477.92,15947.7,-1.27157e-006],[[2941,2],[3077,2],[3078,2]]], [3009,[7406.07,15835.5,0],[[2941,2],[3079,2],[3080,2]]], [3010,[7597.72,15744.4,0],[[2941,2],[3081,2],[3082,2]]], [3011,[7826.28,16030.9,0],[[2942,2],[3011,2]]],
+[3012,[9080.07,17158,-1.90735e-006],[[2943,2]]], [3013,[9249.76,17176.9,0],[[2944,2],[3013,2]]], [3014,[9278.13,17268.7,6.35783e-007],[[2944,2],[3014,2],[3083,2]]], [3015,[8747.3,17050.6,0],[[2945,2],[3084,2]]], [3016,[9814.76,9237.99,1.90735e-007],[[2947,2],[3085,2],[3086,2],[3087,2],[3088,2]]], [3017,[10006.6,9250.36,0],[[2947,2],[3089,2]]],
+[3018,[9720.27,9855.29,0],[[2948,2],[3090,2],[3091,2]]], [3019,[9511.21,9562.54,-3.17891e-007],[[2949,2],[3092,2],[3093,2]]], [3020,[9377.6,9717.8,0],[[2949,2],[3094,2]]], [3021,[10914.5,9390.24,0],[[2950,2]]], [3022,[11147,9398.59,0],[[2951,2]]], [3023,[14446.5,8214.04,0],[[2952,2],[2970,2],[2971,2],[3028,2]]],
+[3024,[13245.9,7530.49,0],[[2953,2],[3095,2]]], [3025,[13177.5,8290.9,0],[[2954,2]]], [3026,[14300,8021.43,0],[[2955,2],[3028,2]]], [3027,[14236.6,7748.38,0],[[2955,2]]], [3028,[14368.1,8096.26,1.19209e-007],[[2956,2],[3023,2],[3026,2],[3096,2],[3043,2],[3097,2]]], [3029,[14112.6,7523.82,0],[[2958,2],[3098,2]]],
+[3030,[14124.2,7682.01,0],[[2958,2],[3099,2],[3100,2]]], [3031,[13386.9,7228.26,0],[[2959,2],[3101,2],[3102,2]]], [3032,[11259.1,8465.4,1.27157e-006],[[2960,2],[3103,2],[3104,2]]], [3033,[11748.8,8139.47,9.53674e-007],[[2961,2],[3037,2]]], [3034,[11451.9,8122.24,0],[[2962,2],[3105,2],[3106,2]]], [3035,[11907.5,7880.01,4.76837e-007],[[2963,2],[3107,2]]],
+[3036,[11834.6,8185.77,-1.90735e-006],[[2965,2]]], [3037,[11845.5,8087.1,3.17891e-007],[[2965,2],[3033,2],[3108,2]]], [3038,[11939,8193.96,0],[[2966,2],[3109,2]]], [3039,[14447.4,8422.65,0],[[2969,2]]], [3040,[14374,8432.37,0],[[2969,2]]], [3041,[14436.3,8217.61,-9.53674e-007],[[2970,2],[3041,2]]],
+[3042,[14525.9,8233.16,3.17891e-007],[[2971,2]]], [3043,[14508,8156.84,0],[[2971,2],[3028,2],[3110,2],[3111,2],[3096,2]]], [3044,[15630,8417.45,0],[[2972,2]]], [3045,[15770.7,8541.5,0],[[2972,2],[3112,2]]], [3046,[15807.4,8774.15,0],[[2976,2],[3113,2]]], [3047,[15749.5,8828.09,-9.53674e-007],[[2976,2]]],
+[3048,[14614.4,8091.6,0],[[2977,2],[3114,2],[3111,2]]], [3049,[14737.4,7818.43,0],[[2979,2],[3115,2],[3116,2]]], [3050,[14929.7,7741.96,0],[[2979,2],[3117,2]]], [3051,[9266.53,11199.5,0],[[2981,2]]], [3052,[9310.98,10945.8,0],[[2981,2],[3118,2],[3119,2],[3120,2]]], [3053,[5564.1,12700.5,-1.90735e-006],[[2982,2],[3053,2],[3121,2],[3122,2]]],
+[3054,[5937.25,12635.7,0],[[2983,2],[3123,2]]], [3055,[6094.39,12479.1,0],[[2984,2],[3123,2],[3124,2]]], [3056,[6340.77,12427.2,0],[[2985,2],[3125,2]]], [3057,[6494.86,12690,6.35783e-007],[[2986,2],[3126,2],[3127,2]]], [3058,[6012.6,13282.6,-6.35783e-007],[[2987,2],[3059,2],[3128,2]]], [3059,[6034.69,13288.1,0],[[2987,2],[3058,2],[3129,2]]],
+[3060,[7517.01,13461.5,1.90735e-006],[[2990,2],[3060,2]]], [3061,[7410.22,14058,0],[[2992,2],[3130,2]]], [3062,[7000.7,14371.2,1.90735e-006],[[2993,2],[3131,2]]], [3063,[7552.71,11701.7,0],[[2994,2]]], [3064,[7690.17,11601.6,0],[[2994,2],[3132,2]]], [3065,[7982.55,11354.5,0],[[2995,2],[3133,2],[3134,2]]],
+[3066,[8696.57,11296.1,0],[[2998,2]]], [3067,[8384.72,11377.7,9.53674e-007],[[2999,2],[3135,2]]], [3068,[8964.38,11005.8,0],[[3000,2],[3136,2]]], [3069,[7215.49,14750.6,6.35783e-007],[[3001,2],[3137,2],[3138,2]]], [3070,[7714.8,15186.9,0],[[3002,2]]], [3071,[7315.95,15011.9,-3.8147e-006],[[3003,2],[3139,2]]],
+[3072,[7357.15,15266,0],[[3003,2],[3072,2],[3140,2],[3141,2]]], [3073,[7487.12,15283.2,0],[[3003,2],[3142,2]]], [3074,[8217.39,14985.9,-3.8147e-006],[[3005,2]]], [3075,[7717.81,15348.3,0],[[3006,2],[3143,2],[3142,2]]], [3076,[7826.15,17302.7,0],[[3007,2],[3144,2]]], [3077,[7391.17,16056,0],[[3008,2],[3145,2],[3146,2]]],
+[3078,[7505.17,16022.8,-3.8147e-006],[[3008,2]]], [3079,[7293.81,15896.6,0],[[3009,2],[3147,2],[3148,2]]], [3080,[7327.44,15688.7,0],[[3009,2],[3149,2]]], [3081,[7631.73,15770.4,0],[[3010,2]]], [3082,[7684.99,15605,0],[[3010,2],[3150,2]]], [3083,[9324.54,17326.3,0],[[3014,2],[3151,2]]],
+[3084,[8675.84,17061.7,0],[[3015,2],[3152,2]]], [3085,[9690.48,9344.46,-9.53674e-007],[[3016,2],[3153,2],[3092,2]]], [3086,[9758.96,9262.33,0],[[3016,2]]], [3087,[9741.43,9048.53,0],[[3016,2],[3154,2]]], [3088,[9862.71,9232.74,0],[[3016,2]]], [3089,[10092.7,9188,0],[[3017,2],[3155,2],[3156,2]]],
+[3090,[9700.99,9897.79,-4.76837e-007],[[3018,2],[3090,2],[3157,2],[3158,2]]], [3091,[9644.53,9853.99,0],[[3018,2]]], [3092,[9579.68,9475.16,0],[[3019,2],[3085,2],[3159,2],[3160,2]]], [3093,[9423.76,9507.73,0],[[3019,2],[3161,2]]], [3094,[9354.13,9727.39,0],[[3020,2]]], [3095,[13230.4,7372.22,0],[[3024,2],[3162,2]]],
+[3096,[14493.1,8097.67,0],[[3028,2],[3043,2],[3111,2]]], [3097,[14458.3,8177.38,0],[[3028,2]]], [3098,[14168.4,7401.67,0],[[3029,2],[3163,2]]], [3099,[14079.4,7687.04,0],[[3030,2]]], [3100,[14222.5,7705.27,0],[[3030,2],[3100,2]]], [3101,[13381.8,7124.44,0],[[3031,2],[3102,2],[3164,2]]],
+[3102,[13397.9,7147.24,0],[[3031,2],[3101,2],[3165,2]]], [3103,[11205.6,8435.81,6.35783e-007],[[3032,2],[3166,2],[3167,2]]], [3104,[11273.1,8633.52,-1.90735e-006],[[3032,2],[3168,2]]], [3105,[11444.1,7969.91,0],[[3034,2],[3169,2]]], [3106,[11386.9,8139.37,0],[[3034,2]]], [3107,[11888.8,7898.12,0],[[3035,2]]],
+[3108,[11738.9,7998.83,0],[[3037,2],[3170,2]]], [3109,[11896.7,8223.93,0],[[3038,2]]], [3110,[14506.9,8096.91,0],[[3043,2]]], [3111,[14558.8,8093.39,0],[[3043,2],[3048,2],[3096,2],[3114,2]]], [3112,[15810,8520.4,1.19209e-007],[[3045,2],[3171,2],[3172,2],[3173,2]]], [3113,[15842,8758.05,-4.76837e-007],[[3046,2]]],
+[3114,[14608.3,8077.56,-4.76837e-007],[[3048,2],[3111,2],[3115,2]]], [3115,[14657.4,7967.85,0],[[3049,2],[3114,2]]], [3116,[14767.6,7584.53,0],[[3049,2],[3174,2]]], [3117,[14984.7,7665.25,0],[[3050,2],[3175,2]]], [3118,[9137.68,10923.2,0],[[3052,2],[3176,2],[3177,2]]], [3119,[9277,10852.4,1.90735e-006],[[3052,2]]],
+[3120,[9444.34,10868,-4.76837e-007],[[3052,2],[3178,2],[3179,2],[3180,2]]], [3121,[5570.34,12657.6,0],[[3053,2],[3121,2]]], [3122,[5399.13,12652.2,0],[[3053,2],[3181,2]]], [3123,[6046.56,12533.8,0],[[3054,2],[3055,2]]], [3124,[6045.27,12391.3,-6.35783e-007],[[3055,2],[3182,2],[3183,2]]], [3125,[6350.37,12345.4,0],[[3056,2],[3184,2],[3185,2],[3186,2],[3187,2]]],
+[3126,[6574.81,12631.8,0],[[3057,2],[3188,2]]], [3127,[6577.48,12745.9,0],[[3057,2],[3189,2]]], [3128,[5868.22,13375.1,0],[[3058,2],[3190,2]]], [3129,[6014.88,13454.7,0],[[3059,2],[3191,2]]], [3130,[7520.06,14127.4,0],[[3061,2]]], [3131,[6899.72,14452.2,0],[[3062,2],[3192,2]]],
+[3132,[7799.04,11520.3,0],[[3064,2],[3134,2]]], [3133,[8015.28,11166.1,-1.90735e-006],[[3065,2],[3193,2]]], [3134,[7883.59,11472,0],[[3065,2],[3132,2]]], [3135,[8350.77,11375.1,0],[[3067,2]]], [3136,[8947.66,10947.6,0],[[3068,2],[3177,2],[3194,2],[3195,2]]], [3137,[7090.83,14685.4,0],[[3069,2],[3196,2]]],
+[3138,[7183.44,14857.6,0],[[3069,2]]], [3139,[7182.78,14953.9,0],[[3071,2],[3197,2]]], [3140,[7506.44,15374.7,3.8147e-006],[[3072,2],[3198,2]]], [3141,[7250.94,15390,0],[[3072,2],[3199,2]]], [3142,[7647.64,15365.9,0],[[3073,2],[3075,2],[3143,2]]], [3143,[7710.28,15390.9,9.53674e-007],[[3075,2],[3142,2],[3200,2],[3150,2]]],
+[3144,[7842.5,17445.8,0],[[3076,2],[3201,2]]], [3145,[7476.71,16167.1,0],[[3077,2],[3202,2]]], [3146,[7247.11,16128.6,0],[[3077,2],[3203,2]]], [3147,[7200.24,15853.7,0],[[3079,2],[3204,2]]], [3148,[7168.77,15925.4,0],[[3079,2],[3205,2],[3204,2]]], [3149,[7242.12,15561.9,0],[[3080,2],[3199,2]]],
+[3150,[7700.31,15527,0],[[3082,2],[3143,2],[3198,2],[3150,2]]], [3151,[9337.42,17365.5,0],[[3083,2]]], [3152,[8563,17062.5,0],[[3084,2],[3152,2]]], [3153,[9649.4,9383.24,9.53674e-007],[[3085,2],[3206,2]]], [3154,[9716.52,9026.72,3.17891e-007],[[3087,2],[3207,2],[3208,2]]], [3155,[10180.8,9248.18,0],[[3089,2],[3209,2]]],
+[3156,[10133.7,9159.72,0],[[3089,2],[3156,2],[3210,2]]], [3157,[9714.28,10044.7,0],[[3090,2],[3211,2]]], [3158,[9629.55,10021.6,0],[[3090,2],[3212,2]]], [3159,[9635.4,9399.4,-9.53674e-007],[[3092,2]]], [3160,[9565.47,9493.84,0],[[3092,2]]], [3161,[9314.27,9412.48,0],[[3093,2],[3213,2]]],
+[3162,[13263.4,7291.69,0],[[3095,2],[3214,2]]], [3163,[14233.9,7339.21,2.38419e-007],[[3098,2],[3215,2]]], [3164,[13394.7,6925.52,4.76837e-007],[[3101,2],[3216,2]]], [3165,[13496.4,7123.03,0],[[3102,2]]], [3166,[11067.3,8439.58,6.35783e-007],[[3103,2],[3217,2],[3218,2]]], [3167,[11202.4,8375.6,0],[[3103,2],[3219,2],[3220,2]]],
+[3168,[11155.5,8744.02,0],[[3104,2],[3168,2]]], [3169,[11439.4,7836.22,0],[[3105,2],[3221,2]]], [3170,[11689.2,7965.77,0],[[3108,2],[3222,2],[3223,2]]], [3171,[15885.8,8573.85,0],[[3112,2],[3224,2]]], [3172,[15801.4,8378.99,0],[[3112,2],[3225,2]]], [3173,[15906.1,8453.68,0],[[3112,2],[3226,2]]],
+[3174,[14836.7,7534.33,-2.38419e-007],[[3116,2],[3227,2]]], [3175,[15038.9,7560.56,2.38419e-007],[[3117,2],[3228,2]]], [3176,[9118.14,11003.7,0],[[3118,2],[3176,2],[3229,2]]], [3177,[8992.88,10856.7,0],[[3118,2],[3136,2],[3230,2]]], [3178,[9492.17,10807.6,-6.35783e-007],[[3120,2],[3178,2],[3231,2]]], [3179,[9525.1,10894.1,0],[[3120,2],[3232,2]]],
+[3180,[9433.53,10946.1,1.90735e-006],[[3120,2]]], [3181,[5286.4,12623.7,0],[[3122,2],[3233,2]]], [3182,[5965.15,12293.6,6.35783e-007],[[3124,2],[3234,2],[3183,2]]], [3183,[6101.19,12320.7,0],[[3124,2],[3182,2],[3185,2]]], [3184,[6434.7,12357.7,0],[[3125,2]]], [3185,[6244.11,12353.8,6.35783e-007],[[3125,2],[3183,2],[3185,2]]],
+[3186,[6379.43,12194.7,-9.53674e-007],[[3125,2],[3186,2],[3235,2],[3236,2]]], [3187,[6319.54,12295.7,0],[[3125,2]]], [3188,[6620.05,12582,0],[[3126,2],[3237,2]]], [3189,[6618.16,12788.4,-6.35783e-007],[[3127,2],[2556,2]]], [3190,[5768.64,13458,0],[[3128,2],[3238,2]]], [3191,[6034.44,13581.1,0],[[3129,2],[3239,2]]],
+[3192,[6871.56,14464.1,0],[[3131,2],[3240,2],[3241,2],[3242,2]]], [3193,[8082.27,11007.9,0],[[3133,2],[3243,2],[3244,2]]], [3194,[8801.38,10928,0],[[3136,2],[3245,2]]], [3195,[8840.99,11056.8,1.90735e-006],[[3136,2],[3246,2]]], [3196,[6968.84,14657.4,0],[[3137,2],[3247,2]]], [3197,[7084.17,14874.6,0],[[3139,2],[3248,2]]],
+[3198,[7608.57,15455.4,0],[[3140,2],[3150,2]]], [3199,[7208.38,15428.8,0],[[3141,2],[3149,2],[3249,2],[3250,2]]], [3200,[7765.65,15422.4,1.27157e-006],[[3143,2],[3251,2],[3252,2]]], [3201,[7894.65,17579.6,0],[[3144,2],[3253,2]]], [3202,[7528.71,16248.2,2.54313e-006],[[3145,2],[3254,2],[3255,2]]], [3203,[7140.71,16251.7,0],[[3146,2],[3256,2]]],
+[3204,[7119.05,15875.2,-1.27157e-006],[[3147,2],[3148,2],[3204,2],[3205,2]]], [3205,[7050.3,15867.2,7.62939e-007],[[3148,2],[3204,2],[3257,2],[3205,2]]], [3206,[9623.88,9385.15,0],[[3153,2]]], [3207,[9564.79,9007.35,0],[[3154,2],[3258,2]]], [3208,[9773.37,8976.94,-6.35783e-007],[[3154,2],[3259,2],[3260,2]]], [3209,[10242.8,9369.42,0],[[3155,2]]],
+[3210,[10176.2,9142.53,1.90735e-007],[[3156,2],[3261,2],[3262,2],[3263,2],[3264,2]]], [3211,[9718.74,10102,0],[[3157,2]]], [3212,[9589.98,10138.7,0],[[3158,2],[3265,2]]], [3213,[9239.96,9353.12,0],[[3161,2],[3266,2],[3267,2]]], [3214,[13289.8,7253.87,0],[[3162,2]]], [3215,[14327.8,7298.2,0],[[3163,2],[3268,2]]],
+[3216,[13399.5,6766.23,-3.17891e-007],[[3164,2],[3269,2],[3270,2]]], [3217,[11042.2,8587.95,0],[[3166,2],[3271,2]]], [3218,[10945.8,8327.41,0],[[3166,2],[3272,2]]], [3219,[11325.6,8267.28,0],[[3167,2],[3273,2]]], [3220,[11044,8338.26,1.90735e-006],[[3167,2],[3274,2]]], [3221,[11430.8,7795.88,1.58946e-007],[[3169,2],[3275,2],[3276,2]]],
+[3222,[11749.4,7806.31,0],[[3170,2],[3277,2]]], [3223,[11619.4,7921.39,4.76837e-007],[[3170,2],[3223,2]]], [3224,[15976.3,8611.32,0],[[3171,2],[3278,2]]], [3225,[15791.3,8351.3,0],[[3172,2]]], [3226,[16034.9,8425.54,0],[[3173,2],[3279,2]]], [3227,[14880.9,7508.81,0],[[3174,2],[3280,2],[3281,2]]],
+[3228,[15049.5,7510.47,1.19209e-007],[[3175,2]]], [3229,[9150.29,11040.3,0],[[3176,2],[3282,2],[3229,2],[3283,2]]], [3230,[8933.36,10691.8,0],[[3177,2],[3230,2],[3284,2],[3285,2]]], [3231,[9625.55,10678.6,0],[[3178,2],[3286,2]]], [3232,[9555.28,10914.2,0],[[3179,2]]], [3233,[5172.43,12603.1,3.8147e-006],[[3181,2],[3287,2]]],
+[3234,[5828.24,12201.9,0],[[3182,2],[3288,2]]], [3235,[6426.17,12030.5,0],[[3186,2],[3289,2]]], [3236,[6485.52,12066.8,0],[[3186,2],[3290,2]]], [3237,[6637.17,12588.1,0],[[3188,2],[3291,2],[3292,2]]], [3238,[5661.72,13561.7,0],[[3190,2],[3295,2]]], [3239,[6020.78,13667.9,0],[[3191,2],[3296,2],[3297,2]]],
+[3240,[6970.7,14486.4,0],[[3192,2],[3298,2]]], [3241,[6812.57,14492.4,0],[[3192,2],[3299,2],[3300,2]]], [3242,[6846.06,14443,-6.35783e-007],[[3192,2],[3242,2],[3301,2]]], [3243,[8122.36,11053.1,-6.35783e-007],[[3193,2],[3302,2],[3303,2]]], [3244,[8086.47,10919,4.76837e-007],[[3193,2],[3244,2],[3304,2],[3305,2]]], [3245,[8660.93,10928,-1.90735e-006],[[3194,2]]],
+[3246,[8737.31,11078.3,0],[[3195,2],[3306,2]]], [3247,[6952.81,14654.7,-6.35783e-007],[[3196,2],[3247,2],[3307,2]]], [3248,[6967.35,14821.9,0],[[3197,2],[3308,2]]], [3249,[7116.57,15555.1,0],[[3199,2],[3309,2]]], [3250,[7169.19,15420.4,0],[[3199,2],[3310,2],[3311,2]]], [3251,[7895.17,15532.6,0],[[3200,2]]],
+[3252,[7882.92,15449.6,0],[[3200,2],[3312,2]]], [3253,[7948.81,17715.8,3.8147e-006],[[3201,2],[3313,2]]], [3254,[7566.13,16357.6,0],[[3202,2],[3314,2]]], [3255,[7371.34,16212.6,0],[[3202,2],[3315,2]]], [3256,[7051.2,16336.8,-7.62939e-007],[[3203,2],[3316,2],[3317,2],[3318,2]]], [3257,[6977.95,15864.7,-9.53674e-007],[[3205,2],[3319,2]]],
+[3258,[9540.09,9027.89,-3.17891e-007],[[3207,2],[3320,2],[3321,2]]], [3259,[9908.94,8913.53,0],[[3208,2],[3322,2]]], [3260,[9735,8817.36,0],[[3208,2],[3323,2]]], [3261,[10113.1,9067.83,-3.17891e-007],[[3210,2],[3324,2],[3263,2]]], [3262,[10242.5,9136.14,-9.53674e-007],[[3210,2]]], [3263,[10168.7,9080.46,0],[[3210,2],[3261,2]]],
+[3264,[10287,9261.9,0],[[3210,2],[3325,2]]], [3265,[9561.64,10249.8,0],[[3212,2],[3326,2]]], [3266,[9187.85,9443.12,0],[[3213,2],[3327,2]]], [3267,[9228.68,9261.98,4.76837e-007],[[3213,2],[3328,2],[3329,2]]], [3268,[14368.4,7264.13,2.38419e-007],[[3215,2]]], [3269,[13432.2,6742.24,0],[[3216,2],[3330,2],[3331,2]]],
+[3270,[13263.9,6704.52,0],[[3216,2],[3332,2],[3333,2]]], [3271,[11047,8615.59,0],[[3217,2],[3334,2],[3335,2]]], [3272,[10860.9,8281.54,-4.76837e-007],[[3218,2],[3336,2],[3337,2],[3338,2]]], [3273,[11314.7,8129.99,-1.90735e-006],[[3219,2],[3339,2]]], [3274,[11000.2,8286.37,0],[[3220,2]]], [3275,[11282.3,7781.67,0],[[3221,2],[3340,2]]],
+[3276,[11448.5,7711.27,-4.76837e-007],[[3221,2]]], [3277,[11810.1,7680.07,0],[[3222,2],[3341,2]]], [3278,[16065.6,8654.34,0],[[3224,2],[3342,2]]], [3279,[16080.8,8412.24,0],[[3226,2],[3343,2],[3344,2]]], [3280,[14949.7,7531.62,2.38419e-007],[[3227,2]]], [3281,[14901.5,7468.36,0],[[3227,2]]],
+[3282,[9126,11036.5,0],[[3229,2],[3282,2]]], [3283,[9211.94,11095.8,0],[[3229,2],[3345,2],[3283,2]]], [3284,[8883.65,10561.2,0],[[3230,2],[3346,2],[3347,2]]], [3285,[8988.26,10661.1,-1.27157e-006],[[3230,2],[3348,2],[3349,2]]], [3286,[9702.43,10666.7,-2.38419e-007],[[3231,2],[3350,2],[3286,2],[3351,2],[3352,2]]], [3287,[5050.36,12589.7,0],[[3233,2],[3353,2]]],
+[3288,[5764.51,12116.7,-3.8147e-006],[[3234,2],[3354,2]]], [3289,[6423.65,11901.9,0],[[3235,2],[3355,2]]], [3290,[6504.74,12061.6,0],[[3236,2],[3356,2],[3357,2]]], [3291,[6645.38,12650.9,0],[[3237,2],[3358,2]]], [3292,[6693.89,12537.2,0],[[3237,2]]], [3293,[6704.38,12806.4,-1.90735e-006],[[2556,2],[3359,2],[3358,2]]],
+[3294,[6707.42,12801.7,0],[[2556,2]]], [3295,[5630.93,13604.9,-6.35783e-007],[[3238,2],[3360,2],[3295,2]]], [3296,[6047.7,13681.8,0],[[3239,2],[3361,2],[3362,2]]], [3297,[5967.51,13711.4,-4.76837e-007],[[3239,2],[3363,2],[3297,2],[3364,2]]], [3298,[6995.24,14482,0],[[3240,2]]], [3299,[6769.51,14364.2,0],[[3241,2],[3365,2]]],
+[3300,[6738.76,14532.4,0],[[3241,2],[3366,2],[3307,2],[3367,2]]], [3301,[6833.56,14353.5,1.90735e-006],[[3242,2],[3365,2]]], [3302,[8181.18,11056.8,0],[[3243,2]]], [3303,[8144.26,11166.6,-6.35783e-007],[[3243,2],[3368,2],[3303,2],[3369,2]]], [3304,[8031.73,10901.6,0],[[3244,2]]], [3305,[8108.63,10763.4,-6.35783e-007],[[3244,2],[3370,2]]],
+[3306,[8723.22,11082.3,-1.90735e-006],[[3246,2]]], [3307,[6881.58,14663,6.35783e-007],[[3247,2],[3300,2],[3371,2],[3372,2]]], [3308,[6900.96,14823.1,0],[[3248,2],[3372,2]]], [3309,[6986.79,15645.2,-3.8147e-006],[[3249,2],[3373,2]]], [3310,[7123.41,15447.8,-3.8147e-006],[[3250,2]]], [3311,[7078.81,15322.5,0],[[3250,2],[3374,2]]],
+[3312,[8035.4,15431.6,0],[[3252,2],[3375,2]]], [3313,[8067.92,17730.9,3.8147e-006],[[3253,2],[3376,2]]], [3314,[7550.15,16477.5,-3.8147e-006],[[3254,2],[3377,2]]], [3315,[7284.06,16266,0],[[3255,2],[3378,2]]], [3316,[7061.28,16410.2,0],[[3256,2],[3379,2],[3380,2]]], [3317,[6836.07,16349.6,0],[[3256,2],[3381,2]]],
+[3318,[6942.7,16297.4,0],[[3256,2],[3318,2]]], [3319,[6821.73,15818.9,0],[[3257,2],[3382,2],[3383,2]]], [3320,[9375.48,8991.25,9.53674e-007],[[3258,2],[3384,2]]], [3321,[9588.05,9132.33,-2.38419e-007],[[3258,2]]], [3322,[9994.13,8862.44,3.17891e-007],[[3259,2],[3324,2],[3385,2]]], [3323,[9708.71,8705.13,0],[[3260,2],[3386,2],[3387,2]]],
+[3324,[10033.7,8922.18,0],[[3261,2],[3322,2]]], [3325,[10386.3,9285.42,0],[[3264,2],[3388,2]]], [3326,[9571.29,10308.5,-4.76837e-007],[[3265,2]]], [3327,[9126.08,9502.59,0],[[3266,2]]], [3328,[9283.41,9157.43,0],[[3267,2],[3389,2]]], [3329,[9227.93,9216.01,3.17891e-007],[[3267,2],[3390,2],[3391,2],[3389,2]]],
+[3330,[13434,6658.46,0],[[3269,2],[3392,2],[3393,2],[3394,2]]], [3331,[13593.6,6758.86,-2.38419e-007],[[3269,2],[3395,2],[3396,2],[3331,2]]], [3332,[13208.9,6590.33,0],[[3270,2],[3332,2],[3397,2],[3398,2],[3399,2]]], [3333,[13160,6845.06,0],[[3270,2],[3400,2]]], [3334,[11002.4,8638.51,-6.35783e-007],[[3271,2],[3401,2],[3402,2]]], [3335,[11086.5,8646.05,0],[[3271,2]]],
+[3336,[10839.3,8341.19,0],[[3272,2]]], [3337,[10678.5,8270.04,0],[[3272,2],[3403,2],[3404,2]]], [3338,[10902.9,8153.04,0],[[3272,2],[3405,2]]], [3339,[11239,8005.65,0],[[3273,2],[3406,2]]], [3340,[11205.4,7794.29,0],[[3275,2],[3407,2]]], [3341,[11856.3,7554.08,-2.38419e-007],[[3277,2],[3408,2]]],
+[3342,[16124.4,8648.31,0],[[3278,2]]], [3343,[16049.4,8313.87,0],[[3279,2],[3409,2]]], [3344,[16202.3,8360.61,0],[[3279,2],[3410,2]]], [3345,[9219.57,11074.6,0],[[3283,2],[3345,2]]], [3346,[8832.34,10495.7,0],[[3284,2],[3411,2],[3412,2]]], [3347,[8976.69,10526.8,0],[[3284,2],[3413,2]]],
+[3348,[9068,10676,0],[[3285,2],[3414,2]]], [3349,[9003.74,10601,-6.35783e-007],[[3285,2],[3349,2],[3415,2]]], [3350,[9679.9,10627.9,0],[[3286,2],[3350,2]]], [3351,[9736.02,10729.2,0],[[3286,2]]], [3352,[9796.93,10657.8,-3.17891e-007],[[3286,2],[3352,2],[3416,2]]], [3353,[4924.25,12585.3,0],[[3287,2],[3417,2]]],
+[3354,[5692.85,12010.9,0],[[3288,2],[3418,2]]], [3355,[6474.96,11776.4,0],[[3289,2],[3419,2]]], [3356,[6630.27,11923.3,0],[[3290,2],[3420,2],[3421,2]]], [3357,[6557.41,12090.7,0],[[3290,2]]], [3358,[6725.25,12718.8,1.90735e-006],[[3291,2],[3293,2],[3359,2]]], [3359,[6742.27,12733.7,0],[[3293,2],[3358,2],[3422,2]]],
+[3360,[5580.85,13667.7,0],[[3295,2],[3360,2],[3423,2],[3424,2]]], [3361,[6140.19,13786.4,0],[[3296,2],[3425,2]]], [3362,[6079.33,13643.1,0],[[3296,2]]], [3363,[5957.38,13703.3,0],[[3297,2]]], [3364,[5878.45,13767.5,1.90735e-006],[[3297,2],[3426,2]]], [3365,[6757.75,14307.6,-6.35783e-007],[[3299,2],[3301,2],[3427,2]]],
+[3366,[6804.47,14640.5,0],[[3300,2],[3428,2]]], [3367,[6559.57,14577.6,-1.90735e-006],[[3300,2],[3429,2]]], [3368,[8143.02,11150.1,-9.53674e-007],[[3303,2]]], [3369,[8226.58,11301.9,0],[[3303,2],[3430,2]]], [3370,[8148.57,10686.9,4.76837e-007],[[3305,2],[3431,2],[3432,2]]], [3371,[6818.96,14644.4,0],[[3307,2]]],
+[3372,[6869.05,14699.7,6.35783e-007],[[3307,2],[3308,2],[3372,2]]], [3373,[6962.35,15681.1,3.8147e-006],[[3309,2]]], [3374,[6995.02,15245.4,0],[[3311,2],[3433,2]]], [3375,[8129.08,15354.8,3.8147e-006],[[3312,2]]], [3376,[8230.79,17780.5,0],[[3313,2],[3434,2]]], [3377,[7522.35,16514.4,1.27157e-006],[[3314,2],[3435,2],[3436,2]]],
+[3378,[7254.97,16361.5,0],[[3315,2],[3437,2]]], [3379,[7188.96,16459.4,0],[[3316,2],[3438,2]]], [3380,[7017.86,16495.5,-9.53674e-007],[[3316,2],[3439,2],[3440,2],[3441,2]]], [3381,[6755.53,16292.9,0],[[3317,2]]], [3382,[6688.35,15701.3,-3.8147e-006],[[3319,2],[3442,2]]], [3383,[6715.26,15780.7,-3.8147e-006],[[3319,2],[3443,2]]],
+[3384,[9370,8982.9,0],[[3320,2],[3444,2],[3445,2]]], [3385,[10088.8,8785.1,0],[[3322,2],[3446,2],[3447,2]]], [3386,[9668.85,8710.54,0],[[3323,2]]], [3387,[9726.28,8651.57,6.35783e-007],[[3323,2],[3448,2],[3449,2]]], [3388,[10472.2,9270.46,9.53674e-007],[[3325,2],[3450,2]]], [3389,[9294,9115.73,0],[[3328,2],[3329,2],[3391,2],[3444,2]]],
+[3390,[9122.45,9312.31,0],[[3329,2],[3451,2]]], [3391,[9270.13,9133.91,0],[[3329,2],[3389,2],[3391,2],[3452,2]]], [3392,[13501.8,6542,0],[[3330,2],[3453,2],[3454,2]]], [3393,[13375.9,6636.11,-3.17891e-007],[[3330,2],[3455,2],[3398,2]]], [3394,[13431,6575.05,0],[[3330,2]]], [3395,[13624.2,6706.15,0],[[3331,2]]],
+[3396,[13666.7,6730.67,0],[[3331,2],[3456,2],[3396,2]]], [3397,[13180.8,6518.81,0],[[3332,2],[3457,2],[3458,2],[3459,2]]], [3398,[13326.8,6542.23,-3.17891e-007],[[3332,2],[3393,2],[3460,2],[3461,2]]], [3399,[13101.2,6637.06,1.58946e-007],[[3332,2],[3462,2],[3463,2]]], [3400,[13123.6,6954.96,0],[[3333,2],[3464,2]]], [3401,[10958.8,8718.9,-9.53674e-007],[[3334,2],[3465,2]]],
+[3402,[10826.9,8647.65,-9.53674e-007],[[3334,2],[3466,2]]], [3403,[10538.4,8370.4,2.38419e-007],[[3337,2],[3467,2]]], [3404,[10666,8215.23,2.98023e-008],[[3337,2],[3404,2],[3468,2],[3469,2]]], [3405,[11038.7,8121.9,-6.35783e-007],[[3338,2],[3406,2],[3405,2]]], [3406,[11098.5,8045.03,0],[[3339,2],[3405,2]]], [3407,[11098.4,7859.03,0],[[3340,2],[3470,2]]],
+[3408,[11871,7513.89,1.58946e-007],[[3341,2],[3471,2],[3472,2]]], [3409,[16040.4,8267.53,0],[[3343,2],[3473,2],[3474,2]]], [3410,[16224.5,8346,0],[[3344,2],[3475,2],[3476,2]]], [3411,[8794.24,10601.6,-1.90735e-006],[[3346,2],[3411,2]]], [3412,[8726.58,10374,1.58946e-007],[[3346,2],[3412,2],[3477,2],[3478,2],[3479,2]]], [3413,[9007.23,10371,9.53674e-007],[[3347,2],[3480,2]]],
+[3414,[9117.19,10663.8,0],[[3348,2]]], [3415,[9020.18,10542.6,-9.53674e-007],[[3349,2]]], [3416,[9872.58,10754.2,0],[[3352,2]]], [3417,[4845.54,12583.1,4.76837e-007],[[3353,2],[3481,2],[3482,2],[3483,2]]], [3418,[5650.97,11934.3,0],[[3354,2],[3484,2]]], [3419,[6485.06,11765.7,0],[[3355,2],[3419,2],[3485,2]]],
+[3420,[6516.33,11847.1,1.90735e-006],[[3356,2],[3420,2]]], [3421,[6733.24,11844.3,0],[[3356,2],[3421,2],[3486,2],[3487,2]]], [3422,[6823.67,12637.5,-9.53674e-007],[[3359,2],[3488,2]]], [3423,[5676.05,13720.9,0],[[3360,2],[3489,2]]], [3424,[5534.27,13664,6.35783e-007],[[3360,2],[3490,2],[3491,2]]], [3425,[6270.4,13845.5,0],[[3361,2],[3492,2]]],
+[3426,[5876.12,13789.2,6.35783e-007],[[3364,2],[3493,2],[3426,2]]], [3427,[6713.96,14176.7,0],[[3365,2],[3494,2],[3495,2]]], [3428,[6808.14,14706,0],[[3366,2],[3496,2],[3497,2],[3498,2],[3428,2]]], [3429,[6442,14647.7,-1.90735e-006],[[3367,2],[3499,2]]], [3430,[8273.68,11285.8,1.90735e-006],[[3369,2]]], [3431,[8133.81,10572.7,2.38419e-007],[[3370,2],[3500,2],[3501,2],[3502,2]]],
+[3432,[8283.98,10531,2.38419e-007],[[3370,2],[3502,2],[3503,2],[3504,2]]], [3433,[6899.91,15173.9,0],[[3374,2],[3433,2],[3505,2]]], [3434,[8373.78,17779.8,-6.35783e-007],[[3376,2],[3506,2],[3507,2]]], [3435,[7563.31,16591.3,0],[[3377,2],[3508,2]]], [3436,[7466.13,16519.3,3.8147e-006],[[3377,2]]], [3437,[7199.63,16363.9,0],[[3378,2]]],
+[3438,[7245.91,16476.5,-1.90735e-006],[[3379,2]]], [3439,[7131.02,16565.2,0],[[3380,2]]], [3440,[6944.58,16625.3,0],[[3380,2],[3509,2],[3510,2]]], [3441,[6923.68,16485.5,0],[[3380,2],[3511,2]]], [3442,[6650.81,15545.9,0],[[3382,2],[3512,2]]], [3443,[6642.44,15732,0],[[3383,2]]],
+[3444,[9316.81,8991.58,-6.35783e-007],[[3384,2],[3389,2],[3513,2]]], [3445,[9400.2,8859.63,0],[[3445,2]]], [3446,[10297.3,8766.53,-4.76837e-007],[[3385,2],[3514,2]]], [3447,[10037.8,8766.3,0],[[3385,2],[3515,2],[3516,2]]], [3448,[9785.26,8631.48,0],[[3387,2],[3517,2],[3518,2]]], [3449,[9713.93,8602.24,0],[[3387,2],[3519,2],[3520,2],[3517,2]]],
+[3450,[10557.3,9238.68,0],[[3388,2],[3521,2]]], [3451,[9018.41,9455.41,9.53674e-007],[[3390,2],[3522,2]]], [3452,[9270.71,9108.38,3.17891e-007],[[3391,2],[3452,2],[3523,2]]], [3453,[13609.7,6606.03,0],[[3392,2],[3524,2],[3453,2]]], [3454,[13584.5,6400.85,3.57628e-007],[[3392,2],[3525,2],[3460,2],[3526,2],[3527,2]]], [3455,[13347.5,6578.96,0],[[3393,2]]],
+[3456,[13701.5,6743.09,1.58946e-007],[[3396,2],[3456,2],[3528,2]]], [3457,[13065.1,6550.25,9.53674e-007],[[3397,2],[3529,2]]], [3458,[13205.8,6416.01,0],[[3397,2],[3530,2],[3531,2],[3532,2],[3533,2],[3459,2]]], [3459,[13135.3,6427.98,-2.38419e-007],[[3397,2],[3458,2],[3459,2],[3534,2]]], [3460,[13452.2,6455.97,-4.76837e-007],[[3398,2],[3454,2],[3525,2]]], [3461,[13344.3,6572.07,0],[[3398,2]]],
+[3462,[13035.5,6641.57,3.17891e-007],[[3399,2],[3535,2],[3536,2]]], [3463,[13086.7,6702.83,0],[[3399,2]]], [3464,[13100.9,6993.51,7.94729e-008],[[3400,2],[3464,2],[3537,2]]], [3465,[10909.9,8763.47,-6.35783e-007],[[3401,2],[3538,2],[3539,2]]], [3466,[10807.9,8662.96,0],[[3402,2]]], [3467,[10457.8,8443.87,-1.19209e-007],[[3403,2],[3540,2],[3541,2],[3467,2]]],
+[3468,[10703.5,8109.41,0],[[3404,2],[3468,2],[3542,2]]], [3469,[10683.1,8201.92,0],[[3404,2]]], [3470,[10963.3,7952.28,0],[[3407,2],[3543,2]]], [3471,[11924.3,7522.65,0],[[3408,2]]], [3472,[11834.9,7390.19,7.94729e-008],[[3408,2],[3544,2],[3545,2]]], [3473,[16099.7,8151,0],[[3409,2],[3546,2]]],
+[3474,[15947.6,8242.13,0],[[3409,2],[3547,2]]], [3475,[16345.9,8364.55,0],[[3410,2],[3548,2]]], [3476,[16296.4,8250.62,0],[[3410,2],[3549,2]]], [3477,[8660.03,10184.5,0],[[3412,2],[3550,2]]], [3478,[8639.8,10434.6,3.17891e-007],[[3412,2],[3551,2],[3552,2]]], [3479,[8823.69,10265.8,-9.53674e-007],[[3412,2],[3553,2]]],
+[3480,[9050.3,10298.2,0],[[3413,2]]], [3481,[4736.1,12697.4,0],[[3417,2],[3554,2]]], [3482,[4881.15,12526.3,6.35783e-007],[[3417,2],[3555,2],[3482,2]]], [3483,[4677.26,12581.9,0],[[3417,2],[3556,2]]], [3484,[5610.32,11829,0],[[3418,2],[3557,2]]], [3485,[6554.39,11631.4,0],[[3419,2],[3558,2]]],
+[3486,[6888.7,11947.6,0],[[3421,2]]], [3487,[6809.65,11786.8,0],[[3421,2],[3559,2],[3560,2]]], [3488,[6879.03,12566.3,0],[[3422,2]]], [3489,[5754.28,13793.2,0],[[3423,2],[3493,2]]], [3490,[5532.7,13611.9,1.90735e-006],[[3424,2]]], [3491,[5366.7,13700.1,6.35783e-007],[[3424,2],[3561,2],[3562,2]]],
+[3492,[6278.29,13977.7,0],[[3425,2],[3563,2]]], [3493,[5818.61,13835,0],[[3426,2],[3489,2],[3564,2]]], [3494,[6771.69,14060.1,0],[[3427,2],[3565,2]]], [3495,[6577.96,14101.3,0],[[3427,2],[3566,2]]], [3496,[6844.74,14716.5,0],[[3428,2]]], [3497,[6693.3,14830.9,0],[[3428,2],[3567,2]]],
+[3498,[6817.71,14759.5,0],[[3428,2],[3568,2],[3498,2]]], [3499,[6403.89,14686.2,-6.35783e-007],[[3429,2],[3569,2],[3570,2]]], [3500,[8063.54,10670.2,9.53674e-007],[[3431,2]]], [3501,[8133.96,10481,3.17891e-007],[[3431,2],[3571,2],[3572,2]]], [3502,[8189.39,10525.8,0],[[3431,2],[3432,2],[3573,2]]], [3503,[8282.35,10489.7,9.53674e-007],[[3432,2]]],
+[3504,[8347.5,10539.7,0],[[3432,2],[3574,2],[3575,2]]], [3505,[6865.05,15151.6,0],[[3433,2],[3576,2],[3577,2]]], [3506,[8479.08,17933.6,0],[[3434,2],[3578,2]]], [3507,[8571.16,17706.2,0],[[3434,2],[3579,2]]], [3508,[7548.92,16630.1,1.27157e-006],[[3435,2],[3580,2],[3508,2]]], [3509,[6875.86,16772.8,0],[[3440,2],[3581,2],[3582,2]]],
+[3510,[6876.38,16567.9,3.8147e-006],[[3440,2]]], [3511,[6817.25,16448.4,0],[[3441,2],[3583,2]]], [3512,[6570.38,15418.2,0],[[3442,2],[3584,2]]], [3513,[9218.22,8848.12,0],[[3444,2],[3585,2]]], [3514,[10331.6,8755.3,-3.17891e-007],[[3446,2],[3540,2],[3586,2]]], [3515,[9983.29,8778.27,0],[[3447,2]]],
+[3516,[9993.37,8721.42,0],[[3447,2],[3518,2],[3587,2]]], [3517,[9826.84,8590.99,-3.17891e-007],[[3448,2],[3449,2],[3517,2],[3520,2]]], [3518,[9881.61,8656.92,0],[[3448,2],[3516,2],[3588,2]]], [3519,[9625.43,8483.83,0],[[3449,2],[3589,2]]], [3520,[9832.48,8542.16,0],[[3449,2],[3517,2],[3590,2]]], [3521,[10660.9,9227.05,-4.76837e-007],[[3450,2],[3591,2]]],
+[3522,[8954.18,9586.33,0],[[3451,2],[3592,2]]], [3523,[9251.89,9071.47,-1.90735e-007],[[3452,2],[3523,2],[3593,2],[3594,2]]], [3524,[13615.2,6597.66,0],[[3453,2]]], [3525,[13498.5,6427.94,0],[[3454,2],[3460,2],[3531,2]]], [3526,[13687.3,6297.71,0],[[3454,2],[3595,2]]], [3527,[13575.2,6348.51,0],[[3454,2],[3596,2],[3597,2]]],
+[3528,[13738.4,6723.15,4.76837e-007],[[3456,2]]], [3529,[13047.4,6535.54,0],[[3457,2],[3529,2],[3534,2]]], [3530,[13268.3,6478.31,0],[[3458,2],[3598,2]]], [3531,[13362.8,6415.79,9.53674e-007],[[3458,2],[3525,2]]], [3532,[13248.9,6366.27,-4.76837e-007],[[3458,2]]], [3533,[13196.6,6370.75,3.17891e-007],[[3458,2],[3599,2],[3600,2]]],
+[3534,[13044.3,6455.18,3.17891e-007],[[3459,2],[3529,2],[3601,2]]], [3535,[12970.1,6627.63,0],[[3462,2],[3602,2],[3603,2]]], [3536,[13078.7,6763.07,4.76837e-007],[[3462,2],[3604,2]]], [3537,[12983.9,7138.45,0],[[3464,2]]], [3538,[10764,8774.1,0],[[3465,2],[3605,2]]], [3539,[11020.1,8788.98,0],[[3465,2]]],
+[3540,[10472,8523.45,0],[[3467,2],[3514,2],[3606,2]]], [3541,[10388.9,8449.19,-1.19209e-007],[[3467,2],[3607,2],[3608,2]]], [3542,[10712.4,8047.54,0],[[3468,2],[3542,2],[3609,2]]], [3543,[10856.4,8044.93,0],[[3470,2],[3610,2]]], [3544,[11942.4,7258.3,0],[[3472,2],[3611,2],[3612,2]]], [3545,[11796.5,7386.6,0],[[3472,2],[3613,2],[3545,2]]],
+[3546,[16217.7,8115.13,0],[[3473,2],[3614,2]]], [3547,[15891.1,8168.09,0],[[3474,2]]], [3548,[16423.1,8422.11,9.53674e-008],[[3475,2],[3548,2],[3615,2],[3616,2]]], [3549,[16364.1,8166.85,0],[[3476,2],[3617,2]]], [3550,[8562.36,10085.4,0],[[3477,2],[3618,2],[3619,2],[3620,2],[3621,2]]], [3551,[8593.34,10556.5,-4.76837e-007],[[3478,2],[3622,2],[3623,2],[3624,2]]],
+[3552,[8477.57,10443.8,1.90735e-006],[[3478,2],[3575,2]]], [3553,[8874.91,10225.5,0],[[3479,2]]], [3554,[4700.78,12734.1,-6.35783e-007],[[3481,2],[3625,2],[3554,2]]], [3555,[4919.58,12436.9,6.35783e-007],[[3482,2],[3626,2],[3627,2]]], [3556,[4512.25,12559.4,3.8147e-006],[[3483,2],[3628,2]]], [3557,[5588.21,11757.7,1.27157e-006],[[3484,2],[3629,2],[3630,2]]],
+[3558,[6634.48,11533.1,0],[[3485,2],[3631,2]]], [3559,[6712.39,11713.4,0],[[3487,2]]], [3560,[6943.37,11687.4,0],[[3487,2],[3632,2]]], [3561,[5266.25,13725.3,-6.35783e-007],[[3491,2],[3633,2],[3634,2]]], [3562,[5462.94,13776.9,-3.8147e-006],[[3491,2],[3635,2]]], [3563,[6291.8,14007.3,-4.76837e-007],[[3492,2],[3636,2],[3566,2],[3637,2],[3638,2]]],
+[3564,[5804.81,13942.1,1.90735e-006],[[3493,2]]], [3565,[6807.64,13969,0],[[3494,2],[3639,2]]], [3566,[6468.08,14081.9,0],[[3495,2],[3563,2],[3640,2],[3636,2]]], [3567,[6640.24,14920,0],[[3497,2],[3567,2],[3641,2]]], [3568,[6854.41,14867.4,0],[[3498,2],[3577,2]]], [3569,[6390.43,14742.6,0],[[3499,2],[3642,2],[3643,2]]],
+[3570,[6233.21,14719.3,0],[[3499,2],[3644,2]]], [3571,[8042.36,10464,-1.90735e-006],[[3501,2],[3645,2]]], [3572,[8158.98,10354.8,0],[[3501,2],[3645,2],[3646,2],[3647,2],[3648,2]]], [3573,[8185.18,10513.3,0],[[3502,2]]], [3574,[8361.74,10605.8,0],[[3504,2]]], [3575,[8388.85,10506.6,-2.38419e-007],[[3504,2],[3552,2],[3649,2],[3650,2],[3651,2]]],
+[3576,[6745.25,15220.1,0],[[3505,2],[3652,2]]], [3577,[6842.45,14994.2,1.90735e-006],[[3505,2],[3568,2]]], [3578,[8500.84,17979.9,-1.90735e-006],[[3506,2]]], [3579,[8607.47,17698,0],[[3507,2],[3653,2],[3654,2]]], [3580,[7571.5,16693.6,0],[[3580,2],[3655,2]]], [3581,[6925.04,16849.5,-1.90735e-006],[[3509,2],[3656,2]]],
+[3582,[6845.15,16790.2,0],[[3509,2],[3657,2],[3658,2]]], [3583,[6781.11,16441,3.8147e-006],[[3511,2]]], [3584,[6449.27,15327.2,0],[[3512,2],[3659,2],[3660,2]]], [3585,[9199.94,8777.18,0],[[3513,2],[3661,2],[3662,2]]], [3586,[10423.2,8769.95,-5.96046e-008],[[3514,2],[3663,2],[3586,2],[3664,2]]], [3587,[10015.4,8653.08,0],[[3516,2]]],
+[3588,[9999.04,8605.92,0],[[3518,2],[3665,2]]], [3589,[9617.23,8396.83,0],[[3519,2],[3666,2]]], [3590,[9871.7,8506.8,0],[[3520,2],[3667,2],[3668,2]]], [3591,[10782.2,9174.23,0],[[3521,2],[3669,2]]], [3592,[8912.06,9671.66,0],[[3522,2],[3670,2],[3671,2]]], [3593,[9120.54,9046.37,0],[[3523,2],[3672,2]]],
+[3594,[9169.91,9095.87,-1.90735e-006],[[3523,2],[3673,2]]], [3595,[13667.4,6186.72,0],[[3526,2],[3674,2],[3675,2],[3676,2]]], [3596,[13578.6,6285.04,-3.17891e-007],[[3527,2],[3677,2],[3675,2],[3678,2]]], [3597,[13538.1,6324.39,9.53674e-007],[[3527,2]]], [3598,[13270.3,6494.08,9.53674e-007],[[3530,2]]], [3599,[13172.5,6308.65,1.58946e-007],[[3533,2],[3679,2],[3680,2]]],
+[3600,[13272.6,6269.26,0],[[3533,2]]], [3601,[12899,6448.21,4.76837e-007],[[3534,2],[3681,2]]], [3602,[12936.4,6611.08,-2.38419e-007],[[3535,2],[3602,2],[3682,2],[3683,2]]], [3603,[12945.5,6674.59,-4.76837e-007],[[3535,2]]], [3604,[13101.9,6772.89,0],[[3536,2]]], [3605,[10731.7,8790.99,0],[[3538,2],[3684,2],[3685,2]]],
+[3606,[10568.8,8522.68,0],[[3540,2]]], [3607,[10346.1,8392.24,2.38419e-007],[[3541,2],[3686,2],[3687,2]]], [3608,[10294.5,8464.89,0],[[3541,2],[3608,2]]], [3609,[10697.1,7980.31,0],[[3542,2],[3688,2],[3689,2]]], [3610,[10888.3,8105.93,0],[[3543,2]]], [3611,[12010.4,7257.63,0],[[3544,2],[3611,2],[3690,2]]],
+[3612,[11931.5,7169.1,0],[[3544,2],[3691,2],[3692,2]]], [3613,[11718.2,7363.89,0],[[3545,2],[3693,2]]], [3614,[16225.7,8078.86,0],[[3546,2]]], [3615,[16518.1,8360.89,0],[[3548,2],[3694,2]]], [3616,[16489.7,8502.25,0],[[3548,2],[3695,2]]], [3617,[16446.3,8112.14,0],[[3549,2],[3696,2],[3697,2]]],
+[3618,[8481.98,10128.3,9.53674e-007],[[3550,2],[3621,2]]], [3619,[8688.9,9938.46,-4.76837e-007],[[3550,2],[3698,2],[3671,2]]], [3620,[8566.23,10011.1,0],[[3550,2],[3620,2],[3699,2]]], [3621,[8472.97,10154.7,0],[[3550,2],[3618,2],[3621,2],[3700,2],[3701,2]]], [3622,[8672.24,10558.4,0],[[3551,2]]], [3623,[8510.24,10700.7,0],[[3551,2],[3702,2]]],
+[3624,[8483,10573.1,0],[[3551,2],[3703,2],[3651,2]]], [3625,[4586.15,12847,0],[[3554,2],[3704,2],[3705,2]]], [3626,[4780.28,12364.3,0],[[3555,2],[3706,2]]], [3627,[4974.68,12407.2,6.35783e-007],[[3555,2],[3707,2],[3708,2]]], [3628,[4378.98,12522.8,0],[[3556,2],[3709,2]]], [3629,[5464.42,11884.5,0],[[3557,2],[3710,2]]],
+[3630,[5736.98,11580.1,0],[[3557,2],[3711,2]]], [3631,[6724.52,11489.5,0],[[3558,2],[3712,2]]], [3632,[7039.5,11610.4,0],[[3560,2],[3713,2]]], [3633,[5235.92,13681.7,0],[[3561,2]]], [3634,[5097.83,13857.4,0],[[3561,2],[3714,2]]], [3635,[5576.78,13850.3,3.8147e-006],[[3562,2],[3715,2]]],
+[3636,[6393.94,14060.4,-1.90735e-006],[[3563,2],[3566,2],[3716,2]]], [3637,[6168.66,14035.7,0],[[3563,2],[3717,2]]], [3638,[6409.55,13867.5,0],[[3563,2],[3718,2]]], [3639,[6803.57,13952,0],[[3565,2]]], [3640,[6452.61,14172.2,0],[[3566,2],[3719,2],[3720,2]]], [3641,[6557.41,15020.3,0],[[3567,2],[3721,2]]],
+[3642,[6463.14,14791.9,1.27157e-006],[[3569,2],[3722,2],[3642,2],[3723,2]]], [3643,[6248.1,14820.1,0],[[3569,2],[3724,2]]], [3644,[6164.23,14718.3,0],[[3570,2],[3725,2],[3726,2]]], [3645,[8025.76,10448,-7.62939e-007],[[3571,2],[3572,2],[3727,2],[3648,2],[3728,2]]], [3646,[8165.5,10303.7,0],[[3572,2],[3648,2],[3729,2]]], [3647,[8268.41,10280.8,0],[[3572,2],[3730,2],[3701,2],[3700,2]]],
+[3648,[8107.02,10326.3,4.76837e-007],[[3572,2],[3645,2],[3646,2],[3731,2]]], [3649,[8353.35,10483.8,0],[[3575,2]]], [3650,[8403.68,10502.9,0],[[3575,2]]], [3651,[8431.05,10466.8,0],[[3575,2],[3624,2]]], [3652,[6718.82,15239.2,0],[[3576,2]]], [3653,[8601.25,17659.3,-6.35783e-007],[[3579,2],[3732,2],[3733,2]]],
+[3654,[8761.55,17784.7,0],[[3579,2],[3734,2]]], [3655,[7473.94,16733.3,0],[[3580,2],[3810,2]]], [3656,[7016.36,16828.8,0],[[3581,2],[3656,2]]], [3657,[6754.67,16951.2,3.8147e-006],[[3582,2],[3735,2]]], [3658,[6737.85,16780.8,0],[[3582,2],[3736,2]]], [3659,[6392.57,15478.4,0],[[3584,2],[3737,2]]],
+[3660,[6438.8,15194.2,0],[[3584,2],[3738,2]]], [3661,[9279.86,8627.28,-1.58946e-007],[[3585,2],[3739,2],[3740,2]]], [3662,[9125.25,8732.67,0],[[3585,2],[3741,2],[3742,2],[3743,2]]], [3663,[10416.5,8842.63,-4.76837e-007],[[3586,2]]], [3664,[10473.8,8785.51,-2.38419e-007],[[3586,2],[3685,2],[3744,2]]], [3665,[10045.9,8540.38,0],[[3588,2]]],
+[3666,[9658.26,8303.13,0],[[3589,2]]], [3667,[9995.09,8461.34,0],[[3590,2],[3745,2]]], [3668,[9921.81,8376.58,-9.53674e-007],[[3590,2],[3746,2]]], [3669,[10851.7,9089.83,0],[[3591,2],[3747,2]]], [3670,[8979.1,9702.74,-1.58946e-007],[[3592,2],[3748,2],[3749,2]]], [3671,[8770.71,9831.11,0],[[3592,2],[3619,2],[3698,2],[3750,2],[3699,2]]],
+[3672,[9007.19,8991.84,0],[[3593,2],[3751,2]]], [3673,[9162.19,9107.41,0],[[3594,2]]], [3674,[13758.5,6059.33,0],[[3595,2],[3752,2]]], [3675,[13626.3,6183.6,0],[[3595,2],[3596,2],[3677,2],[3753,2]]], [3676,[13590,5992.2,0],[[3595,2],[3754,2]]], [3677,[13602.9,6231.04,0],[[3596,2],[3675,2]]],
+[3678,[13566.1,6261.62,9.53674e-007],[[3596,2]]], [3679,[13094.2,6282.59,0],[[3599,2]]], [3680,[13173.1,6114.36,0],[[3599,2],[3755,2]]], [3681,[12802.2,6389.86,0],[[3601,2],[3756,2],[3757,2]]], [3682,[12757.5,6604.41,0],[[3602,2],[3758,2],[3682,2],[3759,2]]], [3683,[12926.4,6546.39,0],[[3602,2]]],
+[3684,[10778.2,8811.96,0],[[3605,2]]], [3685,[10564.1,8776.24,2.38419e-007],[[3605,2],[3664,2]]], [3686,[10378.9,8244.14,-4.76837e-007],[[3607,2],[3760,2]]], [3687,[10201.2,8347.06,0],[[3607,2],[3761,2],[3745,2]]], [3688,[10753.1,7877.3,0],[[3609,2]]], [3689,[10616.9,7965.83,2.38419e-007],[[3609,2]]],
+[3690,[12045.3,7260.78,0],[[3611,2]]], [3691,[12072.8,7080.42,0],[[3612,2],[3762,2]]], [3692,[11790.8,7258.21,-9.53674e-007],[[3612,2],[3693,2]]], [3693,[11688.6,7357.42,1.19209e-007],[[3613,2],[3692,2],[3763,2],[3764,2]]], [3694,[16590.3,8392.76,0],[[3615,2],[3765,2],[3766,2]]], [3695,[16492.6,8548.62,0],[[3616,2]]],
+[3696,[16597.2,8012.69,0],[[3617,2],[3767,2]]], [3697,[16417.2,8009.13,0],[[3617,2],[3768,2]]], [3698,[8727.54,9893.23,0],[[3619,2],[3671,2],[3769,2],[3750,2]]], [3699,[8673.38,9884.12,-9.53674e-007],[[3620,2],[3671,2],[3769,2]]], [3700,[8365.24,10230.6,0],[[3621,2],[3647,2]]], [3701,[8362.56,10126.5,0],[[3621,2],[3647,2],[3770,2]]],
+[3702,[8504.58,10815.1,0],[[3623,2],[3771,2]]], [3703,[8463.71,10640.2,0],[[3624,2],[3772,2],[3703,2],[3773,2]]], [3704,[4727.43,12984.5,0],[[3625,2],[3774,2]]], [3705,[4480.03,12977.3,1.90735e-006],[[3625,2],[3775,2]]], [3706,[4743.08,12344.8,0],[[3626,2],[3706,2],[3776,2]]], [3707,[5002.5,12417.4,-6.35783e-007],[[3627,2],[3777,2],[3707,2],[3778,2]]],
+[3708,[5102.22,12285.3,-1.90735e-006],[[3627,2],[3779,2]]], [3709,[4231.67,12468.1,-1.90735e-006],[[3628,2],[3780,2]]], [3710,[5377.05,12005.2,1.90735e-006],[[3629,2],[3779,2]]], [3711,[5830.96,11478.5,0],[[3630,2],[3781,2]]], [3712,[6813.03,11409.2,0],[[3631,2],[3782,2]]], [3713,[7117.66,11538.5,-6.35783e-007],[[3632,2],[3783,2],[3784,2]]],
+[3714,[5045.21,13879.3,0],[[3634,2],[3785,2],[3714,2],[3786,2]]], [3715,[5610.32,13873.1,0],[[3635,2]]], [3716,[6425.76,13960.8,0],[[3636,2],[3787,2]]], [3717,[6023.22,14016.2,0],[[3637,2],[3788,2]]], [3718,[6449.65,13804.4,-6.35783e-007],[[3638,2],[3789,2],[3790,2]]], [3719,[6370.2,14194.7,-1.27157e-006],[[3640,2],[3719,2],[3791,2]]],
+[3720,[6483.46,14235.5,0],[[3640,2]]], [3721,[6505.47,15108.5,0],[[3641,2],[3792,2]]], [3722,[6522.4,14916.3,0],[[3642,2],[3723,2],[3738,2]]], [3723,[6518.3,14880.6,0],[[3722,2],[3642,2]]], [3724,[6110.36,14858.4,1.27157e-006],[[3643,2],[3726,2],[3793,2]]], [3725,[6072.89,14576.7,0],[[3644,2],[3794,2]]],
+[3726,[6139.79,14735.6,6.35783e-007],[[3644,2],[3724,2],[3795,2]]], [3727,[7949.24,10500.1,3.8147e-007],[[3645,2],[3796,2],[3727,2],[3797,2],[3728,2],[3798,2],[3799,2]]], [3728,[7987.41,10436.7,0],[[3645,2],[3727,2],[3728,2],[3800,2]]], [3729,[8179.46,10238.7,0],[[3646,2],[3801,2],[3802,2]]], [3730,[8315.46,10138.7,0],[[3647,2],[3803,2]]], [3731,[8037.26,10290.7,0],[[3648,2],[3804,2],[3731,2],[3805,2],[3806,2]]],
+[3732,[8647.46,17546.2,-6.35783e-007],[[3653,2],[3807,2],[3808,2]]], [3733,[8580.63,17624.6,0],[[3653,2]]], [3734,[8882.74,17915,0],[[3654,2],[3809,2],[3734,2]]], [3735,[6702.86,17058.3,0],[[3657,2],[3811,2],[3812,2]]], [3736,[6701.92,16753.4,-1.90735e-006],[[3658,2]]], [3737,[6379.17,15663.8,0],[[3659,2],[3813,2]]],
+[3738,[6433.16,15176.7,0],[[3660,2],[3722,2],[3814,2]]], [3739,[9234.74,8611.51,0],[[3661,2]]], [3740,[9321.77,8486.14,0],[[3661,2],[3815,2]]], [3741,[9035.02,8568.94,0],[[3662,2],[3816,2]]], [3742,[9144.66,8808.32,0],[[3662,2]]], [3743,[9090.52,8757.7,0],[[3743,2],[3817,2]]],
+[3744,[10500.9,8911.83,0],[[3664,2]]], [3745,[10086,8388.38,0],[[3667,2],[3687,2],[3818,2],[3819,2]]], [3746,[9965.13,8265.31,0],[[3668,2],[3820,2]]], [3747,[10935.7,8999.76,0],[[3669,2],[3821,2]]], [3748,[9014.1,9788.58,3.17891e-007],[[3670,2],[3822,2],[3823,2]]], [3749,[9101.02,9661.5,0],[[3670,2]]],
+[3750,[8681.74,9869.07,0],[[3671,2],[3698,2],[3824,2]]], [3751,[8991.07,8989.95,4.76837e-007],[[3672,2],[3751,2],[3825,2],[3826,2]]], [3752,[13833.8,5943.53,0],[[3674,2],[3827,2]]], [3753,[13597.1,6161.87,0],[[3675,2]]], [3754,[13496.5,5885.63,3.17891e-007],[[3676,2],[3828,2],[3829,2]]], [3755,[13151.8,6011.31,-1.19209e-007],[[3680,2],[3830,2],[3831,2],[3832,2]]],
+[3756,[12736.7,6504.37,0],[[3681,2],[3759,2]]], [3757,[12770.6,6275.43,0],[[3681,2],[3833,2]]], [3758,[12700.9,6634.23,1.58946e-007],[[3682,2],[3834,2],[3835,2]]], [3759,[12716.9,6564,-4.76837e-007],[[3682,2],[3756,2]]], [3760,[10380.6,8198.06,-4.76837e-007],[[3686,2]]], [3761,[10173.3,8347.19,0],[[3687,2],[3836,2]]],
+[3762,[12182.6,6982,0],[[3691,2],[3837,2]]], [3763,[11603.4,7406.85,0],[[3693,2]]], [3764,[11610,7359.41,-4.76837e-007],[[3693,2]]], [3765,[16652.1,8297.42,1.19209e-007],[[3694,2],[3838,2]]], [3766,[16678.1,8443.06,0],[[3694,2]]], [3767,[16618,8005.45,0],[[3696,2],[3839,2],[3840,2]]],
+[3768,[16391.8,7910.29,1.19209e-007],[[3697,2]]], [3769,[8691,9874.9,0],[[3698,2],[3699,2]]], [3770,[8322.94,10133.7,0],[[3701,2]]], [3771,[8472.93,10923.9,0],[[3702,2],[3841,2]]], [3772,[8470.98,10623.9,0],[[3703,2]]], [3773,[8404.54,10769.5,0],[[3703,2],[3842,2]]],
+[3774,[4790.05,13127.2,0],[[3704,2],[3843,2]]], [3775,[4400.27,13071.4,0],[[3705,2],[3844,2]]], [3776,[4710.84,12319.3,0],[[3706,2],[3845,2]]], [3777,[4992.91,12419.3,0],[[3707,2]]], [3778,[5087.14,12413.6,0],[[3707,2],[3846,2]]], [3779,[5210.86,12148,0],[[3708,2],[3710,2],[3847,2]]],
+[3780,[4140.98,12430.6,-4.76837e-007],[[3709,2],[3848,2],[3849,2],[3850,2]]], [3781,[5932.09,11361.7,0],[[3711,2],[3851,2]]], [3782,[6854.41,11356.2,6.35783e-007],[[3712,2],[3852,2],[3853,2]]], [3783,[7058.29,11410.6,0],[[3713,2],[3852,2]]], [3784,[7199.65,11464.3,0],[[3713,2],[3854,2],[3855,2]]], [3785,[4898.91,13807.7,-1.90735e-006],[[3714,2],[3856,2]]],
+[3786,[4893.34,13987.8,0],[[3714,2],[3857,2]]], [3787,[6442.88,13951.2,0],[[3716,2]]], [3788,[5887.79,14006.1,0],[[3717,2]]], [3789,[6379.48,13684.2,-1.90735e-006],[[3718,2],[3858,2]]], [3790,[6521.78,13749.1,0],[[3718,2]]], [3791,[6241.89,14248.4,3.8147e-006],[[3719,2],[3859,2]]],
+[3792,[6462.82,15126.6,0],[[3721,2]]], [3793,[6012.32,14996.3,3.8147e-006],[[3724,2],[3860,2]]], [3794,[5935.91,14569,0],[[3725,2],[3861,2]]], [3795,[5969.92,14790.9,0],[[3726,2],[3862,2]]], [3796,[7961.31,10491.2,6.35783e-007],[[3727,2]]], [3797,[7945.57,10471.6,0],[[3727,2],[3863,2]]],
+[3798,[7833.82,10648,0],[[3727,2],[3864,2]]], [3799,[7902.96,10479.4,0],[[3727,2],[3865,2],[3863,2]]], [3800,[7947.37,10468.8,0],[[3728,2],[3800,2]]], [3801,[8149.87,10236.1,0],[[3729,2],[3866,2],[3804,2],[3801,2]]], [3802,[8181.34,10205.6,0],[[3729,2]]], [3803,[8205.12,10054.1,6.35783e-007],[[3730,2],[3867,2],[3868,2]]],
+[3804,[8067.32,10256.3,-1.90735e-006],[[3731,2],[3801,2],[3866,2]]], [3805,[7922.47,10324.2,-6.35783e-007],[[3731,2],[3869,2],[3805,2],[3870,2]]], [3806,[8076.21,10243.5,-1.90735e-006],[[3731,2]]], [3807,[8569.61,17470.2,0],[[3732,2],[3871,2]]], [3808,[8734.34,17507.1,0],[[3732,2]]], [3809,[8909.86,17932.2,0],[[3734,2],[3872,2],[3809,2]]],
+[3810,[7464.51,16729.4,0],[[3655,2]]], [3811,[6837.7,17066.3,0],[[3735,2],[3873,2]]], [3812,[6566.19,17187,-6.35783e-007],[[3735,2],[3874,2],[3875,2]]], [3813,[6380.67,15844.6,0],[[3737,2],[3876,2]]], [3814,[6361.15,15339.1,0],[[3738,2],[3877,2]]], [3815,[9396.34,8391,0],[[3740,2],[3878,2]]],
+[3816,[9039.31,8445.44,4.76837e-007],[[3741,2],[3879,2]]], [3817,[9048.53,8826.94,0],[[3743,2],[3817,2],[3825,2]]], [3818,[10148.8,8347.29,1.58946e-007],[[3745,2],[3818,2]]], [3819,[10067.5,8352.56,0],[[3745,2],[3819,2],[3880,2]]], [3820,[9955.45,8236.11,-4.76837e-007],[[3746,2]]], [3821,[11082.5,8992.07,0],[[3747,2],[3881,2]]],
+[3822,[8955.6,9889.51,0],[[3748,2]]], [3823,[9022.37,9881.38,4.76837e-007],[[3823,2],[3882,2]]], [3824,[8580.65,9775.95,0],[[3750,2],[3883,2]]], [3825,[8963.13,8921.31,-3.17891e-007],[[3751,2],[3817,2],[3884,2]]], [3826,[9004.43,9148.84,0],[[3751,2],[3885,2]]], [3827,[13864.8,5901.3,-1.58946e-007],[[3752,2],[3886,2],[3887,2]]],
+[3828,[13560.2,5879.79,1.19209e-007],[[3754,2],[3888,2],[3828,2],[3887,2]]], [3829,[13390.7,5872.72,0],[[3754,2],[3829,2],[3888,2],[3832,2],[3889,2]]], [3830,[13016.1,5963.35,4.76837e-007],[[3755,2],[3890,2]]], [3831,[13139.1,5983.36,0],[[3755,2],[3891,2],[3890,2],[3831,2],[3832,2]]], [3832,[13202.2,5940.34,3.17891e-007],[[3755,2],[3829,2],[3831,2],[3891,2]]], [3833,[12709.2,6286.1,0],[[3757,2],[3892,2]]],
+[3834,[12571,6626.69,0],[[3758,2],[3893,2]]], [3835,[12652,6744.46,0],[[3758,2],[3894,2]]], [3836,[10190.3,8297.23,0],[[3761,2]]], [3837,[12222,6880.06,-4.76837e-007],[[3762,2],[3895,2]]], [3838,[16720,8270.44,0],[[3765,2],[3896,2]]], [3839,[16709.7,7896.52,4.76837e-007],[[3767,2],[3897,2]]],
+[3840,[16734.3,8058.58,-4.76837e-007],[[3767,2],[3898,2]]], [3841,[8465.54,11007.2,0],[[3771,2]]], [3842,[8372.98,10866.1,0],[[3773,2]]], [3843,[4738.31,13263.7,1.90735e-006],[[3774,2],[3899,2]]], [3844,[4369.17,13101,0],[[3775,2],[3900,2],[3901,2]]], [3845,[4605.74,12207.9,0],[[3776,2],[3902,2]]],
+[3846,[5146.8,12399.5,0],[[3778,2]]], [3847,[5063.2,12032,0],[[3779,2],[3903,2]]], [3848,[4115.89,12481.3,6.35783e-007],[[3780,2],[3904,2],[3905,2]]], [3849,[4182.91,12336.1,-6.35783e-007],[[3780,2],[3849,2],[3906,2]]], [3850,[3843.66,12313.7,-1.90735e-006],[[3780,2],[3907,2]]], [3851,[6021.33,11261.8,0],[[3781,2],[3908,2]]],
+[3852,[6927.8,11337.8,0],[[3782,2],[3783,2],[3909,2]]], [3853,[6796.25,11226.4,0],[[3782,2],[3910,2]]], [3854,[7318.91,11325.2,-1.90735e-006],[[3784,2],[3911,2]]], [3855,[7201.03,11501.3,0],[[3784,2],[3912,2],[3913,2]]], [3856,[4762.97,13812,0],[[3785,2],[3914,2]]], [3857,[4773.5,14084.2,0],[[3786,2],[3915,2]]],
+[3858,[6304.4,13546.9,0],[[3789,2],[3916,2]]], [3859,[6113.65,14281.5,0],[[3791,2],[3917,2]]], [3860,[5967.82,15046.9,1.27157e-006],[[3793,2],[3918,2],[3919,2]]], [3861,[5880.31,14581.9,0],[[3794,2],[3920,2],[3921,2]]], [3862,[5858.81,14760.1,-6.35783e-007],[[3795,2],[3922,2],[3921,2]]], [3863,[7907.13,10481.7,-6.35783e-007],[[3863,2],[3799,2]]],
+[3864,[7735.64,10771.5,0],[[3798,2],[3923,2],[3924,2],[3925,2],[3864,2],[3926,2]]], [3865,[7762.27,10452,0],[[3799,2],[3927,2]]], [3866,[8115.24,10238.9,-1.27157e-006],[[3801,2],[3804,2]]], [3867,[8206.66,10021,0],[[3803,2]]], [3868,[8058.38,9967.28,0],[[3803,2],[3928,2],[3929,2]]], [3869,[7940.05,10330.9,-9.53674e-007],[[3805,2]]],
+[3870,[7807.7,10313.2,0],[[3805,2],[3930,2]]], [3871,[8564.85,17398.1,-1.90735e-006],[[3807,2],[3871,2]]], [3872,[8917.65,17776.6,0],[[3809,2],[3931,2]]], [3873,[6871.41,17069,0],[[3811,2]]], [3874,[6561.73,17235.8,-1.90735e-006],[[3812,2],[3932,2],[3933,2]]], [3875,[6461.26,17231.2,0],[[3812,2],[3934,2]]],
+[3876,[6357.61,15900.1,0],[[3813,2]]], [3877,[6283.37,15485.7,3.8147e-006],[[3814,2],[3935,2]]], [3878,[9479.1,8325.18,0],[[3815,2],[3936,2],[3937,2]]], [3879,[9004.63,8284.25,0],[[3816,2],[3938,2]]], [3880,[10019.9,8269.49,0],[[3819,2],[3939,2]]], [3881,[11210,9004.74,0],[[3821,2],[3940,2]]],
+[3882,[9045.96,9957.37,-3.17891e-007],[[3823,2],[3882,2],[3941,2]]], [3883,[8517.01,9737.34,6.35783e-007],[[3824,2],[3942,2],[3943,2]]], [3884,[8828.77,8910.1,0],[[3825,2],[3944,2]]], [3885,[9017.2,9178.71,0],[[3826,2],[3885,2],[3945,2]]], [3886,[14028.1,5776.75,-4.76837e-007],[[3827,2],[3946,2]]], [3887,[13709.9,5941.1,0],[[3827,2],[3828,2]]],
+[3888,[13479,5722.98,0],[[3828,2],[3829,2],[3947,2]]], [3889,[13275.4,5867.18,-9.53674e-007],[[3829,2],[3948,2],[3891,2]]], [3890,[13018,5943.79,1.19209e-007],[[3830,2],[3831,2],[3949,2],[3891,2],[3950,2]]], [3891,[13121,5935.21,-1.58946e-007],[[3831,2],[3832,2],[3889,2],[3890,2],[3950,2],[3948,2]]], [3892,[12598.4,6359.87,0],[[3833,2],[3951,2]]], [3893,[12448.1,6652.13,0],[[3834,2],[3952,2]]],
+[3894,[12634.8,6854.44,0],[[3835,2],[3894,2]]], [3895,[12229.2,6857.5,-3.17891e-007],[[3837,2],[3953,2],[3952,2],[3954,2]]], [3896,[16751.1,8275.22,2.38419e-007],[[3838,2]]], [3897,[16774.6,7813.3,0],[[3839,2],[3955,2]]], [3898,[16774.3,8071.18,-3.17891e-007],[[3840,2],[3956,2],[3957,2]]], [3899,[4705.51,13364.5,0],[[3843,2],[3958,2]]],
+[3900,[4255,13239,0],[[3844,2],[3959,2]]], [3901,[4291.79,12985.6,0],[[3844,2],[3960,2]]], [3902,[4664.98,12051.8,0],[[3845,2],[3961,2]]], [3903,[5000.72,11923.1,0],[[3847,2],[3962,2]]], [3904,[4098.18,12580.2,0],[[3848,2],[3904,2]]], [3905,[4061.75,12540.8,0],[[3848,2]]],
+[3906,[4234.58,12244.4,-1.90735e-006],[[3849,2]]], [3907,[3781.24,12291.8,0],[[3850,2],[3963,2],[3964,2]]], [3908,[5997.62,11134.6,0],[[3851,2],[3965,2]]], [3909,[6961.39,11189.8,0],[[3852,2],[3966,2]]], [3910,[6791.7,11104.9,-3.8147e-006],[[3853,2],[3967,2]]], [3911,[7461.16,11173.6,0],[[3854,2],[3968,2]]],
+[3912,[7361.77,11549.6,0],[[3855,2],[3969,2]]], [3913,[7124.18,11672.4,0],[[3855,2],[3970,2]]], [3914,[4617.66,13847.1,1.90735e-006],[[3856,2],[3971,2]]], [3915,[4675.32,14246.6,-1.90735e-006],[[3857,2],[3972,2]]], [3916,[6238.08,13419.9,0],[[3858,2]]], [3917,[6005.92,14213.7,0],[[3859,2],[3973,2]]],
+[3918,[5805.51,15045.9,0],[[3860,2],[3974,2]]], [3919,[5958.69,15146.6,0],[[3860,2],[3975,2],[3976,2]]], [3920,[5721.32,14596.4,0],[[3861,2],[3920,2]]], [3921,[5851.09,14700.8,0],[[3861,2],[3862,2]]], [3922,[5785.64,14810.9,0],[[3862,2],[3977,2],[3922,2],[3978,2],[3979,2]]], [3923,[7647.72,10924.6,4.76837e-007],[[3864,2],[3980,2],[3981,2],[3982,2],[3968,2]]],
+[3924,[7693.16,10704.4,6.35783e-007],[[3864,2],[3924,2],[3983,2]]], [3925,[7691.83,10795.3,0],[[3864,2],[3984,2]]], [3926,[7694.51,10809,0],[[3864,2]]], [3927,[7741.05,10414.5,-4.76837e-007],[[3865,2],[3985,2],[3986,2],[3930,2]]], [3928,[7936.25,10011.2,0],[[3868,2],[3987,2]]], [3929,[7943.63,9896.34,-9.53674e-007],[[3868,2],[3987,2],[3929,2],[3988,2]]],
+[3930,[7801.49,10371.4,0],[[3870,2],[3927,2]]], [3931,[8903.17,17749.1,0],[[3872,2],[3989,2],[3990,2]]], [3932,[6500.06,17312,1.27157e-006],[[3874,2],[3934,2],[3991,2]]], [3933,[6571.9,17437.7,0],[[3874,2],[3992,2]]], [3934,[6380.42,17259.2,1.27157e-006],[[3875,2],[3932,2],[3993,2]]], [3935,[6272.46,15521.5,0],[[3877,2]]],
+[3936,[9498.7,8267.72,0],[[3878,2]]], [3937,[9512.58,8322.53,-3.17891e-007],[[3878,2],[3937,2],[3994,2]]], [3938,[8878.4,8248.8,0],[[3879,2],[3995,2]]], [3939,[10034.3,8257.29,0],[[3880,2]]], [3940,[11280.2,9075.71,0],[[3881,2]]], [3941,[9087.59,10075.4,0],[[3882,2],[3996,2]]],
+[3942,[8392.7,9736.1,0],[[3883,2],[3997,2]]], [3943,[8564.42,9687.08,0],[[3883,2]]], [3944,[8794.02,8936.29,0],[[3884,2],[3998,2],[3999,2]]], [3945,[9055.12,9302.97,1.90735e-006],[[3885,2]]], [3946,[14122.8,5699.81,0],[[3886,2],[4000,2]]], [3947,[13427.3,5572.56,4.76837e-007],[[3888,2],[4001,2]]],
+[3948,[13174.5,5860.58,4.76837e-007],[[3889,2],[3891,2],[4002,2],[4003,2]]], [3949,[12952.9,5945.84,-9.53674e-007],[[3890,2]]], [3950,[13003,5876.68,3.8147e-007],[[3890,2],[3891,2],[4004,2],[4003,2],[4005,2],[4006,2]]], [3951,[12588,6396.4,0],[[3892,2]]], [3952,[12312.7,6753.27,0],[[3893,2],[3895,2],[3953,2]]], [3953,[12276.8,6796.97,1.19209e-007],[[3895,2],[3952,2],[4007,2],[4008,2]]],
+[3954,[12066.4,6858.71,0],[[3895,2],[4009,2]]], [3955,[16837.5,7728.91,0],[[3897,2],[4010,2],[4011,2]]], [3956,[16854.2,8066.34,0],[[3898,2]]], [3957,[16768.9,8103.52,-2.38419e-007],[[3898,2]]], [3958,[4686.36,13478.4,-1.90735e-006],[[3899,2],[4012,2]]], [3959,[4204.79,13375.2,0],[[3900,2],[4013,2]]],
+[3960,[4273.21,12915,0],[[3901,2],[4014,2],[4015,2]]], [3961,[4787.17,12043.9,0],[[3902,2],[4016,2]]], [3962,[4943.69,11819.6,-6.35783e-007],[[3903,2],[4017,2],[4016,2],[4018,2]]], [3963,[3596.28,12272.1,0],[[3907,2],[4019,2]]], [3964,[3831.01,12172.2,0],[[3907,2],[4020,2]]], [3965,[5994.46,10996.5,0],[[3908,2],[4021,2]]],
+[3966,[7020.76,11073.4,0],[[3909,2],[4022,2]]], [3967,[6672.55,11061.3,3.8147e-006],[[3910,2],[4023,2]]], [3968,[7566.3,11045.8,0],[[3911,2],[3923,2],[4024,2]]], [3969,[7425.42,11582.1,0],[[3912,2]]], [3970,[7067.83,11739.1,0],[[3913,2]]], [3971,[4554.94,13859.3,0],[[3914,2],[4025,2],[4026,2]]],
+[3972,[4614.38,14298.9,-1.90735e-006],[[3915,2],[4027,2],[4028,2]]], [3973,[5898.38,14119.9,0],[[3917,2],[4029,2]]], [3974,[5752.27,14964.4,-3.8147e-006],[[3918,2],[3979,2]]], [3975,[5954.6,15302.2,-3.8147e-006],[[3919,2],[4030,2]]], [3976,[6085.94,15191,0],[[3919,2],[4031,2]]], [3977,[5788.25,14802.4,6.35783e-007],[[3922,2]]],
+[3978,[5699.51,14803.6,0],[[3922,2],[4032,2]]], [3979,[5740.43,14861.5,1.27157e-006],[[3922,2],[3974,2],[4033,2]]], [3980,[7740.93,11009.6,0],[[3923,2],[4034,2]]], [3981,[7629.54,10897.7,1.90735e-006],[[3923,2]]], [3982,[7605.35,10988.8,0],[[3923,2],[4035,2]]], [3983,[7674.76,10595.7,0],[[3924,2]]],
+[3984,[7680.57,10801.5,0],[[3925,2]]], [3985,[7619.41,10323.9,0],[[3927,2],[4036,2]]], [3986,[7657.99,10483,0],[[3927,2],[4037,2]]], [3987,[7926.17,9938.58,0],[[3928,2],[3929,2]]], [3988,[7858,9822.24,0],[[3929,2],[4038,2],[4039,2]]], [3989,[8916.08,17665.7,0],[[3931,2]]],
+[3990,[8827.64,17636.4,1.90735e-006],[[3931,2],[4040,2]]], [3991,[6414.44,17427.2,-1.27157e-006],[[3932,2],[4041,2],[4042,2]]], [3992,[6571.04,17551,0],[[3933,2],[4043,2],[4042,2],[4044,2]]], [3993,[6269.19,17172.5,0],[[3934,2],[4045,2]]], [3994,[9573.32,8262.85,0],[[3937,2],[4046,2],[4047,2]]], [3995,[8813.72,8225.66,-1.90735e-007],[[3938,2],[3995,2],[4048,2],[4049,2],[4050,2]]],
+[3996,[9182.3,10145.7,0],[[3941,2],[4051,2]]], [3997,[8340.68,9653.08,-1.90735e-006],[[3942,2],[4052,2]]], [3998,[8658.9,9082.32,0],[[3944,2],[4053,2]]], [3999,[8624.72,8986.89,0],[[3944,2],[4054,2]]], [4000,[14230.7,5717.86,0],[[3946,2],[4055,2],[4056,2]]], [4001,[13395.4,5514.94,0],[[3947,2],[4057,2],[4058,2]]],
+[4002,[13174,5812.56,0],[[3948,2],[4059,2],[4060,2],[4004,2]]], [4003,[13135.1,5843.4,0],[[3948,2],[3950,2],[4004,2]]], [4004,[13076.4,5839.86,0],[[3950,2],[4002,2],[4003,2],[4061,2],[4060,2]]], [4005,[12926.8,5800.06,0],[[3950,2],[4062,2],[4063,2]]], [4006,[12939.6,5895.1,0],[[3950,2]]], [4007,[12171,6706.48,0],[[3953,2],[4064,2]]],
+[4008,[12330.8,6908.43,2.38419e-007],[[3953,2],[4065,2]]], [4009,[11964.4,6833.28,9.53674e-007],[[3954,2],[4066,2]]], [4010,[16914.5,7758.61,0],[[3955,2],[4067,2]]], [4011,[16884.4,7635.13,0],[[3955,2]]], [4012,[4614.75,13578.6,-1.90735e-006],[[3958,2],[4068,2]]], [4013,[4193.93,13429.7,9.53674e-007],[[3959,2],[4013,2],[4069,2],[4070,2]]],
+[4014,[4182.76,12812.8,0],[[3960,2],[4071,2]]], [4015,[4193.16,12921.9,0],[[3960,2],[4072,2]]], [4016,[4868.63,11977.8,-1.90735e-006],[[3961,2],[3962,2],[4017,2]]], [4017,[4903.59,11894.4,-4.76837e-007],[[3962,2],[4016,2],[4073,2],[4074,2]]], [4018,[4899.52,11697.5,0],[[3962,2],[4075,2],[4076,2],[4073,2]]], [4019,[3384.92,12294.4,-4.76837e-007],[[3963,2],[4077,2],[4078,2],[4079,2]]],
+[4020,[3792.99,12068.6,0],[[3964,2],[4080,2],[4081,2]]], [4021,[6091.9,10887.4,0],[[3965,2],[4082,2]]], [4022,[7068.89,11035.7,0],[[3966,2],[4083,2],[4084,2]]], [4023,[6527.4,11016.6,0],[[3967,2],[4085,2]]], [4024,[7595.9,11002.9,0],[[3968,2]]], [4025,[4455.69,13803.6,3.8147e-007],[[3971,2],[4086,2],[4087,2],[4088,2],[4089,2],[4068,2]]],
+[4026,[4497.17,13929.8,-6.35783e-007],[[3971,2],[4090,2],[4086,2]]], [4027,[4477.04,14266.1,1.90735e-006],[[3972,2],[4091,2]]], [4028,[4572.65,14361.3,0],[[3972,2],[4092,2],[4093,2]]], [4029,[5806.7,14068.4,1.90735e-006],[[3973,2],[4029,2]]], [4030,[5962.56,15464.6,-3.8147e-006],[[3975,2],[4094,2]]], [4031,[6181.1,15176.1,0],[[3976,2],[4031,2]]],
+[4032,[5610.48,14757.1,-1.90735e-006],[[3978,2]]], [4033,[5619.48,14962.7,0],[[3979,2],[4095,2],[4096,2]]], [4034,[7667.17,11143.7,0],[[3980,2],[4097,2],[4098,2]]], [4035,[7499.64,10920.5,1.90735e-006],[[3982,2],[4099,2]]], [4036,[7550.05,10317.3,-6.35783e-007],[[3985,2],[4100,2],[4101,2],[4036,2]]], [4037,[7583.88,10533.8,0],[[3986,2],[4102,2]]],
+[4038,[7728.78,9801.33,0],[[3988,2],[4103,2]]], [4039,[7903.77,9692.64,0],[[3988,2]]], [4040,[8831.66,17599.6,0],[[3990,2]]], [4041,[6247.59,17457.3,0],[[3991,2],[4104,2]]], [4042,[6428.15,17518.4,-6.35783e-007],[[3991,2],[3992,2],[4105,2],[4043,2]]], [4043,[6481.66,17518.3,-1.90735e-006],[[3992,2],[4042,2],[4106,2]]],
+[4044,[6614.14,17690.7,-1.27157e-006],[[3992,2],[4107,2],[4108,2]]], [4045,[6237.73,17156.5,0],[[3993,2],[4109,2],[4110,2]]], [4046,[9701.14,8127.88,0],[[3994,2],[4111,2]]], [4047,[9657.68,8253.38,0],[[3994,2]]], [4048,[8769.52,8344.06,0],[[3995,2],[4112,2]]], [4049,[8808.44,8143.75,0],[[3995,2]]],
+[4050,[8746.04,8189.44,0],[[3995,2],[4113,2],[4114,2]]], [4051,[9233.02,10208,-4.76837e-007],[[3996,2]]], [4052,[8392.51,9543.25,0],[[3997,2],[4115,2]]], [4053,[8567.27,9185.82,0],[[3998,2],[4116,2]]], [4054,[8499.58,8993.34,0],[[3999,2]]], [4055,[14266,5678.65,-1.58946e-007],[[4000,2],[4055,2],[4117,2]]],
+[4056,[14326.1,5771.02,0],[[4000,2],[4118,2],[4119,2]]], [4057,[13300.1,5620.97,0],[[4001,2],[4120,2],[4059,2]]], [4058,[13326.8,5419.97,0],[[4001,2],[4121,2],[4122,2]]], [4059,[13264.6,5687.2,0],[[4002,2],[4057,2],[4123,2],[4120,2]]], [4060,[13130.3,5702.87,-1.90735e-006],[[4002,2],[4004,2],[4124,2]]], [4061,[13105.6,5712.89,0],[[4004,2],[4125,2]]],
+[4062,[12897.3,5760.67,-6.35783e-007],[[4005,2],[4126,2],[4127,2]]], [4063,[12909.9,5846.18,0],[[4005,2]]], [4064,[12145.1,6677.29,-3.17891e-007],[[4007,2],[4064,2],[4128,2]]], [4065,[12410,6925.32,0],[[4008,2],[4129,2]]], [4066,[11869.8,6757.24,0],[[4009,2],[4130,2]]], [4067,[16932.4,7713.08,-2.38419e-007],[[4010,2]]],
+[4068,[4567.28,13736.3,0],[[4012,2],[4025,2],[4089,2]]], [4069,[4271.09,13498.6,0],[[4013,2],[4131,2]]], [4070,[4155.29,13519.9,0],[[4013,2],[4132,2]]], [4071,[4115.56,12764.6,0],[[4014,2]]], [4072,[4178.94,12939.9,0],[[4015,2],[4072,2],[4133,2]]], [4073,[4862.43,11706.1,0],[[4017,2],[4018,2],[4134,2]]],
+[4074,[4928.05,12001,0],[[4017,2]]], [4075,[5014.22,11539,0],[[4018,2],[4135,2]]], [4076,[4862.29,11685.7,1.90735e-006],[[4018,2],[4136,2]]], [4077,[3164.31,12364,-1.90735e-006],[[4019,2],[4137,2],[4138,2]]], [4078,[3374.28,12277,0],[[4019,2],[4078,2],[4139,2]]], [4079,[3418.68,12329.4,6.35783e-007],[[4019,2],[4140,2],[4141,2]]],
+[4080,[3920.67,12156.4,0],[[4020,2],[4142,2]]], [4081,[3690.83,11958.7,0],[[4020,2],[4143,2]]], [4082,[6212.9,10809,0],[[4021,2],[4144,2]]], [4083,[7218.73,10950.7,0],[[4022,2],[4099,2]]], [4084,[6979.02,10937.7,0],[[4022,2],[4145,2]]], [4085,[6445.62,10895.5,0],[[4023,2],[4146,2]]],
+[4086,[4458.33,13882.5,0],[[4025,2],[4026,2]]], [4087,[4284.54,13881.7,0],[[4025,2],[4147,2]]], [4088,[4296.01,13753.2,0],[[4025,2],[4148,2]]], [4089,[4545.83,13774.8,0],[[4025,2],[4068,2]]], [4090,[4460.85,14015.1,1.90735e-006],[[4026,2],[4149,2]]], [4091,[4453.11,14245.4,0],[[4027,2]]],
+[4092,[4696.33,14477.2,0],[[4028,2],[4150,2]]], [4093,[4483.46,14485.4,3.8147e-006],[[4028,2],[4151,2]]], [4094,[5922.7,15615.3,0],[[4030,2],[4152,2]]], [4095,[5469.07,15097.9,0],[[4033,2],[4153,2]]], [4096,[5556.51,14889.9,1.90735e-006],[[4033,2]]], [4097,[7702.65,11200.3,-9.53674e-007],[[4034,2]]],
+[4098,[7560.3,11286.9,0],[[4034,2],[4154,2]]], [4099,[7336.73,10879.6,0],[[4035,2],[4083,2],[4155,2]]], [4100,[7480.06,10284.5,0],[[4036,2],[4156,2],[4157,2]]], [4101,[7562.97,10323.3,-1.90735e-006],[[4036,2]]], [4102,[7518.33,10577.5,-1.90735e-006],[[4037,2],[4158,2]]], [4103,[7674.53,9773.41,-4.76837e-007],[[4038,2],[4159,2],[4160,2],[4161,2]]],
+[4104,[6132.66,17484.6,0],[[4041,2],[4162,2]]], [4105,[6318,17629.7,0],[[4042,2],[4163,2]]], [4106,[6439.47,17557.3,0],[[4043,2]]], [4107,[6672.87,17787.8,0],[[4044,2],[4164,2],[4165,2]]], [4108,[6492.67,17720.7,0],[[4044,2],[4166,2]]], [4109,[6078.3,17174.9,0],[[4045,2],[4167,2]]],
+[4110,[6076.41,17064.4,0],[[4045,2],[4168,2]]], [4111,[9738.04,8081.95,1.58946e-007],[[4046,2],[4169,2],[4170,2]]], [4112,[8748.02,8477.34,0],[[4048,2],[4171,2]]], [4113,[8641.62,8285.12,0],[[4050,2],[4172,2]]], [4114,[8707.2,8076.34,3.17891e-007],[[4050,2],[4173,2],[4174,2]]], [4115,[8408.45,9416.76,0],[[4052,2],[4175,2]]],
+[4116,[8488.16,9253.92,0],[[4053,2],[4175,2],[4176,2],[4116,2]]], [4117,[14242.1,5508.19,0],[[4055,2],[4177,2]]], [4118,[14273.5,5893.62,0],[[4056,2],[4178,2]]], [4119,[14398.1,5812.64,0],[[4056,2],[4179,2],[4180,2]]], [4120,[13255.3,5651.38,0],[[4057,2],[4059,2],[4122,2]]], [4121,[13356.4,5264.04,0],[[4058,2],[4181,2],[4182,2]]],
+[4122,[13279.5,5466.52,0],[[4058,2],[4120,2],[4183,2]]], [4123,[13269.9,5673.74,4.76837e-007],[[4059,2]]], [4124,[13096.4,5699.5,0],[[4060,2]]], [4125,[12996.9,5646.38,0],[[4061,2]]], [4126,[12827.5,5749.92,0],[[4062,2],[4184,2],[4185,2],[4127,2]]], [4127,[12898.5,5670.57,-3.57628e-007],[[4062,2],[4126,2],[4186,2],[4127,2],[4185,2]]],
+[4128,[12121.5,6556.51,0],[[4064,2],[4187,2],[4188,2]]], [4129,[12484.7,7028.53,0],[[4065,2],[4189,2]]], [4130,[11737.3,6695.28,0],[[4066,2],[4190,2]]], [4131,[4300.22,13591.8,0],[[4069,2],[4148,2]]], [4132,[4101.36,13605.4,0],[[4070,2],[4191,2]]], [4133,[4099.34,12888.6,-3.8147e-006],[[4072,2]]],
+[4134,[4857.1,11687.7,0],[[4073,2]]], [4135,[5126.11,11409,0],[[4075,2],[4192,2]]], [4136,[4738.84,11725.4,0],[[4076,2],[4193,2]]], [4137,[3016.49,12432.4,0],[[4077,2],[4194,2],[4195,2],[4138,2],[4196,2]]], [4138,[3056.69,12451.2,0],[[4137,2],[4196,2],[4077,2],[4252,2]]], [4139,[3279.71,12176.4,0],[[4078,2],[4197,2]]],
+[4140,[3494.9,12323.6,0],[[4079,2],[4198,2]]], [4141,[3473.94,12395.9,0],[[4079,2]]], [4142,[4021.87,12180,0],[[4080,2],[4199,2]]], [4143,[3681.37,11861.2,0],[[4081,2],[4200,2]]], [4144,[6220.96,10774.7,0],[[4082,2],[4201,2],[4144,2],[4202,2],[4146,2]]], [4145,[6981.04,10848,0],[[4084,2],[4203,2]]],
+[4146,[6391.29,10826.6,0],[[4085,2],[4144,2],[4204,2]]], [4147,[4145.77,13932.7,0],[[4087,2],[4205,2],[4206,2]]], [4148,[4303.94,13640.5,0],[[4088,2],[4131,2]]], [4149,[4428.43,14047.7,0],[[4090,2]]], [4150,[4791.22,14502.4,0],[[4092,2],[4207,2]]], [4151,[4367.47,14592.1,0],[[4093,2],[4208,2]]],
+[4152,[5903.8,15656.8,0],[[4094,2],[4209,2],[4210,2]]], [4153,[5381.8,15189.2,0],[[4095,2],[4211,2]]], [4154,[7541.37,11326.8,0],[[4098,2]]], [4155,[7381.75,10684.4,0],[[4099,2],[4212,2],[4158,2]]], [4156,[7452.52,10388.7,0],[[4100,2],[4213,2],[4214,2]]], [4157,[7478.26,10195.2,0],[[4100,2],[4215,2],[4216,2]]],
+[4158,[7432.1,10643.6,0],[[4102,2],[4155,2],[4217,2]]], [4159,[7757.9,9663.58,0],[[4103,2],[4218,2],[4219,2]]], [4160,[7578.29,9821.67,0],[[4103,2],[4161,2],[4220,2],[4221,2]]], [4161,[7606.5,9748.94,0],[[4103,2],[4160,2],[4222,2]]], [4162,[6084.66,17535.3,-1.90735e-006],[[4104,2],[4162,2]]], [4163,[6230.96,17720.6,0],[[4105,2],[4223,2]]],
+[4164,[6706.32,17897.8,0],[[4107,2],[4164,2],[4224,2]]], [4165,[6740.68,17714.3,0],[[4107,2],[4165,2],[4225,2],[4226,2]]], [4166,[6397.06,17821.3,-1.90735e-006],[[4108,2]]], [4167,[5952.32,17130.8,0],[[4109,2],[4227,2]]], [4168,[5952.24,17034.3,0],[[4110,2],[4227,2]]], [4169,[9767.11,8134.03,9.53674e-007],[[4111,2]]],
+[4170,[9805.19,7992.05,0],[[4111,2],[4228,2],[4170,2]]], [4171,[8745.34,8509.47,-1.90735e-006],[[4112,2]]], [4172,[8544.23,8355.29,0],[[4113,2],[4229,2]]], [4173,[8597.23,8200,0],[[4114,2]]], [4174,[8684.53,7971.81,0],[[4114,2],[4230,2],[4231,2]]], [4175,[8408.37,9368.09,0],[[4115,2],[4116,2],[4232,2]]],
+[4176,[8500,9239.98,9.53674e-007],[[4116,2]]], [4177,[14283.3,5379.8,0],[[4117,2],[4233,2]]], [4178,[14247.1,5940.44,-2.38419e-007],[[4118,2]]], [4179,[14478.6,5885.93,0],[[4119,2],[4234,2],[4235,2]]], [4180,[14382.3,5896.32,0],[[4180,2]]], [4181,[13477.1,5110.82,2.38419e-007],[[4121,2],[4236,2],[4181,2],[4237,2]]],
+[4182,[13312.8,5127.41,2.38419e-007],[[4121,2],[4238,2],[4239,2],[4240,2]]], [4183,[13139.1,5442.5,0],[[4122,2],[4241,2]]], [4184,[12699.5,5836.19,4.76837e-007],[[4126,2],[4242,2]]], [4185,[12857.8,5682.47,-3.57628e-007],[[4126,2],[4127,2],[4243,2],[4185,2]]], [4186,[12933.2,5592.12,7.94729e-008],[[4127,2],[4244,2],[4241,2],[4245,2]]], [4187,[12128,6474.95,0],[[4128,2]]],
+[4188,[12079.9,6555.62,0],[[4128,2]]], [4189,[12571.1,7177.97,0],[[4129,2],[4246,2]]], [4190,[11642.2,6713.75,0],[[4130,2]]], [4191,[4070.5,13712.7,-1.27157e-006],[[4132,2],[4247,2],[4205,2]]], [4192,[5250.43,11339.6,0],[[4135,2],[4248,2]]], [4193,[4611.9,11814.6,0],[[4136,2],[4249,2]]],
+[4194,[2960.49,12280.4,0],[[4137,2],[4250,2]]], [4195,[2853.55,12527.1,0],[[4137,2],[4251,2]]], [4196,[3131.62,12390.2,-4.76837e-007],[[4138,2],[4308,2],[4137,2]]], [4197,[3235.02,12069.7,0],[[4139,2],[4253,2]]], [4198,[3506.14,12317.1,0],[[4140,2]]], [4199,[4077.02,12092.4,-1.90735e-006],[[4142,2],[4254,2]]],
+[4200,[3723.7,11791.6,6.35783e-007],[[4143,2],[4255,2],[4256,2]]], [4201,[6137.05,10681.8,-3.8147e-007],[[4144,2],[4257,2],[4258,2],[4259,2]]], [4202,[6296.87,10620.4,0],[[4144,2],[4260,2]]], [4203,[7091.16,10736.1,-1.90735e-006],[[4145,2],[4261,2]]], [4204,[6517.1,10718.1,-3.8147e-006],[[4146,2],[4262,2]]], [4205,[4034.52,13877.1,0],[[4147,2],[4191,2],[4263,2]]],
+[4206,[4204.06,14132.4,1.90735e-006],[[4147,2],[4264,2]]], [4207,[4943.06,14498.9,0],[[4150,2],[4265,2]]], [4208,[4267.09,14696.8,1.90735e-006],[[4151,2],[4266,2]]], [4209,[5938.73,15774.2,0],[[4152,2],[4267,2]]], [4210,[5796.53,15685.7,-3.8147e-006],[[4152,2],[4268,2]]], [4211,[5304.45,15298.2,1.90735e-006],[[4153,2],[4269,2]]],
+[4212,[7391.21,10654.6,0],[[4155,2],[4213,2]]], [4213,[7435.66,10534.5,0],[[4156,2],[4212,2]]], [4214,[7367.46,10331.7,0],[[4156,2],[4270,2]]], [4215,[7434.79,10184,6.35783e-007],[[4157,2],[4271,2],[4272,2]]], [4216,[7551.15,10190.7,0],[[4157,2]]], [4217,[7407,10654.8,0],[[4158,2]]],
+[4218,[7856.44,9543.54,1.90735e-006],[[4159,2],[4273,2],[4219,2]]], [4219,[7862.8,9578.13,0],[[4159,2],[4218,2],[4273,2]]], [4220,[7420.53,9864.8,0],[[4160,2],[4274,2]]], [4221,[7542.54,9991.36,0],[[4160,2],[4271,2]]], [4222,[7568.92,9600.96,0],[[4161,2],[4275,2]]], [4223,[6203.08,17771.3,0],[[4163,2]]],
+[4224,[6575.24,17968.6,0],[[4164,2],[4276,2]]], [4225,[6814.01,17664.6,0],[[4165,2],[4277,2],[4278,2]]], [4226,[6732.2,17680.3,3.8147e-006],[[4165,2]]], [4227,[5894.15,17093.5,6.35783e-007],[[4167,2],[4168,2],[4279,2]]], [4228,[9787.03,8008.65,0],[[4170,2]]], [4229,[8398.64,8402,0],[[4172,2],[4280,2]]],
+[4230,[8715.89,7785,0],[[4174,2],[4281,2]]], [4231,[8564.1,7936.96,-4.76837e-007],[[4174,2],[4282,2]]], [4232,[8373.01,9253.47,0],[[4175,2],[4283,2]]], [4233,[14379.6,5297.68,0],[[4177,2],[4284,2]]], [4234,[14651.7,5971.02,0],[[4179,2],[4285,2],[4286,2]]], [4235,[14455.3,5958.26,0],[[4179,2]]],
+[4236,[13479.5,5086.35,0],[[4181,2],[4287,2],[4238,2]]], [4237,[13662.1,5106.42,4.76837e-007],[[4181,2],[4288,2]]], [4238,[13473.1,5038.64,3.17891e-007],[[4182,2],[4236,2],[4287,2],[4289,2]]], [4239,[13265.9,5153.93,3.17891e-007],[[4182,2],[4290,2],[4240,2]]], [4240,[13287,5063.36,9.53674e-008],[[4182,2],[4239,2],[4291,2],[4292,2],[4293,2]]], [4241,[13057.7,5452.97,0],[[4183,2],[4186,2],[4244,2],[4294,2],[4290,2],[4295,2]]],
+[4242,[12653,5950.79,1.19209e-007],[[4184,2],[4296,2],[4297,2],[4298,2]]], [4243,[12851.1,5676.28,0],[[4185,2]]], [4244,[12983.2,5533.91,0],[[4186,2],[4241,2],[4299,2]]], [4245,[12946,5511.12,-2.38419e-007],[[4186,2],[4300,2]]], [4246,[12604.9,7224.68,0],[[4189,2]]], [4247,[4011,13617,0],[[4191,2]]],
+[4248,[5343.57,11253.1,0],[[4192,2],[4301,2]]], [4249,[4481.73,11770.8,0],[[4193,2],[4302,2]]], [4250,[2976.32,12196.6,0],[[4194,2],[4303,2],[4304,2]]], [4251,[2758.31,12578.3,0],[[4195,2],[4305,2],[4306,2],[4251,2],[4307,2]]], [4252,[3087.51,12619,0],[[4138,2],[4309,2]]], [4253,[3261.64,11983.6,0],[[4197,2],[4310,2]]],
+[4254,[4116.88,12032.7,-1.90735e-006],[[4199,2]]], [4255,[3766.51,11760.3,-6.35783e-007],[[4200,2],[4311,2],[4255,2]]], [4256,[3689.29,11784.6,0],[[4200,2]]], [4257,[5992.15,10653.5,0],[[4201,2],[4312,2]]], [4258,[6132.96,10559.3,-6.35783e-007],[[4201,2],[4313,2],[4314,2]]], [4259,[5968.45,10759.4,0],[[4201,2],[4315,2]]],
+[4260,[6340.32,10475.5,-1.90735e-006],[[4202,2],[4316,2]]], [4261,[7125.61,10642.1,0],[[4203,2],[4317,2]]], [4262,[6643.01,10675.4,1.90735e-006],[[4204,2],[4318,2]]], [4263,[3890.62,13899.2,0],[[4205,2],[4319,2]]], [4264,[4110,14220,0],[[4206,2],[4320,2]]], [4265,[5075.36,14580.6,3.8147e-006],[[4207,2],[4321,2]]],
+[4266,[4185.36,14827.6,-3.8147e-006],[[4208,2],[4322,2]]], [4267,[5950.16,15798.4,0],[[4209,2],[4323,2],[4324,2]]], [4268,[5717.16,15717.3,0],[[4210,2]]], [4269,[5229.82,15401.2,0],[[4211,2],[4325,2],[4326,2]]], [4270,[7350.5,10324.5,0],[[4214,2],[4327,2],[4328,2],[4272,2]]], [4271,[7489.26,10079.6,0],[[4215,2],[4221,2]]],
+[4272,[7333.67,10219.3,0],[[4215,2],[4270,2],[4329,2]]], [4273,[7932.21,9485.11,0],[[4218,2],[4219,2],[4330,2],[4331,2]]], [4274,[7268.64,9871.71,0],[[4220,2],[4332,2]]], [4275,[7567.12,9490.16,0],[[4222,2],[4333,2]]], [4276,[6555.5,17994.4,0],[[4224,2]]], [4277,[6894.39,17691.5,0],[[4225,2]]],
+[4278,[6862.19,17588.7,-3.8147e-006],[[4225,2],[4334,2]]], [4279,[5797.97,17127,0],[[4227,2],[4335,2]]], [4280,[8290.61,8446.07,0],[[4229,2],[4336,2],[4337,2]]], [4281,[8724.11,7652.16,0],[[4230,2],[4338,2],[4339,2],[4340,2]]], [4282,[8487.51,8000.19,0],[[4231,2]]], [4283,[8320.82,9219.93,0],[[4232,2],[4341,2],[4342,2],[4343,2]]],
+[4284,[14419.4,5237.3,1.58946e-007],[[4233,2],[4284,2],[4344,2]]], [4285,[14800.3,5960.53,0],[[4234,2],[4345,2]]], [4286,[14658.8,6080.12,0],[[4234,2],[4346,2]]], [4287,[13495.2,5063.4,0],[[4236,2],[4238,2],[4289,2]]], [4288,[13811.1,5082.11,0],[[4237,2],[4347,2]]], [4289,[13621.8,4935.1,0],[[4238,2],[4287,2],[4348,2]]],
+[4290,[13175.8,5299.98,9.53674e-007],[[4239,2],[4241,2],[4349,2]]], [4291,[13366.6,4950.12,0],[[4240,2],[4350,2]]], [4292,[13265.6,4872.84,-9.53674e-007],[[4240,2],[4351,2]]], [4293,[13176.8,4968.46,0],[[4240,2],[4352,2]]], [4294,[13145.8,5341.98,0],[[4241,2],[4353,2]]], [4295,[13038.2,5372.29,0],[[4241,2],[4354,2]]],
+[4296,[12726.9,6014.33,0],[[4296,2],[4298,2]]], [4297,[12603.8,5955.68,3.17891e-007],[[4242,2],[4355,2],[4356,2]]], [4298,[12654.8,6047.78,-7.94729e-008],[[4242,2],[4296,2],[4357,2]]], [4299,[12979.1,5491.69,0],[[4244,2]]], [4300,[12956.1,5486.27,-2.38419e-007],[[4245,2]]], [4301,[5458.55,11139.3,0],[[4248,2],[4358,2]]],
+[4302,[4355.29,11691,0],[[4249,2],[4359,2]]], [4303,[2948.02,12165.5,0],[[4250,2],[4360,2],[4304,2],[4361,2],[4362,2]]], [4304,[2997.01,12146.5,1.90735e-006],[[4250,2],[4303,2],[4363,2]]], [4305,[2591.2,12645.2,0],[[4251,2],[4364,2]]], [4306,[2767.47,12578,0],[[4251,2]]], [4307,[2765.64,12668.7,0],[[4251,2],[4365,2]]],
+[4308,[3267.49,12391.9,0],[[4196,2],[4366,2]]], [4309,[3100.5,12703.4,0],[[4252,2],[4367,2]]], [4310,[3261.06,11938.5,0],[[4253,2],[4368,2],[4363,2]]], [4311,[3784.26,11614.7,0],[[4255,2],[4369,2]]], [4312,[5849.42,10596,1.90735e-006],[[4257,2],[4370,2]]], [4313,[6044.35,10389.4,-1.90735e-006],[[4258,2],[4371,2]]],
+[4314,[6202.95,10406,-1.90735e-006],[[4258,2],[4372,2]]], [4315,[5853.37,10838.5,0],[[4259,2],[4373,2]]], [4316,[6368.78,10395.4,0],[[4260,2],[4374,2],[4375,2],[4376,2]]], [4317,[7070.55,10583.6,0],[[4261,2],[4377,2]]], [4318,[6678.88,10624.4,4.76837e-007],[[4262,2],[4378,2],[4379,2],[4380,2]]], [4319,[3735.85,13871,0],[[4263,2],[4381,2]]],
+[4320,[4060.79,14319.8,0],[[4264,2],[4382,2]]], [4321,[5156.77,14648.2,0],[[4265,2],[4383,2]]], [4322,[4179.93,14852.5,-2.54313e-006],[[4266,2],[4384,2],[4385,2]]], [4323,[6095.13,15849.7,0],[[4267,2],[4386,2]]], [4324,[5948.61,15962.8,0],[[4267,2],[4387,2]]], [4325,[5264.01,15629.9,-9.53674e-007],[[4269,2],[4388,2],[4389,2],[4390,2]]],
+[4326,[5089.38,15286.2,0],[[4269,2],[4391,2]]], [4327,[7319.7,10410,0],[[4270,2]]], [4328,[7316.47,10259.5,0],[[4270,2],[4392,2]]], [4329,[7318.68,10247.9,0],[[4272,2]]], [4330,[8021.85,9316.28,0],[[4273,2],[4393,2]]], [4331,[8076.56,9396.82,0],[[4273,2],[4331,2]]],
+[4332,[7230.02,9935.45,0],[[4274,2],[4394,2]]], [4333,[7556.74,9453.5,1.27157e-006],[[4275,2],[4395,2],[4333,2]]], [4334,[6910,17524.6,0],[[4278,2],[4396,2]]], [4335,[5630.99,17120.6,0],[[4279,2],[4397,2]]], [4336,[8172.75,8277.22,2.38419e-007],[[4280,2],[4398,2],[4399,2]]], [4337,[8174.98,8555.22,0],[[4280,2],[4400,2]]],
+[4338,[8601.99,7620.45,0],[[4281,2],[4401,2]]], [4339,[8857.89,7569.58,0],[[4281,2],[4402,2]]], [4340,[8834.65,7717.71,0],[[4281,2],[4340,2]]], [4341,[8412.77,9133.11,0],[[4283,2],[4403,2]]], [4342,[8180.85,9297.82,0],[[4283,2],[4393,2]]], [4343,[8251.41,9166.27,4.76837e-007],[[4283,2],[4404,2],[4405,2],[4406,2]]],
+[4344,[14431.1,5168,-1.58946e-007],[[4284,2],[4407,2],[4408,2]]], [4345,[14913.6,5966.94,0],[[4285,2],[4409,2],[4410,2]]], [4346,[14700.6,6169.46,0],[[4286,2],[4411,2]]], [4347,[13965.7,5018.89,4.76837e-007],[[4288,2],[4412,2]]], [4348,[13730.2,4810.04,0],[[4289,2],[4413,2]]], [4349,[13157.4,5328.27,-9.53674e-007],[[4290,2]]],
+[4350,[13433.2,4802.69,-1.90735e-006],[[4291,2],[4414,2]]], [4351,[13234.2,4752.16,0],[[4292,2],[4415,2]]], [4352,[13148.9,4953.46,-1.58946e-007],[[4293,2],[4416,2],[4417,2]]], [4353,[13125.8,5266.32,0],[[4294,2]]], [4354,[13078.1,5243.67,0],[[4295,2],[4418,2]]], [4355,[12488.3,5895.28,0],[[4297,2],[4419,2],[4420,2]]],
+[4356,[12561,6012.15,0],[[4297,2],[4421,2],[4422,2],[4356,2]]], [4357,[12618.5,6213.53,0],[[4298,2],[4423,2]]], [4358,[5566.18,11081.7,6.35783e-007],[[4301,2],[4424,2],[4373,2]]], [4359,[4306.2,11560.6,-6.35783e-007],[[4302,2],[4425,2],[4426,2]]], [4360,[2745.45,12229,0],[[4303,2],[4427,2],[4362,2]]], [4361,[2923.8,12029.5,0],[[4303,2],[4428,2]]],
+[4362,[2727.55,12193.4,0],[[4616,2],[4731,2],[4360,2],[4303,2]]], [4363,[3144.49,12038.8,0],[[4304,2],[4310,2]]], [4364,[2543.11,12654.6,6.35783e-007],[[4305,2],[4429,2],[4430,2]]], [4365,[2772.9,12715.2,6.35783e-007],[[4307,2],[4431,2],[4432,2]]], [4366,[3338.72,12438.5,0],[[4308,2],[4433,2]]], [4367,[3169.13,12771.7,0],[[4309,2],[4434,2]]],
+[4368,[3357.34,11814.2,0],[[4310,2],[4435,2],[4436,2]]], [4369,[3766.48,11469,0],[[4311,2],[4437,2]]], [4370,[5758.53,10556.1,-1.90735e-006],[[4312,2],[4438,2]]], [4371,[5926.02,10292,1.90735e-006],[[4313,2],[4439,2]]], [4372,[6213.81,10291.1,3.8147e-006],[[4314,2],[4440,2]]], [4373,[5739.41,10940.9,1.90735e-006],[[4315,2],[4358,2]]],
+[4374,[6414.85,10235.3,1.90735e-006],[[4316,2],[4441,2]]], [4375,[6282.26,10293.7,0],[[4316,2],[4440,2]]], [4376,[6486.63,10453.3,0],[[4316,2],[4378,2]]], [4377,[6934.95,10599.2,1.90735e-006],[[4317,2],[4380,2]]], [4378,[6640.42,10529.9,0],[[4318,2],[4376,2],[4442,2]]], [4379,[6667.17,10722.1,-1.90735e-006],[[4318,2]]],
+[4380,[6862.26,10659.4,0],[[4318,2],[4377,2]]], [4381,[3674.85,13832.6,0],[[4319,2],[4443,2],[4444,2]]], [4382,[4107.91,14388,1.90735e-006],[[4320,2]]], [4383,[5287.32,14695.7,0],[[4321,2],[4445,2]]], [4384,[4026.27,14837.3,-1.90735e-006],[[4322,2],[4446,2]]], [4385,[4205.24,14980.9,0],[[4322,2],[4447,2],[4448,2]]],
+[4386,[6197.82,15834.3,0],[[4323,2],[4386,2]]], [4387,[5848.97,16060.5,0],[[4324,2],[4449,2]]], [4388,[5323.85,15589.9,0],[[4325,2],[4388,2],[4450,2],[4451,2]]], [4389,[5256.36,15819.8,0],[[4325,2],[4452,2]]], [4390,[5334.23,15737.3,-3.8147e-006],[[4325,2],[4453,2]]], [4391,[4972.04,15222.5,0],[[4326,2],[4454,2]]],
+[4392,[7202.42,10285.8,0],[[4328,2],[4455,2]]], [4393,[8111.58,9295.39,0],[[4330,2],[4342,2]]], [4394,[7146.94,10047.5,0],[[4332,2],[4394,2]]], [4395,[7564.82,9330.45,0],[[4333,2],[4456,2]]], [4396,[6956.31,17491.4,0],[[4334,2],[4457,2]]], [4397,[5525.89,17246.6,0],[[4335,2],[4458,2]]],
+[4398,[8040.91,8341.24,-9.53674e-007],[[4336,2],[4459,2]]], [4399,[8155.26,8172.16,-3.17891e-007],[[4336,2],[4460,2]]], [4400,[8120.83,8694.31,0],[[4337,2],[4461,2]]], [4401,[8520.3,7618.24,0],[[4338,2]]], [4402,[8890.31,7550.77,0],[[4339,2],[4462,2],[4463,2],[4464,2]]], [4403,[8418.89,9118.54,1.90735e-006],[[4341,2]]],
+[4404,[8210.87,9157.62,0],[[4343,2]]], [4405,[8191.01,9127.3,-1.90735e-006],[[4343,2]]], [4406,[8204.06,9097.57,1.90735e-006],[[4343,2],[4465,2]]], [4407,[14371.4,5064.22,-4.76837e-007],[[4344,2],[4466,2]]], [4408,[14546.5,5046.38,0],[[4344,2],[4467,2]]], [4409,[14959.7,5861.09,1.90735e-006],[[4345,2],[4468,2]]],
+[4410,[15037.5,5998.47,0],[[4345,2],[4469,2],[4470,2]]], [4411,[14778,6245.04,0],[[4346,2],[4471,2]]], [4412,[14093.4,4966.85,0],[[4347,2],[4472,2]]], [4413,[13806.6,4713.92,4.76837e-007],[[4348,2],[4473,2],[4413,2],[4474,2]]], [4414,[13484,4668.4,0],[[4350,2],[4475,2]]], [4415,[13196.5,4669.2,0],[[4351,2],[4476,2],[4477,2]]],
+[4416,[13005.7,4939.55,1.19209e-007],[[4352,2]]], [4417,[13177.7,4935.37,-9.53674e-007],[[4352,2]]], [4418,[13067.3,5173.82,0],[[4354,2]]], [4419,[12355.2,5925.85,0],[[4355,2],[4478,2]]], [4420,[12520.8,5749.41,4.76837e-007],[[4355,2],[4479,2]]], [4421,[12469.2,6025.86,0],[[4356,2]]],
+[4422,[12510.9,6076.98,0],[[4356,2]]], [4423,[12689.1,6217.71,0],[[4357,2],[4423,2]]], [4424,[5569.94,11134.8,0],[[4358,2]]], [4425,[4193.67,11670.1,0],[[4359,2],[4480,2]]], [4426,[4261.36,11387.3,-1.90735e-006],[[4359,2],[4481,2]]], [4427,[2631,12268.9,-1.90735e-006],[[4360,2],[4482,2]]],
+[4428,[2924.73,11988.9,-9.53674e-007],[[4428,2],[4483,2]]], [4429,[2398.05,12709.8,-1.90735e-006],[[4364,2],[4484,2]]], [4430,[2486.45,12621.3,0],[[4364,2],[4485,2],[4486,2],[4430,2]]], [4431,[2699.34,12765.4,0],[[4365,2],[4487,2]]], [4432,[2853.05,12707.6,0],[[4365,2],[4432,2],[4488,2],[4489,2],[4490,2]]], [4433,[3383.48,12509.2,0],[[4366,2],[4491,2],[4492,2]]],
+[4434,[3228.59,12779.4,0],[[4367,2]]], [4435,[3490.34,11640.2,0],[[4368,2],[4493,2]]], [4436,[3258.64,11719.5,0],[[4368,2],[4494,2]]], [4437,[3833.17,11341.6,0],[[4369,2],[4495,2]]], [4438,[5745.39,10540,-6.35783e-007],[[4370,2],[4496,2],[4497,2]]], [4439,[5934.26,10123,0],[[4371,2],[4498,2]]],
+[4440,[6205.47,10264.5,1.27157e-006],[[4372,2],[4375,2],[4499,2]]], [4441,[6421.06,10212.8,6.35783e-007],[[4374,2],[4500,2],[4501,2]]], [4442,[6694.78,10361.8,0],[[4378,2],[4502,2],[4500,2]]], [4443,[3697.7,13979.5,0],[[4381,2],[4503,2]]], [4444,[3658.95,13675.9,0],[[4381,2],[4504,2]]], [4445,[5393.25,14739.9,0],[[4383,2],[4505,2]]],
+[4446,[3956.98,14797.7,0],[[4384,2]]], [4447,[4327.5,15098.4,0],[[4385,2],[4506,2]]], [4448,[4186.1,15120.4,0],[[4385,2],[4507,2],[4508,2]]], [4449,[5834,16206,0],[[4387,2],[4509,2]]], [4450,[5413.95,15505.9,0],[[4388,2],[4510,2]]], [4451,[5461.49,15696.8,0],[[4388,2],[4511,2]]],
+[4452,[5173.18,15991.6,0],[[4389,2],[4512,2]]], [4453,[5362.35,15770.3,0],[[4390,2]]], [4454,[4889.76,15179.7,0],[[4391,2],[4454,2],[4513,2]]], [4455,[7127.63,10292.8,0],[[4392,2]]], [4456,[7545.25,9241.42,0],[[4395,2],[4514,2]]], [4457,[7015.11,17450.5,0],[[4396,2],[4515,2]]],
+[4458,[5442.06,17358.5,0],[[4397,2],[4516,2]]], [4459,[7997.83,8377.69,0],[[4398,2],[4517,2],[4518,2]]], [4460,[8068.16,8088.89,0],[[4399,2],[4519,2]]], [4461,[8156.23,8786.41,0],[[4400,2],[4520,2]]], [4462,[8843.57,7470.6,0],[[4402,2],[4521,2]]], [4463,[9003.66,7415.26,0],[[4402,2],[4522,2]]],
+[4464,[9007.9,7604.78,3.17891e-007],[[4402,2],[4523,2],[4524,2]]], [4465,[8169.23,9071.47,0],[[4406,2],[4465,2],[4525,2]]], [4466,[14306.9,4976.41,0],[[4407,2],[4526,2]]], [4467,[14649.1,4908.3,0],[[4408,2],[4527,2]]], [4468,[14883.6,5793.08,0],[[4409,2],[4528,2]]], [4469,[15192.9,5966,-1.90735e-006],[[4410,2],[4529,2]]],
+[4470,[14977,6117.28,0],[[4410,2],[4471,2]]], [4471,[14816.8,6264.93,-2.38419e-007],[[4411,2],[4470,2],[4471,2],[4530,2]]], [4472,[14148,4921.55,0],[[4412,2],[4472,2],[4531,2],[4532,2]]], [4473,[13833.7,4530.79,4.76837e-007],[[4413,2],[4533,2]]], [4474,[13930.9,4628.05,-2.38419e-007],[[4413,2],[4534,2],[4535,2],[4474,2]]], [4475,[13584.6,4545.99,0],[[4414,2],[4536,2]]],
+[4476,[13236,4587.29,0],[[4415,2],[4537,2],[4538,2]]], [4477,[13087.3,4563.6,0],[[4415,2],[4539,2]]], [4478,[12273.4,5912.05,0],[[4419,2],[4540,2],[4541,2],[4542,2]]], [4479,[12529.6,5708.13,0],[[4420,2]]], [4480,[4112.9,11750.4,0],[[4425,2]]], [4481,[4230.5,11304,6.35783e-007],[[4426,2],[4543,2],[4544,2]]],
+[4482,[2493.55,12389.4,0],[[4427,2],[4545,2],[4546,2],[4485,2]]], [4483,[2907.79,11843.4,0],[[4428,2]]], [4484,[2282.08,12741.7,0],[[4429,2],[4547,2]]], [4485,[2499.06,12475.5,6.35783e-007],[[4430,2],[4482,2],[4546,2],[4548,2]]], [4486,[2483.85,12636.4,0],[[4430,2]]], [4487,[2686.46,12758.8,0],[[4431,2]]],
+[4488,[2914.46,12629.6,0],[[4432,2]]], [4489,[2822.73,12800.9,0],[[4432,2],[4549,2]]], [4490,[2946.66,12795.1,0],[[4432,2],[4550,2]]], [4491,[3409.14,12634.3,1.90735e-006],[[4433,2],[4551,2]]], [4492,[3483.87,12580.1,-1.90735e-006],[[4433,2]]], [4493,[3607.07,11511.3,0],[[4435,2],[4552,2]]],
+[4494,[3189.27,11675.6,3.8147e-006],[[4436,2],[4553,2]]], [4495,[3841.12,11325.7,0],[[4437,2],[4552,2],[4554,2]]], [4496,[5665.86,10615.7,0],[[4438,2],[4555,2]]], [4497,[5732.73,10433.2,3.17891e-007],[[4438,2],[4556,2],[4497,2]]], [4498,[5897.63,10042.1,0],[[4439,2]]], [4499,[6069.93,10167.8,0],[[4440,2],[4557,2]]],
+[4500,[6569.21,10260.2,0],[[4441,2],[4442,2],[4558,2],[4559,2]]], [4501,[6418.74,10140.7,4.76837e-007],[[4441,2],[4560,2],[4561,2],[4562,2]]], [4502,[6688.94,10285.7,3.8147e-006],[[4442,2],[4563,2]]], [4503,[3713.58,14110.8,6.35783e-007],[[4443,2],[4564,2],[4565,2]]], [4504,[3568.64,13615.2,-1.90735e-006],[[4444,2],[4566,2]]], [4505,[5433.16,14755.4,6.35783e-007],[[4445,2],[4567,2],[4568,2]]],
+[4506,[4437.84,15070.5,0],[[4447,2],[4569,2]]], [4507,[4107.22,15211.2,0],[[4448,2],[4570,2]]], [4508,[4306.89,15161.1,0],[[4448,2],[4571,2]]], [4509,[5817.23,16303.7,0],[[4449,2],[4509,2],[4572,2]]], [4510,[5527.07,15499.5,0],[[4450,2],[4573,2]]], [4511,[5530.51,15743.1,0],[[4451,2]]],
+[4512,[5140.46,16045.7,1.27157e-006],[[4452,2],[4574,2],[4575,2]]], [4513,[4748.54,15105.2,0],[[4454,2],[4576,2]]], [4514,[7500.42,9183.52,0],[[4456,2],[4514,2],[4577,2],[4578,2]]], [4515,[7050,17384.6,0],[[4457,2],[4579,2]]], [4516,[5378.13,17452.4,6.35783e-007],[[4458,2],[4580,2],[4516,2],[4581,2]]], [4517,[7924.05,8486.17,6.35783e-007],[[4459,2],[4582,2],[4583,2]]],
+[4518,[7911.42,8277.58,0],[[4459,2]]], [4519,[8006.09,8027.55,-1.58946e-007],[[4460,2],[4584,2],[4585,2]]], [4520,[8207.82,8802.43,0],[[4461,2],[4586,2],[4520,2],[4587,2]]], [4521,[8754.31,7431.69,0],[[4462,2],[4521,2]]], [4522,[9080.98,7325.78,0],[[4463,2],[4588,2],[4589,2],[4590,2]]], [4523,[8910.02,7697.32,0],[[4464,2],[4523,2]]],
+[4524,[9130.43,7598.71,0],[[4464,2]]], [4525,[8170.17,9033.61,0],[[4465,2]]], [4526,[14303.5,4917.32,1.19209e-007],[[4466,2],[4526,2],[4591,2],[4592,2],[4531,2]]], [4527,[14748.2,4820.67,0],[[4467,2],[4593,2]]], [4528,[14785.2,5790.29,0],[[4468,2],[4594,2]]], [4529,[15223.1,5974.22,-6.35783e-007],[[4469,2],[4595,2],[4596,2]]],
+[4530,[14789.4,6350.38,0],[[4471,2],[4597,2],[4598,2]]], [4531,[14282.4,4864.39,0],[[4472,2],[4526,2],[4599,2],[4592,2]]], [4532,[14196.4,4768.53,9.53674e-007],[[4472,2],[4600,2]]], [4533,[13840.4,4474.2,0],[[4473,2],[4601,2],[4602,2],[4533,2]]], [4534,[14058.6,4609.65,0],[[4474,2],[4603,2]]], [4535,[14020,4493.75,2.38419e-007],[[4474,2]]],
+[4536,[13651.6,4422.56,0],[[4475,2],[4604,2]]], [4537,[13377.7,4500.82,0],[[4476,2],[4605,2]]], [4538,[13233.5,4440.58,0],[[4476,2],[4606,2]]], [4539,[13045.4,4536.8,0],[[4477,2],[4607,2],[4608,2]]], [4540,[12231.3,6041.36,-9.53674e-007],[[4478,2],[4609,2]]], [4541,[12126.8,5936.84,1.58946e-007],[[4478,2],[4610,2],[4611,2]]],
+[4542,[12268.1,5716.84,4.76837e-007],[[4478,2],[4612,2]]], [4543,[4112.28,11330.7,0],[[4481,2],[4613,2],[4543,2]]], [4544,[4183.29,11148.8,0],[[4481,2],[4614,2],[4615,2]]], [4545,[2569.49,12263.3,0],[[4482,2],[4616,2]]], [4546,[2453.63,12446.1,0],[[4482,2],[4485,2],[4617,2]]], [4547,[2151.97,12770.4,0],[[4484,2],[4618,2]]],
+[4548,[2537.74,12480,0],[[4485,2]]], [4549,[2867.36,12854.7,0],[[4489,2]]], [4550,[3010.27,12779.8,1.90735e-006],[[4490,2],[4619,2]]], [4551,[3458.71,12667.9,-1.90735e-006],[[4491,2]]], [4552,[3691.98,11427.1,0],[[4493,2],[4495,2]]], [4553,[3127.7,11545.9,0],[[4494,2],[4620,2]]],
+[4554,[3916.67,11312.1,-9.53674e-007],[[4495,2],[4621,2],[4613,2],[4622,2]]], [4555,[5632.76,10594.4,0],[[4496,2]]], [4556,[5620.5,10291.7,0],[[4497,2],[4623,2]]], [4557,[6030.57,10118.3,-1.27157e-006],[[4499,2],[4624,2],[4625,2]]], [4558,[6634.66,10176.1,0],[[4500,2],[4563,2]]], [4559,[6661.68,10284.6,0],[[4500,2]]],
+[4560,[6330.33,9988.32,0],[[4501,2],[4626,2],[4561,2],[4627,2]]], [4561,[6345.79,10069,0],[[4501,2],[4560,2]]], [4562,[6554.82,10021.1,0],[[4501,2],[4628,2]]], [4563,[6697.35,10175.6,-1.27157e-006],[[4502,2],[4558,2],[4628,2]]], [4564,[3820.6,14207.8,0],[[4503,2],[4629,2]]], [4565,[3655.2,14230.2,0],[[4503,2],[4630,2],[4631,2]]],
+[4566,[3524.55,13620.4,0],[[4504,2],[4632,2],[4633,2]]], [4567,[5548.36,14742.4,0],[[4505,2]]], [4568,[5460.51,14790.4,0],[[4505,2]]], [4569,[4546.05,15108.5,0],[[4506,2],[4576,2]]], [4570,[4108.87,15344.8,3.8147e-006],[[4507,2],[4634,2]]], [4571,[4386.57,15199.9,0],[[4508,2],[4635,2]]],
+[4572,[5807.98,16364.5,-1.27157e-006],[[4509,2],[4636,2],[4637,2]]], [4573,[5598.22,15526.1,-3.8147e-006],[[4510,2]]], [4574,[5005.95,16150.7,0],[[4512,2],[4638,2]]], [4575,[5263.33,16165.4,0],[[4512,2],[4639,2]]], [4576,[4630.48,15155.7,0],[[4513,2],[4569,2]]], [4577,[7381.8,9084.06,1.90735e-006],[[4514,2],[4640,2]]],
+[4578,[7589.94,9171.1,3.8147e-006],[[4514,2],[4641,2]]], [4579,[7102.12,17357,3.8147e-006],[[4515,2],[4642,2]]], [4580,[5400.1,17455.9,9.53674e-007],[[4516,2]]], [4581,[5196.33,17433.6,1.90735e-006],[[4516,2],[4643,2]]], [4582,[7744.97,8511.03,0],[[4517,2],[4644,2]]], [4583,[7966.89,8643.37,3.8147e-006],[[4517,2],[4645,2]]],
+[4584,[7882.42,7904.22,0],[[4519,2],[4646,2]]], [4585,[7968.86,8086.9,0],[[4519,2]]], [4586,[8179.99,8797.03,0],[[4520,2],[4647,2]]], [4587,[8283.05,8825.42,0],[[4520,2]]], [4588,[9150.51,7403.08,0],[[4522,2],[4648,2]]], [4589,[9170.17,7301.47,0],[[4522,2]]],
+[4590,[9058.32,7165.74,0],[[4522,2],[4649,2]]], [4591,[14430.2,4892.55,0],[[4526,2],[4650,2]]], [4592,[14304.2,4852.27,0],[[4526,2],[4531,2],[4651,2]]], [4593,[14840,4701.97,0],[[4527,2],[4593,2]]], [4594,[14745.9,5770.41,0],[[4528,2]]], [4595,[15368.9,5860.41,0],[[4529,2],[4595,2],[4652,2],[4653,2]]],
+[4596,[15249.7,6171.06,0],[[4529,2],[4654,2]]], [4597,[14744.3,6354.77,4.76837e-007],[[4530,2]]], [4598,[14812.7,6535.28,0],[[4530,2],[4655,2]]], [4599,[14295.6,4852.2,0],[[4531,2],[4599,2]]], [4600,[14199.6,4740.63,1.58946e-007],[[4532,2],[4656,2],[4657,2]]], [4601,[13899.2,4480.51,0],[[4533,2]]],
+[4602,[13835.1,4393.71,0],[[4533,2],[4658,2],[4604,2],[4659,2]]], [4603,[14095.1,4653.3,0],[[4534,2],[4660,2],[4657,2]]], [4604,[13723.1,4322.16,0],[[4536,2],[4602,2],[4658,2]]], [4605,[13370.2,4406.32,0],[[4537,2],[4661,2]]], [4606,[13204.2,4362.44,0],[[4538,2],[4662,2]]], [4607,[13002.6,4652.04,0],[[4539,2],[4663,2]]],
+[4608,[12926.6,4464.61,1.58946e-007],[[4539,2],[4664,2],[4665,2]]], [4609,[12184,6119.08,0],[[4540,2],[4666,2]]], [4610,[12096.1,5922.05,3.17891e-007],[[4541,2],[4667,2],[4668,2]]], [4611,[12061.9,6047.1,1.58946e-007],[[4541,2],[4669,2],[4670,2]]], [4612,[12342,5624.1,3.17891e-007],[[4542,2],[4671,2],[4672,2]]], [4613,[4072.59,11332.3,0],[[4543,2],[4554,2],[4673,2]]],
+[4614,[4172.85,11076,-1.27157e-006],[[4544,2],[4674,2],[4675,2]]], [4615,[4159.94,11177.7,0],[[4544,2]]], [4616,[2613.05,12223,0],[[4545,2],[4362,2]]], [4617,[2297.11,12553.7,0],[[4546,2],[4676,2]]], [4618,[2030.91,12810.3,0],[[4547,2],[4677,2],[4678,2],[4679,2],[4618,2]]], [4619,[3014.94,12760.4,0],[[4550,2]]],
+[4620,[3090.52,11423.8,0],[[4553,2],[4680,2]]], [4621,[3995.31,11218,0],[[4554,2],[4674,2],[4681,2]]], [4622,[3924.62,11346.8,1.90735e-006],[[4554,2]]], [4623,[5605.08,10277.8,0],[[4556,2],[4682,2],[4683,2]]], [4624,[6062.58,10001.7,-3.8147e-006],[[4557,2],[4684,2],[4625,2]]], [4625,[6123.81,10050.4,0],[[4557,2],[4624,2],[4684,2]]],
+[4626,[6253.92,9858.42,-1.43051e-006],[[4560,2],[4685,2],[4626,2],[4686,2],[4687,2]]], [4627,[6182.08,9993.1,-3.8147e-006],[[4560,2],[4684,2]]], [4628,[6650.95,10043.7,0],[[4562,2],[4563,2]]], [4629,[3904.62,14310.3,0],[[4564,2],[4688,2]]], [4630,[3752.79,14328.7,1.90735e-006],[[4565,2]]], [4631,[3563.94,14261.7,1.90735e-006],[[4565,2],[4689,2]]],
+[4632,[3485.04,13547.6,1.90735e-006],[[4566,2],[4690,2]]], [4633,[3359.17,13604.6,6.35783e-007],[[4566,2],[4691,2],[4692,2]]], [4634,[4119.91,15468.7,0],[[4570,2],[4693,2]]], [4635,[4422.17,15220.6,0],[[4571,2]]], [4636,[5773.85,16383.5,1.27157e-006],[[4572,2],[4694,2],[4695,2]]], [4637,[5930.57,16471.7,3.8147e-006],[[4572,2],[4696,2]]],
+[4638,[5031.42,16286.3,0],[[4574,2],[4697,2]]], [4639,[5394.38,16187.4,0],[[4575,2],[4698,2]]], [4640,[7317.85,8941.87,0],[[4577,2],[4699,2]]], [4641,[7679.61,9165.04,0],[[4578,2],[4700,2]]], [4642,[7179.08,17321.4,0],[[4579,2],[4701,2],[4642,2],[4702,2]]], [4643,[5055.45,17420.5,0],[[4581,2],[4703,2]]],
+[4644,[7631.31,8619.9,0],[[4582,2],[4704,2]]], [4645,[7921.35,8732.9,0],[[4583,2],[4645,2]]], [4646,[7869.67,7810.46,0],[[4584,2],[4705,2]]], [4647,[8182.26,8802.96,0],[[4586,2]]], [4648,[9179.02,7410.35,0],[[4588,2]]], [4649,[9061.32,6989.06,0],[[4590,2],[4706,2]]],
+[4650,[14467.9,4875.32,0],[[4591,2]]], [4651,[14331.3,4790.88,1.19209e-007],[[4651,2]]], [4652,[15368.9,5820.07,1.90735e-006],[[4595,2]]], [4653,[15470,5837.79,1.27157e-006],[[4595,2],[4707,2],[4708,2]]], [4654,[15203.4,6285.24,0],[[4596,2],[4709,2]]], [4655,[14854.6,6640.48,4.76837e-007],[[4598,2],[4710,2]]],
+[4656,[14211.8,4735.53,0],[[4600,2]]], [4657,[14161.3,4684,1.58946e-007],[[4600,2],[4603,2],[4660,2],[4711,2],[4657,2]]], [4658,[13729.5,4305.16,9.53674e-007],[[4602,2],[4604,2],[4712,2]]], [4659,[13905.4,4259.48,0],[[4602,2]]], [4660,[14125.7,4667,0],[[4603,2],[4657,2]]], [4661,[13344.1,4375.6,0],[[4605,2]]],
+[4662,[13186.9,4340.2,0],[[4606,2]]], [4663,[12914,4675.32,2.38419e-007],[[4607,2],[4713,2]]], [4664,[12827,4457.32,9.53674e-007],[[4608,2],[4714,2],[4715,2]]], [4665,[12911,4430.94,-1.58946e-007],[[4608,2],[4716,2],[4717,2]]], [4666,[12203.5,6144.85,0],[[4609,2],[4718,2],[4719,2]]], [4667,[12040.8,5893.65,0],[[4610,2],[4720,2]]],
+[4668,[12131.1,5796.52,4.76837e-007],[[4610,2],[4721,2],[4722,2]]], [4669,[12001.6,6052.92,-3.17891e-007],[[4611,2],[4669,2],[4723,2]]], [4670,[11976.6,6153.74,0],[[4611,2],[4724,2]]], [4671,[12272.4,5566.59,0],[[4612,2],[4725,2]]], [4672,[12358.9,5490.3,0],[[4612,2],[4726,2]]], [4673,[3977.85,11454.8,0],[[4613,2],[4727,2]]],
+[4674,[4082.21,11138,0],[[4614,2],[4621,2],[4728,2]]], [4675,[4212.93,11004.2,-2.54313e-006],[[4614,2],[4729,2],[4730,2]]], [4676,[2268.25,12550.7,-1.27157e-006],[[4617,2],[4732,2],[4733,2]]], [4677,[2126.94,12719.4,-1.90735e-006],[[4618,2],[4733,2]]], [4678,[1809.99,12822.2,0],[[4618,2],[4734,2],[4678,2],[4735,2],[4736,2],[4737,2],[4738,2]]], [4679,[2038.86,12862.4,4.76837e-007],[[4618,2],[4679,2],[4739,2]]],
+[4680,[3038.72,11325.6,0],[[4620,2],[4740,2]]], [4681,[3848.08,11198.1,0],[[4621,2],[4741,2],[4742,2]]], [4682,[5479.78,10180.5,0],[[4623,2],[4743,2]]], [4683,[5564.57,10333.3,-6.35783e-007],[[4623,2],[4744,2],[4745,2]]], [4684,[6095.46,10006.6,0],[[4624,2],[4625,2],[4627,2],[4687,2]]], [4685,[6251.18,9784.19,-4.76837e-007],[[4626,2],[4746,2],[4747,2]]],
+[4686,[6225.05,9817.12,-6.35783e-007],[[4626,2],[4748,2],[4687,2]]], [4687,[6197.04,9896.99,0],[[4626,2],[4684,2],[4686,2],[4749,2]]], [4688,[3984.19,14421.5,0],[[4629,2]]], [4689,[3524.57,14258,0],[[4631,2]]], [4690,[3522.86,13490.4,1.90735e-006],[[4632,2],[4750,2]]], [4691,[3285.56,13581.2,-6.35783e-007],[[4633,2],[4751,2],[4752,2]]],
+[4692,[3344.99,13531.3,6.35783e-007],[[4633,2],[4753,2],[4754,2]]], [4693,[4094.72,15507.1,0],[[4634,2],[4755,2],[4756,2],[4757,2]]], [4694,[5724.58,16337.9,0],[[4636,2],[4758,2]]], [4695,[5697.64,16567,0],[[4636,2],[4759,2]]], [4696,[6062.37,16535.4,0],[[4637,2],[4760,2]]], [4697,[4985.19,16413.5,0],[[4638,2],[4761,2]]],
+[4698,[5522.96,16233.7,0],[[4639,2]]], [4699,[7270.43,8827.26,-4.76837e-007],[[4640,2],[4762,2],[4763,2],[4764,2]]], [4700,[7721.5,9174.34,0],[[4641,2]]], [4701,[7161.42,17327.5,0],[[4642,2]]], [4702,[7307.87,17313.9,0],[[4642,2],[4765,2]]], [4703,[4918.49,17412.3,0],[[4643,2],[4766,2]]],
+[4704,[7549.76,8682.9,-4.76837e-007],[[4644,2],[4704,2],[4767,2],[4768,2]]], [4705,[7858.48,7734.84,-4.76837e-007],[[4646,2],[4769,2],[4705,2]]], [4706,[9056.5,6958.54,0],[[4649,2],[4770,2],[4771,2],[4772,2],[4773,2]]], [4707,[15525.2,5852.31,1.27157e-006],[[4653,2],[4775,2],[4776,2],[4708,2]]], [4708,[15588.6,5765.85,0],[[4653,2],[4707,2],[4777,2],[4776,2]]], [4709,[15138.2,6388.99,-1.90735e-006],[[4654,2],[4778,2]]],
+[4710,[14850,6736.46,0],[[4655,2],[4779,2]]], [4711,[14174.4,4693.37,0],[[4657,2]]], [4712,[13753.7,4178.22,-9.53674e-007],[[4658,2],[4780,2]]], [4713,[12829,4699.86,2.38419e-007],[[4663,2],[4781,2]]], [4714,[12646.3,4487.32,2.38419e-007],[[4664,2],[4782,2],[4783,2],[4784,2]]], [4715,[12827,4429.55,0],[[4664,2]]],
+[4716,[13040.5,4344.18,0],[[4665,2],[4785,2]]], [4717,[12865.7,4379.52,3.17891e-007],[[4665,2],[4786,2],[4787,2]]], [4718,[12187,6276.76,0],[[4666,2]]], [4719,[12334.5,6123.91,0],[[4666,2],[4788,2]]], [4720,[11948.3,5836.61,0],[[4667,2],[4789,2]]], [4721,[12088.9,5724.08,0],[[4668,2],[4722,2],[4721,2]]],
+[4722,[12108.8,5729.49,0],[[4721,2],[4668,2]]], [4723,[11882.2,6097.98,0],[[4669,2],[4790,2]]], [4724,[11893,6260.55,0],[[4670,2],[4724,2]]], [4725,[12171.4,5547.91,0],[[4671,2],[4791,2]]], [4726,[12296.3,5403.07,1.58946e-007],[[4672,2],[4792,2],[4793,2]]], [4727,[3967.64,11560.2,0],[[4673,2]]],
+[4728,[4019.35,11028.8,0],[[4674,2],[4794,2]]], [4729,[4362.73,11089.5,0],[[4675,2],[4795,2]]], [4730,[4249.21,10905.9,0],[[4675,2],[4796,2],[4797,2]]], [4731,[2827.72,12202.1,-1.27157e-006],[[4362,2]]], [4732,[2246.95,12512.2,-1.27157e-006],[[4676,2],[4732,2],[4798,2]]], [4733,[2167.46,12667.4,0],[[4676,2],[4677,2]]],
+[4734,[1831.57,12805.4,0],[[4678,2]]], [4735,[1791.28,12777.4,0],[[4678,2]]], [4736,[1625.99,12811,-6.35783e-007],[[4678,2],[4799,2],[4800,2]]], [4737,[1875.33,12843.1,0],[[4678,2],[4801,2]]], [4738,[1744.79,12888.1,-1.90735e-006],[[4678,2]]], [4739,[2002.54,13051.4,-1.27157e-006],[[4679,2],[4802,2],[4803,2]]],
+[4740,[2955.28,11236.5,0],[[4680,2],[4804,2]]], [4741,[3837.27,11262.6,0],[[4681,2]]], [4742,[3687.15,11196.6,0],[[4681,2],[4805,2]]], [4743,[5360.92,10171.6,-1.90735e-006],[[4682,2],[4806,2]]], [4744,[5501.88,10351.5,-1.90735e-006],[[4683,2]]], [4745,[5520.69,10512.5,1.90735e-006],[[4683,2],[4807,2]]],
+[4746,[6374.81,9823.53,0],[[4685,2]]], [4747,[6298.92,9633.25,-9.53674e-007],[[4685,2],[4808,2]]], [4748,[6186.58,9705.69,0],[[4686,2],[4809,2]]], [4749,[6170.72,9970.85,0],[[4687,2]]], [4750,[3573,13417.2,0],[[4690,2],[4810,2],[4811,2]]], [4751,[3268.94,13734.5,0],[[4691,2],[4812,2]]],
+[4752,[3183.06,13524.3,4.76837e-007],[[4691,2],[4813,2],[4752,2],[4814,2]]], [4753,[3243.95,13405.1,0],[[4692,2],[4815,2]]], [4754,[3425.57,13445.7,0],[[4692,2],[4811,2]]], [4755,[4270.98,15582.6,-3.8147e-006],[[4693,2],[4816,2]]], [4756,[4068.9,15590.8,0],[[4693,2],[4817,2],[4818,2]]], [4757,[3947.24,15449.1,0],[[4693,2],[4819,2]]],
+[4758,[5652.34,16316.6,0],[[4694,2],[4820,2]]], [4759,[5654.59,16673.7,-3.8147e-006],[[4695,2],[4821,2]]], [4760,[6113.17,16557.5,-1.90735e-006],[[4696,2]]], [4761,[4937.93,16471.7,0],[[4697,2],[4822,2],[4823,2]]], [4762,[7437.4,8834.89,0],[[4699,2],[4824,2]]], [4763,[7106.96,8907.32,0],[[4699,2],[4825,2]]],
+[4764,[7274.52,8726.85,-7.62939e-007],[[4699,2],[4826,2],[4827,2],[4767,2]]], [4765,[7341.6,17341.2,0],[[4702,2]]], [4766,[4851.02,17536.1,0],[[4703,2],[4828,2]]], [4767,[7446.31,8720.48,-2.38419e-007],[[4704,2],[4764,2],[4767,2]]], [4768,[7524.61,8744.21,0],[[4704,2],[4824,2]]], [4769,[7780.62,7674.79,0],[[4705,2],[4829,2],[4830,2]]],
+[4770,[9138.89,6956.09,2.38419e-007],[[4706,2]]], [4771,[9065.68,6857.52,1.19209e-007],[[4706,2],[4831,2]]], [4772,[8890.28,6931.49,0],[[4706,2],[4832,2]]], [4773,[9016.48,6972.39,0],[[4706,2]]], [4774,[14330.7,4695.34,0],[[4651,2]]], [4775,[15590.1,5997.66,1.90735e-007],[[4707,2],[4776,2],[4833,2],[4834,2],[4835,2]]],
+[4776,[15579.6,5846.53,7.62939e-007],[[4707,2],[4708,2],[4775,2],[4776,2],[4836,2]]], [4777,[15638.4,5700.47,0],[[4708,2],[4837,2],[4838,2],[4777,2]]], [4778,[15130.9,6503.14,1.90735e-006],[[4709,2],[4839,2]]], [4779,[14822.5,6764.05,0],[[4710,2]]], [4780,[13765.3,4160.97,-3.17891e-007],[[4712,2],[4840,2],[4841,2]]], [4781,[12758.9,4712.5,0],[[4713,2],[4842,2]]],
+[4782,[12624.6,4580.34,0],[[4714,2],[4843,2]]], [4783,[12601.6,4534.26,0],[[4714,2],[4844,2]]], [4784,[12471.8,4529.13,0],[[4714,2],[4845,2],[4846,2]]], [4785,[13141,4242.16,-9.53674e-007],[[4716,2],[4847,2]]], [4786,[12719.7,4294.96,0],[[4717,2],[4848,2],[4849,2]]], [4787,[12893.3,4242.37,0],[[4717,2],[4850,2],[4851,2]]],
+[4788,[12434,6108.73,0],[[4719,2]]], [4789,[11903.8,5750.06,0],[[4720,2],[4852,2]]], [4790,[11772.8,6160.63,0],[[4723,2],[4853,2]]], [4791,[12085.6,5564.5,0],[[4725,2],[4854,2]]], [4792,[12215.5,5320.1,0],[[4726,2],[4855,2]]], [4793,[12294.3,5304.9,0],[[4726,2]]],
+[4794,[4023.75,10921.8,0],[[4728,2],[4856,2],[4857,2],[4796,2]]], [4795,[4470.65,11034,6.35783e-007],[[4729,2],[4858,2],[4859,2]]], [4796,[4119.91,10922.8,0],[[4730,2],[4794,2]]], [4797,[4315.4,10762.1,0],[[4730,2],[4860,2],[4861,2]]], [4798,[2279.19,12391.8,0],[[4732,2],[4862,2],[4863,2]]], [4799,[1546.13,12814.4,6.35783e-007],[[4736,2],[4864,2],[4865,2]]],
+[4800,[1676.6,12710.5,0],[[4736,2],[4866,2]]], [4801,[1934.57,12869.7,0],[[4737,2],[4801,2]]], [4802,[2094.3,13191.4,0],[[4739,2],[4867,2]]], [4803,[1834.86,13147.7,0],[[4739,2],[4868,2]]], [4804,[2925.52,11211,1.90735e-006],[[4740,2]]], [4805,[3620.78,11100,-1.90735e-006],[[4742,2],[4869,2]]],
+[4806,[5317.37,10179.4,-6.35783e-007],[[4743,2],[4870,2],[4871,2]]], [4807,[5490.4,10641.4,0],[[4745,2],[4872,2]]], [4808,[6399.75,9556.9,0],[[4747,2],[4873,2]]], [4809,[6183.53,9657.4,0],[[4748,2],[4874,2],[4875,2]]], [4810,[3625.22,13302.8,1.90735e-006],[[4750,2],[4876,2]]], [4811,[3499.19,13412.3,0],[[4750,2],[4754,2],[4877,2]]],
+[4812,[3267.64,13800.4,0],[[4751,2]]], [4813,[3025.34,13456,-9.53674e-007],[[4752,2],[4878,2],[4813,2],[4879,2]]], [4814,[3110.93,13399.3,0],[[4752,2],[4880,2]]], [4815,[3185.97,13317.1,-4.76837e-007],[[4753,2],[4881,2],[4882,2],[4880,2]]], [4816,[4341.71,15605.1,-3.8147e-006],[[4755,2]]], [4817,[3930.22,15674.7,-1.27157e-006],[[4756,2],[4883,2],[4884,2]]],
+[4818,[4149.81,15661.7,0],[[4756,2]]], [4819,[3852.28,15451,-3.8147e-006],[[4757,2],[4885,2]]], [4820,[5616.87,16316.8,0],[[4758,2]]], [4821,[5606.78,16768.8,3.8147e-006],[[4759,2],[4886,2]]], [4822,[4871.91,16612.8,0],[[4761,2],[4887,2]]], [4823,[4914.37,16388.1,0],[[4761,2],[4888,2]]],
+[4824,[7514.2,8792.9,0],[[4762,2],[4768,2]]], [4825,[6978.31,8972.95,1.90735e-006],[[4763,2],[4889,2]]], [4826,[7252.62,8669.39,0],[[4764,2],[4826,2],[4890,2],[4891,2]]], [4827,[7107.93,8639.31,0],[[4764,2],[4892,2]]], [4828,[4716.1,17619.4,1.90735e-006],[[4766,2],[4893,2]]], [4829,[7648.26,7772.5,2.38419e-007],[[4769,2],[4894,2],[4829,2],[4895,2]]],
+[4830,[7830.93,7498.99,9.53674e-007],[[4769,2],[4896,2]]], [4831,[9025.71,6750.03,0],[[4771,2],[4897,2]]], [4832,[8775.1,6959.73,1.90735e-006],[[4772,2],[4898,2]]], [4833,[15598.7,6116.41,0],[[4775,2],[4899,2],[4900,2]]], [4834,[15639.5,6089.04,0],[[4775,2]]], [4835,[15689.6,6073.17,0],[[4775,2],[4901,2],[4902,2],[4903,2]]],
+[4836,[15729.4,5836.12,-1.90735e-006],[[4776,2],[4904,2]]], [4837,[15699,5740.33,0],[[4777,2]]], [4838,[15654.6,5643.57,3.8147e-007],[[4777,2],[4905,2],[4906,2],[4907,2]]], [4839,[15127.5,6536.96,-6.35783e-007],[[4778,2],[4839,2],[4908,2]]], [4840,[13761.4,4108.42,-3.17891e-007],[[4780,2],[4909,2],[4910,2]]], [4841,[13846.9,4157.51,-4.76837e-007],[[4780,2]]],
+[4842,[12741.1,4768.3,0],[[4781,2]]], [4843,[12623.6,4602.21,0],[[4782,2]]], [4844,[12545.7,4559.92,9.53674e-007],[[4783,2],[4911,2]]], [4845,[12448.7,4654.35,0],[[4784,2],[4912,2],[4911,2]]], [4846,[12413.4,4399.82,2.38419e-007],[[4784,2],[4913,2],[4914,2]]], [4847,[13207.6,4107.67,2.38419e-007],[[4785,2],[4915,2],[4916,2],[4917,2]]],
+[4848,[12571.9,4216.97,0],[[4786,2],[4918,2]]], [4849,[12673.2,4380.36,0],[[4786,2],[4919,2]]], [4850,[12925.5,4231.43,-9.53674e-007],[[4787,2]]], [4851,[12846.3,4113,0],[[4787,2],[4920,2],[4921,2]]], [4852,[11813.5,5739.44,0],[[4789,2]]], [4853,[11677.3,6152.68,-9.53674e-007],[[4790,2],[4922,2]]],
+[4854,[12055.2,5489.62,0],[[4791,2],[4923,2]]], [4855,[12171,5302.55,0],[[4792,2]]], [4856,[3854.79,10852.6,4.76837e-007],[[4794,2],[4924,2],[4856,2],[4925,2],[4926,2]]], [4857,[4087.5,10842.4,-1.90735e-006],[[4794,2],[4927,2]]], [4858,[4425.36,10882.6,0],[[4795,2],[4928,2],[4861,2]]], [4859,[4548.54,11063.5,0],[[4795,2],[4929,2]]],
+[4860,[4328.82,10628.7,-7.62939e-007],[[4797,2],[4930,2],[4931,2],[4932,2],[4933,2]]], [4861,[4403.38,10846.5,0],[[4797,2],[4858,2],[4928,2]]], [4862,[2345.39,12248.5,3.8147e-006],[[4798,2],[4934,2]]], [4863,[2141.69,12276.3,0],[[4798,2],[4935,2]]], [4864,[1488.4,12900.1,0],[[4799,2],[4936,2]]], [4865,[1355.61,12781.6,0],[[4799,2],[4937,2]]],
+[4866,[1723.05,12615,0],[[4800,2],[4938,2]]], [4867,[2143.83,13241.8,0],[[4802,2],[4939,2],[4940,2],[4941,2]]], [4868,[1791.1,13169,-6.35783e-007],[[4803,2],[4942,2],[4943,2]]], [4869,[3543.88,11042.8,0],[[4805,2],[4944,2]]], [4870,[5251.51,10092,6.35783e-007],[[4806,2],[4945,2],[4946,2]]], [4871,[5258.53,10277.1,0],[[4806,2],[4947,2]]],
+[4872,[5446.16,10726.9,0],[[4807,2],[4948,2]]], [4873,[6508.53,9479.8,0],[[4808,2],[4949,2]]], [4874,[6057.82,9746.06,0],[[4809,2],[4950,2]]], [4875,[6287.02,9533.38,0],[[4809,2],[4951,2]]], [4876,[3648.46,13189.2,0],[[4810,2],[4952,2]]], [4877,[3530.43,13383.8,0],[[4811,2]]],
+[4878,[3016.96,13480.7,0],[[4813,2],[4953,2]]], [4879,[2972.95,13405.1,6.35783e-007],[[4813,2],[4954,2],[4955,2]]], [4880,[3061.77,13321.2,-4.76837e-007],[[4814,2],[4815,2],[4956,2],[4957,2]]], [4881,[3253.97,13285.2,-6.35783e-007],[[4815,2],[4958,2],[4881,2]]], [4882,[3133.41,13252.9,0],[[4815,2]]], [4883,[3952.27,15842.7,0],[[4817,2],[4959,2]]],
+[4884,[3804.19,15640,-1.90735e-006],[[4817,2],[4960,2]]], [4885,[3864.88,15500,0],[[4819,2]]], [4886,[5523.68,16759,0],[[4821,2],[4961,2]]], [4887,[4872.9,16780.1,1.90735e-006],[[4822,2],[4962,2]]], [4888,[4827.85,16346,0],[[4823,2],[4963,2]]], [4889,[6861.66,9028.5,0],[[4825,2],[4964,2]]],
+[4890,[7183.88,8524.06,1.90735e-006],[[4826,2],[4965,2]]], [4891,[7323.09,8553.66,0],[[4826,2],[4966,2]]], [4892,[6977.66,8523.67,0],[[4827,2],[4967,2]]], [4893,[4615.53,17705,-6.35783e-007],[[4828,2],[4968,2],[4893,2],[4969,2]]], [4894,[7532.46,7842.43,-9.53674e-007],[[4829,2],[4970,2]]], [4895,[7562.28,7921.15,0],[[4829,2],[4971,2]]],
+[4896,[7912.27,7373.5,0],[[4830,2]]], [4897,[9027.04,6724.18,-3.97364e-008],[[4831,2],[4972,2],[4973,2]]], [4898,[8676.89,6951.5,0],[[4832,2],[4974,2]]], [4899,[15542.4,6269.26,0],[[4833,2],[4975,2]]], [4900,[15616.1,6153.79,0],[[4833,2]]], [4901,[15719.9,5999.94,0],[[4835,2],[4976,2]]],
+[4902,[15773.5,6069.31,0],[[4835,2]]], [4903,[15837.5,6184.55,0],[[4835,2],[4977,2]]], [4904,[15790.4,5832.6,-6.35783e-007],[[4836,2],[4978,2],[4979,2]]], [4905,[15721.9,5564.24,0],[[4838,2],[4906,2],[4980,2]]], [4906,[15708.9,5550.15,0],[[4838,2],[4905,2],[4906,2],[4981,2]]], [4907,[15519.3,5475.42,0],[[4838,2],[4982,2],[4983,2],[4984,2]]],
+[4908,[15070.5,6611,0],[[4839,2],[4985,2]]], [4909,[13761.1,3953.28,0],[[4840,2],[4986,2]]], [4910,[13785.4,4072.61,0],[[4840,2],[4987,2],[4988,2]]], [4911,[12487.4,4611.72,0],[[4844,2],[4845,2]]], [4912,[12364.2,4816.6,2.38419e-007],[[4845,2],[4989,2]]], [4913,[12413,4288.84,0],[[4846,2],[4990,2]]],
+[4914,[12266.3,4442.36,0],[[4846,2],[4991,2]]], [4915,[13153.7,3945.54,9.53674e-007],[[4847,2],[4992,2]]], [4916,[13314,3948.89,0],[[4847,2],[4993,2]]], [4917,[13374.5,4019.78,0],[[4847,2],[4994,2]]], [4918,[12546.2,4167.62,-1.58946e-007],[[4848,2],[4990,2],[4995,2]]], [4919,[12651.1,4432.22,0],[[4849,2]]],
+[4920,[12789.8,4177.78,0],[[4851,2]]], [4921,[12830.8,4071.25,1.58946e-007],[[4851,2],[4996,2],[4997,2]]], [4922,[11604.9,6216,0],[[4853,2],[4922,2]]], [4923,[11988.9,5458.11,2.38419e-007],[[4854,2],[4998,2]]], [4924,[3862.99,10849,-6.35783e-007],[[4856,2]]], [4925,[3864.98,10747.8,0],[[4856,2],[4999,2]]],
+[4926,[3708.97,10843.8,0],[[4856,2],[5000,2]]], [4927,[4120.59,10785.3,-1.90735e-006],[[4857,2],[5001,2],[4931,2]]], [4928,[4421.22,10857.3,-1.90735e-006],[[4858,2],[4861,2],[5002,2],[4930,2]]], [4929,[4696.99,11080.8,0],[[4859,2],[5003,2]]], [4930,[4390.47,10740.3,6.35783e-007],[[4860,2],[4928,2],[5004,2],[4932,2],[5002,2]]], [4931,[4291.85,10647.7,-1.27157e-006],[[4860,2],[4927,2],[5005,2],[5006,2]]],
+[4932,[4395.4,10654.8,0],[[4860,2],[4930,2],[5007,2],[5004,2]]], [4933,[4355.48,10446.2,9.53674e-007],[[4860,2],[5008,2],[5009,2],[5010,2]]], [4934,[2387.88,12083.2,0],[[4862,2],[5011,2]]], [4935,[2055.14,12183.8,0],[[4863,2],[5012,2]]], [4936,[1355.5,12914.9,0],[[4864,2],[5013,2]]], [4937,[1195.82,12744.5,0],[[4865,2],[5014,2]]],
+[4938,[1720.39,12568,0],[[4866,2],[5015,2],[5016,2]]], [4939,[2182.32,13181.4,0],[[4867,2]]], [4940,[2077.98,13337.8,0],[[4867,2],[5017,2]]], [4941,[2237.45,13304.3,0],[[4867,2],[5018,2],[5019,2]]], [4942,[1798.32,13074.9,-1.90735e-006],[[4868,2]]], [4943,[1667.95,13269.5,0],[[4868,2],[5020,2]]],
+[4944,[3519.83,11039.4,0],[[4869,2],[5021,2],[5022,2]]], [4945,[5115.65,10182.9,-6.35783e-007],[[4870,2],[5023,2],[5024,2]]], [4946,[5223.63,10040.8,-7.62939e-007],[[4870,2],[5025,2],[4946,2],[5024,2],[5026,2],[5027,2]]], [4947,[5183.23,10360.8,0],[[4871,2],[5028,2]]], [4948,[5339.04,10834.9,0],[[4872,2],[5029,2]]], [4949,[6515.81,9467.63,-4.76837e-007],[[4873,2],[4949,2],[5030,2],[4951,2],[5031,2]]],
+[4950,[6009.3,9817.1,0],[[4874,2],[5032,2]]], [4951,[6384.21,9427.47,0],[[4875,2],[4949,2],[5030,2]]], [4952,[3626.22,13146.8,0],[[4876,2]]], [4953,[3030.9,13586.9,1.27157e-006],[[4878,2],[5033,2],[4954,2]]], [4954,[2965.03,13500.6,-1.27157e-006],[[4879,2],[4953,2],[5034,2]]], [4955,[2846.47,13309.6,6.35783e-007],[[4879,2],[5035,2],[4957,2],[5036,2]]],
+[4956,[3041.24,13281.7,6.35783e-007],[[4880,2],[5037,2],[5038,2]]], [4957,[2932.74,13292,0],[[4880,2],[4955,2],[5039,2],[5035,2],[5038,2]]], [4958,[3301.86,13240.3,0],[[4881,2]]], [4959,[3961.78,15991.8,1.90735e-006],[[4883,2],[5040,2]]], [4960,[3676.83,15605.6,1.90735e-006],[[4884,2],[5041,2]]], [4961,[5437.22,16794.2,0],[[4886,2],[5042,2]]],
+[4962,[4855.87,16928.6,-6.35783e-007],[[4887,2],[5043,2],[5044,2]]], [4963,[4785.88,16348.6,0],[[4888,2]]], [4964,[6799.79,9029.42,0],[[4889,2],[5045,2],[5046,2]]], [4965,[7045.58,8452.69,0],[[4890,2],[5047,2]]], [4966,[7391.01,8490.9,1.90735e-006],[[4891,2]]], [4967,[6877.66,8435.61,0],[[4892,2],[5048,2]]],
+[4968,[4636.77,17693.7,0],[[4893,2]]], [4969,[4424.14,17792.1,0],[[4893,2],[5049,2]]], [4970,[7447.95,7962.03,1.90735e-006],[[4894,2],[5050,2]]], [4971,[7440.46,8038.37,-1.90735e-006],[[4895,2],[5051,2]]], [4972,[9113.65,6699.84,0],[[4897,2]]], [4973,[9018.12,6681.03,-3.97364e-008],[[4897,2],[5052,2],[5053,2]]],
+[4974,[8570.9,6986.32,0],[[4898,2],[5054,2]]], [4975,[15533.8,6300.68,0],[[4899,2],[5055,2],[5056,2]]], [4976,[15804.5,5937.2,0],[[4901,2],[5057,2]]], [4977,[15931,6202.17,0],[[4903,2],[5058,2]]], [4978,[15872,5869.61,4.76837e-007],[[4904,2],[5059,2],[5057,2]]], [4979,[15888.4,5796.77,0],[[4904,2],[5060,2],[5061,2]]],
+[4980,[15812.7,5417.26,0],[[4905,2],[5062,2]]], [4981,[15692.8,5520.59,0],[[4906,2],[5063,2],[5064,2]]], [4982,[15570.3,5369.38,0],[[4907,2],[5065,2]]], [4983,[15393.4,5430.77,0],[[4907,2],[4984,2]]], [4984,[15309.1,5427.31,0],[[4907,2],[4983,2],[5066,2]]], [4985,[14994.9,6753.8,-3.17891e-007],[[4908,2],[5067,2],[5068,2]]],
+[4986,[13733.5,3896.52,-1.19209e-007],[[4909,2],[5069,2],[5070,2],[5071,2]]], [4987,[13827.6,3952.23,0],[[4910,2],[4987,2]]], [4988,[13841.4,4111.77,0],[[4910,2],[4988,2]]], [4989,[12264.1,4951.97,0],[[4912,2],[5072,2]]], [4990,[12436.3,4203.35,-1.19209e-007],[[4913,2],[4918,2],[5073,2],[4990,2],[5074,2]]], [4991,[12184.8,4494.24,0],[[4914,2],[5075,2],[5076,2]]],
+[4992,[13135.7,3879.38,-3.17891e-007],[[4915,2],[5077,2],[5078,2]]], [4993,[13401.6,3884.28,0],[[4916,2],[5079,2]]], [4994,[13547.8,3951.11,0],[[4917,2],[5071,2]]], [4995,[12602.4,4053.74,0],[[4918,2],[4995,2]]], [4996,[12896,3911.38,0],[[4921,2],[5080,2],[5081,2]]], [4997,[12703,4024.12,0],[[4921,2],[5082,2]]],
+[4998,[11961.7,5426.75,0],[[4923,2],[5083,2],[5084,2],[4998,2]]], [4999,[3849.15,10656.5,3.8147e-006],[[4925,2],[5085,2]]], [5000,[3636.31,10738.4,0],[[4926,2],[5086,2]]], [5001,[4218.48,10723,1.90735e-006],[[4927,2],[5087,2]]], [5002,[4450.8,10826.8,0],[[4928,2],[4930,2],[5088,2]]], [5003,[4776.72,11106.1,-1.27157e-006],[[4929,2],[5089,2],[5090,2]]],
+[5004,[4413.51,10725.4,0],[[4930,2],[4932,2],[5091,2],[5088,2]]], [5005,[4295.99,10529.6,0],[[4931,2]]], [5006,[4229.8,10715,3.8147e-006],[[4931,2]]], [5007,[4443.9,10632.8,0],[[4932,2]]], [5008,[4411.31,10445.2,1.27157e-006],[[4933,2],[5008,2],[5092,2]]], [5009,[4250.31,10461,0],[[4933,2],[5093,2],[5094,2]]],
+[5010,[4440.44,10237.5,0],[[4933,2],[5095,2]]], [5011,[2364.24,11985.3,0],[[4934,2],[5096,2]]], [5012,[2050.05,12164.9,0],[[4935,2]]], [5013,[1232.97,12987.7,0],[[4936,2],[5097,2]]], [5014,[1058.44,12699.9,0],[[4937,2],[5098,2]]], [5015,[1656.85,12563.1,1.90735e-006],[[4938,2]]],
+[5016,[1725.08,12509.2,-6.35783e-007],[[4938,2],[5099,2],[5100,2]]], [5017,[2068.39,13387.4,-1.43051e-006],[[4940,2],[5101,2],[5102,2],[5103,2]]], [5018,[2418.87,13331.6,0],[[4941,2],[5104,2]]], [5019,[2296.09,13411.7,0],[[4941,2],[5105,2]]], [5020,[1598.53,13358.6,0],[[4943,2],[5106,2]]], [5021,[3560.38,10955.7,0],[[4944,2]]],
+[5022,[3376.62,11074.6,0],[[4944,2],[5107,2]]], [5023,[4982.2,10231.9,0],[[4945,2],[5108,2]]], [5024,[5096.05,10134.8,0],[[4945,2],[4946,2],[5109,2]]], [5025,[5249.52,10024.7,0],[[4946,2],[5110,2]]], [5026,[5250.83,10011.4,0],[[4946,2]]], [5027,[5079.57,9979.15,4.76837e-007],[[4946,2],[5110,2],[5109,2],[5111,2]]],
+[5028,[5110.11,10449.4,-1.90735e-006],[[4947,2],[5112,2]]], [5029,[5313.57,10834.5,-1.27157e-006],[[4948,2],[5113,2],[5114,2]]], [5030,[6420.71,9390.97,-2.38419e-007],[[4949,2],[4951,2],[5115,2],[5116,2]]], [5031,[6644.9,9496,0],[[4949,2],[5117,2],[5118,2]]], [5032,[6000.76,9838.15,0],[[4950,2]]], [5033,[3069.2,13665.4,0],[[4953,2],[5119,2],[5120,2]]],
+[5034,[2868.09,13593.1,3.8147e-006],[[4954,2],[5121,2]]], [5035,[2882.87,13295.2,-1.90735e-006],[[4955,2],[4957,2],[5039,2]]], [5036,[2668.85,13318.4,0],[[4955,2],[5104,2]]], [5037,[3074.78,13277.9,0],[[4956,2]]], [5038,[3005.16,13234.1,6.35783e-007],[[4956,2],[4957,2],[5122,2],[5039,2]]], [5039,[2919.58,13213.7,-2.38419e-007],[[4957,2],[5035,2],[5038,2],[5039,2],[5123,2],[5124,2]]],
+[5040,[3887.02,16065.9,0],[[4959,2],[5125,2]]], [5041,[3608.61,15691.1,-1.27157e-006],[[4960,2],[5126,2],[5127,2]]], [5042,[5351.08,16821.1,0],[[4961,2],[5128,2]]], [5043,[4703.73,16956.3,0],[[4962,2],[5129,2]]], [5044,[4904.41,16983.7,0],[[4962,2],[5130,2]]], [5045,[6866.49,8941.59,0],[[4964,2]]],
+[5046,[6680.47,9032.68,0],[[4964,2],[5131,2],[5132,2]]], [5047,[6931.86,8375.49,0],[[4965,2],[5133,2],[5048,2]]], [5048,[6851.01,8409.6,0],[[4967,2],[5047,2],[5133,2],[5134,2]]], [5049,[4272.57,17817.3,0],[[4969,2],[5135,2]]], [5050,[7378.06,8108.75,0],[[4970,2],[5136,2]]], [5051,[7426.25,8108.52,0],[[4971,2],[5136,2],[5137,2]]],
+[5052,[8899.16,6579.5,0],[[4973,2],[5138,2],[5052,2]]], [5053,[9045.05,6635.24,0],[[4973,2]]], [5054,[8465.02,7000.57,0],[[4974,2],[5139,2]]], [5055,[15488.4,6302.32,0],[[4975,2]]], [5056,[15541.2,6426.72,0],[[4975,2]]], [5057,[15813.1,5928.99,3.17891e-007],[[4976,2],[4978,2],[5057,2]]],
+[5058,[16039.5,6229.16,0],[[4977,2],[5140,2]]], [5059,[15927.4,5859.6,0],[[4978,2],[5141,2]]], [5060,[16006.2,5793.78,1.90735e-006],[[4979,2],[5142,2],[5141,2]]], [5061,[15933.4,5602.81,1.90735e-006],[[4979,2],[5143,2]]], [5062,[15836.2,5346.58,0],[[4980,2],[5144,2],[5145,2],[5146,2],[5143,2]]], [5063,[15700.5,5460.29,0],[[4981,2],[5147,2]]],
+[5064,[15636.5,5497.26,1.90735e-006],[[4981,2]]], [5065,[15546.5,5247.64,0],[[4982,2],[5148,2]]], [5066,[15201.4,5402.04,0],[[4984,2]]], [5067,[14945.6,6846.92,-3.17891e-007],[[4985,2],[5067,2],[5149,2]]], [5068,[14951.3,6936.88,0],[[4985,2],[5150,2]]], [5069,[13786.8,3845.42,0],[[4986,2]]],
+[5070,[13708.8,3813.63,0],[[4986,2],[5151,2],[5152,2]]], [5071,[13628.8,3894.87,0],[[4986,2],[4994,2],[5079,2]]], [5072,[12149.4,5087.2,0],[[4989,2],[5153,2]]], [5073,[12425.3,4204.5,-1.58946e-007],[[4990,2]]], [5074,[12405.4,4181.19,0],[[4990,2]]], [5075,[12070.9,4573.81,0],[[4991,2],[5154,2],[5155,2]]],
+[5076,[12145.5,4361.11,0],[[4991,2],[5156,2],[5157,2]]], [5077,[13168.5,3770.5,0],[[4992,2],[5158,2],[5159,2]]], [5078,[13085,3736.25,0],[[4992,2]]], [5079,[13424.5,3856.58,0],[[4993,2],[5071,2],[5160,2],[5079,2]]], [5080,[12807.3,3875.02,0],[[4996,2],[5080,2],[5161,2]]], [5081,[12914.2,3872.42,1.58946e-007],[[4996,2],[5162,2],[5163,2]]],
+[5082,[12684.6,3999.52,0],[[4997,2]]], [5083,[11874.4,5316.49,0],[[4998,2],[5164,2]]], [5084,[11974.6,5437.77,0],[[4998,2]]], [5085,[3825.52,10546.5,-1.90735e-006],[[4999,2],[5165,2]]], [5086,[3539.57,10695.6,0],[[5000,2]]], [5087,[4107.62,10684.6,0],[[5001,2],[5166,2]]],
+[5088,[4509.12,10806.7,0],[[5002,2],[5004,2],[5088,2],[5167,2],[5091,2]]], [5089,[4814.11,11231.4,0],[[5003,2],[5168,2]]], [5090,[4890.43,11065.8,0],[[5003,2],[5169,2],[5090,2]]], [5091,[4531.86,10743.2,0],[[5004,2],[5088,2],[5170,2]]], [5092,[4491.79,10437.8,0],[[5008,2]]], [5093,[4220.84,10490.6,3.8147e-006],[[5009,2]]],
+[5094,[4163.51,10385.4,0],[[5009,2],[5171,2]]], [5095,[4450.49,10217.9,0],[[5010,2],[5172,2],[5173,2]]], [5096,[2404.18,11874.8,0],[[5011,2],[5174,2]]], [5097,[1186.04,12997.3,0],[[5013,2],[5175,2],[5176,2]]], [5098,[982.076,12660.7,7.62939e-007],[[5014,2],[5177,2],[5178,2],[5179,2],[5180,2]]], [5099,[1708.99,12460.7,0],[[5016,2],[5100,2],[5181,2]]],
+[5100,[1773.17,12473.7,-4.76837e-007],[[5016,2],[5099,2],[5182,2],[5100,2]]], [5101,[2114.23,13439.5,0],[[5017,2]]], [5102,[1988.95,13466.2,1.90735e-006],[[5017,2],[5102,2]]], [5103,[2063.87,13421.2,-1.90735e-006],[[5017,2]]], [5104,[2545.2,13318.4,0],[[5018,2],[5036,2]]], [5105,[2337.36,13465.8,6.35783e-007],[[5019,2],[5183,2],[5184,2]]],
+[5106,[1529.68,13537.5,0],[[5020,2],[5185,2]]], [5107,[3336.54,11061.8,-6.35783e-007],[[5022,2],[5186,2],[5187,2]]], [5108,[4937.91,10232.8,-6.35783e-007],[[5023,2],[5188,2],[5109,2],[5189,2],[5190,2],[5191,2],[5192,2]]], [5109,[5073.83,10103.6,0],[[5024,2],[5027,2],[5108,2],[5188,2]]], [5110,[5265.18,9853.83,0],[[5025,2],[5027,2],[5193,2]]], [5111,[4897.97,10065.2,0],[[5027,2],[5194,2]]],
+[5112,[5021.41,10505.8,0],[[5028,2],[5195,2],[5196,2]]], [5113,[5208.12,10957.7,0],[[5029,2],[5197,2]]], [5114,[5179.03,10741.7,0],[[5029,2],[5198,2]]], [5115,[6321.48,9316.52,2.38419e-007],[[5030,2],[5199,2],[5115,2],[5200,2]]], [5116,[6522.43,9216.32,0],[[5030,2],[5201,2]]], [5117,[6631.14,9561.38,-1.90735e-006],[[5031,2]]],
+[5118,[6766.87,9587.05,-1.90735e-006],[[5031,2],[5202,2]]], [5119,[3133.29,13734.8,0],[[5033,2]]], [5120,[3110.34,13812.2,0],[[5033,2],[5203,2]]], [5121,[2834.95,13648.8,0],[[5034,2],[5204,2],[5205,2]]], [5122,[3041.23,13239.5,-1.90735e-006],[[5038,2]]], [5123,[2989.75,13184.8,0],[[5039,2]]],
+[5124,[2889.86,13137.6,0],[[5039,2],[5206,2],[5207,2]]], [5125,[3868.41,16194,0],[[5040,2],[5208,2]]], [5126,[3467.27,15703.4,0],[[5041,2]]], [5127,[3484.86,15665.8,-4.76837e-007],[[5041,2],[5127,2],[5209,2]]], [5128,[5301.03,16863.7,0],[[5042,2],[5210,2]]], [5129,[4615.96,17026,-6.35783e-007],[[5043,2],[5211,2],[5212,2]]],
+[5130,[4968.3,17037.4,0],[[5044,2],[5213,2]]], [5131,[6771.75,8904.51,0],[[5046,2],[5214,2]]], [5132,[6615.2,9035.48,0],[[5046,2],[5201,2],[5215,2]]], [5133,[6906.3,8359.24,3.8147e-007],[[5047,2],[5048,2],[5133,2],[5216,2]]], [5134,[6702.02,8302.57,-2.38419e-007],[[5048,2],[5217,2],[5218,2]]], [5135,[4136.58,17767.7,0],[[5049,2],[5219,2]]],
+[5136,[7333.6,8176.06,-6.35783e-007],[[5050,2],[5051,2],[5220,2]]], [5137,[7563.7,8115.33,3.8147e-006],[[5051,2],[5221,2]]], [5138,[8823.29,6550.65,-2.38419e-007],[[5052,2],[5222,2]]], [5139,[8314.95,6945.76,1.90735e-006],[[5054,2],[5223,2]]], [5140,[16089.6,6347.14,-1.19209e-007],[[5058,2],[5224,2]]], [5141,[16026.7,5861.86,0],[[5059,2],[5060,2],[5225,2],[5226,2],[5142,2]]],
+[5142,[16028.4,5794.98,4.76837e-007],[[5060,2],[5141,2],[5227,2],[5228,2]]], [5143,[15918.7,5475.08,0],[[5061,2],[5062,2],[5146,2]]], [5144,[15815.3,5231.85,0],[[5062,2],[5229,2]]], [5145,[15948.1,5179.94,-9.53674e-007],[[5062,2],[5230,2]]], [5146,[15910,5412.43,0],[[5062,2],[5143,2],[5231,2],[5232,2]]], [5147,[15705.1,5427.59,0],[[5063,2]]],
+[5148,[15534.8,5176.88,-1.27157e-006],[[5065,2],[5148,2],[5233,2]]], [5149,[14904.2,6977.82,0],[[5067,2],[5234,2]]], [5150,[14936.7,6979.12,0],[[5068,2]]], [5151,[13685.5,3737.08,0],[[5070,2],[5235,2],[5236,2]]], [5152,[13771.8,3788.1,0],[[5070,2]]], [5153,[12050.8,5194.19,4.76837e-007],[[5072,2],[5237,2],[5164,2]]],
+[5154,[12004.2,4707.31,0],[[5075,2],[5238,2],[5239,2]]], [5155,[12009,4562.99,1.58946e-007],[[5075,2],[5240,2],[5241,2]]], [5156,[12062.3,4249.5,-1.58946e-007],[[5076,2],[5242,2],[5243,2]]], [5157,[12194.9,4189.71,0],[[5076,2],[5244,2]]], [5158,[13164,3674.05,0],[[5077,2]]], [5159,[13234.5,3688.59,6.35783e-007],[[5077,2],[5245,2],[5159,2]]],
+[5160,[13405.4,3863.85,0],[[5079,2]]], [5161,[12772.2,3915.36,0],[[5080,2]]], [5162,[13010.1,3772.22,0],[[5081,2]]], [5163,[12871.4,3806.24,0],[[5081,2],[5163,2]]], [5164,[11958.7,5211.65,0],[[5083,2],[5153,2],[5246,2],[5247,2],[5248,2],[5249,2]]], [5165,[3768.07,10510.7,0],[[5085,2]]],
+[5166,[4047.41,10575.9,0],[[5087,2],[5250,2]]], [5167,[4674.78,10774.6,-6.35783e-007],[[5088,2],[5251,2],[5252,2]]], [5168,[4800.98,11388.6,0],[[5089,2],[5253,2]]], [5169,[5073.82,11021.8,-1.90735e-006],[[5090,2],[5197,2]]], [5170,[4593.02,10673.6,0],[[5091,2],[5170,2]]], [5171,[4134.5,10327.1,0],[[5094,2],[5250,2],[5254,2]]],
+[5172,[4606.68,10159.9,0],[[5095,2],[5255,2]]], [5173,[4339.47,10235.1,-3.8147e-006],[[5095,2],[5256,2],[5254,2]]], [5174,[2406.68,11838.7,0],[[5096,2],[5257,2],[5258,2],[5259,2]]], [5175,[1109.2,13137.5,0],[[5097,2],[5260,2]]], [5176,[1104.2,12885.4,-3.8147e-006],[[5097,2],[5261,2]]], [5177,[995.67,12739.4,3.8147e-006],[[5098,2],[5262,2]]],
+[5178,[822.863,12599.3,0],[[5098,2],[5263,2]]], [5179,[1019.37,12486.3,0],[[5098,2],[5264,2]]], [5180,[867.787,12574.3,0],[[5098,2],[5265,2]]], [5181,[1671.11,12444.2,0],[[5099,2]]], [5182,[1824.18,12398.7,0],[[5100,2],[5266,2]]], [5183,[2415.24,13600.4,0],[[5105,2],[5267,2]]],
+[5184,[2267.42,13461,1.90735e-006],[[5105,2],[5184,2]]], [5185,[1516.81,13585.7,1.27157e-006],[[5106,2],[5268,2],[5269,2]]], [5186,[3300.88,11082.5,0],[[5107,2]]], [5187,[3335.64,10988.3,0],[[5107,2],[5270,2],[5271,2]]], [5188,[5027.99,10156.2,0],[[5109,2],[5191,2],[5272,2],[5188,2]]], [5189,[4904.16,10380.2,-3.8147e-007],[[5108,2],[5273,2],[5189,2],[5274,2],[5196,2],[5275,2]]],
+[5190,[5034.81,10303.8,0],[[5108,2]]], [5191,[4955.34,10165.5,3.8147e-006],[[5108,2],[5188,2],[5192,2]]], [5192,[4832.36,10194.4,0],[[5108,2],[5191,2],[5276,2],[5255,2]]], [5193,[5412.9,9774.61,0],[[5110,2],[5277,2]]], [5194,[4841.05,10069.4,0],[[5111,2],[5278,2],[5255,2],[5276,2],[5279,2]]], [5195,[4957.66,10601,-6.35783e-007],[[5112,2],[5196,2],[5280,2],[5252,2]]],
+[5196,[4918.72,10512.7,-9.53674e-007],[[5112,2],[5189,2],[5195,2],[5274,2],[5281,2]]], [5197,[5189.1,10978.5,4.76837e-007],[[5113,2],[5169,2],[5197,2],[5282,2]]], [5198,[5147.03,10747,0],[[5114,2]]], [5199,[6363.85,9247.44,-6.35783e-007],[[5115,2],[5283,2],[5284,2]]], [5200,[6150.77,9209.86,1.90735e-006],[[5115,2],[5285,2]]], [5201,[6585.37,9100.57,0],[[5116,2],[5132,2]]],
+[5202,[6788.11,9636.77,-6.35783e-007],[[5118,2],[5286,2],[5287,2]]], [5203,[3100.25,13917.6,0],[[5120,2],[5203,2],[5288,2],[5289,2]]], [5204,[2853.89,13724.9,0],[[5121,2],[5290,2],[5205,2]]], [5205,[2793.62,13705.8,9.53674e-007],[[5121,2],[5204,2],[5291,2],[5290,2],[5292,2]]], [5206,[2878.74,13103.6,0],[[5124,2]]], [5207,[2917.62,13113,-4.76837e-007],[[5124,2],[5207,2],[5293,2],[5294,2]]],
+[5208,[3892.73,16340.6,1.90735e-006],[[5125,2],[5295,2]]], [5209,[3459.34,15646,1.90735e-006],[[5127,2]]], [5210,[5240.56,16907.2,0],[[5128,2],[5296,2]]], [5211,[4452.22,17104.7,0],[[5129,2],[5297,2]]], [5212,[4774.41,17125.1,0],[[5129,2],[5298,2]]], [5213,[5046.58,17043.9,0],[[5130,2],[5299,2]]],
+[5214,[6838.67,8798.88,0],[[5131,2],[5300,2]]], [5215,[6525.55,9007.95,1.58946e-007],[[5132,2],[5301,2],[5302,2],[5303,2],[5304,2],[5305,2]]], [5216,[6969.42,8287.08,-3.17891e-007],[[5133,2],[5306,2],[5216,2],[5307,2],[5308,2],[5220,2]]], [5217,[6612.44,8273.91,-2.38419e-007],[[5134,2],[5309,2],[5310,2]]], [5218,[6815.49,8337.57,0],[[5134,2]]], [5219,[4026.81,17690.7,0],[[5135,2],[5311,2]]],
+[5220,[7200.15,8249.89,0],[[5136,2],[5216,2]]], [5221,[7647.73,8098.44,0],[[5137,2]]], [5222,[8758.38,6550.27,0],[[5138,2],[5222,2]]], [5223,[8189.1,6868.05,0],[[5139,2],[5312,2]]], [5224,[16087.4,6374.5,-3.97364e-008],[[5140,2],[5313,2],[5314,2]]], [5225,[16170.1,5926.65,0],[[5141,2],[5315,2]]],
+[5226,[16042.1,5989.18,0],[[5141,2]]], [5227,[16019.6,5737.19,0],[[5142,2],[5316,2],[5232,2]]], [5228,[16135.5,5812.33,-6.35783e-007],[[5142,2],[5317,2],[5318,2]]], [5229,[15786.7,5179.66,0],[[5144,2],[5319,2]]], [5230,[16028.3,5038.14,0],[[5145,2],[5320,2]]], [5231,[16010.5,5384.38,0],[[5146,2],[5321,2]]],
+[5232,[15975.6,5530.21,0],[[5146,2],[5227,2]]], [5233,[15523,5138.87,0],[[5148,2],[5322,2],[5233,2],[5323,2]]], [5234,[14818.5,7095.52,0],[[5149,2],[5324,2]]], [5235,[13703.2,3714.31,0],[[5151,2],[5325,2],[5235,2]]], [5236,[13585.2,3680.75,3.17891e-007],[[5151,2],[5326,2],[5236,2],[5327,2]]], [5237,[12032.1,5209.37,0],[[5153,2],[5328,2]]],
+[5238,[11915.4,4759.02,0],[[5154,2],[5239,2]]], [5239,[11926.2,4757.96,0],[[5238,2],[5154,2]]], [5240,[12014,4490.69,4.76837e-007],[[5155,2]]], [5241,[11892.6,4534.14,1.58946e-007],[[5155,2],[5329,2],[5330,2]]], [5242,[12064.9,4193.32,0],[[5156,2],[5331,2],[5332,2]]], [5243,[12006.3,4260.14,-7.94729e-008],[[5156,2],[5243,2]]],
+[5244,[12189.2,4124.62,0],[[5157,2],[5244,2],[5333,2]]], [5245,[13307.3,3631.1,2.38419e-007],[[5159,2],[5327,2],[5245,2]]], [5246,[11746,5189.3,0],[[5164,2],[5334,2]]], [5247,[12019.8,5217.39,0],[[5164,2]]], [5248,[11875.2,5079.57,0],[[5164,2],[5335,2]]], [5249,[12051.2,5078.47,0],[[5164,2],[5336,2]]],
+[5250,[4026.98,10450,0],[[5166,2],[5171,2]]], [5251,[4693.88,10692.1,-1.27157e-006],[[5167,2],[5252,2],[5337,2]]], [5252,[4821.64,10722.3,0],[[5167,2],[5195,2],[5251,2],[5280,2],[5338,2]]], [5253,[4794,11448.2,0],[[5168,2]]], [5254,[4163.28,10281.5,-4.76837e-007],[[5171,2],[5173,2],[5339,2],[5340,2],[5256,2]]], [5255,[4713.13,10146,0],[[5172,2],[5192,2],[5194,2],[5276,2],[5341,2],[5278,2]]],
+[5256,[4247.24,10265.5,3.8147e-006],[[5173,2],[5254,2],[5342,2]]], [5257,[2291.74,11766.9,0],[[5174,2],[5343,2]]], [5258,[2519.14,11744.3,0],[[5174,2],[5344,2]]], [5259,[2381.16,11662.7,0],[[5174,2],[5345,2]]], [5260,[1017.23,13238.5,0],[[5175,2],[5346,2]]], [5261,[1018.03,12859.6,0],[[5176,2],[5262,2]]],
+[5262,[988.82,12818.2,0],[[5177,2],[5261,2]]], [5263,[694.201,12538.3,0],[[5178,2],[5347,2]]], [5264,[1010.05,12455.1,-1.27157e-006],[[5179,2],[5348,2],[5264,2],[5349,2]]], [5265,[801.582,12527.3,0],[[5180,2],[5350,2]]], [5266,[1783.87,12324.8,1.90735e-006],[[5182,2],[5351,2]]], [5267,[2413.32,13629.5,0],[[5183,2],[5352,2],[5353,2]]],
+[5268,[1517.21,13647,0],[[5185,2],[5354,2],[5355,2]]], [5269,[1438.24,13537.4,0],[[5185,2],[5356,2],[5357,2]]], [5270,[3368.1,10933.7,0],[[5187,2]]], [5271,[3250.79,10947.8,0],[[5187,2],[5271,2]]], [5272,[5031.17,10159.1,1.27157e-006],[[5188,2]]], [5273,[4956.08,10456.8,9.53674e-007],[[5189,2],[5273,2],[5274,2]]],
+[5274,[4894.56,10450.4,6.35783e-007],[[5189,2],[5196,2],[5273,2]]], [5275,[4792.3,10354.2,0],[[5189,2],[5358,2],[5359,2]]], [5276,[4760.77,10172.3,0],[[5192,2],[5194,2],[5255,2],[5341,2],[5359,2]]], [5277,[5449.93,9761.61,0],[[5193,2],[5360,2],[5361,2]]], [5278,[4782.17,10113.2,0],[[5194,2],[5255,2]]], [5279,[4783.67,9936.25,0],[[5194,2],[5362,2],[5363,2]]],
+[5280,[4879.8,10673.3,0],[[5195,2],[5252,2],[5280,2]]], [5281,[4885.59,10546.1,-1.90735e-006],[[5196,2]]], [5282,[5112.83,11094.1,0],[[5197,2],[5364,2]]], [5283,[6390.33,9127.28,0],[[5199,2],[5365,2],[5284,2],[5304,2],[5366,2],[5305,2]]], [5284,[6441.99,9187.66,3.17891e-007],[[5199,2],[5283,2],[5365,2]]], [5285,[6132.83,9195.39,9.53674e-007],[[5200,2],[5367,2],[5368,2],[5369,2],[5366,2]]],
+[5286,[6642.44,9657.77,0],[[5202,2],[5370,2]]], [5287,[6874.96,9764.64,0],[[5202,2],[5371,2]]], [5288,[3266.48,14055,0],[[5203,2],[5372,2]]], [5289,[2955.76,13978.8,1.27157e-006],[[5203,2],[5373,2],[5374,2]]], [5290,[2839.32,13817.3,0],[[5204,2],[5205,2],[5375,2]]], [5291,[2774.66,13802.5,0],[[5205,2],[5376,2]]],
+[5292,[2754.4,13640,-3.8147e-006],[[5205,2],[5377,2]]], [5293,[2900.36,13015.3,0],[[5207,2],[5378,2]]], [5294,[2952.7,13088.6,0],[[5207,2]]], [5295,[3858.7,16464,1.90735e-006],[[5208,2],[5379,2]]], [5296,[5194.36,16965.5,-3.8147e-006],[[5210,2],[5380,2]]], [5297,[4317.27,17116.2,0],[[5211,2],[5381,2]]],
+[5298,[4920.79,17178.9,-1.90735e-006],[[5212,2]]], [5299,[5131.94,17114.4,0],[[5213,2],[5382,2]]], [5300,[6931.58,8655.05,0],[[5214,2],[5383,2]]], [5301,[6613.22,8871.54,-9.53674e-007],[[5215,2]]], [5302,[6536.15,9051.61,-3.17891e-007],[[5215,2],[5302,2],[5304,2]]], [5303,[6585.49,8845.81,0],[[5215,2],[5384,2],[5385,2]]],
+[5304,[6488.05,9037.48,0],[[5215,2],[5283,2],[5302,2],[5386,2],[5365,2]]], [5305,[6415.98,8989.11,6.35783e-007],[[5215,2],[5283,2],[5387,2]]], [5306,[6930.96,8267.43,0],[[5216,2],[5388,2]]], [5307,[6932.01,8279.33,1.90735e-006],[[5216,2],[5307,2]]], [5308,[6986.68,8147.37,-3.8147e-006],[[5216,2],[5389,2]]], [5309,[6621.92,8229.67,0],[[5217,2],[5390,2],[5391,2]]],
+[5310,[6501.31,8277.67,-2.38419e-007],[[5217,2],[5310,2],[5392,2],[5393,2]]], [5311,[4005.52,17690.8,-1.27157e-006],[[5219,2],[5394,2],[5395,2]]], [5312,[8076.76,6776.56,-1.90735e-006],[[5223,2],[5396,2]]], [5313,[16125.4,6521.48,0],[[5224,2],[5397,2]]], [5314,[15989.1,6414.16,0],[[5224,2],[5314,2]]], [5315,[16226.4,5986.64,0],[[5225,2],[5398,2],[5399,2]]],
+[5316,[16082.7,5705.18,0],[[5227,2]]], [5317,[16188,5804.39,-1.27157e-006],[[5228,2],[5400,2],[5401,2]]], [5318,[16256.5,5891.46,-1.90735e-006],[[5228,2],[5399,2]]], [5319,[15754.8,5069.04,0],[[5229,2],[5402,2]]], [5320,[16043.5,5005.69,0],[[5230,2],[5403,2],[5404,2]]], [5321,[16133.3,5384.52,0],[[5321,2]]],
+[5322,[15533.4,5145.94,0],[[5233,2]]], [5323,[15440.1,5072.37,0],[[5233,2],[5405,2]]], [5324,[14800.1,7117.64,0],[[5234,2]]], [5325,[13669.8,3688.6,0],[[5235,2]]], [5326,[13529.9,3641.43,0],[[5236,2]]], [5327,[13416.4,3618.08,3.17891e-007],[[5236,2],[5245,2],[5406,2]]],
+[5328,[12085.2,5241.19,-4.76837e-007],[[5237,2],[5407,2]]], [5329,[11881,4467.49,0],[[5241,2]]], [5330,[11755.1,4500.74,0],[[5241,2],[5408,2]]], [5331,[12086.9,4090.33,0],[[5242,2]]], [5332,[12012.9,4167.63,0],[[5242,2]]], [5333,[12175,4044.61,3.17891e-007],[[5244,2],[5333,2],[5409,2]]],
+[5334,[11622,5147.64,0],[[5246,2],[5410,2]]], [5335,[11734.7,5068.99,0],[[5248,2],[5410,2]]], [5336,[12057.9,5020.89,0],[[5249,2],[5411,2],[5412,2]]], [5337,[4751.94,10607.1,6.35783e-007],[[5251,2],[5413,2],[5414,2]]], [5338,[4883.55,10734.7,0],[[5252,2],[5338,2],[5415,2]]], [5339,[4062.51,10284.7,-6.35783e-007],[[5254,2],[5416,2],[5417,2]]],
+[5340,[4116.35,10168,0],[[5254,2],[5418,2]]], [5341,[4778.3,10125.9,0],[[5255,2],[5276,2]]], [5342,[4318.34,10145.2,0],[[5256,2],[5419,2]]], [5343,[2179.11,11673.4,0],[[5257,2],[5420,2]]], [5344,[2586.56,11640.5,0],[[5258,2],[5421,2]]], [5345,[2414.36,11497.4,0],[[5259,2],[5422,2]]],
+[5346,[928.95,13376.6,0],[[5260,2],[5423,2]]], [5347,[560.735,12474.4,0],[[5263,2],[5424,2]]], [5348,[1021.76,12458.6,0],[[5264,2],[5348,2]]], [5349,[962.526,12387.5,1.27157e-006],[[5264,2],[5425,2],[5426,2]]], [5350,[745.012,12481.3,0],[[5265,2],[5350,2],[5424,2]]], [5351,[1769.01,12295.8,0],[[5266,2]]],
+[5352,[2541.4,13713.6,6.35783e-007],[[5267,2],[5427,2],[5428,2]]], [5353,[2295.25,13607.4,0],[[5267,2]]], [5354,[1536.55,13642,9.53674e-007],[[5268,2],[5354,2],[5429,2],[5430,2]]], [5355,[1510.66,13809.7,-6.35783e-007],[[5268,2],[5431,2],[5432,2]]], [5356,[1300.78,13537.9,0],[[5269,2],[5433,2]]], [5357,[1358.55,13452.2,0],[[5269,2],[5434,2]]],
+[5358,[4802.1,10450.5,1.90735e-006],[[5275,2],[5413,2]]], [5359,[4741.81,10265.3,-1.90735e-006],[[5275,2],[5276,2]]], [5360,[5482.35,9627.07,4.76837e-007],[[5277,2],[5360,2],[5435,2],[5436,2]]], [5361,[5636.94,9827.52,0],[[5277,2]]], [5362,[4713.36,9895.46,0],[[5279,2],[5437,2]]], [5363,[4779.76,9806.21,0],[[5279,2]]],
+[5364,[5098.92,11104.8,6.35783e-007],[[5282,2],[5438,2],[5364,2]]], [5365,[6451.22,9134.83,0],[[5284,2],[5304,2],[5386,2]]], [5366,[6306.34,9109.86,0],[[5283,2],[5285,2],[5439,2],[5440,2],[5369,2]]], [5367,[6055.31,9376.63,0],[[5285,2],[5441,2]]], [5368,[6053.81,9136.42,6.35783e-007],[[5285,2],[5442,2],[5369,2],[5443,2]]], [5369,[6184.78,9095.97,0],[[5285,2],[5366,2],[5368,2],[5442,2]]],
+[5370,[6499.43,9700.12,0],[[5286,2],[5444,2]]], [5371,[6770.48,9839.19,0],[[5287,2],[5445,2]]], [5372,[3328.81,14163.6,0],[[5288,2]]], [5373,[3064.08,14010.8,0],[[5289,2],[5446,2]]], [5374,[2848.06,14021.5,0],[[5289,2],[5447,2],[5376,2],[5448,2],[5449,2],[5450,2],[5374,2],[5451,2]]], [5375,[2796.14,13808.5,3.8147e-006],[[5290,2]]],
+[5376,[2749.51,13840.2,-1.27157e-006],[[5291,2],[5374,2],[5447,2],[5452,2]]], [5377,[2685.37,13593.9,0],[[5292,2],[5453,2]]], [5378,[2863,13001,6.35783e-007],[[5293,2],[5454,2],[5455,2]]], [5379,[3837,16593.2,1.52588e-006],[[5295,2],[5456,2],[5457,2],[5458,2],[5459,2]]], [5380,[5170.58,17057,1.90735e-006],[[5296,2],[5382,2]]], [5381,[4201.94,17023.3,0],[[5297,2],[5460,2]]],
+[5382,[5151.45,17126,6.35783e-007],[[5299,2],[5380,2],[5382,2]]], [5383,[6962.53,8612.38,0],[[5300,2]]], [5384,[6597.05,8827.79,0],[[5303,2]]], [5385,[6580.73,8845.32,0],[[5303,2]]], [5386,[6455.88,9134.11,0],[[5365,2]]], [5387,[6324.99,8955.85,-4.76837e-007],[[5305,2],[5461,2],[5440,2],[5462,2]]],
+[5388,[6841.75,8291.34,0],[[5306,2]]], [5389,[6985.17,8011.46,0],[[5308,2],[5463,2],[5464,2]]], [5390,[6605.3,8190.31,-4.76837e-007],[[5309,2]]], [5391,[6697.66,8094.01,9.53674e-007],[[5309,2],[5465,2]]], [5392,[6350.39,8247.58,0],[[5310,2],[5466,2],[5467,2]]], [5393,[6435.83,8436.81,0],[[5310,2],[5468,2]]],
+[5394,[4006.5,17528.5,0],[[5311,2],[5469,2]]], [5395,[3960.41,17792.4,0],[[5311,2]]], [5396,[7911.6,6735.44,0],[[5312,2],[5470,2],[5471,2]]], [5397,[16128.6,6682.08,-4.76837e-007],[[5313,2],[5472,2]]], [5398,[16295.2,6065.93,0],[[5315,2],[5473,2],[5474,2]]], [5399,[16298,5951.41,0],[[5315,2],[5318,2]]],
+[5400,[16293.8,5738.94,1.90735e-006],[[5317,2],[5475,2]]], [5401,[16323,5848.78,-1.90735e-006],[[5317,2],[5476,2]]], [5402,[15710,4976.22,0],[[5319,2],[5477,2]]], [5403,[16121.4,4916.96,0],[[5320,2],[5404,2],[5478,2]]], [5404,[16073.6,4894.84,0],[[5320,2],[5403,2],[5479,2],[5404,2]]], [5405,[15342.9,5029.54,0],[[5323,2],[5480,2]]],
+[5406,[13398.3,3584.92,0],[[5327,2]]], [5407,[12113.1,5256.26,-4.76837e-007],[[5328,2]]], [5408,[11734.9,4482.33,0],[[5330,2],[5481,2],[5482,2]]], [5409,[12165.7,4011.63,0],[[5333,2]]], [5410,[11559.3,5137.24,-1.19209e-007],[[5334,2],[5335,2],[5483,2],[5484,2]]], [5411,[11951.2,4920.83,0],[[5336,2],[5485,2]]],
+[5412,[12113.4,4871.46,0],[[5336,2]]], [5413,[4781.72,10484.5,0],[[5337,2],[5358,2]]], [5414,[4777.56,10637.2,0],[[5337,2]]], [5415,[4947.53,10678.1,-3.8147e-006],[[5338,2]]], [5416,[3929.06,10293.8,0],[[5339,2],[5486,2],[5416,2],[5487,2]]], [5417,[4044.25,10316,0],[[5339,2]]],
+[5418,[4007.02,10090.6,0],[[5340,2],[5488,2]]], [5419,[4343.57,10109.3,0],[[5342,2],[5489,2],[5490,2]]], [5420,[2118.62,11641.6,0],[[5343,2],[5491,2],[5492,2]]], [5421,[2631.47,11621.5,0],[[5344,2],[5493,2]]], [5422,[2491.3,11384.5,0],[[5345,2],[5494,2]]], [5423,[807.541,13466.4,0],[[5346,2],[5495,2]]],
+[5424,[512.421,12434.3,0],[[5347,2],[5350,2],[5496,2],[5497,2]]], [5425,[1056.56,12287.4,0],[[5349,2],[5498,2]]], [5426,[917.864,12292.2,0],[[5349,2],[5499,2]]], [5427,[2579.68,13610,0],[[5352,2],[5500,2]]], [5428,[2657,13761.8,0],[[5352,2],[5452,2]]], [5429,[1560.78,13658.1,0],[[5354,2]]],
+[5430,[1582.22,13594.7,0],[[5354,2],[5501,2]]], [5431,[1477.33,13963.2,0],[[5355,2],[5502,2]]], [5432,[1573.63,13810.5,0],[[5355,2]]], [5433,[1225.78,13581.3,-1.90735e-006],[[5356,2],[5433,2]]], [5434,[1348.24,13440.8,0],[[5357,2]]], [5435,[5371.99,9603.35,0],[[5360,2],[5503,2]]],
+[5436,[5493.01,9553.22,0],[[5360,2],[5504,2],[5505,2]]], [5437,[4686.43,9815.41,0],[[5362,2],[5506,2]]], [5438,[5047.87,11087.3,-1.90735e-006],[[5364,2]]], [5439,[6331.37,9126.65,0],[[5366,2]]], [5440,[6298.18,9032.31,0],[[5366,2],[5387,2]]], [5441,[5969.53,9549.51,-9.53674e-007],[[5367,2],[5507,2]]],
+[5442,[6107.03,9085.6,-4.76837e-007],[[5368,2],[5369,2],[5508,2],[5509,2],[5462,2]]], [5443,[5891.74,9174.12,1.27157e-006],[[5368,2],[5510,2],[5511,2]]], [5444,[6492.53,9822.82,0],[[5370,2],[5445,2]]], [5445,[6628.46,9854.65,0],[[5371,2],[5444,2]]], [5446,[3126.99,14136.3,0],[[5373,2],[5512,2]]], [5447,[2793.52,13897.8,9.53674e-007],[[5374,2],[5376,2],[5513,2],[5447,2]]],
+[5448,[2783.23,14153.8,0],[[5374,2],[5514,2],[5515,2]]], [5449,[2844.5,14150.3,0],[[5374,2]]], [5450,[2908.38,14050.4,0],[[5374,2],[5450,2]]], [5451,[2885.47,14032,0],[[5374,2]]], [5452,[2702.64,13820.2,1.27157e-006],[[5376,2],[5428,2],[5516,2]]], [5453,[2651.25,13580.4,0],[[5377,2]]],
+[5454,[2879.4,12934.9,0],[[5378,2]]], [5455,[2839.71,13024.6,0],[[5378,2]]], [5456,[3758.15,16731.6,0],[[5379,2],[5517,2]]], [5457,[3780.15,16458.7,0],[[5379,2],[5518,2]]], [5458,[3923.06,16637.4,3.8147e-006],[[5379,2]]], [5459,[3946.67,16590,-1.90735e-006],[[5379,2],[5519,2]]],
+[5460,[4070.32,17086.4,0],[[5381,2],[5520,2]]], [5461,[6340.13,8875.3,4.76837e-007],[[5387,2],[5462,2],[5521,2],[5522,2]]], [5462,[6276.76,8941.9,-4.76837e-007],[[5387,2],[5442,2],[5461,2],[5523,2],[5524,2],[5509,2]]], [5463,[6968.65,7970.2,0],[[5389,2]]], [5464,[6918.31,7989.83,3.8147e-006],[[5389,2]]], [5465,[6774.58,7949.54,4.76837e-007],[[5391,2],[5525,2]]],
+[5466,[6264.53,8218.53,-9.53674e-007],[[5392,2],[5526,2]]], [5467,[6370.38,8335.35,0],[[5392,2]]], [5468,[6412.57,8563.06,0],[[5393,2],[5527,2]]], [5469,[4018.86,17503.8,0],[[5394,2],[5528,2],[5529,2]]], [5470,[7789.14,6852.87,1.19209e-007],[[5396,2],[5470,2],[5530,2]]], [5471,[7975.33,6698.19,0],[[5396,2],[5531,2]]],
+[5472,[16101.7,6782.77,-3.17891e-007],[[5397,2],[5532,2],[5472,2],[5533,2]]], [5473,[16211.4,6139.39,9.53674e-007],[[5398,2],[5534,2]]], [5474,[16356.9,6113.66,0],[[5398,2],[5535,2],[5536,2]]], [5475,[16320.3,5726.49,6.35783e-007],[[5400,2],[5537,2],[5538,2]]], [5476,[16383,5920.64,0],[[5401,2],[5539,2]]], [5477,[15678.3,4851.84,0],[[5402,2],[5540,2]]],
+[5478,[16249,4806.69,0],[[5403,2],[5541,2]]], [5479,[16072.3,4739.92,0],[[5404,2],[5542,2]]], [5480,[15273.3,4992.49,0],[[5405,2],[5543,2]]], [5481,[11752.8,4446.37,0],[[5408,2]]], [5482,[11688.4,4465.91,0],[[5408,2],[5544,2],[5482,2]]], [5483,[11506.8,5209.2,0],[[5410,2]]],
+[5484,[11357.1,5105.73,0],[[5410,2],[5545,2]]], [5485,[11863.6,4904.03,1.90735e-006],[[5411,2],[5546,2]]], [5486,[3773.02,10226.4,0],[[5416,2],[5547,2]]], [5487,[3921.34,10400,0],[[5416,2]]], [5488,[3911.1,10017.4,0],[[5418,2],[5548,2]]], [5489,[4439.07,10038.6,0],[[5419,2],[5549,2]]],
+[5490,[4355.54,9980.15,0],[[5419,2]]], [5491,[2001.91,11541.8,0],[[5420,2],[5550,2]]], [5492,[2052.8,11657.9,0],[[5420,2]]], [5493,[2651.8,11616,-1.27157e-006],[[5421,2],[5493,2],[5551,2]]], [5494,[2587.62,11244.7,1.90735e-006],[[5422,2],[5552,2]]], [5495,[661.807,13521.1,0],[[5423,2],[5553,2]]],
+[5496,[327.039,12379.5,1.90735e-006],[[5424,2],[5554,2]]], [5497,[534.607,12269.3,1.90735e-006],[[5424,2],[5555,2]]], [5498,[1136.09,12205.8,0],[[5425,2],[5556,2]]], [5499,[857.787,12263.2,0],[[5426,2],[5557,2]]], [5500,[2580,13593.5,0],[[5427,2],[5558,2],[5500,2]]], [5501,[1640.8,13563.9,0],[[5430,2],[5559,2]]],
+[5502,[1436.93,14088.7,0],[[5431,2],[5560,2]]], [5503,[5273.25,9546.87,0],[[5435,2],[5561,2]]], [5504,[5443.99,9592.54,1.90735e-006],[[5436,2]]], [5505,[5507.61,9458.8,0],[[5436,2],[5562,2],[5563,2]]], [5506,[4652.43,9813.64,6.35783e-007],[[5437,2],[5564,2],[5565,2]]], [5507,[5915.57,9659.17,1.90735e-006],[[5441,2],[5566,2]]],
+[5508,[6014.33,9031.16,-9.53674e-007],[[5442,2],[5567,2],[5568,2]]], [5509,[6176.4,8994.23,0],[[5442,2],[5462,2],[5568,2]]], [5510,[5758.35,9234.31,0],[[5443,2],[5569,2],[5562,2]]], [5511,[5909.9,9198.26,-1.90735e-006],[[5443,2]]], [5512,[3192.74,14258.6,0],[[5446,2],[5570,2]]], [5513,[2833.96,13889.2,-1.90735e-006],[[5447,2]]],
+[5514,[2802.49,14198.8,-4.76837e-007],[[5448,2],[5514,2],[5571,2],[5572,2]]], [5515,[2667.86,14202.9,0],[[5448,2],[5573,2]]], [5516,[2616.07,13916.1,0],[[5452,2],[5574,2]]], [5517,[3665.45,16802,0],[[5456,2],[5575,2]]], [5518,[3774.6,16447.4,0],[[5457,2],[5518,2],[5576,2]]], [5519,[4052.41,16620.1,0],[[5459,2],[5577,2]]],
+[5520,[4038.23,17135.3,0],[[5460,2],[5578,2],[5528,2]]], [5521,[6266.04,8822.1,0],[[5461,2],[5579,2]]], [5522,[6392.5,8668.65,0],[[5461,2],[5527,2]]], [5523,[6183.64,8857.48,-1.90735e-006],[[5462,2],[5580,2]]], [5524,[6181.67,9000.27,-9.53674e-007],[[5462,2]]], [5525,[6872.39,7829.95,0],[[5465,2],[5581,2]]],
+[5526,[6256.15,8237.12,0],[[5466,2],[5582,2]]], [5527,[6398.91,8577.56,0],[[5468,2],[5522,2],[5583,2]]], [5528,[4022.38,17314.8,0],[[5469,2],[5520,2]]], [5529,[4150.41,17514.5,0],[[5469,2],[5584,2]]], [5530,[7727.28,6923.07,-4.76837e-007],[[5470,2],[5585,2],[5586,2]]], [5531,[8120.81,6659.89,-4.76837e-007],[[5471,2],[5587,2]]],
+[5532,[16085.7,6801.23,0],[[5472,2]]], [5533,[16091.6,6886.71,0],[[5472,2],[5588,2]]], [5534,[16158.9,6148.76,0],[[5473,2],[5534,2],[5589,2]]], [5535,[16287.6,6153.32,-9.53674e-007],[[5474,2]]], [5536,[16409.3,6101.2,0],[[5474,2],[5590,2],[5591,2],[5539,2],[5592,2]]], [5537,[16457.7,5580.92,0],[[5475,2],[5593,2]]],
+[5538,[16426.9,5734.75,-1.90735e-006],[[5475,2],[5594,2]]], [5539,[16442.5,5931.78,-1.27157e-006],[[5476,2],[5536,2],[5591,2],[5595,2]]], [5540,[15643.2,4747.71,0],[[5477,2],[5596,2]]], [5541,[16304.4,4763.46,7.94729e-008],[[5478,2],[5597,2],[5598,2]]], [5542,[16069.6,4618.84,0],[[5479,2],[5599,2]]], [5543,[15241.2,4942.02,1.90735e-006],[[5480,2],[5600,2]]],
+[5544,[11547.6,4553.64,1.58946e-007],[[5482,2],[5601,2],[5602,2],[5544,2]]], [5545,[11236.3,5074.5,9.53674e-007],[[5484,2],[5603,2]]], [5546,[11850.1,4934.52,0],[[5485,2]]], [5547,[3735.77,10229,0],[[5486,2],[5604,2],[5605,2],[5606,2]]], [5548,[3819.9,9934.47,0],[[5488,2],[5607,2]]], [5549,[4544.04,9954.01,1.90735e-006],[[5489,2],[5565,2]]],
+[5550,[1938.43,11536,0],[[5491,2],[5550,2]]], [5551,[2687.31,11611.3,1.27157e-006],[[5493,2],[5551,2],[5608,2]]], [5552,[2584.25,11075.9,1.90735e-006],[[5494,2],[5609,2]]], [5553,[551.917,13594.8,0],[[5495,2],[5610,2]]], [5554,[172.446,12333.8,-6.35783e-007],[[5496,2],[5611,2],[5612,2]]], [5555,[427.651,12151.3,-1.90735e-006],[[5497,2],[5613,2]]],
+[5556,[1233.9,12158.3,-3.8147e-006],[[5498,2],[5614,2]]], [5557,[849.006,12250.8,0],[[5499,2]]], [5558,[2554.53,13545.3,0],[[5500,2]]], [5559,[1707.77,13543.2,0],[[5501,2],[5615,2]]], [5560,[1398.24,14146,0],[[5502,2],[5616,2],[5617,2]]], [5561,[5252.75,9507.11,-6.35783e-007],[[5503,2],[5561,2],[5618,2]]],
+[5562,[5587.15,9389.95,6.35783e-007],[[5505,2],[5510,2],[5569,2],[5619,2]]], [5563,[5501.77,9273.49,0],[[5505,2],[5620,2],[5621,2],[5622,2]]], [5564,[4572.47,9730.36,-4.76837e-007],[[5506,2],[5564,2],[5623,2],[5624,2]]], [5565,[4579.24,9928.12,0],[[5506,2],[5549,2]]], [5566,[5867.31,9755.57,0],[[5507,2],[5625,2]]], [5567,[5941.69,8994.72,1.90735e-006],[[5508,2],[5626,2],[5627,2]]],
+[5568,[6072.01,8974.26,-9.53674e-007],[[5508,2],[5509,2],[5628,2]]], [5569,[5660.99,9294.27,0],[[5510,2],[5562,2],[5629,2],[5630,2]]], [5570,[3260.34,14359.4,-1.90735e-006],[[5512,2],[5570,2]]], [5571,[2773.3,14328.5,0],[[5514,2],[5631,2]]], [5572,[2923.5,14230.1,0],[[5514,2],[5632,2]]], [5573,[2604.95,14297,0],[[5515,2],[5633,2]]],
+[5574,[2573.82,13944,0],[[5516,2]]], [5575,[3672.13,16901.9,0],[[5517,2],[5634,2]]], [5576,[3660.95,16400.2,0],[[5518,2],[5635,2]]], [5577,[4155.3,16698.7,0],[[5519,2],[5636,2]]], [5578,[3903.25,17085,0],[[5520,2],[5634,2]]], [5579,[6209.2,8802.52,0],[[5521,2],[5580,2]]],
+[5580,[6171.23,8837.02,-9.53674e-007],[[5523,2],[5579,2],[5637,2],[5638,2]]], [5581,[6978.28,7748.56,0],[[5525,2],[5639,2],[5640,2]]], [5582,[6208.01,8240.47,-3.17891e-007],[[5526,2],[5641,2],[5642,2]]], [5583,[6287.64,8559.75,6.35783e-007],[[5527,2],[5643,2],[5644,2]]], [5584,[4265.69,17535.1,0],[[5529,2],[5645,2]]], [5585,[7649.45,6918.97,0],[[5530,2],[5646,2],[5647,2],[5648,2],[5649,2]]],
+[5586,[7737.34,7073,0],[[5530,2],[5650,2]]], [5587,[8190.71,6643.92,0],[[5531,2],[5651,2],[5652,2]]], [5588,[16086.2,6920.89,0],[[5533,2]]], [5589,[16187.2,6175.82,0],[[5534,2]]], [5590,[16405.5,6151.56,-2.38419e-007],[[5536,2]]], [5591,[16442.2,5980.79,0],[[5539,2],[5653,2]]],
+[5592,[16476.6,6069.44,9.53674e-007],[[5536,2]]], [5593,[16546.1,5481.58,0],[[5537,2],[5654,2]]], [5594,[16523.6,5692.54,0],[[5538,2],[5655,2]]], [5595,[16573.3,5908.49,0],[[5539,2],[5656,2]]], [5596,[15631.8,4665.89,0],[[5540,2],[5657,2]]], [5597,[16340.9,4715.16,0],[[5541,2],[5658,2],[5598,2],[5659,2]]],
+[5598,[16358.2,4794.36,0],[[5541,2],[5597,2],[5660,2],[5661,2],[5662,2]]], [5599,[16071.9,4487.33,0],[[5542,2],[5663,2],[5664,2]]], [5600,[15244.5,4920.02,4.76837e-007],[[5543,2],[5600,2],[5665,2],[5666,2]]], [5601,[11432.1,4649.21,0],[[5544,2],[5667,2]]], [5602,[11552.8,4534,0],[[5544,2],[5668,2]]], [5603,[11135.9,5021.03,0],[[5545,2],[5669,2],[5670,2],[5671,2]]],
+[5604,[3712.27,10323.4,0],[[5547,2]]], [5605,[3655.88,10263.9,0],[[5547,2]]], [5606,[3627.08,10096.3,0],[[5547,2],[5672,2]]], [5607,[3913.35,9799.51,0],[[5548,2],[5673,2]]], [5608,[2744.06,11601.1,0],[[5551,2]]], [5609,[2485.56,10976,0],[[5552,2],[5674,2]]],
+[5610,[432.114,13622.6,0],[[5553,2],[5675,2]]], [5611,[12.122,12318.5,-1.90735e-006],[[5554,2]]], [5612,[145.309,12292.7,1.27157e-006],[[5554,2],[5676,2],[5677,2]]], [5613,[331.511,12086.1,-6.35783e-007],[[5555,2],[5678,2],[5676,2]]], [5614,[1286.28,12074.1,0],[[5556,2],[5679,2]]], [5615,[1732.7,13536.6,0],[[5559,2]]],
+[5616,[1385.14,14223.9,0],[[5560,2],[5680,2],[5616,2],[5617,2]]], [5617,[1323.4,14129.3,0],[[5560,2],[5616,2],[5681,2],[5682,2],[5683,2]]], [5618,[5258.68,9461.37,0],[[5561,2],[5618,2],[5684,2]]], [5619,[5623.19,9405.03,0],[[5562,2]]], [5620,[5446.87,9277.78,-6.35783e-007],[[5563,2],[5685,2],[5686,2]]], [5621,[5514.06,9114.33,0],[[5563,2]]],
+[5622,[5635.35,9209.93,0],[[5563,2],[5630,2]]], [5623,[4659.15,9615.94,0],[[5564,2],[5687,2]]], [5624,[4490.17,9657.39,1.90735e-006],[[5564,2],[5688,2]]], [5625,[5790.46,9868.53,0],[[5566,2],[5689,2]]], [5626,[5853.92,9134.48,0],[[5567,2],[5690,2]]], [5627,[5875.41,8868.67,-1.90735e-006],[[5567,2],[5691,2]]],
+[5628,[6049.2,8948.57,0],[[5568,2]]], [5629,[5675.87,9321.07,-1.90735e-006],[[5569,2]]], [5630,[5680,9162.64,-1.90735e-006],[[5569,2],[5622,2],[5692,2],[5690,2],[5693,2],[5630,2],[5694,2]]], [5631,[2740.49,14418.6,0],[[5571,2],[5695,2],[5696,2]]], [5632,[3016.25,14301.9,-6.35783e-007],[[5572,2],[5697,2],[5698,2]]], [5633,[2555.02,14335.2,-4.76837e-007],[[5573,2],[5699,2],[5700,2],[5701,2]]],
+[5634,[3765.95,17033.6,0],[[5575,2],[5578,2]]], [5635,[3518.55,16333.9,-1.90735e-006],[[5576,2],[5702,2]]], [5636,[4204.59,16767.6,0],[[5577,2]]], [5637,[6141.26,8791.65,0],[[5580,2],[5703,2],[5638,2]]], [5638,[6039.83,8812.13,-5.44957e-007],[[5580,2],[5637,2],[5704,2],[5705,2],[5706,2],[5707,2],[5708,2]]], [5639,[7141.45,7692.67,-9.53674e-007],[[5581,2],[5709,2],[5640,2]]],
+[5640,[7111.97,7663.09,0],[[5581,2],[5639,2],[5709,2]]], [5641,[6159.75,8232.63,-3.17891e-007],[[5582,2],[5710,2],[5711,2]]], [5642,[6201.24,8307.05,0],[[5582,2]]], [5643,[6273.57,8466.74,3.17891e-007],[[5583,2],[5712,2],[5643,2],[5713,2]]], [5644,[6240.7,8694.49,1.90735e-006],[[5583,2],[5703,2]]], [5645,[4356.28,17557.3,-1.90735e-006],[[5584,2],[5714,2]]],
+[5646,[7653.45,6985.02,-2.38419e-007],[[5585,2],[5715,2],[5716,2]]], [5647,[7578.17,6967.74,0],[[5585,2],[5717,2]]], [5648,[7667.22,6827.28,-7.94729e-007],[[5585,2],[5718,2],[5648,2]]], [5649,[7603.49,6908.67,0],[[5585,2]]], [5650,[7739.34,7182.34,0],[[5586,2],[5719,2]]], [5651,[8347.73,6664.06,0],[[5587,2],[5720,2]]],
+[5652,[8250.46,6623.36,0],[[5587,2]]], [5653,[16501.4,5980.73,0],[[5591,2]]], [5654,[16592.8,5396.98,0],[[5593,2],[5721,2]]], [5655,[16555.7,5693.36,0],[[5594,2],[5722,2],[5655,2],[5723,2]]], [5656,[16701.6,5891.57,0],[[5595,2],[5724,2]]], [5657,[15646.5,4529.37,0],[[5596,2],[5725,2]]],
+[5658,[16366.9,4732.76,-2.38419e-007],[[5597,2],[5726,2]]], [5659,[16397.9,4598.74,0],[[5597,2],[5727,2],[5726,2],[5728,2]]], [5660,[16367.4,4738.73,0],[[5598,2]]], [5661,[16404.5,4921.85,-5.96046e-008],[[5598,2],[5662,2],[5729,2]]], [5662,[16466.8,4862.34,0],[[5598,2],[5661,2],[5730,2]]], [5663,[16006,4389.03,9.53674e-007],[[5599,2],[5731,2]]],
+[5664,[16151.1,4334.17,4.76837e-007],[[5599,2],[5732,2]]], [5665,[15307.2,4827.25,0],[[5600,2],[5733,2]]], [5666,[15210,4783.71,0],[[5600,2],[5734,2]]], [5667,[11319.6,4681.15,0],[[5601,2],[5735,2]]], [5668,[11564.2,4524.01,0],[[5602,2]]], [5669,[10998.5,4933.23,0],[[5603,2],[5736,2]]],
+[5670,[11074.7,5167.11,0],[[5603,2],[5737,2]]], [5671,[11174.5,4878.52,0],[[5603,2],[5738,2]]], [5672,[3563.17,10083.6,0],[[5606,2],[5739,2],[5740,2],[5741,2]]], [5673,[4003.87,9673.61,0],[[5607,2],[5742,2]]], [5674,[2395.73,10858,-1.27157e-006],[[5609,2],[5743,2],[5744,2]]], [5675,[368.808,13731,3.8147e-006],[[5610,2],[5745,2]]],
+[5676,[257.112,12187.2,0],[[5612,2],[5613,2]]], [5677,[68.906,12236.1,0],[[5612,2]]], [5678,[339.925,11948.3,0],[[5613,2],[5746,2]]], [5679,[1308.15,12019.5,-3.8147e-006],[[5614,2]]], [5680,[1540.35,14306,0],[[5616,2],[5747,2],[5748,2]]], [5681,[1219.12,14195.4,0],[[5617,2],[5749,2]]],
+[5682,[1186.99,14001.1,0],[[5617,2],[5750,2]]], [5683,[1317.32,13969.5,3.8147e-006],[[5617,2],[5751,2]]], [5684,[5260.74,9375.65,1.90735e-006],[[5618,2],[5752,2]]], [5685,[5380.54,9210.69,0],[[5620,2],[5685,2]]], [5686,[5331.08,9318.03,0],[[5620,2],[5752,2]]], [5687,[4748.1,9513.72,-1.90735e-006],[[5623,2],[5753,2]]],
+[5688,[4477.26,9612.81,0],[[5624,2]]], [5689,[5753.2,9943.32,0],[[5625,2]]], [5690,[5746.08,9150.62,0],[[5626,2],[5630,2],[5692,2]]], [5691,[5834.69,8895.54,0],[[5627,2],[5754,2]]], [5692,[5736.38,9091.32,0],[[5630,2],[5690,2],[5708,2],[5754,2]]], [5693,[5670.4,9184.75,0],[[5630,2]]],
+[5694,[5575.27,9156.57,0],[[5630,2],[5755,2]]], [5695,[2741.72,14566.7,-1.90735e-006],[[5631,2],[5756,2]]], [5696,[2677.18,14476.7,4.76837e-007],[[5631,2],[5700,2],[5757,2],[5696,2],[5758,2]]], [5697,[3081.13,14421,0],[[5632,2],[5759,2]]], [5698,[3152.74,14416.6,0],[[5632,2],[5760,2]]], [5699,[2445.34,14375,0],[[5633,2],[5761,2]]],
+[5700,[2633.22,14445,0],[[5633,2],[5696,2]]], [5701,[2485.61,14217.7,0],[[5633,2],[5762,2]]], [5702,[3375.97,16303.4,0],[[5635,2],[5763,2]]], [5703,[6153.29,8752.77,0],[[5637,2],[5644,2],[5764,2]]], [5704,[5923.14,8727.21,0],[[5638,2],[5765,2]]], [5705,[5849.23,8687.08,0],[[5638,2],[5766,2]]],
+[5706,[6000.09,8954.25,0],[[5638,2],[5767,2]]], [5707,[6064.47,8833.53,-1.90735e-006],[[5638,2]]], [5708,[5810.3,8855.2,0],[[5638,2],[5692,2],[5768,2],[5766,2]]], [5709,[7153.9,7642.68,0],[[5639,2],[5640,2],[5769,2]]], [5710,[6077.88,8256.22,0],[[5641,2],[5770,2],[5771,2]]], [5711,[6241.9,8071.06,0],[[5641,2],[5772,2]]],
+[5712,[6272.41,8487.51,0],[[5643,2],[5712,2]]], [5713,[6281.44,8349.36,0],[[5643,2]]], [5714,[4371.28,17562.6,0],[[5645,2]]], [5715,[7632.88,7059.98,0],[[5646,2],[5773,2],[5774,2]]], [5716,[7564.14,7032.18,0],[[5646,2]]], [5717,[7570.5,6971.12,0],[[5647,2]]],
+[5718,[7627.11,6767.86,0],[[5648,2],[5775,2],[5718,2],[5776,2]]], [5719,[7800.88,7264.76,0],[[5650,2],[5777,2]]], [5720,[8396.6,6666.24,0],[[5651,2]]], [5721,[16612.8,5376.92,3.17891e-007],[[5654,2],[5778,2],[5779,2]]], [5722,[16543.7,5693.27,0],[[5655,2]]], [5723,[16655.1,5653.2,0],[[5655,2],[5780,2],[5781,2]]],
+[5724,[16749.4,5878.27,3.17891e-007],[[5656,2],[5782,2],[5783,2]]], [5725,[15634.3,4378.94,3.17891e-007],[[5657,2],[5784,2],[5785,2]]], [5726,[16410.4,4650.7,2.38419e-007],[[5658,2],[5659,2],[5727,2]]], [5727,[16404.8,4625.53,0],[[5659,2],[5726,2]]], [5728,[16458.7,4504.01,0],[[5659,2],[5786,2],[5787,2]]], [5729,[16393.6,5005.57,0],[[5661,2],[5788,2]]],
+[5730,[16582.1,4853.53,0],[[5662,2],[5789,2]]], [5731,[15981.2,4277.46,0],[[5663,2],[5790,2]]], [5732,[16183,4282.1,0],[[5664,2]]], [5733,[15352.9,4757.26,0],[[5665,2],[5733,2],[5791,2]]], [5734,[15262.7,4686.45,0],[[5666,2],[5792,2]]], [5735,[11272.5,4693.78,0],[[5667,2],[5738,2],[5793,2]]],
+[5736,[10854.2,4872.38,0],[[5669,2],[5794,2]]], [5737,[11012.2,5296.17,0],[[5670,2],[5795,2]]], [5738,[11218.2,4773.94,0],[[5671,2],[5735,2]]], [5739,[3539.74,9956.35,-9.53674e-007],[[5672,2],[5739,2],[5796,2],[5797,2]]], [5740,[3391.29,10084.4,-3.8147e-006],[[5672,2],[5798,2]]], [5741,[3366.33,10188.7,0],[[5672,2],[5799,2]]],
+[5742,[4103.85,9536.97,3.8147e-006],[[5673,2],[5800,2]]], [5743,[2348.97,10752.2,0],[[5674,2],[5801,2],[5802,2]]], [5744,[2392.68,10946.8,-1.90735e-006],[[5674,2],[5803,2]]], [5745,[313.748,13824.2,0],[[5675,2],[5804,2]]], [5746,[441.657,11913.9,1.90735e-006],[[5678,2],[5805,2]]], [5747,[1582.81,14260.2,1.27157e-006],[[5680,2],[5806,2],[5807,2]]],
+[5748,[1561.2,14380.3,0],[[5680,2],[5808,2],[5809,2]]], [5749,[1098.71,14243.6,-1.90735e-006],[[5681,2],[5810,2]]], [5750,[1137.13,13911.6,-3.8147e-006],[[5682,2],[5811,2]]], [5751,[1286.07,13833.2,3.8147e-006],[[5683,2],[5812,2]]], [5752,[5246.58,9343.47,-1.27157e-006],[[5684,2],[5686,2],[5813,2]]], [5753,[4798.45,9380.31,0],[[5687,2],[5814,2]]],
+[5754,[5818.9,8924.64,0],[[5691,2],[5692,2],[5754,2]]], [5755,[5548.72,9084.49,0],[[5694,2],[5815,2]]], [5756,[2716.55,14705.6,0],[[5695,2],[5816,2]]], [5757,[2636.85,14507.6,0],[[5696,2],[5817,2],[5758,2]]], [5758,[2642.69,14506.2,0],[[5696,2],[5818,2],[5757,2]]], [5759,[3152.09,14507.3,0],[[5697,2],[5760,2]]],
+[5760,[3192.13,14472.8,6.35783e-007],[[5698,2],[5759,2],[5819,2]]], [5761,[2385.49,14337.9,0],[[5699,2],[5820,2]]], [5762,[2457.73,14126.8,0],[[5701,2],[5821,2]]], [5763,[3223.64,16280.5,0],[[5702,2],[5822,2]]], [5764,[6023.32,8636.89,0],[[5703,2],[5823,2]]], [5765,[5836.95,8573.73,0],[[5704,2],[5824,2]]],
+[5766,[5832.01,8678.13,-6.35783e-007],[[5705,2],[5708,2],[5825,2],[5826,2],[5768,2]]], [5767,[5983,8980.84,0],[[5706,2]]], [5768,[5807.56,8770.13,0],[[5708,2],[5766,2],[5827,2]]], [5769,[7226.26,7591.63,1.58946e-007],[[5709,2],[5828,2]]], [5770,[5955.28,8257.93,0],[[5710,2],[5829,2],[5770,2],[5830,2],[5831,2],[5832,2],[5833,2]]], [5771,[6060.71,8318.96,0],[[5710,2]]],
+[5772,[6361.17,7955.16,0],[[5711,2],[5834,2]]], [5773,[7520.78,7224.21,0],[[5715,2],[5835,2]]], [5774,[7662.21,7106.4,4.76837e-007],[[5715,2]]], [5775,[7624.69,6781.09,-1.19209e-007],[[5718,2]]], [5776,[7626.23,6657.73,1.19209e-007],[[5718,2],[5836,2],[5837,2],[5838,2]]], [5777,[7887.21,7315.25,-9.53674e-007],[[5719,2]]],
+[5778,[16695.3,5264.16,0],[[5721,2]]], [5779,[16719.9,5371.22,0],[[5721,2],[5839,2],[5840,2],[5841,2]]], [5780,[16748.4,5662.42,0],[[5723,2],[5842,2]]], [5781,[16707,5560.42,0],[[5723,2],[5843,2]]], [5782,[16774.6,5933.71,0],[[5724,2]]], [5783,[16857.3,5830.06,0],[[5724,2],[5844,2]]],
+[5784,[15568.3,4394.38,0],[[5725,2],[5845,2],[5846,2]]], [5785,[15720.6,4263.55,0],[[5725,2],[5847,2]]], [5786,[16480.1,4551.06,0],[[5728,2],[5848,2],[5849,2]]], [5787,[16500.5,4436.44,5.96046e-008],[[5728,2],[5850,2],[5851,2],[5852,2]]], [5788,[16323.4,5014.9,0],[[5729,2],[5788,2]]], [5789,[16637.5,4905.69,0],[[5730,2],[5853,2],[5854,2],[5855,2]]],
+[5790,[15976.3,4262.94,0],[[5731,2],[5856,2],[5857,2]]], [5791,[15350.8,4724.84,3.17891e-007],[[5733,2],[5791,2],[5858,2]]], [5792,[15267.9,4605.84,0],[[5734,2],[5859,2],[5860,2]]], [5793,[11259.4,4611.13,0],[[5735,2],[5861,2],[5862,2]]], [5794,[10717,4869.61,-2.38419e-007],[[5736,2],[5863,2],[5864,2],[5865,2]]], [5795,[10957.9,5412.93,0],[[5737,2],[5866,2]]],
+[5796,[3556.54,9871.81,0],[[5739,2],[5796,2],[5867,2],[5868,2]]], [5797,[3415.44,9937.62,0],[[5739,2],[5869,2]]], [5798,[3253.66,10086,-1.90735e-006],[[5740,2],[5870,2]]], [5799,[3247.27,10263.4,-1.90735e-006],[[5741,2],[5871,2]]], [5800,[4194.25,9428.08,0],[[5742,2],[5872,2],[5873,2]]], [5801,[2343.24,10620.7,0],[[5743,2],[5874,2]]],
+[5802,[2209.8,10746.9,0],[[5743,2],[5875,2]]], [5803,[2377.57,11025.9,-1.90735e-006],[[5744,2]]], [5804,[197.184,13887,-3.8147e-006],[[5745,2],[5876,2]]], [5805,[509.117,11905.7,0],[[5746,2],[5877,2],[5878,2]]], [5806,[1622.74,14246.8,0],[[5747,2],[5879,2],[5880,2]]], [5807,[1603.7,14207.3,1.90735e-006],[[5747,2]]],
+[5808,[1506.12,14438.1,0],[[5748,2],[5881,2]]], [5809,[1674.68,14496.7,0],[[5748,2],[5882,2]]], [5810,[1021.06,14286.9,0],[[5749,2],[5883,2],[5810,2],[5884,2]]], [5811,[1095.15,13832,0],[[5750,2],[5885,2]]], [5812,[1285.86,13815.3,0],[[5751,2]]], [5813,[5109.9,9352.84,0],[[5752,2],[5886,2]]],
+[5814,[4811.3,9340.81,0],[[5753,2],[5887,2],[5888,2]]], [5815,[5457.82,9015.05,1.90735e-006],[[5755,2],[5889,2]]], [5816,[2677.06,14773.8,0],[[5756,2],[5890,2],[5891,2]]], [5817,[2522.45,14587.3,0],[[5757,2],[5892,2]]], [5818,[2634.59,14502.4,0],[[5758,2]]], [5819,[3264.43,14555.5,-3.8147e-006],[[5760,2],[5893,2]]],
+[5820,[2313.54,14313.7,-1.90735e-006],[[5761,2],[5894,2]]], [5821,[2386.1,14087.1,0],[[5762,2],[5895,2]]], [5822,[3196.43,16272.6,0],[[5763,2],[5896,2],[5897,2]]], [5823,[5940.68,8535.74,0],[[5764,2],[5898,2],[5824,2]]], [5824,[5871.95,8502.49,-6.35783e-007],[[5765,2],[5823,2],[5899,2],[5900,2],[5898,2]]], [5825,[5814.33,8622.22,-1.27157e-006],[[5766,2],[5901,2],[5902,2]]],
+[5826,[5821.83,8758.66,1.90735e-006],[[5766,2],[5826,2]]], [5827,[5661.01,8864.66,3.8147e-006],[[5768,2],[5903,2]]], [5828,[7291.07,7565.22,3.17891e-007],[[5769,2],[5904,2],[5905,2]]], [5829,[5958.3,8210.61,0],[[5770,2],[5906,2]]], [5830,[5897.26,8308.44,-3.8147e-007],[[5770,2],[5830,2],[5900,2],[5907,2]]], [5831,[5931.69,8244.75,0],[[5770,2]]],
+[5832,[5988.74,8374.45,0],[[5770,2],[5900,2]]], [5833,[5762.72,8224.03,0],[[5770,2],[5908,2]]], [5834,[6389.78,7909.75,0],[[5772,2],[5909,2],[5910,2]]], [5835,[7509.52,7248.4,7.94729e-008],[[5773,2],[5911,2],[5904,2]]], [5836,[7575.2,6664.52,1.19209e-007],[[5776,2],[5912,2],[5913,2],[5914,2],[5838,2]]], [5837,[7752.58,6652.84,-4.76837e-007],[[5776,2]]],
+[5838,[7604.66,6580.6,0],[[5776,2],[5836,2],[5915,2]]], [5839,[16777.6,5419.15,0],[[5779,2]]], [5840,[16765.9,5293.42,0],[[5779,2]]], [5841,[16770.6,5349.25,0],[[5779,2]]], [5842,[16831.6,5681,9.53674e-007],[[5780,2]]], [5843,[16791.8,5544.85,4.76837e-007],[[5781,2]]],
+[5844,[16876.7,5787.67,4.76837e-007],[[5783,2]]], [5845,[15523.8,4450.83,-1.58946e-007],[[5784,2],[5916,2],[5917,2]]], [5846,[15557.6,4384.58,-4.76837e-007],[[5784,2]]], [5847,[15750.8,4230.59,0],[[5785,2],[5847,2],[5918,2]]], [5848,[16468.5,4570.85,0],[[5786,2]]], [5849,[16517.4,4535.97,0],[[5786,2]]],
+[5850,[16537.3,4462.09,0],[[5787,2]]], [5851,[16553.6,4354.77,0],[[5787,2],[5919,2],[5851,2],[5920,2],[5921,2]]], [5852,[16466,4351.69,0],[[5787,2],[5922,2],[5852,2]]], [5853,[16667.8,4813.42,7.94729e-008],[[5789,2],[5923,2],[5924,2]]], [5854,[16594.7,5006.23,0],[[5789,2],[5925,2]]], [5855,[16691.1,4948.46,7.94729e-008],[[5789,2],[5926,2],[5927,2]]],
+[5856,[15844,4213.69,-7.94729e-008],[[5790,2],[5856,2]]], [5857,[15978.2,4227.45,-2.38419e-007],[[5857,2],[5928,2]]], [5858,[15350.6,4658.32,0],[[5791,2],[5859,2]]], [5859,[15338.5,4581.88,9.53674e-008],[[5792,2],[5858,2],[5929,2],[5930,2],[5931,2]]], [5860,[15188.9,4593.3,3.17891e-007],[[5792,2],[5932,2],[5933,2]]], [5861,[11325.5,4557.42,-1.19209e-007],[[5793,2],[5934,2],[5935,2],[5861,2]]],
+[5862,[11234.5,4539.63,0],[[5793,2],[5936,2],[5937,2]]], [5863,[10740.8,4708.77,0],[[5794,2],[5938,2],[5939,2]]], [5864,[10628.7,4985.1,0],[[5794,2]]], [5865,[10723.1,5070.33,9.53674e-007],[[5794,2],[5940,2]]], [5866,[10936.7,5458.49,0],[[5795,2],[5941,2],[5942,2]]], [5867,[3695,9797.39,0],[[5796,2],[5943,2]]],
+[5868,[3515.05,9838.7,0],[[5796,2],[5944,2],[5945,2]]], [5869,[3331.95,9930.65,0],[[5797,2],[5946,2]]], [5870,[3149.67,10066.2,-1.90735e-006],[[5798,2],[5947,2]]], [5871,[3138.91,10348.3,0],[[5799,2],[5948,2]]], [5872,[4071.27,9478.06,0],[[5800,2],[5949,2]]], [5873,[4374.22,9395.11,0],[[5800,2],[5950,2]]],
+[5874,[2367.43,10500.8,0],[[5801,2],[5951,2]]], [5875,[2118.6,10843.8,0],[[5802,2],[5952,2]]], [5876,[81.7499,13924.1,0],[[5804,2]]], [5877,[560.287,11949.8,-1.90735e-006],[[5805,2]]], [5878,[585.594,11826.1,0],[[5805,2]]], [5879,[1746.77,14304.4,0],[[5806,2],[5953,2]]],
+[5880,[1644.56,14212.6,0],[[5806,2],[5953,2],[5954,2]]], [5881,[1497.2,14515.1,0],[[5808,2],[5955,2]]], [5882,[1733.37,14542.6,0],[[5809,2],[5956,2],[5957,2]]], [5883,[915.638,14423,-1.90735e-006],[[5810,2],[5958,2]]], [5884,[989.644,14227.2,0],[[5810,2],[5959,2]]], [5885,[1086.91,13780.6,0],[[5811,2]]],
+[5886,[4994.45,9350.58,0],[[5813,2],[5888,2]]], [5887,[4738.99,9281.99,0],[[5814,2],[5960,2],[5961,2]]], [5888,[4930.56,9335.71,1.90735e-006],[[5814,2],[5886,2]]], [5889,[5358.67,9010.71,0],[[5889,2],[5962,2]]], [5890,[2791.91,14773.7,0],[[5816,2],[5963,2]]], [5891,[2595.64,14918.1,0],[[5816,2],[5964,2]]],
+[5892,[2475.17,14611.9,0],[[5817,2]]], [5893,[3305.58,14647.5,0],[[5819,2],[5965,2]]], [5894,[2275.36,14307.2,0],[[5820,2],[5894,2],[5966,2]]], [5895,[2334.76,14029.4,6.35783e-007],[[5821,2],[5967,2],[5968,2]]], [5896,[3083.77,16175.3,2.54313e-006],[[5822,2],[5969,2],[5970,2]]], [5897,[3098.59,16288.3,0],[[5822,2],[5971,2]]],
+[5898,[5928.18,8492.22,-1.90735e-006],[[5823,2],[5824,2],[5900,2]]], [5899,[5928.29,8479.35,0],[[5824,2]]], [5900,[5948.63,8444.68,9.53674e-007],[[5824,2],[5830,2],[5832,2],[5898,2]]], [5901,[5746.48,8610.54,-4.76837e-007],[[5825,2],[5972,2],[5973,2],[5902,2],[5974,2]]], [5902,[5807.54,8505.82,0],[[5825,2],[5901,2],[5973,2],[5975,2],[5907,2]]], [5903,[5633.09,8894.27,0],[[5827,2]]],
+[5904,[7388.11,7432.68,0],[[5828,2],[5835,2]]], [5905,[7306.28,7599.87,0],[[5828,2]]], [5906,[5938.39,8147.55,0],[[5829,2],[5976,2],[5977,2]]], [5907,[5871.38,8361.19,0],[[5830,2],[5902,2],[5978,2]]], [5908,[5708.52,8209.51,6.35783e-007],[[5833,2],[5979,2],[5980,2]]], [5909,[6449.82,7923.23,0],[[5834,2],[5909,2],[5981,2]]],
+[5910,[6395.54,7780.66,1.58946e-007],[[5834,2],[5982,2],[5983,2]]], [5911,[7638.7,7327.08,0],[[5835,2],[5984,2]]], [5912,[7492.99,6826.59,4.76837e-007],[[5836,2],[5912,2]]], [5913,[7455.44,6563.6,0],[[5836,2],[5985,2]]], [5914,[7611.47,6593.98,4.76837e-007],[[5836,2],[5986,2]]], [5915,[7611.17,6426.9,-4.76837e-007],[[5838,2],[5987,2]]],
+[5916,[15483.3,4479.92,-6.35783e-007],[[5845,2],[5930,2],[5931,2]]], [5917,[15504.9,4392.82,0],[[5845,2]]], [5918,[15759.7,4223.65,0],[[5847,2]]], [5919,[16555.4,4363.58,-7.94729e-008],[[5851,2]]], [5920,[16608.2,4400.86,0],[[5851,2],[5988,2]]], [5921,[16582.4,4241.26,0],[[5851,2],[5989,2],[5990,2]]],
+[5922,[16390.8,4266.18,0],[[5852,2],[5991,2]]], [5923,[16605,4739.6,0],[[5853,2]]], [5924,[16756.1,4803.08,7.94729e-008],[[5853,2],[5992,2],[5993,2]]], [5925,[16515.6,5085.78,0],[[5854,2],[5994,2]]], [5926,[16725.3,5008.82,0],[[5855,2]]], [5927,[16725.2,4908.81,3.97364e-008],[[5855,2],[5927,2],[5992,2]]],
+[5928,[15941.7,4187.93,0],[[5857,2]]], [5929,[15317.4,4480.24,0],[[5859,2],[5929,2]]], [5930,[15434.9,4532.54,0],[[5859,2],[5916,2]]], [5931,[15380.9,4491.74,0],[[5859,2],[5916,2]]], [5932,[15055.9,4654.26,0],[[5860,2],[5995,2]]], [5933,[15181.6,4570.23,-4.76837e-007],[[5860,2]]],
+[5934,[11390.7,4490.16,-7.94729e-008],[[5861,2],[5996,2],[5997,2]]], [5935,[11309,4568.02,0],[[5861,2]]], [5936,[11284.9,4477.27,2.38419e-007],[[5862,2]]], [5937,[11178.6,4523.22,-3.17891e-007],[[5862,2],[5998,2],[5999,2]]], [5938,[10830.3,4598.57,0],[[5863,2],[6000,2],[5938,2],[5998,2]]], [5939,[10620.2,4587.04,-1.58946e-007],[[5863,2],[6001,2],[6002,2]]],
+[5940,[10719,5152.38,0],[[5865,2],[6003,2],[6004,2]]], [5941,[10833.6,5577.29,-6.35783e-007],[[5866,2],[6005,2],[6006,2]]], [5942,[11092.2,5394.8,3.17891e-007],[[5866,2],[5942,2],[6007,2]]], [5943,[3758.89,9761.45,0],[[5867,2],[6008,2]]], [5944,[3334.08,9779.84,0],[[5868,2],[6009,2]]], [5945,[3510,9719.16,0],[[5868,2],[6010,2]]],
+[5946,[3272.67,9893.33,0],[[5869,2],[6011,2]]], [5947,[3141.18,10069.9,0],[[5870,2]]], [5948,[3067.87,10422,-6.35783e-007],[[5871,2],[6012,2],[5948,2]]], [5949,[4033.05,9520.29,0],[[5872,2],[6013,2],[6014,2]]], [5950,[4448.37,9340.83,0],[[5873,2],[6015,2]]], [5951,[2325.51,10384.3,0],[[5874,2],[6016,2]]],
+[5952,[2159.99,10981.9,1.90735e-006],[[5875,2],[6017,2]]], [5953,[1763.63,14232,0],[[5879,2],[5880,2],[6018,2],[6019,2]]], [5954,[1636.89,14186.8,-1.90735e-006],[[5880,2]]], [5955,[1544.55,14599.3,0],[[5881,2],[6020,2]]], [5956,[1803.39,14526.6,0],[[5882,2],[6021,2],[5957,2]]], [5957,[1764.85,14593.2,0],[[5882,2],[5956,2],[6021,2],[6022,2]]],
+[5958,[808.253,14510.8,0],[[5883,2],[6023,2]]], [5959,[990.473,14121.8,0],[[5884,2],[6024,2]]], [5960,[4625.11,9161.68,0],[[5887,2],[6025,2]]], [5961,[4674.38,9313.34,0],[[5887,2]]], [5962,[5246.28,8988.54,0],[[5889,2],[6070,2]]], [5963,[2870.56,14781.6,0],[[5890,2],[6026,2]]],
+[5964,[2605.92,14965.5,0],[[5891,2],[6027,2],[6028,2]]], [5965,[3329.06,14719.7,0],[[5893,2],[6029,2]]], [5966,[2259.14,14267.8,0],[[5894,2]]], [5967,[2292.46,14024.5,0],[[5895,2]]], [5968,[2292.52,13896.7,0],[[5895,2],[6030,2]]], [5969,[3043.13,16139.1,0],[[5896,2]]],
+[5970,[2942.26,16245,0],[[5896,2],[5971,2],[6031,2]]], [5971,[3082.81,16292.8,0],[[5897,2],[5970,2],[6032,2]]], [5972,[5747.51,8708.57,0],[[5901,2]]], [5973,[5748.3,8539.11,1.90735e-006],[[5901,2],[5902,2],[5973,2]]], [5974,[5616.37,8612.86,0],[[5901,2],[6033,2]]], [5975,[5758.82,8529.28,0],[[5902,2]]],
+[5976,[5994.11,8095.35,0],[[5906,2],[6034,2],[6035,2],[5977,2]]], [5977,[5946.51,7989.98,0],[[5906,2],[5976,2],[6036,2],[6035,2],[6037,2]]], [5978,[5774.38,8349.34,-1.90735e-006],[[5907,2]]], [5979,[5769.67,8094.03,1.90735e-006],[[5908,2],[6038,2]]], [5980,[5555.02,8124.12,-1.90735e-006],[[5908,2],[6039,2]]], [5981,[6492.83,8007.28,-9.53674e-007],[[5909,2],[6040,2]]],
+[5982,[6474.58,7718.23,0],[[5910,2],[5982,2]]], [5983,[6377.08,7619.71,0],[[5910,2],[6041,2],[6042,2]]], [5984,[7703.04,7378.32,0],[[5911,2],[6043,2]]], [5985,[7413.14,6521.19,0],[[5913,2],[6044,2],[5985,2]]], [5986,[7615.92,6577.95,-4.76837e-007],[[5914,2]]], [5987,[7633.44,6349.23,0],[[5915,2],[6045,2]]],
+[5988,[16629,4401.35,-2.38419e-007],[[5920,2]]], [5989,[16630.1,4239.36,0],[[5921,2]]], [5990,[16605.9,4137.02,-7.94729e-008],[[5921,2],[6046,2],[5990,2],[6047,2]]], [5991,[16339.1,4213.82,2.38419e-007],[[5922,2],[5991,2]]], [5992,[16752.1,4837.36,-1.58946e-007],[[5924,2],[5927,2],[5992,2]]], [5993,[16763,4772.09,7.94729e-008],[[5924,2],[6048,2],[6049,2]]],
+[5994,[16444,5161.63,0],[[5925,2],[6050,2]]], [5995,[14985.4,4683.46,-4.76837e-007],[[5932,2]]], [5996,[11468.5,4437.49,0],[[5934,2],[6051,2],[5996,2]]], [5997,[11375.7,4459.28,0],[[5934,2]]], [5998,[11030.9,4561.71,0],[[5937,2],[5938,2]]], [5999,[11194.3,4482.04,0],[[5937,2]]],
+[6000,[10812.7,4599.37,0],[[5938,2]]], [6001,[10607.4,4549.97,0],[[5939,2],[6001,2],[6052,2]]], [6002,[10510.9,4619.46,0],[[5939,2],[6053,2]]], [6003,[10599.3,5275.05,0],[[5940,2],[6054,2]]], [6004,[10741.5,5302.48,0],[[5940,2],[6055,2]]], [6005,[10985.8,5578.68,0],[[5941,2],[6056,2]]],
+[6006,[10746.7,5700.03,0],[[5941,2],[6057,2],[6058,2],[6059,2]]], [6007,[11213.6,5256.47,0],[[5942,2]]], [6008,[3784.01,9726.08,3.8147e-006],[[5943,2]]], [6009,[3287.93,9739.78,0],[[5944,2],[6060,2],[6009,2]]], [6010,[3591.06,9608.23,0],[[5945,2],[6061,2]]], [6011,[3266.01,9860,0],[[5946,2]]],
+[6012,[3044.01,10430.8,0],[[5948,2]]], [6013,[4020.66,9599.67,-1.90735e-006],[[5949,2]]], [6014,[3888.09,9527.15,1.90735e-006],[[5949,2],[6061,2]]], [6015,[4446.29,9227.66,1.90735e-006],[[5950,2],[6062,2],[6025,2]]], [6016,[2315.75,10312,-6.35783e-007],[[5951,2],[6063,2],[6064,2]]], [6017,[2107.15,11090.1,0],[[5952,2],[6065,2]]],
+[6018,[1850.71,14259.2,0],[[5953,2]]], [6019,[1780.46,14132.2,0],[[5953,2]]], [6020,[1524.3,14676.1,-1.90735e-006],[[5955,2]]], [6021,[1818.17,14586.1,-1.90735e-006],[[5956,2],[5957,2],[6066,2]]], [6022,[1796.69,14758.4,1.90735e-006],[[5957,2],[6067,2]]], [6023,[743.514,14624.4,0],[[5958,2],[6068,2]]],
+[6024,[977.161,14073.3,6.35783e-007],[[5959,2],[6024,2],[6069,2]]], [6025,[4518.87,9118.93,0],[[5960,2],[6015,2],[6062,2]]], [6026,[2959.35,14884.5,3.8147e-006],[[5963,2],[6071,2]]], [6027,[2657.45,15135.1,0],[[5964,2],[6072,2]]], [6028,[2558.23,15004,0],[[5964,2],[6073,2]]], [6029,[3360.43,14840,0],[[5965,2],[6074,2],[6075,2]]],
+[6030,[2258.25,13833.6,0],[[5968,2]]], [6031,[2840.12,16227.4,0],[[5970,2],[6076,2],[6077,2]]], [6032,[3137.43,16352.2,0],[[5971,2],[6078,2]]], [6033,[5502.09,8641.03,6.35783e-007],[[5974,2],[6079,2],[6080,2]]], [6034,[6009.29,8108.72,0],[[5976,2]]], [6035,[6025.33,8016.56,0],[[6035,2]]],
+[6036,[5902.15,7979.33,1.90735e-006],[[5977,2]]], [6037,[6003.42,7863.54,0],[[5977,2],[6037,2],[6081,2],[6082,2]]], [6038,[5724.22,7946.81,0],[[5979,2],[6083,2]]], [6039,[5476.13,8086.05,6.35783e-007],[[5980,2],[6084,2],[6085,2]]], [6040,[6557.02,8011.65,-4.76837e-007],[[5981,2]]], [6041,[6368.83,7546.25,1.58946e-007],[[5983,2],[6086,2],[6087,2],[6042,2],[6088,2],[6089,2],[6090,2]]],
+[6042,[6410.58,7625.17,0],[[5983,2],[6041,2],[6091,2],[6092,2],[6087,2],[6093,2]]], [6043,[7716.59,7473.26,3.17891e-007],[[5984,2],[6043,2],[6094,2]]], [6044,[7375.01,6492.98,0],[[5985,2],[6095,2],[6096,2]]], [6045,[7650.7,6259.84,2.38419e-007],[[5987,2]]], [6046,[16603.4,4156.17,0],[[5990,2],[6097,2],[6046,2]]], [6047,[16617.2,4041.78,-3.97364e-008],[[5990,2],[6047,2],[6098,2],[6099,2],[6100,2]]],
+[6048,[16773.1,4739.57,0],[[5993,2]]], [6049,[16747.9,4683.26,-4.76837e-007],[[5993,2],[6101,2]]], [6050,[16425.9,5201.47,0],[[5994,2]]], [6051,[11499.6,4400.07,0],[[5996,2]]], [6052,[10523.2,4471.52,0],[[6001,2],[6102,2],[6053,2]]], [6053,[10392.1,4526.12,0],[[6002,2],[6052,2],[6103,2],[6102,2]]],
+[6054,[10523.9,5353.17,0],[[6003,2],[6104,2]]], [6055,[10744.5,5443.64,9.53674e-007],[[6004,2],[6057,2]]], [6056,[11001.6,5654.98,0],[[6005,2],[6105,2]]], [6057,[10731,5543.62,0],[[6006,2],[6055,2],[6106,2]]], [6058,[10766.1,5876.13,0],[[6006,2],[6107,2]]], [6059,[10659.6,5880.82,0],[[6006,2],[6108,2]]],
+[6060,[3253.95,9750.19,0],[[6009,2]]], [6061,[3730.07,9525.48,-1.90735e-006],[[6010,2],[6014,2]]], [6062,[4491.72,9116.62,0],[[6015,2],[6025,2],[6109,2],[6110,2]]], [6063,[2309.08,10150.9,1.27157e-006],[[6016,2],[6111,2],[6063,2],[6112,2]]], [6064,[2422.55,10401.9,0],[[6016,2],[6113,2],[6114,2]]], [6065,[2022.81,11183.5,0],[[6017,2],[6115,2]]],
+[6066,[1946.99,14627.3,0],[[6021,2],[6116,2]]], [6067,[1966.1,14905.1,0],[[6022,2],[6117,2]]], [6068,[616.355,14664.8,0],[[6023,2],[6118,2]]], [6069,[845.418,14030.4,0],[[6069,2],[6119,2]]], [6070,[5156.65,8963.13,0],[[5962,2],[6120,2]]], [6071,[2990.23,14949.4,0],[[6026,2]]],
+[6072,[2666.02,15199.9,-6.35783e-007],[[6027,2],[6121,2],[6122,2]]], [6073,[2543.33,15033.7,0],[[6028,2]]], [6074,[3482.4,14949.8,0],[[6029,2]]], [6075,[3359.77,14940.3,0],[[6029,2],[6123,2]]], [6076,[2747.67,16051.6,0],[[6031,2],[6124,2]]], [6077,[2843.65,16387.7,0],[[6031,2],[6125,2],[6126,2]]],
+[6078,[3174.07,16382.7,0],[[6032,2]]], [6079,[5362.07,8699.32,0],[[6033,2],[6127,2]]], [6080,[5366.09,8576.96,0],[[6033,2],[6128,2]]], [6081,[6048.17,7882.08,0],[[6037,2]]], [6082,[6043.17,7771.53,0],[[6037,2],[6130,2],[6131,2],[6132,2]]], [6083,[5672.21,7827.37,0],[[6038,2],[6133,2]]],
+[6084,[5372.89,8055.15,0],[[6039,2],[6134,2],[6135,2],[6084,2],[6136,2]]], [6085,[5543.68,8078.71,0],[[6039,2]]], [6086,[6336.46,7390.87,9.53674e-007],[[6041,2],[6137,2]]], [6087,[6412.75,7580.12,0],[[6041,2],[6042,2],[6092,2]]], [6088,[6487.65,7463.27,0],[[6041,2],[6088,2],[6138,2],[6139,2]]], [6089,[6290.71,7558.49,0],[[6041,2]]],
+[6090,[6204.24,7537.3,0],[[6041,2],[6140,2]]], [6091,[6409.07,7585.46,-4.76837e-007],[[6042,2],[6091,2]]], [6092,[6438.82,7604.25,0],[[6087,2],[6141,2]]], [6093,[6469.83,7654.28,0],[[6093,2],[6142,2],[6042,2]]], [6094,[7638.79,7545.97,0],[[6043,2]]], [6095,[7292.5,6531.44,0],[[6044,2],[6143,2]]],
+[6096,[7292.83,6366.61,-1.90735e-007],[[6044,2],[6144,2],[6096,2],[6145,2],[6146,2]]], [6097,[16605.1,4162.32,1.19209e-007],[[6046,2]]], [6098,[16525.4,3995.44,7.94729e-008],[[6047,2],[6147,2],[6148,2]]], [6099,[16677.8,3958.43,0],[[6047,2],[6149,2],[6150,2]]], [6100,[16581.9,3878.31,4.76837e-007],[[6047,2],[6151,2]]], [6101,[16729,4666.69,-4.76837e-007],[[6049,2]]],
+[6102,[10397.9,4466.73,0],[[6052,2],[6053,2],[6152,2],[6153,2]]], [6103,[10257,4590.71,-4.76837e-007],[[6053,2],[6154,2]]], [6104,[10504.4,5354.55,0],[[6054,2],[6155,2],[6156,2]]], [6105,[11012.1,5732.22,0],[[6056,2],[6105,2]]], [6106,[10670.9,5728.16,0],[[6057,2],[6108,2]]], [6107,[10805.4,5956.02,-1.19209e-007],[[6058,2],[6157,2],[6158,2],[6159,2]]],
+[6108,[10644,5895.32,3.17891e-007],[[6059,2],[6106,2],[6157,2]]], [6109,[4594.18,8978.08,0],[[6062,2],[6160,2]]], [6110,[4392.84,9106.53,0],[[6062,2],[6161,2],[6110,2],[6162,2]]], [6111,[2312.47,10174.4,9.53674e-007],[[6063,2]]], [6112,[2302.59,10088,6.35783e-007],[[6063,2],[6163,2],[6164,2]]], [6113,[2472.45,10405.3,1.90735e-006],[[6064,2]]],
+[6114,[2549.52,10549.6,0],[[6114,2]]], [6115,[1895.91,11270.6,0],[[6065,2],[6165,2]]], [6116,[2052.29,14680,0],[[6066,2],[6166,2],[6167,2]]], [6117,[2060.25,15055.8,0],[[6067,2],[6168,2]]], [6118,[595.466,14668.6,0],[[6068,2],[6169,2],[6170,2]]], [6119,[806.538,13936.9,0],[[6069,2]]],
+[6120,[5135.43,8951.96,-1.27157e-006],[[6070,2],[6171,2],[6172,2]]], [6121,[2786.14,15258.4,1.90735e-006],[[6072,2],[6173,2]]], [6122,[2678.04,15328.3,0],[[6072,2],[6174,2]]], [6123,[3290.78,15056.9,-1.90735e-006],[[6075,2],[6175,2]]], [6124,[2736.28,16016.8,0],[[6076,2],[6176,2],[6177,2]]], [6125,[2937.97,16534.5,0],[[6077,2],[6178,2]]],
+[6126,[2697.19,16459.9,0],[[6077,2],[6179,2]]], [6127,[5298.8,8726.12,-1.90735e-006],[[6079,2],[6172,2],[6180,2],[6181,2]]], [6128,[5356.56,8466.48,0],[[6080,2],[6182,2]]], [6129,[6161.63,7978.99,-1.90735e-006],[[6035,2]]], [6130,[6083.82,7812.28,0],[[6082,2]]], [6131,[6085.6,7766.83,0],[[6082,2]]],
+[6132,[6058.7,7715.55,0],[[6082,2],[6183,2],[6132,2]]], [6133,[5819.81,7757.26,0],[[6083,2],[6133,2]]], [6134,[5258.26,8027.24,0],[[6084,2],[6134,2],[6184,2],[6185,2]]], [6135,[5380.85,8052.56,2.54313e-006],[[6084,2]]], [6136,[5351.77,7955.68,0],[[6084,2],[6186,2]]], [6137,[6289.99,7318.67,3.17891e-007],[[6086,2],[6187,2],[6188,2]]],
+[6138,[6535.12,7468.79,0],[[6088,2]]], [6139,[6476.21,7426.1,-2.38419e-007],[[6088,2],[6189,2],[6190,2]]], [6140,[6118.91,7588.46,0],[[6090,2],[6183,2]]], [6141,[6470.35,7632.47,0],[[6092,2]]], [6142,[6455.85,7659.41,1.58946e-007],[[6093,2]]], [6143,[7207.59,6536.99,4.76837e-007],[[6095,2]]],
+[6144,[7356.58,6315.94,0],[[6096,2],[6191,2],[6192,2]]], [6145,[7232.62,6427.98,4.76837e-007],[[6096,2],[6146,2]]], [6146,[7168.34,6351.14,-1.19209e-007],[[6096,2],[6145,2],[6193,2],[6194,2]]], [6147,[16504.7,3977.38,0],[[6098,2]]], [6148,[16437.1,4021.12,0],[[6098,2],[6195,2]]], [6149,[16721.7,3956,0],[[6099,2]]],
+[6150,[16717.1,3862.85,1.78814e-007],[[6099,2],[6196,2],[6197,2],[6198,2]]], [6151,[16559.3,3809.74,0],[[6100,2],[6199,2]]], [6152,[10348.7,4350.06,0],[[6102,2],[6200,2],[6152,2],[6201,2]]], [6153,[10317.6,4409.56,0],[[6153,2],[6202,2]]], [6154,[10147.3,4672.99,-4.76837e-007],[[6103,2],[6203,2]]], [6155,[10422.2,5451.68,0],[[6104,2],[6204,2]]],
+[6156,[10466.2,5333.38,6.35783e-007],[[6104,2],[6205,2],[6206,2]]], [6157,[10589,6000.35,0],[[6107,2],[6108,2],[6207,2]]], [6158,[10839.3,6092.06,0],[[6107,2],[6208,2]]], [6159,[10918.3,5923.8,-2.38419e-007],[[6107,2]]], [6160,[4751.04,8978.08,0],[[6109,2],[6209,2]]], [6161,[4312.4,9087.47,0],[[6110,2],[6210,2]]],
+[6162,[4303.88,9081.14,0],[[6110,2]]], [6163,[2472.51,10167.3,0],[[6112,2],[6211,2]]], [6164,[2265.15,9978.45,0],[[6112,2],[6212,2]]], [6165,[1779.4,11329.9,0],[[6115,2],[6213,2],[6214,2]]], [6166,[2077.43,14658.7,0],[[6116,2],[6166,2],[6215,2]]], [6167,[2042.42,14748.4,0],[[6116,2]]],
+[6168,[2082.3,15101.7,0],[[6117,2],[6216,2],[6217,2]]], [6169,[500.135,14735.3,0],[[6118,2],[6218,2]]], [6170,[585.585,14696,0],[[6118,2]]], [6171,[5027.83,8935.88,0],[[6120,2],[6209,2],[6171,2],[6219,2]]], [6172,[5192.03,8866.72,0],[[6120,2],[6127,2]]], [6173,[2833.17,15252.7,-6.35783e-007],[[6121,2],[6173,2],[6220,2]]],
+[6174,[2695.35,15432,0],[[6122,2],[6221,2]]], [6175,[3242.95,15108.2,0],[[6123,2],[6222,2],[6223,2]]], [6176,[2740.28,15850.3,0],[[6124,2],[6224,2]]], [6177,[2615.19,16127.1,0],[[6124,2],[6225,2]]], [6178,[3018.3,16629.5,0],[[6125,2],[6226,2]]], [6179,[2545.65,16540.6,0],[[6126,2],[6227,2]]],
+[6180,[5200.82,8632.53,0],[[6127,2],[6228,2]]], [6181,[5151.76,8738.62,0],[[6127,2],[6229,2]]], [6182,[5283.43,8376.94,0],[[6128,2],[6230,2]]], [6183,[6062.58,7673.64,1.90735e-007],[[6132,2],[6140,2],[6231,2],[6232,2]]], [6184,[5216.48,8094.25,0],[[6134,2],[6233,2]]], [6185,[5113.66,7933.98,6.35783e-007],[[6134,2],[6234,2],[6235,2]]],
+[6186,[5372.75,7927.4,3.8147e-006],[[6136,2]]], [6187,[6306.56,7262.2,0],[[6137,2],[6236,2],[6237,2]]], [6188,[6223.21,7387.18,9.53674e-007],[[6137,2],[6238,2]]], [6189,[6470.18,7393.15,-1.19209e-007],[[6139,2],[6189,2],[6239,2],[6240,2]]], [6190,[6546.09,7414.44,0],[[6139,2],[6241,2]]], [6191,[7451.69,6230.75,0],[[6144,2],[6242,2],[6191,2],[6243,2]]],
+[6192,[7331.58,6247.49,0],[[6144,2],[6244,2]]], [6193,[7059.13,6354.22,1.58946e-007],[[6146,2],[6245,2],[6246,2]]], [6194,[7265.73,6263.63,0],[[6146,2],[6244,2]]], [6195,[16409.1,4094.35,0],[[6148,2],[6195,2],[6247,2],[6248,2]]], [6196,[16781.9,3824.9,0],[[6150,2]]], [6197,[16777.9,3905.55,-2.38419e-007],[[6150,2]]],
+[6198,[16685.7,3746.07,0],[[6150,2],[6198,2]]], [6199,[16575.4,3734.8,2.38419e-007],[[6151,2],[6249,2]]], [6200,[10403.6,4285.63,0],[[6152,2],[6201,2],[6250,2]]], [6201,[10349.2,4266.57,0],[[6152,2],[6200,2],[6251,2]]], [6202,[10224.6,4322.86,0],[[6153,2],[6252,2]]], [6203,[10102.4,4725.59,-1.58946e-007],[[6154,2],[6253,2],[6254,2]]],
+[6204,[10377.2,5486.07,-4.76837e-007],[[6155,2],[6255,2],[6256,2]]], [6205,[10420.3,5353.5,0],[[6156,2]]], [6206,[10469.1,5241.34,0],[[6156,2]]], [6207,[10584.8,5996.07,2.38419e-007],[[6157,2],[6257,2],[6258,2]]], [6208,[10838.2,6124.26,0],[[6158,2],[6259,2],[6260,2]]], [6209,[4933.4,8931.94,0],[[6160,2],[6171,2]]],
+[6210,[4123.21,9068.34,0],[[6161,2],[6261,2]]], [6211,[2556.84,10252,1.90735e-006],[[6163,2],[6262,2]]], [6212,[2237.91,9900.66,0],[[6164,2],[6263,2]]], [6213,[1761.12,11214.1,1.90735e-006],[[6165,2],[6264,2]]], [6214,[1618.88,11392.6,0],[[6165,2],[6265,2]]], [6215,[2175.31,14703.9,6.35783e-007],[[6166,2],[6266,2],[6267,2]]],
+[6216,[2207.88,15137.5,0],[[6168,2],[6268,2]]], [6217,[2043.43,15210.2,0],[[6168,2],[6269,2],[6270,2]]], [6218,[478.143,14864.2,0],[[6169,2],[6271,2]]], [6219,[4890.77,8872.19,0],[[6171,2],[6272,2]]], [6220,[2923.33,15296.2,0],[[6173,2],[6273,2]]], [6221,[2674.9,15539.2,1.90735e-006],[[6174,2],[6274,2]]],
+[6222,[3197.04,15176.4,0],[[6175,2],[6275,2]]], [6223,[3315.36,15223.6,1.90735e-006],[[6175,2],[6276,2]]], [6224,[2713.04,15723.2,0],[[6176,2],[6277,2],[6274,2]]], [6225,[2572.72,16151,6.35783e-007],[[6177,2],[6225,2],[6278,2]]], [6226,[3051.22,16664,6.35783e-007],[[6178,2],[6279,2]]], [6227,[2459.61,16561.2,0],[[6179,2],[6280,2]]],
+[6228,[5152.89,8616.22,0],[[6180,2]]], [6229,[5095.08,8667.3,0],[[6181,2]]], [6230,[5189.93,8295.88,1.90735e-006],[[6182,2],[6281,2]]], [6231,[5944.47,7695.09,0],[[6183,2],[6282,2]]], [6232,[6026.26,7560.35,0],[[6183,2],[6283,2]]], [6233,[5203.39,8116.87,-1.90735e-006],[[6184,2]]],
+[6234,[5120.56,7733.49,0],[[6185,2],[6284,2]]], [6235,[5046.85,8041.55,1.90735e-006],[[6185,2],[6285,2]]], [6236,[6286.64,7166.04,0],[[6187,2],[6236,2],[6286,2]]], [6237,[6384.53,7096.2,-9.53674e-008],[[6187,2],[6287,2],[6288,2],[6286,2],[6289,2]]], [6238,[6168.9,7409,0],[[6188,2],[6290,2]]], [6239,[6573.29,7325.17,-7.94729e-008],[[6189,2],[6240,2],[6239,2],[6291,2]]],
+[6240,[6548.19,7313.96,-2.38419e-007],[[6239,2],[6345,2],[6189,2],[6240,2]]], [6241,[6612.42,7442.81,2.38419e-007],[[6190,2]]], [6242,[7468.35,6180.06,-2.38419e-007],[[6191,2],[6292,2],[6293,2]]], [6243,[7530.7,6255.03,0],[[6191,2],[6294,2]]], [6244,[7310.76,6228.68,-3.17891e-007],[[6192,2],[6194,2],[6295,2]]], [6245,[7102.6,6234.14,0],[[6193,2],[6296,2]]],
+[6246,[6964.58,6477.35,9.53674e-007],[[6193,2],[6297,2]]], [6247,[16364.4,4141.8,0],[[6195,2],[6248,2]]], [6248,[16375.1,4165.94,0],[[6195,2],[6247,2]]], [6249,[16594.4,3676.5,0],[[6199,2],[6249,2],[6298,2]]], [6250,[10467.7,4153.87,0],[[6200,2],[6299,2]]], [6251,[10317,4140.5,0],[[6201,2],[6300,2],[6251,2],[6301,2]]],
+[6252,[10111.3,4242.09,0],[[6202,2],[6302,2]]], [6253,[9932.13,4725.65,9.53674e-007],[[6203,2],[6303,2]]], [6254,[10064.3,4895.76,0],[[6203,2]]], [6255,[10375.9,5441.34,0],[[6204,2]]], [6256,[10362.1,5574.29,0],[[6204,2],[6304,2]]], [6257,[10529.5,6018.79,3.17891e-007],[[6207,2],[6305,2],[6258,2]]],
+[6258,[10586.6,6040.71,0],[[6207,2],[6257,2],[6260,2],[6306,2]]], [6259,[10929.2,6182.84,0],[[6208,2],[6307,2],[6308,2],[6309,2]]], [6260,[10715.2,6146.43,-1.58946e-007],[[6208,2],[6258,2],[6310,2]]], [6261,[3974.28,9013.29,0],[[6210,2],[6311,2]]], [6262,[2617.08,10187.5,-9.53674e-007],[[6211,2],[6312,2]]], [6263,[2159.24,9819.9,0],[[6212,2],[6313,2]]],
+[6264,[1741.86,11065.4,0],[[6213,2],[6314,2]]], [6265,[1461.66,11467.9,0],[[6214,2],[6315,2]]], [6266,[2254.8,14806.1,0],[[6215,2],[6266,2],[6316,2],[6317,2],[6318,2]]], [6267,[2205.35,14596.9,0],[[6215,2]]], [6268,[2252.63,15137.3,0],[[6216,2]]], [6269,[2168.62,15278.9,-9.53674e-007],[[6217,2],[6269,2],[6319,2]]],
+[6270,[1999.52,15309.8,0],[[6217,2],[6320,2],[6321,2],[6270,2],[6322,2]]], [6271,[458.72,14896.6,-6.35783e-007],[[6218,2],[6323,2],[6324,2]]], [6272,[4873.76,8858.92,0],[[6219,2]]], [6273,[2946.34,15338,-1.90735e-006],[[6220,2]]], [6274,[2671.24,15589.4,0],[[6221,2],[6224,2],[6325,2],[6277,2]]], [6275,[3156.6,15227.8,0],[[6222,2],[6326,2],[6327,2]]],
+[6276,[3346.08,15269.4,1.27157e-006],[[6223,2],[6328,2],[6329,2],[6276,2]]], [6277,[2702.71,15653,0],[[6224,2],[6274,2],[6330,2]]], [6278,[2520.66,16122.1,0],[[6225,2]]], [6279,[3053.36,16676.4,0],[[6226,2]]], [6280,[2364.17,16501.3,0],[[6227,2],[6331,2]]], [6281,[5142.54,8254.78,0],[[6230,2]]],
+[6282,[5845.62,7675.19,0],[[6231,2],[6332,2]]], [6283,[5930.49,7511.66,0],[[6232,2],[6333,2]]], [6284,[5043.42,7610.79,6.35783e-007],[[6234,2],[6334,2],[6335,2]]], [6285,[5026.36,8064.71,6.35783e-007],[[6235,2],[6336,2],[6337,2]]], [6286,[6267.55,7116.83,0],[[6236,2],[6237,2],[6338,2],[6339,2],[6340,2]]], [6287,[6450.15,7050.13,-1.19209e-007],[[6237,2],[6287,2],[6341,2],[6288,2]]],
+[6288,[6410.19,7015.41,-1.19209e-007],[[6237,2],[6287,2],[6342,2],[6343,2],[6341,2]]], [6289,[6342.27,7113.58,0],[[6237,2]]], [6290,[6081.12,7400.99,0],[[6238,2],[6344,2]]], [6291,[6744.77,7388.26,0],[[6239,2]]], [6292,[7471.22,6125.72,0],[[6242,2],[6292,2],[6346,2]]], [6293,[7528.15,6137.06,-1.58946e-007],[[6242,2],[6293,2],[6347,2]]],
+[6294,[7565.92,6222.65,3.17891e-007],[[6243,2],[6294,2]]], [6295,[7322.91,6128.16,0],[[6244,2],[6348,2],[6346,2]]], [6296,[7118.05,6165.16,3.17891e-007],[[6245,2],[6349,2],[6350,2]]], [6297,[6963.66,6498.57,3.17891e-007],[[6246,2],[6351,2],[6352,2]]], [6298,[16669.7,3673.74,4.76837e-007],[[6249,2]]], [6299,[10546.3,4044.59,0],[[6250,2],[6353,2]]],
+[6300,[10327.6,3995.76,-6.35783e-007],[[6251,2],[6354,2],[6355,2],[6301,2]]], [6301,[10274.5,4085.11,0],[[6251,2],[6300,2],[6356,2],[6357,2]]], [6302,[9978.2,4180.63,0],[[6252,2],[6358,2]]], [6303,[9801.89,4784.03,0],[[6253,2],[6359,2]]], [6304,[10312.5,5676.48,0],[[6256,2],[6360,2]]], [6305,[10469,6023.01,0],[[6257,2],[6361,2],[6362,2]]],
+[6306,[10539.2,6045.09,-9.53674e-007],[[6258,2],[6363,2]]], [6307,[11021.1,6225.76,4.76837e-007],[[6259,2]]], [6308,[10967.1,6152.93,0],[[6259,2]]], [6309,[10915.9,6294.52,0],[[6259,2],[6364,2]]], [6310,[10694.8,6186.96,0],[[6260,2]]], [6311,[3854.85,8969.87,0],[[6261,2],[6365,2]]],
+[6312,[2668.2,10079.2,0],[[6262,2],[6366,2]]], [6313,[2122.22,9768.73,0],[[6263,2],[6367,2],[6368,2]]], [6314,[1685.97,11035.7,-4.76837e-007],[[6264,2],[6314,2],[6369,2]]], [6315,[1334.65,11493.7,0],[[6265,2],[6370,2]]], [6316,[2193.07,14865.3,1.90735e-006],[[6266,2]]], [6317,[2379.23,14902.2,0],[[6266,2],[6317,2]]],
+[6318,[2259.31,14897.9,0],[[6266,2],[6371,2],[6372,2]]], [6319,[2283.05,15320.2,0],[[6269,2],[6373,2]]], [6320,[1944.29,15439.1,0],[[6270,2],[6374,2]]], [6321,[1997.94,15301.6,-6.35783e-007],[[6270,2]]], [6322,[1945.22,15283.4,0],[[6270,2],[6375,2]]], [6323,[318.453,14795.6,0],[[6271,2],[6376,2]]],
+[6324,[417.831,15083.9,0],[[6271,2],[6377,2]]], [6325,[2594.29,15686.3,0],[[6274,2],[6378,2]]], [6326,[3114.99,15262.3,1.90735e-006],[[6275,2]]], [6327,[3115.7,15132,0],[[6275,2],[6379,2]]], [6328,[3353.33,15290.6,1.90735e-006],[[6276,2],[6329,2]]], [6329,[3358.13,15285.1,0],[[6276,2],[6328,2]]],
+[6330,[2847.52,15627.7,1.90735e-006],[[6277,2],[6380,2]]], [6331,[2249.1,16449.2,1.27157e-006],[[6280,2],[6381,2],[6382,2]]], [6332,[5745.35,7655.83,0],[[6282,2],[6383,2]]], [6333,[5816.15,7495.16,0],[[6283,2],[6384,2]]], [6334,[4887.06,7529.63,0],[[6284,2],[6385,2]]], [6335,[5090.36,7551.56,4.76837e-007],[[6284,2],[6335,2],[6386,2],[6387,2]]],
+[6336,[4860.96,8009.34,0],[[6285,2],[6388,2]]], [6337,[5013.44,8123.71,0],[[6285,2]]], [6338,[6241.79,7216.97,0],[[6286,2],[6389,2]]], [6339,[6235.45,7091.41,0],[[6286,2],[6390,2],[6391,2]]], [6340,[6196.09,7150.41,0],[[6340,2],[6392,2]]], [6341,[6490.21,7036.16,-3.17891e-007],[[6287,2],[6288,2],[6343,2],[6393,2]]],
+[6342,[6444.77,6883.65,0],[[6288,2],[6342,2],[6394,2],[6395,2]]], [6343,[6465.37,7004.48,0],[[6288,2],[6341,2]]], [6344,[6026.5,7371.08,0],[[6290,2],[6396,2],[6397,2]]], [6345,[6532.89,7327.5,-7.94729e-008],[[6240,2]]], [6346,[7395.98,6121.59,-4.76837e-007],[[6292,2],[6295,2],[6348,2]]], [6347,[7576.42,6141.75,-2.38419e-007],[[6293,2]]],
+[6348,[7374.12,6112.78,0],[[6295,2],[6346,2]]], [6349,[7179.03,6084.75,-1.58946e-007],[[6296,2],[6398,2],[6399,2]]], [6350,[7039.62,6095.6,0],[[6296,2],[6400,2]]], [6351,[6836.37,6617,1.58946e-007],[[6297,2],[6401,2],[6402,2]]], [6352,[7002.21,6505.14,0],[[6297,2]]], [6353,[10606.3,3946.25,-4.76837e-007],[[6299,2],[6403,2]]],
+[6354,[10348.3,3829.99,0],[[6300,2],[6404,2]]], [6355,[10248.5,3995.92,0],[[6300,2],[6405,2]]], [6356,[10233.9,3993.17,0],[[6301,2]]], [6357,[10138.8,4010.5,-9.53674e-007],[[6301,2],[6406,2]]], [6358,[9888.98,4072.66,0],[[6302,2],[6407,2]]], [6359,[9665.95,4781.67,0],[[6303,2],[6408,2]]],
+[6360,[10262,5756.5,0],[[6304,2],[6409,2],[6410,2]]], [6361,[10436.9,6070.09,3.17891e-007],[[6305,2],[6363,2],[6411,2]]], [6362,[10310.1,5949.02,1.90735e-006],[[6305,2],[6412,2]]], [6363,[10504.1,6146.5,4.76837e-007],[[6306,2],[6361,2],[6413,2]]], [6364,[10885.2,6391.12,0],[[6309,2],[6414,2]]], [6365,[3745.68,8884.45,0],[[6311,2],[6415,2]]],
+[6366,[2670.12,9983.08,0],[[6312,2],[6416,2]]], [6367,[2093.35,9594.85,0],[[6313,2],[6417,2]]], [6368,[2008.91,9909.68,-7.62939e-007],[[6313,2],[6368,2],[6418,2],[6419,2],[6420,2]]], [6369,[1685.13,10877.5,-1.90735e-006],[[6314,2],[6421,2]]], [6370,[1223.78,11431.2,0],[[6315,2],[6422,2]]], [6371,[2184.15,14966.5,-1.90735e-006],[[6318,2],[6371,2]]],
+[6372,[2292.4,14957.3,0],[[6318,2]]], [6373,[2386.18,15396.4,1.90735e-006],[[6319,2]]], [6374,[1919.11,15483.8,-6.35783e-007],[[6320,2],[6423,2],[6424,2]]], [6375,[1907.7,15244.5,0],[[6322,2],[6425,2]]], [6376,[220.364,14694.9,0],[[6323,2],[6426,2]]], [6377,[440.405,15217.9,0],[[6324,2],[6427,2]]],
+[6378,[2547.74,15704.8,6.35783e-007],[[6325,2],[6428,2],[6429,2]]], [6379,[3101.62,15080.7,0],[[6327,2]]], [6380,[2940.98,15578.8,0],[[6380,2]]], [6381,[2234.49,16551.7,0],[[6331,2],[6430,2]]], [6382,[2091.39,16378.1,0],[[6331,2],[6431,2]]], [6383,[5664.63,7693.56,4.76837e-007],[[6332,2],[6383,2],[6432,2],[6433,2]]],
+[6384,[5761.73,7447.44,0],[[6333,2],[6434,2]]], [6385,[4761.35,7513.95,0],[[6334,2],[6435,2]]], [6386,[5257.8,7523.02,1.90735e-006],[[6335,2],[6436,2]]], [6387,[5073.64,7470.13,0],[[6335,2],[6437,2]]], [6388,[4766.52,7998.68,0],[[6336,2],[6438,2],[6439,2],[6440,2]]], [6389,[6212.43,7251.41,0],[[6338,2]]],
+[6390,[6243.85,7062.97,0],[[6339,2]]], [6391,[6126.09,7064,1.58946e-007],[[6339,2],[6441,2],[6442,2]]], [6392,[6217.18,7191.74,0],[[6340,2]]], [6393,[6598.74,7005.36,7.94729e-008],[[6341,2],[6443,2],[6444,2]]], [6394,[6322.89,6880.61,9.53674e-007],[[6342,2]]], [6395,[6542.81,6721.36,0],[[6342,2],[6445,2]]],
+[6396,[6072,7251.9,0],[[6344,2],[6446,2]]], [6397,[5934.07,7310.29,0],[[6344,2],[6447,2]]], [6398,[7181.19,6033.2,0],[[6349,2]]], [6399,[7304.23,6057.66,0],[[6349,2],[6448,2]]], [6400,[6947.96,6045.24,1.19209e-007],[[6350,2],[6449,2],[6450,2],[6451,2]]], [6401,[6624.21,6633.88,0],[[6351,2],[6452,2],[6445,2]]],
+[6402,[6897.71,6645.59,0],[[6351,2],[6453,2]]], [6403,[10648.8,3827,0],[[6353,2],[6454,2]]], [6404,[10391.4,3677.39,1.90735e-006],[[6354,2],[6455,2]]], [6405,[10218.7,3829.08,0],[[6355,2],[6456,2]]], [6406,[10021.5,3895.16,0],[[6357,2],[6457,2]]], [6407,[9776.4,3976.21,-9.53674e-007],[[6358,2],[6458,2]]],
+[6408,[9538.04,4799.97,3.17891e-007],[[6359,2],[6459,2],[6460,2]]], [6409,[10269.3,5873.47,0],[[6360,2],[6412,2]]], [6410,[10219.5,5799.71,-6.35783e-007],[[6360,2],[6461,2],[6462,2]]], [6411,[10305.8,6191.95,0],[[6361,2],[6463,2]]], [6412,[10265.4,5937.84,0],[[6362,2],[6409,2],[6462,2]]], [6413,[10544.3,6312.6,0],[[6363,2],[6464,2]]],
+[6414,[10863.4,6524.71,4.76837e-007],[[6364,2],[6465,2]]], [6415,[3618.86,8818.91,0],[[6365,2],[6466,2]]], [6416,[2645.22,9956.23,-1.90735e-006],[[6366,2]]], [6417,[2093.8,9577.2,0],[[6367,2],[6467,2],[6468,2]]], [6418,[1979.61,9884.2,-3.8147e-006],[[6368,2]]], [6419,[1890.07,10067.7,0],[[6368,2],[6469,2]]],
+[6420,[1944.31,10039.8,0],[[6368,2],[6420,2]]], [6421,[1631.28,10790.6,0],[[6369,2]]], [6422,[1074.64,11413.6,0],[[6370,2],[6470,2]]], [6423,[1861.56,15568.9,0],[[6374,2],[6471,2],[6472,2]]], [6424,[1979.13,15505.9,0],[[6374,2],[6424,2]]], [6425,[1853.11,15227.2,0],[[6375,2],[6473,2]]],
+[6426,[120.928,14610.6,0],[[6376,2],[6474,2]]], [6427,[424.474,15319.8,1.27157e-006],[[6377,2],[6427,2],[6475,2]]], [6428,[2570.01,15709.1,0],[[6378,2],[6476,2]]], [6429,[2443.13,15716.6,0],[[6378,2],[6477,2]]], [6430,[2179.03,16650,-1.90735e-006],[[6381,2],[6478,2]]], [6431,[1945.99,16314.9,0],[[6382,2],[6479,2]]],
+[6432,[5605.04,7613.88,0],[[6383,2],[6432,2],[6480,2]]], [6433,[5659.55,7770.9,0],[[6383,2]]], [6434,[5713.87,7421.27,0],[[6384,2],[6481,2],[6434,2]]], [6435,[4597.1,7541.58,1.90735e-006],[[6385,2],[6482,2]]], [6436,[5368.38,7487.09,0],[[6386,2],[6483,2]]], [6437,[5028.64,7373.92,0],[[6387,2],[6484,2]]],
+[6438,[4818.54,8110.57,0],[[6388,2],[6485,2]]], [6439,[4685.34,8136.68,0],[[6388,2],[6486,2]]], [6440,[4719.36,7789.17,3.8147e-006],[[6388,2]]], [6441,[6053.73,6996.56,4.76837e-007],[[6391,2],[6441,2]]], [6442,[6125.94,7020.67,-4.76837e-007],[[6391,2]]], [6443,[6663.86,6921.28,0],[[6393,2],[6487,2],[6488,2]]],
+[6444,[6775.84,7075.82,2.38419e-007],[[6393,2],[6489,2]]], [6445,[6540.05,6615.98,1.58946e-007],[[6395,2],[6401,2],[6452,2],[6490,2],[6491,2],[6492,2]]], [6446,[5985.89,7201.59,9.53674e-007],[[6396,2],[6493,2]]], [6447,[5921.24,7303.99,9.53674e-007],[[6397,2]]], [6448,[7315.46,6033.09,0],[[6399,2]]], [6449,[6864.11,6145.99,-2.38419e-007],[[6400,2],[6449,2],[6494,2],[6495,2]]],
+[6450,[6886.27,5856.73,0],[[6400,2],[6496,2]]], [6451,[7064.87,5869.33,4.76837e-008],[[6400,2],[6451,2],[6497,2],[6498,2],[6499,2]]], [6452,[6571.79,6622.71,-6.35783e-007],[[6401,2],[6445,2]]], [6453,[6941.78,6657.36,3.57628e-007],[[6402,2],[6500,2],[6501,2],[6453,2]]], [6454,[10740.6,3716.42,0],[[6403,2],[6502,2]]], [6455,[10399.8,3595.05,0],[[6404,2],[6503,2]]],
+[6456,[10162.5,3716.31,0],[[6405,2],[6504,2]]], [6457,[9879.5,3813.64,0],[[6406,2],[6505,2]]], [6458,[9742.16,3911.16,-9.53674e-007],[[6407,2]]], [6459,[9340.89,4839.28,0],[[6408,2],[6506,2],[6507,2],[6508,2]]], [6460,[9459.16,4693.53,0],[[6408,2],[6509,2]]], [6461,[10131,5707.31,3.17891e-007],[[6410,2],[6510,2],[6511,2]]],
+[6462,[10131.5,5915.93,9.53674e-007],[[6410,2],[6412,2],[6512,2],[6513,2]]], [6463,[10287,6206.24,3.17891e-007],[[6411,2],[6514,2],[6515,2]]], [6464,[10555.5,6364.25,-1.58946e-007],[[6413,2],[6516,2],[6517,2]]], [6465,[10938,6585.14,0],[[6414,2],[6518,2]]], [6466,[3581.23,8822.82,0],[[6415,2],[6466,2],[6519,2]]], [6467,[2127.19,9406.54,0],[[6417,2],[6520,2]]],
+[6468,[2027.33,9502.06,0],[[6417,2],[6521,2]]], [6469,[1801.01,10186.1,3.8147e-006],[[6419,2],[6522,2]]], [6470,[972.562,11482.4,-6.35783e-007],[[6422,2],[6523,2],[6470,2]]], [6471,[1757.5,15689.9,1.90735e-006],[[6423,2],[6524,2]]], [6472,[1901.86,15642.5,0],[[6423,2],[6525,2]]], [6473,[1808.8,15203.5,0],[[6425,2],[6526,2]]],
+[6474,[64.8715,14566.2,0],[[6426,2],[6474,2]]], [6475,[336.191,15482.8,3.8147e-006],[[6427,2],[6527,2]]], [6476,[2566.59,15714.2,0],[[6428,2]]], [6477,[2301.4,15773.4,0],[[6429,2],[6528,2]]], [6478,[2207.44,16715.6,0],[[6430,2],[6529,2],[6530,2]]], [6479,[1814.55,16292.8,0],[[6431,2],[6531,2]]],
+[6480,[5614.06,7522.67,0],[[6432,2]]], [6481,[5685.42,7363.18,3.17891e-007],[[6434,2],[6532,2],[6481,2]]], [6482,[4438.15,7519.73,1.90735e-006],[[6435,2],[6533,2]]], [6483,[5461.84,7398.8,0],[[6436,2],[6532,2]]], [6484,[4982.39,7327.21,0],[[6437,2],[6534,2],[6535,2]]], [6485,[4905.51,8180.18,0],[[6438,2],[6536,2]]],
+[6486,[4736.26,8227.39,-1.90735e-006],[[6439,2],[6537,2]]], [6487,[6697.61,6796.9,2.38419e-007],[[6443,2],[6538,2]]], [6488,[6829.69,6983.64,0],[[6443,2],[6539,2]]], [6489,[6813.26,7095.87,1.58946e-007],[[6444,2],[6540,2],[6541,2]]], [6490,[6407.19,6579,1.90735e-007],[[6445,2],[6542,2],[6543,2],[6544,2],[6491,2]]], [6491,[6563.3,6514.85,6.35783e-007],[[6445,2],[6490,2],[6545,2]]],
+[6492,[6588.97,6572.87,0],[[6445,2]]], [6493,[5880.64,7152.17,-1.58946e-007],[[6446,2],[6546,2],[6547,2]]], [6494,[6834.81,6132.29,0],[[6449,2]]], [6495,[6751.58,6277.44,6.35783e-007],[[6449,2],[6545,2],[6548,2]]], [6496,[6870.76,5820.27,0],[[6450,2],[6549,2],[6550,2]]], [6497,[7023.61,5855.63,0],[[6451,2]]],
+[6498,[7113.18,5791.04,1.66893e-007],[[6451,2],[6551,2],[6552,2],[6553,2],[6554,2]]], [6499,[7120.8,5887.12,0],[[6451,2]]], [6500,[7072.46,6714.98,2.38419e-007],[[6453,2]]], [6501,[6930.15,6654.22,0],[[6453,2]]], [6502,[10746.2,3660.14,0],[[6454,2]]], [6503,[10450.4,3500.15,0],[[6455,2],[6555,2]]],
+[6504,[10105.9,3620.41,0],[[6456,2],[6556,2],[6557,2]]], [6505,[9799.55,3793.41,0],[[6457,2],[6558,2]]], [6506,[9428.92,4974.24,9.53674e-007],[[6459,2],[6559,2]]], [6507,[9227.76,4933.25,0],[[6459,2],[6560,2]]], [6508,[9175.15,4741.3,-9.53674e-007],[[6459,2],[6561,2]]], [6509,[9439.01,4559.09,0],[[6460,2],[6562,2],[6563,2],[6564,2]]],
+[6510,[10019.2,5646.78,0],[[6461,2],[6565,2],[6510,2],[6566,2]]], [6511,[10145.2,5562.28,0],[[6461,2]]], [6512,[10054.4,6049.28,0],[[6462,2],[6567,2],[6568,2],[6515,2]]], [6513,[9960.03,5881.02,0],[[6462,2],[6569,2]]], [6514,[10256.9,6337.8,0],[[6463,2],[6570,2]]], [6515,[10124.5,6203.3,0],[[6463,2],[6512,2],[6568,2]]],
+[6516,[10655.4,6280.07,-4.76837e-007],[[6464,2]]], [6517,[10521.5,6542.47,0],[[6464,2],[6571,2]]], [6518,[10995.3,6620.77,2.38419e-007],[[6465,2],[6572,2]]], [6519,[3531.53,8896.7,0],[[6466,2],[6573,2]]], [6520,[2125.69,9385.9,6.35783e-007],[[6467,2],[6574,2],[6575,2]]], [6521,[2023.7,9495.03,0],[[6468,2]]],
+[6522,[1675.24,10238.6,0],[[6469,2],[6576,2]]], [6523,[949.181,11614,6.35783e-007],[[6470,2],[6577,2],[6578,2]]], [6524,[1674.48,15826.6,0],[[6471,2],[6579,2]]], [6525,[1929.16,15700.5,0],[[6472,2],[6580,2]]], [6526,[1774.98,15196.7,-1.27157e-006],[[6473,2],[6581,2],[6582,2]]], [6527,[244.31,15608.2,0],[[6475,2],[6583,2]]],
+[6528,[2254.58,15812.5,0],[[6477,2],[6584,2],[6585,2]]], [6529,[2384.61,16757.9,0],[[6478,2],[6586,2]]], [6530,[2189.81,16813.8,0],[[6478,2]]], [6531,[1751.75,16258.2,-6.35783e-007],[[6479,2],[6531,2],[6587,2]]], [6532,[5552.78,7322.55,0],[[6481,2],[6483,2],[6588,2]]], [6533,[4317.9,7498.94,0],[[6482,2],[6589,2],[6590,2]]],
+[6534,[5063.17,7262.92,0],[[6484,2],[6591,2]]], [6535,[4874.05,7235.06,9.53674e-007],[[6484,2],[6592,2],[6535,2],[6593,2],[6594,2]]], [6536,[4915.78,8190,0],[[6485,2]]], [6537,[4761.8,8320.24,0],[[6486,2],[6595,2]]], [6538,[6715.31,6762.59,0],[[6487,2]]], [6539,[6972.37,7043.46,2.38419e-007],[[6488,2]]],
+[6540,[6778.28,7178.09,0],[[6489,2]]], [6541,[6975.42,7161.77,0],[[6489,2],[6596,2],[6597,2],[6598,2]]], [6542,[6352.96,6597.46,0],[[6490,2],[6599,2],[6542,2],[6600,2]]], [6543,[6386.99,6628.32,0],[[6490,2]]], [6544,[6297.31,6489.59,0],[[6490,2],[6601,2]]], [6545,[6675.78,6376.32,-1.90735e-006],[[6491,2],[6495,2]]],
+[6546,[5847.25,7062.65,0],[[6493,2]]], [6547,[5809.26,7136.63,-2.38419e-007],[[6493,2],[6547,2],[6602,2]]], [6548,[6868.18,6363.89,-1.90735e-006],[[6495,2],[6603,2]]], [6549,[6764.64,5812.41,0],[[6496,2],[6604,2]]], [6550,[6941.39,5732.49,0],[[6496,2],[6605,2],[6554,2]]], [6551,[7184.61,5669.78,0],[[6498,2],[6606,2]]],
+[6552,[7182.28,5850.21,0],[[6498,2]]], [6553,[7143.25,5666.2,0],[[6498,2]]], [6554,[7055.07,5735.73,0],[[6498,2],[6550,2],[6607,2],[6605,2],[6608,2]]], [6555,[10465.5,3449.57,-1.58946e-007],[[6503,2],[6609,2],[6610,2]]], [6556,[10191.3,3498.24,9.53674e-007],[[6504,2],[6611,2]]], [6557,[10012.6,3529.01,0],[[6504,2],[6612,2]]],
+[6558,[9694.03,3807.5,3.17891e-007],[[6505,2],[6613,2],[6614,2]]], [6559,[9480.71,5114.54,0],[[6506,2],[6615,2]]], [6560,[9192.93,4985.14,0],[[6507,2],[6616,2],[6617,2]]], [6561,[9167.34,4717.54,-3.57628e-007],[[6508,2],[6618,2],[6619,2],[6620,2]]], [6562,[9488.44,4454.8,4.76837e-007],[[6509,2],[6621,2]]], [6563,[9335.09,4485.06,0],[[6509,2],[6564,2]]],
+[6564,[9343.86,4478.86,0],[[6563,2],[6509,2]]], [6565,[10040.1,5649.39,0],[[6510,2]]], [6566,[9839.21,5651.6,0],[[6510,2],[6622,2]]], [6567,[9935.07,6137.84,0],[[6512,2],[6623,2]]], [6568,[10096,6194.44,2.38419e-007],[[6512,2],[6515,2],[6623,2],[6570,2]]], [6569,[9811.16,5880.93,0],[[6513,2],[6624,2]]],
+[6570,[10182.4,6400.02,0],[[6514,2],[6568,2],[6625,2]]], [6571,[10456.6,6728.14,3.17891e-007],[[6517,2],[6626,2],[6627,2]]], [6572,[10989.1,6671.98,0],[[6518,2],[6628,2],[6629,2]]], [6573,[3509.87,8952.59,0],[[6519,2],[6630,2]]], [6574,[2244.74,9463.15,0],[[6520,2],[6631,2]]], [6575,[2076.22,9239.7,0],[[6520,2],[6632,2]]],
+[6576,[1611.17,10257.6,0],[[6522,2],[6633,2],[6634,2]]], [6577,[972.595,11622.7,0],[[6523,2]]], [6578,[814.658,11705.1,0],[[6523,2],[6635,2],[6636,2]]], [6579,[1597.85,15931.5,0],[[6524,2],[6637,2]]], [6580,[1940.39,15764.1,0],[[6525,2],[6638,2]]], [6581,[1755.72,15289.2,0],[[6526,2],[6639,2]]],
+[6582,[1731.98,15181,0],[[6526,2]]], [6583,[128.375,15683.2,0],[[6527,2],[6640,2]]], [6584,[2328.51,15875.7,-1.90735e-006],[[6528,2]]], [6585,[2148.33,15884.5,6.35783e-007],[[6528,2],[6641,2],[6642,2]]], [6586,[2523.28,16793.9,0],[[6529,2],[6643,2]]], [6587,[1622.69,16199.3,0],[[6531,2],[6644,2]]],
+[6588,[5624.63,7126.48,0],[[6532,2],[6645,2]]], [6589,[4357.36,7648.11,0],[[6533,2],[6646,2]]], [6590,[4147.67,7487.67,0],[[6533,2],[6647,2]]], [6591,[5038.34,7180.53,0],[[6534,2],[6648,2]]], [6592,[4882.46,7235.54,6.35783e-007],[[6535,2]]], [6593,[4929.57,7139.96,-1.90735e-006],[[6535,2],[6648,2]]],
+[6594,[4713.67,7180.63,0],[[6535,2],[6649,2]]], [6595,[4778.88,8420.8,1.90735e-006],[[6537,2],[6595,2]]], [6596,[7042.23,7145.47,0],[[6541,2],[6650,2],[6596,2]]], [6597,[7113.91,7214.88,0],[[6541,2]]], [6598,[6931.19,7259.75,0],[[6541,2]]], [6599,[6372.33,6588.88,0],[[6542,2]]],
+[6600,[6255.21,6699.52,0],[[6542,2],[6651,2]]], [6601,[6291.88,6463.54,0],[[6544,2],[6652,2],[6653,2]]], [6602,[5813.31,7030.17,0],[[6547,2],[6654,2]]], [6603,[6929.44,6316.7,0],[[6548,2]]], [6604,[6708.08,5794.57,0],[[6549,2],[6655,2],[6656,2],[6657,2]]], [6605,[7005.37,5706.54,9.53674e-007],[[6550,2],[6554,2],[6658,2]]],
+[6606,[7212.61,5509.79,-5.96046e-008],[[6551,2],[6659,2],[6660,2],[6661,2],[6662,2]]], [6607,[7034.85,5667.65,-9.53674e-007],[[6554,2],[6663,2]]], [6608,[7013.1,5705.23,0],[[6554,2]]], [6609,[10421.6,3362.12,0],[[6555,2],[6664,2],[6665,2]]], [6610,[10552.8,3416.28,1.19209e-007],[[6555,2],[6666,2],[6667,2]]], [6611,[10280.1,3422.39,0],[[6556,2],[6668,2]]],
+[6612,[9985.52,3475.56,0],[[6557,2],[6669,2],[6670,2]]], [6613,[9640.72,3700.25,0],[[6558,2],[6671,2],[6672,2]]], [6614,[9585.44,3884.89,-4.76837e-007],[[6558,2],[6673,2]]], [6615,[9491.29,5224.48,0],[[6559,2],[6674,2]]], [6616,[9128.65,4997.32,6.35783e-007],[[6560,2],[6675,2],[6676,2]]], [6617,[9211.3,5105.4,0],[[6560,2]]],
+[6618,[9052.51,4730.79,4.76837e-007],[[6561,2],[6677,2]]], [6619,[9135.68,4659.59,1.58946e-007],[[6561,2],[6678,2],[6619,2],[6679,2]]], [6620,[9218.18,4661.64,1.58946e-007],[[6561,2],[6680,2],[6681,2]]], [6621,[9494.18,4433.33,1.58946e-007],[[6562,2],[6682,2],[6683,2]]], [6622,[9726.25,5618.26,0],[[6566,2],[6684,2]]], [6623,[9875.41,6202.43,1.58946e-007],[[6567,2],[6568,2],[6685,2]]],
+[6624,[9688.54,5896.09,0],[[6569,2],[6686,2]]], [6625,[10158.1,6551.23,0],[[6570,2],[6687,2]]], [6626,[10361.3,6828.65,9.53674e-007],[[6571,2],[6688,2]]], [6627,[10429.5,6896.67,0],[[6571,2],[6689,2]]], [6628,[10988,6838.95,0],[[6572,2],[6690,2]]], [6629,[11122.7,6657.85,1.19209e-007],[[6572,2],[6691,2]]],
+[6630,[3435.02,8981.01,-9.53674e-007],[[6573,2],[6692,2]]], [6631,[2335.57,9501.27,-1.90735e-006],[[6574,2],[6693,2]]], [6632,[2059.9,9206.73,6.35783e-007],[[6575,2],[6694,2],[6695,2]]], [6633,[1551.66,10387.2,0],[[6576,2],[6696,2]]], [6634,[1515.43,10185.5,0],[[6576,2],[6697,2]]], [6635,[840.089,11792.2,0],[[6578,2]]],
+[6636,[656.047,11596.4,0],[[6578,2],[6698,2]]], [6637,[1508.58,16041.4,0],[[6579,2],[6699,2]]], [6638,[1902.02,15814.1,0],[[6580,2],[6700,2]]], [6639,[1702.58,15340.3,0],[[6581,2],[6701,2]]], [6640,[54.1136,15777.5,0],[[6583,2],[6702,2]]], [6641,[2000.05,15953.6,0],[[6585,2],[6703,2]]],
+[6642,[2167.04,15974.5,0],[[6585,2],[6642,2]]], [6643,[2567.85,16822.8,0],[[6586,2]]], [6644,[1499.72,16220.1,0],[[6587,2],[6704,2],[6699,2]]], [6645,[5631.61,7100.28,1.58946e-007],[[6588,2],[6705,2],[6706,2]]], [6646,[4452.95,7737.17,0],[[6589,2],[6707,2]]], [6647,[4021.98,7418.63,-3.8147e-007],[[6590,2],[6647,2],[6708,2],[6709,2],[6710,2]]],
+[6648,[5031.89,7086.99,-6.35783e-007],[[6591,2],[6593,2],[6711,2]]], [6649,[4670.13,7101.03,1.90735e-006],[[6594,2],[6712,2]]], [6650,[7065.36,7134.47,0],[[6596,2]]], [6651,[6219.23,6766.78,0],[[6600,2]]], [6652,[6374.91,6327.45,-9.53674e-007],[[6601,2],[6713,2]]], [6653,[6236.25,6449.9,6.35783e-007],[[6601,2],[6714,2],[6715,2]]],
+[6654,[5787.92,6937.42,0],[[6602,2],[6716,2]]], [6655,[6650.78,5830.44,0],[[6604,2],[6717,2]]], [6656,[6751.27,5699.42,0],[[6604,2],[6718,2]]], [6657,[6617.77,5749.56,0],[[6604,2],[6719,2]]], [6658,[7021.66,5684.05,0],[[6605,2]]], [6659,[7242.72,5397.87,0],[[6606,2],[6720,2],[6721,2]]],
+[6660,[7161.53,5448.95,0],[[6606,2],[6722,2]]], [6661,[7152.83,5519.56,-4.76837e-007],[[6606,2],[6662,2]]], [6662,[7161.57,5524.54,0],[[6661,2],[6606,2]]], [6663,[6932.34,5592.45,0],[[6607,2],[6723,2]]], [6664,[10399.4,3318.56,0],[[6609,2]]], [6665,[10439.3,3306.4,0],[[6609,2]]],
+[6666,[10578.7,3387.07,0],[[6610,2]]], [6667,[10631.2,3395.48,0],[[6610,2],[6724,2],[6725,2]]], [6668,[10187.5,3343.23,-4.76837e-007],[[6668,2]]], [6669,[10047.6,3363.49,0],[[6612,2],[6726,2]]], [6670,[9855.97,3397.71,0],[[6612,2],[6727,2]]], [6671,[9599.08,3653.88,0],[[6613,2]]],
+[6672,[9647.31,3607.35,0],[[6613,2],[6728,2]]], [6673,[9509.22,3944.98,2.38419e-007],[[6614,2],[6673,2]]], [6674,[9532.16,5362.79,0],[[6615,2],[6729,2]]], [6675,[9119.59,5031.81,0],[[6616,2]]], [6676,[9010.5,5102.98,0],[[6616,2],[6730,2]]], [6677,[8993.35,4698.18,-7.94729e-008],[[6618,2],[6731,2],[6677,2],[6732,2]]],
+[6678,[9148.98,4678.4,2.38419e-007],[[6619,2]]], [6679,[9038.25,4511.79,2.38419e-007],[[6619,2],[6733,2],[6732,2]]], [6680,[9198.78,4623.35,0],[[6620,2]]], [6681,[9254.88,4561.7,0],[[6620,2]]], [6682,[9492.12,4289.32,0],[[6621,2]]], [6683,[9363.73,4358.52,0],[[6621,2],[6734,2]]],
+[6684,[9631.47,5560.89,0],[[6622,2],[6729,2]]], [6685,[9798.34,6239.63,0],[[6623,2],[6735,2],[6736,2]]], [6686,[9561.32,5875.64,0],[[6624,2],[6737,2]]], [6687,[10182.3,6585.91,0],[[6625,2],[6738,2],[6739,2]]], [6688,[10342.3,6847.27,3.17891e-007],[[6626,2],[6740,2],[6741,2]]], [6689,[10382.7,6977.35,-1.58946e-007],[[6627,2],[6742,2],[6743,2],[6740,2]]],
+[6690,[11018.4,6859.39,0],[[6628,2],[6744,2],[6690,2]]], [6691,[11146.9,6656.56,0],[[6629,2]]], [6692,[3374.54,8931.95,3.17891e-007],[[6630,2],[6692,2],[6745,2]]], [6693,[2425.65,9578.17,-4.76837e-007],[[6631,2],[6746,2],[6693,2],[6747,2],[6748,2]]], [6694,[1936.26,9116.07,0],[[6632,2],[6749,2]]], [6695,[2103.5,9050.95,0],[[6632,2],[6750,2]]],
+[6696,[1547.19,10503.3,0],[[6633,2],[6751,2]]], [6697,[1521.46,10082.5,0],[[6634,2],[6752,2]]], [6698,[517.405,11495.9,0],[[6636,2],[6753,2]]], [6699,[1426.42,16099.7,6.35783e-007],[[6637,2],[6644,2],[6754,2],[6755,2]]], [6700,[1876.2,15854.5,0],[[6638,2]]], [6701,[1674.72,15390.2,0],[[6639,2]]],
+[6702,[35.1162,15795,1.90735e-006],[[6640,2]]], [6703,[1974.71,16021.3,0],[[6641,2]]], [6704,[1403.78,16186.3,-1.90735e-006],[[6644,2],[6756,2]]], [6705,[5600.59,7034.15,0],[[6645,2],[6705,2],[6757,2]]], [6706,[5750.93,7181.8,0],[[6645,2]]], [6707,[4559.65,7827.89,0],[[6646,2],[6707,2]]],
+[6708,[3959.66,7563.23,0],[[6647,2],[6758,2]]], [6709,[3930.8,7342.53,0],[[6647,2],[6759,2],[6760,2]]], [6710,[4103.14,7346.79,9.53674e-007],[[6647,2],[6761,2]]], [6711,[5005.47,6970.52,0],[[6648,2],[6762,2]]], [6712,[4678.23,7054.19,0],[[6649,2],[6763,2],[6764,2],[6765,2]]], [6713,[6432.74,6290.05,0],[[6652,2]]],
+[6714,[6063.04,6478.65,0],[[6653,2],[6766,2]]], [6715,[6154.1,6409.95,0],[[6653,2],[6767,2],[6715,2],[6768,2],[6769,2]]], [6716,[5711.19,6897.76,0],[[6654,2],[6770,2],[6771,2]]], [6717,[6582.68,5812.44,0],[[6655,2],[6772,2]]], [6718,[6746.71,5597.74,0],[[6656,2],[6773,2],[6723,2]]], [6719,[6602.12,5748.75,0],[[6657,2]]],
+[6720,[7186.42,5230.06,0],[[6659,2],[6774,2]]], [6721,[7345.69,5309.96,0],[[6659,2]]], [6722,[7140.19,5382.09,4.76837e-007],[[6660,2],[6775,2]]], [6723,[6836.1,5557.62,-6.35783e-007],[[6663,2],[6718,2],[6773,2],[6776,2],[6723,2]]], [6724,[10678.5,3410.46,0],[[6667,2]]], [6725,[10694,3375.28,0],[[6667,2]]],
+[6726,[10026.2,3265.34,0],[[6669,2],[6777,2]]], [6727,[9809.94,3405.45,3.97364e-007],[[6670,2],[6778,2],[6779,2]]], [6728,[9649.77,3567.73,-4.76837e-007],[[6672,2]]], [6729,[9583.6,5461.29,0],[[6674,2],[6684,2]]], [6730,[8954.24,5206.33,0],[[6676,2],[6780,2]]], [6731,[9001.39,4717.97,-1.19209e-007],[[6677,2]]],
+[6732,[8980.76,4539.14,0],[[6677,2],[6679,2],[6733,2]]], [6733,[8975.64,4449.85,-1.19209e-007],[[6679,2],[6732,2],[6733,2],[6781,2]]], [6734,[9256.14,4271.32,0],[[6683,2],[6782,2]]], [6735,[9640.24,6230.8,0],[[6685,2],[6783,2]]], [6736,[9795.28,6336.85,-4.76837e-007],[[6685,2],[6784,2]]], [6737,[9395.18,5793.45,0],[[6686,2],[6785,2]]],
+[6738,[10203.3,6589.49,0],[[6687,2]]], [6739,[10231.4,6627.13,6.35783e-007],[[6687,2],[6739,2],[6741,2]]], [6740,[10315.7,6968.85,3.57628e-007],[[6688,2],[6689,2],[6786,2],[6787,2],[6788,2]]], [6741,[10309.4,6729.94,0],[[6688,2],[6739,2]]], [6742,[10431.9,7006.16,0],[[6689,2]]], [6743,[10357.5,7011.36,0],[[6689,2],[6789,2]]],
+[6744,[11099.5,6822.06,0],[[6690,2],[6790,2]]], [6745,[3327.98,8951.73,-3.17891e-007],[[6692,2],[6791,2],[6792,2]]], [6746,[2391.67,9546.96,-9.53674e-007],[[6693,2]]], [6747,[2598.79,9642.16,0],[[6693,2],[6793,2]]], [6748,[2599.2,9681.36,9.53674e-007],[[6693,2]]], [6749,[1833.96,9065.8,-3.17891e-007],[[6694,2],[6794,2],[6795,2]]],
+[6750,[2063.42,8936.38,-3.17891e-007],[[6695,2],[6796,2],[6797,2]]], [6751,[1538.27,10525.5,1.27157e-006],[[6696,2],[6798,2],[6799,2]]], [6752,[1528.26,10055.5,-6.35783e-007],[[6697,2],[6800,2],[6801,2]]], [6753,[377.595,11440,0],[[6698,2],[6802,2]]], [6754,[1400.95,16161.6,-1.90735e-006],[[6699,2]]], [6755,[1382.47,16085.8,4.76837e-007],[[6699,2],[6803,2],[6804,2],[6805,2]]],
+[6756,[1320.04,16344.2,1.90735e-006],[[6704,2],[6806,2]]], [6757,[5443.45,7072.96,0],[[6705,2],[6807,2]]], [6758,[3954.62,7662.03,6.35783e-007],[[6708,2],[6808,2],[6809,2]]], [6759,[3785.35,7383.72,0],[[6709,2],[6810,2]]], [6760,[3921.21,7299.63,9.53674e-007],[[6709,2]]], [6761,[4121.89,7312.72,0],[[6710,2],[6811,2],[6812,2]]],
+[6762,[4918.59,6974.34,0],[[6711,2]]], [6763,[4513.02,7065.22,0],[[6712,2],[6813,2]]], [6764,[4610.04,7013.7,-3.8147e-006],[[6712,2],[6764,2]]], [6765,[4754.19,6907.14,0],[[6712,2],[6814,2]]], [6766,[5929.48,6552.3,0],[[6714,2],[6815,2]]], [6767,[6168.04,6406.97,-6.35783e-007],[[6715,2]]],
+[6768,[6045.46,6366.62,0],[[6715,2],[6816,2],[6769,2]]], [6769,[6145.78,6331.26,0],[[6715,2],[6768,2],[6817,2]]], [6770,[5716.49,6853.36,-2.38419e-007],[[6716,2]]], [6771,[5658.09,6895.65,3.97364e-008],[[6716,2],[6818,2],[6819,2]]], [6772,[6566.97,5835.61,0],[[6717,2]]], [6773,[6747.9,5490.36,0],[[6718,2],[6723,2],[6820,2]]],
+[6774,[7220.77,5137.4,3.17891e-007],[[6720,2],[6821,2],[6822,2]]], [6775,[7133.78,5332.69,0],[[6722,2]]], [6776,[6857.27,5571.57,0],[[6723,2],[6776,2]]], [6777,[9997.18,3259.03,0],[[6726,2]]], [6778,[9791.31,3375.86,0],[[6727,2]]], [6779,[9736.71,3410.32,0],[[6727,2]]],
+[6780,[8932.57,5221.1,-3.17891e-007],[[6730,2],[6823,2],[6824,2]]], [6781,[8928.18,4396.27,0],[[6733,2]]], [6782,[9189.77,4232.33,0],[[6734,2],[6825,2],[6826,2],[6827,2]]], [6783,[9555.37,6192.33,0],[[6735,2],[6828,2]]], [6784,[9742.89,6371.45,-1.58946e-007],[[6736,2],[6784,2],[6829,2]]], [6785,[9343.51,5793.18,0],[[6737,2],[6830,2],[6831,2]]],
+[6786,[10191.4,6888.75,0],[[6740,2],[6832,2]]], [6787,[10248.3,7120.36,0],[[6740,2],[6787,2]]], [6788,[10356.1,7018.48,4.76837e-007],[[6740,2]]], [6789,[10364.4,7155.51,0],[[6743,2],[6833,2]]], [6790,[11167.3,6755.04,0],[[6744,2],[6834,2]]], [6791,[3371.85,9063.01,0],[[6745,2],[6835,2]]],
+[6792,[3230.77,8829.5,0],[[6745,2],[6836,2]]], [6793,[2750.13,9676.46,0],[[6747,2],[6837,2]]], [6794,[1844.2,9034.04,0],[[6749,2]]], [6795,[1714.54,9129.44,0],[[6749,2],[6838,2]]], [6796,[2200,9021.04,0],[[6750,2],[6839,2]]], [6797,[2042.73,8881.84,0],[[6750,2],[6840,2],[6841,2]]],
+[6798,[1443.83,10643.4,-3.8147e-006],[[6751,2],[6842,2]]], [6799,[1599.14,10620,0],[[6751,2],[6843,2]]], [6800,[1445.61,10125.6,0],[[6752,2],[6844,2]]], [6801,[1608.84,9907.51,0],[[6752,2],[6845,2]]], [6802,[255.009,11399.4,0],[[6753,2],[6846,2]]], [6803,[1352.43,16001.7,0],[[6755,2],[6847,2]]],
+[6804,[1227.25,16045.5,0],[[6755,2],[6848,2]]], [6805,[1312.93,16033.1,0],[[6755,2],[6849,2]]], [6806,[1232.17,16440.2,-1.90735e-006],[[6756,2],[6850,2]]], [6807,[5394.71,7085.52,-6.35783e-007],[[6757,2],[6851,2],[6807,2]]], [6808,[4041.79,7771.29,0],[[6758,2],[6852,2]]], [6809,[3821.01,7746.87,-1.90735e-006],[[6758,2],[6853,2]]],
+[6810,[3632.66,7370.76,0],[[6759,2],[6854,2]]], [6811,[4220.23,7329.84,0],[[6761,2],[6855,2]]], [6812,[4119.1,7191.32,-6.35783e-007],[[6761,2],[6812,2],[6856,2]]], [6813,[4395.9,7079.83,0],[[6763,2],[6857,2],[6858,2]]], [6814,[4840.85,6825.22,1.90735e-006],[[6765,2],[6859,2]]], [6815,[5887.33,6598.1,0],[[6766,2]]],
+[6816,[6030.31,6322.04,0],[[6768,2],[6860,2],[6861,2]]], [6817,[6168.97,6272.58,0],[[6769,2]]], [6818,[5616.46,6988.35,0],[[6771,2]]], [6819,[5529.05,6777.87,0],[[6771,2],[6862,2]]], [6820,[6758.63,5390.63,0],[[6773,2],[6863,2],[6864,2],[6865,2]]], [6821,[7223.42,5090.78,0],[[6774,2],[6866,2],[6867,2]]],
+[6822,[7350.96,5131.21,-4.76837e-007],[[6774,2],[6868,2],[6869,2],[6870,2]]], [6823,[8910.93,5082.15,0],[[6780,2],[6871,2]]], [6824,[8847.29,5381.84,-7.94729e-008],[[6780,2],[6872,2],[6873,2]]], [6825,[9113.13,4274.5,-5.96046e-008],[[6782,2],[6874,2],[6875,2],[6876,2]]], [6826,[9266.77,4080.36,-7.94729e-008],[[6782,2],[6877,2],[6826,2],[6878,2]]], [6827,[9146.62,4188.6,0],[[6782,2]]],
+[6828,[9466.19,6180.08,2.38419e-007],[[6783,2],[6879,2]]], [6829,[9677.14,6452.4,0],[[6784,2],[6880,2]]], [6830,[9133.11,5872.87,0],[[6785,2],[6881,2]]], [6831,[9248.69,5699.8,0],[[6785,2],[6882,2]]], [6832,[10076.3,6951.72,0],[[6786,2],[6883,2],[6884,2]]], [6833,[10291.2,7243.92,0],[[6789,2],[6833,2]]],
+[6834,[11284.3,6688.67,4.76837e-007],[[6790,2],[6885,2]]], [6835,[3345.95,9179.37,6.35783e-007],[[6791,2],[6886,2],[6887,2]]], [6836,[3155.23,8679.5,0],[[6792,2],[6888,2],[6889,2]]], [6837,[2886.67,9695.51,0],[[6793,2],[6837,2]]], [6838,[1691.87,9111.26,-1.90735e-007],[[6795,2],[6890,2],[6891,2],[6838,2],[6892,2],[6893,2]]], [6839,[2321.53,8995.24,0],[[6796,2],[6894,2]]],
+[6840,[1975.58,8847.17,0],[[6797,2],[6840,2],[6895,2],[6896,2]]], [6841,[2138.07,8857.05,0],[[6797,2],[6897,2]]], [6842,[1381.04,10753.4,0],[[6798,2],[6898,2]]], [6843,[1710.83,10659.5,0],[[6799,2],[6899,2]]], [6844,[1319.4,10196,-3.8147e-006],[[6800,2],[6900,2]]], [6845,[1622.37,9801.62,6.35783e-007],[[6801,2],[6901,2],[6902,2]]],
+[6846,[122.27,11400.8,0],[[6802,2],[6903,2]]], [6847,[1328.55,15909.7,1.90735e-006],[[6803,2],[6904,2]]], [6848,[1168.94,16087.6,0],[[6804,2],[6848,2],[6905,2]]], [6849,[1266.03,15949.4,-1.90735e-006],[[6805,2],[6906,2]]], [6850,[1232.06,16472.5,-6.35783e-007],[[6806,2],[6907,2],[6908,2]]], [6851,[5376.04,6988.63,0],[[6807,2],[6909,2]]],
+[6852,[4137.59,7838.69,1.27157e-006],[[6808,2],[6910,2],[6911,2]]], [6853,[3746.59,7772.34,4.76837e-007],[[6809,2],[6912,2],[6913,2],[6914,2]]], [6854,[3523.86,7367.64,-1.90735e-007],[[6810,2],[6915,2],[6916,2],[6917,2],[6918,2]]], [6855,[4324.27,7297.54,3.17891e-007],[[6811,2],[6919,2],[6858,2]]], [6856,[4116.83,7175.15,0],[[6812,2]]], [6857,[4348.8,6937.25,0],[[6813,2],[6920,2]]],
+[6858,[4373.51,7218.32,0],[[6813,2],[6855,2]]], [6859,[4846.86,6746.91,0],[[6814,2],[6921,2]]], [6860,[6144.49,6193.39,0],[[6816,2],[6922,2]]], [6861,[5962.73,6255.58,-6.35783e-007],[[6816,2],[6923,2],[6924,2]]], [6862,[5447.8,6720.85,0],[[6819,2]]], [6863,[6705.14,5454.16,-9.53674e-007],[[6820,2]]],
+[6864,[6705.49,5323.86,0],[[6820,2]]], [6865,[6839.82,5254.29,3.17891e-007],[[6820,2],[6925,2],[6865,2],[6926,2],[6927,2]]], [6866,[7115.7,5130.02,0],[[6821,2],[6928,2]]], [6867,[7274.17,5026.75,-1.58946e-007],[[6821,2],[6929,2],[6930,2]]], [6868,[7339.93,5210.1,-7.15256e-007],[[6822,2],[6931,2],[6868,2],[6932,2]]], [6869,[7442.21,5140.21,0],[[6822,2]]],
+[6870,[7435.5,5174.91,0],[[6822,2]]], [6871,[8883.15,4908.93,-9.53674e-007],[[6823,2],[6933,2]]], [6872,[8871.37,5542.11,0],[[6824,2],[6934,2]]], [6873,[8771,5336.15,0],[[6824,2],[6935,2]]], [6874,[9110.1,4321.75,7.94729e-008],[[6825,2],[6936,2],[6937,2]]], [6875,[9105.22,4226.33,0],[[6825,2]]],
+[6876,[9073.63,4251.25,0],[[6825,2]]], [6877,[9271.82,4079.85,0],[[6826,2]]], [6878,[9317.27,4063.05,0],[[6826,2]]], [6879,[9414.49,6174.55,0],[[6828,2],[6938,2],[6939,2]]], [6880,[9620.13,6457.82,0],[[6829,2],[6940,2],[6941,2]]], [6881,[9070.94,5874.9,1.58946e-007],[[6830,2],[6942,2],[6943,2]]],
+[6882,[9259.62,5573.39,0],[[6831,2]]], [6883,[10009.2,6875.66,0],[[6832,2]]], [6884,[9967.23,6977.98,0],[[6832,2],[6944,2]]], [6885,[11345.8,6668.56,1.58946e-007],[[6834,2],[6885,2],[6945,2]]], [6886,[3454.29,9239.96,-1.90735e-006],[[6835,2],[6946,2]]], [6887,[3259.78,9163.8,0],[[6835,2],[6947,2]]],
+[6888,[3010.99,8664.02,0],[[6836,2],[6948,2]]], [6889,[3192.11,8501.22,0],[[6836,2],[6949,2]]], [6890,[1679.5,9231.54,3.17891e-007],[[6838,2],[6950,2],[6951,2]]], [6891,[1667.24,9110,-9.53674e-007],[[6838,2],[6952,2]]], [6892,[1634.81,8969.83,0],[[6838,2],[6953,2],[6952,2],[6954,2]]], [6893,[1661.62,9105.79,0],[[6838,2]]],
+[6894,[2460.53,8984.42,0],[[6839,2],[6955,2]]], [6895,[1894.27,8831.44,0],[[6840,2],[6956,2],[6895,2],[6957,2]]], [6896,[1983.88,8713.35,0],[[6840,2],[6958,2]]], [6897,[2220.37,8814.68,0],[[6841,2],[6959,2]]], [6898,[1323.73,10850.9,0],[[6842,2],[6960,2]]], [6899,[1848.68,10665.6,0],[[6843,2],[6961,2]]],
+[6900,[1181.89,10223.3,0],[[6844,2],[6962,2]]], [6901,[1632.65,9616.26,0],[[6845,2],[6963,2]]], [6902,[1578.17,9674.2,0],[[6845,2],[6963,2]]], [6903,[44.6597,11345.9,0],[[6846,2]]], [6904,[1295.61,15813,-1.90735e-006],[[6847,2]]], [6905,[1042.16,16057.8,0],[[6848,2],[6964,2]]],
+[6906,[1259.86,15905.2,0],[[6849,2]]], [6907,[1331.6,16616.2,0],[[6850,2],[6965,2]]], [6908,[1115.29,16585.9,0],[[6850,2],[6966,2],[6967,2]]], [6909,[5355.64,6879.76,0],[[6851,2],[6968,2]]], [6910,[4210.75,7957.38,0],[[6852,2],[6969,2]]], [6911,[4278.52,7852.73,0],[[6852,2],[6970,2]]],
+[6912,[3656.2,7716.51,0],[[6853,2],[6971,2]]], [6913,[3827.2,7845.99,-1.90735e-006],[[6853,2],[6972,2]]], [6914,[3709.77,7876.49,0],[[6853,2]]], [6915,[3363.77,7302.08,-6.35783e-007],[[6854,2],[6973,2],[6916,2]]], [6916,[3469.59,7250.39,2.38419e-007],[[6854,2],[6915,2],[6974,2],[6975,2]]], [6917,[3526.59,7490.93,0],[[6854,2],[6976,2],[6971,2],[6977,2]]],
+[6918,[3486.02,7409.77,-6.35783e-007],[[6854,2],[6978,2],[6979,2]]], [6919,[4447.66,7368.95,0],[[6855,2],[6980,2]]], [6920,[4274.66,6827.41,-1.90735e-006],[[6857,2],[6981,2]]], [6921,[4895.72,6720.07,0],[[6859,2]]], [6922,[6224.14,6090.92,-9.53674e-007],[[6860,2],[6982,2]]], [6923,[6050.61,6133.36,0],[[6861,2],[6983,2]]],
+[6924,[5855.48,6254.32,0],[[6861,2],[6984,2]]], [6925,[6870.92,5341.69,0],[[6865,2]]], [6926,[6918.35,5113.54,0],[[6865,2],[6985,2],[6928,2],[6986,2],[6927,2]]], [6927,[6755.25,5172.39,0],[[6865,2],[6926,2],[6987,2]]], [6928,[7022.81,5069.98,0],[[6866,2],[6926,2],[6988,2]]], [6929,[7399.93,4942.12,-9.53674e-007],[[6867,2],[6989,2]]],
+[6930,[7334.1,4878.38,-1.58946e-007],[[6867,2],[6990,2],[6991,2]]], [6931,[7312.09,5185.44,0],[[6931,2],[6868,2]]], [6932,[7403.78,5221.28,0],[[6868,2]]], [6933,[8862.31,4809.46,-3.17891e-007],[[6871,2],[6992,2],[6993,2]]], [6934,[8900.83,5679.23,0],[[6872,2],[6994,2],[6943,2]]], [6935,[8761.36,5320.84,0],[[6873,2]]],
+[6936,[9049.85,4300.81,0],[[6874,2]]], [6937,[9097.37,4397.59,0],[[6874,2],[6995,2],[6937,2],[6996,2]]], [6938,[9420.99,6237.81,0],[[6879,2]]], [6939,[9356.42,6151.53,0],[[6879,2],[6997,2],[6942,2]]], [6940,[9536.81,6416.8,-1.58946e-007],[[6880,2],[6998,2],[6999,2]]], [6941,[9537.22,6557.32,0],[[6880,2],[7000,2]]],
+[6942,[9169.21,6026.01,0],[[6881,2],[6939,2]]], [6943,[8988.64,5827.4,-1.58946e-007],[[6881,2],[6934,2],[6994,2],[7001,2]]], [6944,[9857.61,7039.24,0],[[6884,2],[7002,2]]], [6945,[11350.4,6590.97,4.76837e-007],[[6885,2],[7003,2]]], [6946,[3638.1,9269.94,0],[[6886,2],[7004,2]]], [6947,[3104.25,9218.74,0],[[6887,2],[7005,2]]],
+[6948,[2953.77,8639.51,0],[[6888,2],[7006,2],[7007,2]]], [6949,[3290.03,8388.89,0],[[6889,2],[7008,2]]], [6950,[1778.94,9363.15,0],[[6890,2],[7009,2]]], [6951,[1614.24,9405.48,0],[[6890,2],[6963,2]]], [6952,[1526.82,9123.1,-2.38419e-007],[[6891,2],[6892,2],[7010,2]]], [6953,[1539.54,8943.03,0],[[6892,2]]],
+[6954,[1674.79,8861.18,1.58946e-007],[[6892,2],[7011,2],[7012,2]]], [6955,[2524.15,8974.29,0],[[6894,2],[7013,2],[7014,2],[7015,2]]], [6956,[1905.37,8846.98,0],[[6895,2]]], [6957,[1771.09,8800.46,0],[[6895,2],[7016,2],[7011,2]]], [6958,[1983.59,8615.37,0],[[6896,2],[7017,2]]], [6959,[2265.73,8841.85,-1.90735e-006],[[6897,2]]],
+[6960,[1253.26,10889.4,0],[[6898,2],[7018,2],[7019,2]]], [6961,[1900.13,10686.9,0],[[6899,2]]], [6962,[1088.74,10234.9,0],[[6900,2],[7020,2]]], [6963,[1611.32,9533.05,0],[[6901,2],[6902,2],[6951,2]]], [6964,[1008.63,16038.9,-1.27157e-006],[[6905,2],[7021,2],[7022,2]]], [6965,[1361.62,16633.5,0],[[6907,2]]],
+[6966,[963.578,16504.8,0],[[6908,2],[7023,2]]], [6967,[1072.71,16720.4,6.35783e-007],[[6908,2],[7024,2],[7025,2]]], [6968,[5356.49,6851.16,1.90735e-006],[[6909,2]]], [6969,[4267.68,8056.35,0],[[6910,2],[7026,2]]], [6970,[4258.41,7729.78,-3.8147e-006],[[6911,2]]], [6971,[3605.28,7681.33,6.35783e-007],[[6912,2],[6917,2],[7027,2],[6976,2]]],
+[6972,[3919.22,7912.94,1.90735e-006],[[6913,2],[7028,2]]], [6973,[3182.57,7325.5,0],[[6915,2],[7029,2]]], [6974,[3609.34,7124.64,0],[[6916,2],[7030,2]]], [6975,[3602.79,7242.56,9.53674e-007],[[6916,2],[7031,2]]], [6976,[3587.42,7615.62,-4.76837e-007],[[6917,2],[6971,2],[7032,2],[7033,2]]], [6977,[3497.95,7620.47,0],[[6917,2]]],
+[6978,[3375.76,7451.25,0],[[6918,2],[6978,2]]], [6979,[3454.87,7397.81,0],[[6918,2]]], [6980,[4568.58,7348.91,0],[[6919,2],[6980,2]]], [6981,[4241.49,6781.41,0],[[6920,2]]], [6982,[6270.23,5989.8,0],[[6922,2],[7034,2]]], [6983,[6114.59,6035,0],[[6923,2],[7035,2]]],
+[6984,[5805.47,6310.23,1.90735e-006],[[6924,2],[7036,2]]], [6985,[6964.29,5093.49,-1.90735e-006],[[6926,2],[6986,2]]], [6986,[6905.52,4990.98,-1.90735e-007],[[6926,2],[6985,2],[7037,2],[7038,2],[7039,2]]], [6987,[6652.26,5147.3,0],[[6927,2]]], [6988,[6983.27,5087.97,0],[[6928,2]]], [6989,[7483.3,4879.82,0],[[6929,2],[7040,2]]],
+[6990,[7359.58,4820.39,0],[[6930,2]]], [6991,[7457.11,4790.32,0],[[6930,2],[7041,2]]], [6992,[8738.17,4833.14,0],[[6933,2],[7042,2]]], [6993,[8872.42,4729.72,-1.58946e-007],[[6933,2],[7043,2],[6993,2]]], [6994,[8917.95,5743.56,0],[[6934,2],[6943,2],[7044,2],[7001,2]]], [6995,[9111.07,4420.34,0],[[6937,2],[6995,2]]],
+[6996,[9028.12,4335.49,0],[[6937,2]]], [6997,[9358.77,6196.11,-4.76837e-007],[[6939,2]]], [6998,[9520.99,6374.36,0],[[6940,2]]], [6999,[9485.44,6508.44,0],[[6940,2],[6999,2]]], [7000,[9526.89,6628.89,0],[[6941,2],[7045,2]]], [7001,[8912.49,5832.38,0],[[6943,2],[6994,2],[7046,2]]],
+[7002,[9802.06,7042.77,-6.35783e-007],[[6944,2],[7047,2],[7048,2]]], [7003,[11336.8,6555.73,-4.76837e-007],[[6945,2]]], [7004,[3674.03,9279.01,0],[[6946,2]]], [7005,[3083.47,9232.28,-6.35783e-007],[[6947,2],[7049,2],[7050,2]]], [7006,[2789.14,8728.58,0],[[6948,2],[7051,2]]], [7007,[2870.64,8615.6,0],[[6948,2]]],
+[7008,[3403.1,8239.72,0],[[6949,2],[7052,2]]], [7009,[1790.01,9448.32,-3.8147e-006],[[6950,2]]], [7010,[1400.53,9178.84,0],[[6952,2],[7053,2],[7054,2]]], [7011,[1708.58,8808.95,-2.38419e-007],[[6954,2],[6957,2],[7016,2],[7055,2]]], [7012,[1582.05,8823.95,4.76837e-007],[[6954,2],[7056,2]]], [7013,[2513.22,9068.31,-9.53674e-007],[[6955,2]]],
+[7014,[2515.9,8897.88,0],[[6955,2]]], [7015,[2577.57,8995.37,0],[[6955,2],[7015,2],[7057,2]]], [7016,[1731.19,8811.94,0],[[6957,2],[7011,2]]], [7017,[1956.19,8559.86,4.76837e-007],[[6958,2],[7058,2],[7059,2],[7060,2]]], [7018,[1325.81,10977.1,1.90735e-006],[[6960,2],[7061,2]]], [7019,[1104.96,10911.4,0],[[6960,2],[7062,2]]],
+[7020,[993.065,10224,1.90735e-006],[[6962,2],[7063,2]]], [7021,[1029.28,15946.7,0],[[6964,2],[7064,2]]], [7022,[912.437,16008.8,-9.53674e-007],[[6964,2],[7064,2],[7065,2],[7022,2]]], [7023,[936.174,16376.8,0],[[6966,2],[7023,2]]], [7024,[984.251,16844.7,6.35783e-007],[[6967,2],[7066,2],[7067,2]]], [7025,[1115.48,16790.1,0],[[6967,2],[7068,2],[7066,2]]],
+[7026,[4280.36,8157.17,0],[[6969,2],[7069,2]]], [7027,[3506.1,7835.65,0],[[6971,2],[7070,2]]], [7028,[3909.31,8014.25,0],[[6972,2],[7071,2]]], [7029,[3035.65,7302.69,6.35783e-007],[[6973,2],[7072,2],[7073,2]]], [7030,[3708.55,7031.31,0],[[6974,2],[7074,2]]], [7031,[3689.31,7226.07,0],[[6975,2],[7075,2]]],
+[7032,[3674.46,7547.47,0],[[6976,2],[7076,2]]], [7033,[3552.97,7675.92,0],[[6976,2]]], [7034,[6296.1,5889.39,0],[[6982,2],[7077,2]]], [7035,[6190.19,5930.66,0],[[6983,2],[7078,2],[7035,2]]], [7036,[5680.67,6354.97,0],[[6984,2],[7079,2]]], [7037,[6968.68,4858.07,0],[[6986,2],[7080,2]]],
+[7038,[6834.6,4783.49,0],[[6986,2],[7081,2]]], [7039,[6775.72,4931.7,0],[[6986,2]]], [7040,[7507.4,4979,0],[[6989,2],[7082,2]]], [7041,[7506.85,4763.41,-3.57628e-007],[[6991,2],[7083,2],[7084,2],[7085,2]]], [7042,[8647.08,4835.01,3.17891e-007],[[6992,2],[7086,2],[7087,2]]], [7043,[8806.92,4575.21,0],[[6993,2],[7088,2]]],
+[7044,[8792.04,5708.61,0],[[6994,2],[7089,2]]], [7045,[9513.56,6659.49,0],[[7000,2]]], [7046,[8857.83,5929.87,-1.58946e-007],[[7001,2],[7090,2],[7091,2]]], [7047,[9716.76,7181.27,0],[[7002,2],[7092,2]]], [7048,[9671.22,6980.46,9.53674e-007],[[7002,2],[7093,2],[7094,2],[7095,2]]], [7049,[3005.57,9252.35,-9.53674e-007],[[7005,2]]],
+[7050,[3089.82,9350.19,0],[[7005,2],[7096,2]]], [7051,[2763.78,8834.66,-9.53674e-007],[[7006,2],[7057,2]]], [7052,[3420.63,8142.25,-6.35783e-007],[[7008,2],[7097,2],[7098,2]]], [7053,[1332.84,9197.69,-9.53674e-007],[[7010,2]]], [7054,[1263.77,9282.83,-4.76837e-007],[[7010,2],[7099,2],[7054,2],[7100,2]]], [7055,[1766.14,8633.83,3.17891e-007],[[7011,2],[7101,2],[7058,2]]],
+[7056,[1566.47,8731.29,9.53674e-007],[[7012,2],[7102,2]]], [7057,[2685.59,8878.12,0],[[7015,2],[7051,2]]], [7058,[1852.49,8653.57,0],[[7017,2],[7055,2]]], [7059,[1963.81,8454.59,-3.17891e-007],[[7017,2],[7103,2],[7104,2]]], [7060,[1870.92,8522.8,0],[[7017,2],[7101,2]]], [7061,[1351.39,11000.6,0],[[7018,2]]],
+[7062,[1007.92,10950.2,0],[[7019,2],[7105,2]]], [7063,[953.168,10145.6,1.90735e-006],[[7020,2],[7106,2]]], [7064,[978.747,15932.8,0],[[7021,2],[7022,2],[7107,2]]], [7065,[870.706,15984.9,0],[[7022,2],[7065,2]]], [7066,[1081.77,16825.2,0],[[7024,2],[7025,2],[7068,2]]], [7067,[854.414,16948.3,-4.76837e-007],[[7024,2],[7067,2],[7108,2],[7109,2]]],
+[7068,[1103.47,16807,0],[[7025,2],[7066,2]]], [7069,[4281.39,8248.31,1.27157e-006],[[7026,2],[7110,2],[7111,2]]], [7070,[3465.34,7948.48,3.17891e-007],[[7027,2],[7112,2],[7113,2],[7098,2]]], [7071,[3852.91,8142.05,0],[[7028,2],[7071,2]]], [7072,[2880.29,7253.33,0],[[7029,2],[7114,2]]], [7073,[2979.33,7437.34,0],[[7029,2],[7115,2]]],
+[7074,[3701.49,6958.16,0],[[7030,2],[7116,2],[7117,2],[7118,2]]], [7075,[3758.34,7218.1,0],[[7031,2],[7119,2]]], [7076,[3733.33,7518.84,0],[[7032,2]]], [7077,[6275.73,5759.65,0],[[7034,2],[7120,2]]], [7078,[6210.22,5800.71,0],[[7035,2],[7121,2]]], [7079,[5519.22,6327.64,0],[[7036,2],[7122,2]]],
+[7080,[7037.27,4748.84,0],[[7037,2],[7123,2]]], [7081,[6834.67,4746.04,0],[[7038,2],[7124,2],[7125,2]]], [7082,[7522.64,4996.21,3.17891e-007],[[7040,2],[7126,2],[7127,2]]], [7083,[7474.15,4730.49,0],[[7041,2]]], [7084,[7561.26,4687.8,-4.76837e-007],[[7041,2]]], [7085,[7644.08,4848.03,0],[[7041,2],[7128,2],[7085,2]]],
+[7086,[8541.64,4924.02,-3.17891e-007],[[7042,2],[7129,2],[7086,2]]], [7087,[8595.85,4694.25,0],[[7042,2],[7130,2]]], [7088,[8810.68,4549.33,0],[[7043,2]]], [7089,[8714.21,5737.76,4.76837e-007],[[7044,2],[7131,2]]], [7090,[8782.07,6058.02,0],[[7046,2],[7090,2]]], [7091,[8934.03,5997.56,-1.58946e-007],[[7046,2],[7132,2],[7133,2]]],
+[7092,[9728.71,7244.82,0],[[7047,2]]], [7093,[9671.28,6858.97,0],[[7048,2],[7134,2]]], [7094,[9602.41,6961.37,1.90735e-006],[[7048,2]]], [7095,[9572.77,7053.64,-2.38419e-007],[[7048,2],[7135,2],[7095,2],[7136,2]]], [7096,[3108.26,9362.07,0],[[7050,2]]], [7097,[3387.05,8127.96,0],[[7052,2]]],
+[7098,[3441.29,8078.99,-6.35783e-007],[[7052,2],[7070,2],[7137,2],[7138,2],[7113,2]]], [7099,[1220.42,9343.25,4.76837e-007],[[7054,2],[7139,2],[7140,2]]], [7100,[1142.69,9200.83,4.76837e-007],[[7054,2],[7141,2]]], [7101,[1772.24,8533.55,0],[[7055,2],[7060,2],[7142,2],[7143,2]]], [7102,[1487.9,8631.09,0],[[7056,2],[7144,2]]], [7103,[1906.35,8362.43,0],[[7059,2],[7145,2],[7146,2]]],
+[7104,[2101,8485.11,0],[[7059,2],[7147,2]]], [7105,[872.12,10842.5,0],[[7062,2],[7148,2]]], [7106,[923.603,10106.9,0],[[7063,2],[7149,2],[7150,2]]], [7107,[989.572,15868.5,0],[[7064,2],[7151,2]]], [7108,[938.687,16928,1.90735e-006],[[7067,2]]], [7109,[775.314,16964.7,4.76837e-007],[[7067,2],[7152,2],[7153,2],[7154,2]]],
+[7110,[4241.12,8347.01,0],[[7069,2],[7155,2]]], [7111,[4397.46,8319.85,0],[[7069,2],[7156,2]]], [7112,[3474,7996.18,0],[[7070,2],[7138,2]]], [7113,[3456.36,7998.75,0],[[7070,2],[7098,2],[7157,2]]], [7114,[2745.95,7316.11,0],[[7072,2],[7158,2]]], [7115,[2919.59,7568.31,0],[[7073,2],[7159,2]]],
+[7116,[3770.89,6914.65,0],[[7074,2],[7117,2],[7160,2]]], [7117,[3728.17,6908.68,0],[[7074,2],[7116,2],[7161,2]]], [7118,[3602,6904.43,-9.53674e-007],[[7074,2],[7162,2]]], [7119,[3830.9,7220.49,0],[[7075,2]]], [7120,[6303.02,5675.11,-3.17891e-007],[[7077,2],[7163,2],[7164,2]]], [7121,[6196.15,5772.16,-9.53674e-007],[[7078,2]]],
+[7122,[5508.06,6322.84,6.35783e-007],[[7079,2],[7122,2],[7165,2]]], [7123,[7116.09,4640.23,0],[[7080,2],[7166,2]]], [7124,[6729.18,4595.65,0],[[7081,2],[7167,2]]], [7125,[6886.24,4721.98,0],[[7081,2]]], [7126,[7563.77,4973.93,0],[[7082,2]]], [7127,[7517.48,5048.05,0],[[7082,2]]],
+[7128,[7656.08,4846.43,0],[[7085,2]]], [7129,[8452.11,4902.14,0],[[7086,2],[7168,2]]], [7130,[8578.86,4627.46,3.17891e-007],[[7087,2],[7169,2],[7170,2]]], [7131,[8658.53,5763.49,0],[[7089,2]]], [7132,[8998.69,6014.71,-4.76837e-007],[[7091,2]]], [7133,[8898.04,6083.2,0],[[7091,2],[7171,2]]],
+[7134,[9622.39,6780.81,0],[[7093,2],[7172,2]]], [7135,[9497.97,7077.62,1.58946e-007],[[7095,2],[7135,2],[7173,2]]], [7136,[9566.57,7160.49,-3.17891e-007],[[7095,2],[7174,2],[7136,2]]], [7137,[3582,8163.72,0],[[7098,2],[7175,2]]], [7138,[3459.55,7999.62,3.17891e-007],[[7098,2],[7112,2]]], [7139,[1124.34,9315.39,0],[[7099,2]]],
+[7140,[1103.61,9491.57,0],[[7099,2],[7176,2],[7177,2]]], [7141,[1037.49,9164.4,0],[[7100,2],[7178,2]]], [7142,[1781.19,8474.57,-1.58946e-007],[[7101,2],[7179,2],[7180,2]]], [7143,[1733.32,8609.98,0],[[7101,2]]], [7144,[1475.61,8583.32,9.53674e-007],[[7102,2]]], [7145,[1846.68,8279.2,0],[[7103,2],[7181,2],[7179,2]]],
+[7146,[1872.5,8408.12,0],[[7103,2]]], [7147,[2173.31,8520.97,0],[[7104,2],[7182,2]]], [7148,[797.179,10720.1,0],[[7105,2],[7183,2]]], [7149,[805.206,10046.6,-6.35783e-007],[[7106,2],[7184,2],[7150,2]]], [7150,[874.351,9980.57,0],[[7106,2],[7149,2],[7185,2],[7186,2]]], [7151,[1023.95,15816.6,-3.8147e-006],[[7107,2],[7187,2]]],
+[7152,[772.113,17004.4,-6.35783e-007],[[7109,2],[7188,2],[7154,2],[7152,2]]], [7153,[720.792,16861.3,2.54313e-006],[[7109,2],[7189,2],[7190,2]]], [7154,[720.711,17015.9,0],[[7109,2],[7152,2],[7188,2]]], [7155,[4199.62,8398.11,-3.8147e-006],[[7110,2],[7191,2]]], [7156,[4424.85,8336.48,0],[[7111,2],[7192,2],[7193,2]]], [7157,[3318.5,7968.71,0],[[7113,2],[7194,2]]],
+[7158,[2622.35,7387.21,0],[[7114,2],[7195,2]]], [7159,[2897.31,7625.12,0],[[7115,2],[7196,2],[7197,2]]], [7160,[3863.42,6864.07,0],[[7116,2],[7198,2],[7199,2]]], [7161,[3759.61,6807.42,-4.76837e-007],[[7117,2],[7161,2],[7200,2]]], [7162,[3493.37,6826.85,4.76837e-007],[[7118,2],[7201,2]]], [7163,[6360.03,5618.65,0],[[7120,2]]],
+[7164,[6309.79,5542.52,-6.35783e-007],[[7120,2],[7202,2],[7203,2]]], [7165,[5388.44,6236.39,-1.90735e-006],[[7122,2],[7204,2]]], [7166,[7178.1,4571.11,-1.58946e-007],[[7123,2],[7205,2],[7206,2]]], [7167,[6730.27,4570.93,1.58946e-007],[[7124,2],[7207,2],[7208,2]]], [7168,[8388.27,4846.02,0],[[7129,2],[7209,2]]], [7169,[8634.97,4500.62,0],[[7130,2],[7210,2]]],
+[7170,[8438.22,4655.13,0],[[7130,2],[7211,2]]], [7171,[8878.14,6132.17,0],[[7133,2]]], [7172,[9521.88,6780.48,9.53674e-007],[[7134,2],[7172,2]]], [7173,[9460.06,7052.73,-4.76837e-007],[[7135,2]]], [7174,[9624.48,7192.99,0],[[7136,2]]], [7175,[3605.69,8175.84,0],[[7137,2]]],
+[7176,[1019.95,9612.25,0],[[7140,2],[7212,2]]], [7177,[1091.19,9433.82,0],[[7140,2]]], [7178,[1006.99,9145.19,-3.17891e-007],[[7141,2],[7213,2],[7214,2]]], [7179,[1774.59,8347.5,0],[[7142,2],[7145,2],[7215,2],[7216,2]]], [7180,[1835.46,8442.04,9.53674e-007],[[7142,2]]], [7181,[1811.92,8256.56,0],[[7145,2],[7217,2]]],
+[7182,[2244.2,8538.54,0],[[7147,2],[7218,2],[7219,2]]], [7183,[769.63,10629.9,0],[[7148,2],[7220,2],[7221,2]]], [7184,[731.209,10105.7,0],[[7149,2],[7222,2],[7223,2]]], [7185,[832.168,10001.2,0],[[7150,2]]], [7186,[960.674,9841.47,0],[[7150,2],[7224,2],[7212,2]]], [7187,[1024.78,15785.5,0],[[7151,2]]],
+[7188,[689.868,17056.6,4.76837e-007],[[7152,2],[7154,2],[7225,2],[7226,2]]], [7189,[826.046,16813.8,0],[[7153,2],[7227,2]]], [7190,[605.797,16846.1,-6.35783e-007],[[7153,2],[7228,2],[7190,2]]], [7191,[4242.94,8430.5,-1.27157e-006],[[7155,2],[7229,2],[7192,2]]], [7192,[4441.33,8465.58,-1.90735e-006],[[7156,2],[7191,2],[7230,2],[7192,2]]], [7193,[4541.69,8414.74,0],[[7156,2],[7231,2]]],
+[7194,[3185.17,7971.85,0],[[7157,2],[7232,2]]], [7195,[2594.73,7396.16,-6.35783e-007],[[7158,2],[7233,2],[7234,2]]], [7196,[2839.29,7643.05,0],[[7159,2],[7235,2],[7236,2]]], [7197,[2855.48,7713.53,0],[[7159,2],[7235,2]]], [7198,[3956.15,6818.93,-2.38419e-007],[[7160,2],[7198,2],[7237,2],[7238,2]]], [7199,[3813.54,6827.31,9.53674e-007],[[7160,2]]],
+[7200,[3789.06,6752.16,2.38419e-007],[[7161,2],[7239,2],[7240,2]]], [7201,[3482.03,6720.75,0],[[7162,2],[7241,2]]], [7202,[6387.84,5564.04,-9.53674e-007],[[7164,2],[7242,2]]], [7203,[6227.05,5496.28,0],[[7164,2],[7243,2]]], [7204,[5355.29,6224.53,-6.35783e-007],[[7165,2],[7244,2],[7245,2]]], [7205,[7107.77,4486.7,0],[[7166,2],[7246,2]]],
+[7206,[7242.81,4589.06,0],[[7166,2]]], [7207,[6661.64,4689.08,0],[[7167,2],[7247,2]]], [7208,[6749.62,4391.63,0],[[7167,2],[7248,2]]], [7209,[8375.31,4864.27,0],[[7168,2]]], [7210,[8714.02,4377.24,0],[[7169,2],[7249,2]]], [7211,[8377.24,4662.47,0],[[7170,2]]],
+[7212,[982.417,9682.12,-1.27157e-006],[[7176,2],[7186,2],[7224,2],[7250,2]]], [7213,[878.625,9171.13,-9.53674e-007],[[7178,2],[7251,2]]], [7214,[1054.12,8977.99,0],[[7178,2],[7252,2]]], [7215,[1802.49,8276.11,0],[[7179,2]]], [7216,[1729.72,8328.85,0],[[7179,2],[7216,2]]], [7217,[1817.41,8156.93,0],[[7181,2],[7253,2],[7217,2],[7254,2]]],
+[7218,[2272.14,8628.99,0],[[7182,2],[7255,2]]], [7219,[2395.31,8522.16,0],[[7182,2],[7219,2]]], [7220,[624.345,10502.7,0],[[7183,2],[7256,2]]], [7221,[930.674,10625.2,0],[[7183,2],[7257,2]]], [7222,[582.178,10173.4,3.17891e-007],[[7184,2],[7258,2],[7259,2]]], [7223,[705.353,10174.8,0],[[7184,2]]],
+[7224,[976.796,9747.8,0],[[7186,2],[7212,2],[7260,2]]], [7225,[713.805,17097.1,-6.35783e-007],[[7188,2],[7261,2],[7262,2]]], [7226,[532.244,17199.6,0],[[7188,2],[7263,2]]], [7227,[859.648,16837.2,0],[[7189,2]]], [7228,[569.649,16824.3,0],[[7190,2]]], [7229,[4183.06,8448.27,1.27157e-006],[[7191,2],[7264,2],[7265,2]]],
+[7230,[4521.44,8528.77,0],[[7192,2]]], [7231,[4643.02,8530.17,0],[[7193,2],[7266,2]]], [7232,[3073.64,7997.5,-1.90735e-006],[[7194,2],[7267,2]]], [7233,[2447.15,7420.47,-6.35783e-007],[[7195,2],[7268,2],[7269,2]]], [7234,[2593.59,7497.15,0],[[7195,2],[7236,2],[7270,2]]], [7235,[2798.95,7667.54,0],[[7196,2],[7197,2],[7271,2]]],
+[7236,[2748.57,7561.66,0],[[7196,2],[7234,2],[7272,2],[7236,2],[7271,2]]], [7237,[3970.95,6758.48,0],[[7198,2],[7273,2],[7238,2],[7237,2]]], [7238,[4058.72,6790.64,0],[[7198,2],[7237,2],[7274,2],[7238,2]]], [7239,[3796.23,6674.25,0],[[7200,2]]], [7240,[3838.17,6735.71,0],[[7200,2],[7240,2],[7275,2]]], [7241,[3446.83,6682.25,-3.17891e-007],[[7201,2],[7276,2],[7277,2]]],
+[7242,[6390.12,5579.53,-9.53674e-007],[[7202,2]]], [7243,[6149.57,5481.6,0],[[7203,2],[7278,2]]], [7244,[5301.4,6314.69,-1.27157e-006],[[7204,2],[7279,2],[7280,2]]], [7245,[5298.1,6150.51,-6.35783e-007],[[7204,2],[7281,2],[7282,2]]], [7246,[7089.8,4443.31,-1.58946e-007],[[7205,2],[7283,2],[7284,2]]], [7247,[6555.87,4782.16,-2.38419e-007],[[7207,2],[7285,2],[7286,2],[7287,2]]],
+[7248,[6749.06,4266.31,-4.76837e-008],[[7208,2],[7288,2],[7289,2],[7290,2],[7291,2]]], [7249,[8724.55,4367.35,0],[[7210,2]]], [7250,[935.765,9701.98,0],[[7212,2],[7292,2]]], [7251,[847.982,9263.17,4.76837e-007],[[7213,2]]], [7252,[1093.05,8867.9,0],[[7214,2],[7293,2]]], [7253,[1817.64,8096.36,-1.36239e-007],[[7217,2],[7294,2],[7295,2],[7296,2],[7253,2],[7297,2],[7298,2]]],
+[7254,[1936.16,8206.56,0],[[7217,2],[7299,2]]], [7255,[2260.32,8698.78,0],[[7218,2]]], [7256,[520.159,10420.1,0],[[7220,2],[7300,2]]], [7257,[993.068,10588.6,-3.8147e-006],[[7221,2],[7301,2]]], [7258,[533.052,10095.6,0],[[7222,2],[7258,2]]], [7259,[514.175,10289.3,-4.76837e-007],[[7222,2],[7259,2],[7302,2],[7300,2],[7303,2]]],
+[7260,[925.88,9710.09,0],[[7224,2]]], [7261,[742.701,17222.2,0],[[7225,2],[7304,2]]], [7262,[748.789,17082.2,0],[[7225,2]]], [7263,[411.419,17301.2,0],[[7226,2],[7305,2]]], [7264,[4066.23,8382.04,9.53674e-007],[[7229,2],[7306,2],[7264,2],[7307,2]]], [7265,[4238.29,8557.97,0],[[7229,2],[7308,2]]],
+[7266,[4661.86,8553.92,0],[[7231,2]]], [7267,[3027.18,8026.19,0],[[7232,2]]], [7268,[2449.6,7482.52,0],[[7233,2],[7309,2],[7270,2]]], [7269,[2392.79,7418.49,-6.35783e-007],[[7233,2],[7310,2],[7311,2]]], [7270,[2533.93,7504.31,0],[[7234,2],[7268,2]]], [7271,[2708.18,7661.43,0],[[7235,2],[7236,2]]],
+[7272,[2795.76,7561.14,0],[[7236,2],[7312,2],[7272,2]]], [7273,[4040.7,6744.73,-9.53674e-007],[[7237,2],[7313,2]]], [7274,[4051.51,6743.66,0],[[7238,2]]], [7275,[3930.11,6633.91,0],[[7240,2],[7314,2]]], [7276,[3414.77,6724.14,0],[[7241,2],[7315,2],[7316,2]]], [7277,[3332.5,6547.87,9.53674e-007],[[7241,2],[7317,2]]],
+[7278,[6143.55,5389.06,-1.90735e-006],[[7243,2],[7318,2]]], [7279,[5263.62,6397.38,0],[[7244,2],[7319,2]]], [7280,[5114.24,6340.47,0],[[7244,2],[7320,2]]], [7281,[5425.86,6126.44,-1.90735e-006],[[7245,2],[7321,2]]], [7282,[5200.9,6085,0],[[7245,2],[7322,2],[7323,2]]], [7283,[7160.65,4452.41,0],[[7246,2]]],
+[7284,[7074.82,4402.87,0],[[7246,2]]], [7285,[6426.86,4645.48,-2.38419e-007],[[7247,2],[7324,2]]], [7286,[6628.27,4927.98,0],[[7247,2],[7325,2]]], [7287,[6429.69,4877.77,9.53674e-007],[[7247,2],[7326,2]]], [7288,[6654.32,4382.97,0],[[7248,2],[7327,2]]], [7289,[6867.51,4253.71,7.94729e-008],[[7248,2],[7328,2],[7329,2]]],
+[7290,[6657.89,4236.23,0],[[7248,2],[7330,2],[7331,2]]], [7291,[6787.77,4131.74,5.96046e-008],[[7248,2],[7332,2],[7333,2],[7334,2]]], [7292,[763.186,9742.35,9.53674e-007],[[7250,2],[7335,2]]], [7293,[1182.44,8767.23,0],[[7252,2],[7336,2]]], [7294,[1863.49,8100.06,0],[[7253,2]]], [7295,[1850.59,8141.5,0],[[7253,2],[7295,2],[7337,2]]],
+[7296,[1848.07,7982.78,0],[[7253,2],[7338,2]]], [7297,[1592.25,8089.39,0],[[7253,2],[7339,2],[7340,2],[7341,2]]], [7298,[1840.14,7999.52,0],[[7253,2]]], [7299,[1967.66,8206.14,0],[[7254,2]]], [7300,[467.217,10408.3,-6.35783e-007],[[7256,2],[7259,2],[7342,2],[7302,2]]], [7301,[1049.79,10621.6,0],[[7257,2],[7343,2]]],
+[7302,[409.711,10389.5,0],[[7259,2],[7300,2],[7344,2],[7303,2],[7345,2]]], [7303,[479.894,10292.3,-3.17891e-007],[[7259,2],[7302,2],[7346,2],[7347,2]]], [7304,[753.907,17245.8,0],[[7261,2],[7348,2],[7349,2]]], [7305,[379.585,17304.4,0],[[7263,2],[7350,2],[7351,2]]], [7306,[4025.22,8473.71,0],[[7264,2],[7352,2]]], [7307,[3978.91,8370.2,0],[[7264,2],[7307,2]]],
+[7308,[4253.49,8637.91,-3.8147e-006],[[7265,2]]], [7309,[2390,7566.59,1.90735e-006],[[7268,2],[7309,2]]], [7310,[2316.16,7365.87,0],[[7269,2],[7353,2],[7354,2]]], [7311,[2356.67,7440.5,1.90735e-006],[[7269,2]]], [7312,[2796.95,7571.2,0],[[7272,2]]], [7313,[4157.86,6666.86,0],[[7273,2],[7313,2]]],
+[7314,[4043.65,6549.04,0],[[7275,2],[7314,2],[7355,2],[7356,2]]], [7315,[3387.23,6789.1,0],[[7276,2],[7357,2]]], [7316,[3325.57,6769.39,0],[[7276,2],[7358,2]]], [7317,[3266.47,6455.56,0],[[7277,2],[7359,2]]], [7318,[6118.47,5370.32,6.35783e-007],[[7278,2],[7360,2],[7361,2]]], [7319,[5208.38,6451.56,0],[[7279,2],[7362,2],[7319,2]]],
+[7320,[5053.81,6343.77,0],[[7280,2]]], [7321,[5480.52,6108.08,0],[[7281,2]]], [7322,[5072.2,6019.77,0],[[7282,2],[7363,2]]], [7323,[5087.15,6140.37,0],[[7282,2],[7364,2]]], [7324,[6381.08,4611.61,-2.38419e-007],[[7285,2]]], [7325,[6562.4,5008.8,-6.35783e-007],[[7286,2],[7365,2],[7366,2]]],
+[7326,[6278.15,4947.94,9.53674e-007],[[7287,2],[7367,2]]], [7327,[6598.68,4432.05,2.38419e-007],[[7288,2],[7368,2],[7369,2],[7327,2]]], [7328,[7032.11,4192.7,0],[[7289,2],[7370,2],[7371,2]]], [7329,[6941.08,4196.15,0],[[7289,2]]], [7330,[6651.48,4160.83,2.38419e-007],[[7290,2]]], [7331,[6628.4,4281.01,0],[[7290,2]]],
+[7332,[6846.76,4141.4,0],[[7291,2]]], [7333,[6688.78,4100.02,0],[[7291,2],[7333,2]]], [7334,[6832.79,4064.13,1.58946e-007],[[7291,2],[7334,2],[7372,2]]], [7335,[682.21,9730.19,0],[[7292,2],[7373,2]]], [7336,[1252.25,8674.75,9.53674e-007],[[7293,2],[7374,2]]], [7337,[1949.91,8093.38,9.53674e-007],[[7295,2],[7375,2]]],
+[7338,[1928.43,7869.38,-1.19209e-007],[[7296,2],[7376,2],[7377,2],[7378,2]]], [7339,[1521.77,8231.78,-4.76837e-007],[[7297,2],[7379,2]]], [7340,[1546.7,8031.65,-1.58946e-007],[[7297,2],[7380,2],[7381,2]]], [7341,[1429.06,8040.31,0],[[7297,2],[7382,2]]], [7342,[449.888,10496.8,0],[[7342,2],[7383,2]]], [7343,[1114.76,10674.1,0],[[7301,2],[7343,2]]],
+[7344,[433.378,10325.7,-9.53674e-007],[[7302,2],[7384,2]]], [7345,[303.391,10407.3,6.35783e-007],[[7302,2],[7385,2],[7386,2]]], [7346,[441.696,10321.3,0],[[7303,2]]], [7347,[494.766,10195.5,0],[[7303,2]]], [7348,[797.021,17217.9,0],[[7304,2]]], [7349,[802.105,17437,0],[[7304,2],[7387,2],[7388,2],[7389,2]]],
+[7350,[371.221,17241.6,0],[[7305,2],[7390,2],[7391,2]]], [7351,[218.144,17256.1,0],[[7305,2],[7392,2]]], [7352,[3975.66,8520.23,-3.8147e-006],[[7306,2],[7393,2]]], [7353,[2272.56,7326.92,0],[[7310,2],[7394,2],[7395,2]]], [7354,[2245.92,7475.52,0],[[7310,2],[7396,2]]], [7355,[4144.71,6448.57,0],[[7314,2],[7397,2]]],
+[7356,[4113.11,6560.75,9.53674e-007],[[7314,2]]], [7357,[3335.97,6820.11,0],[[7315,2],[7398,2]]], [7358,[3256.38,6803.84,0],[[7316,2],[7399,2]]], [7359,[3253.63,6428.46,-1.19209e-007],[[7317,2],[7400,2],[7401,2],[7402,2]]], [7360,[6172.76,5323.75,0],[[7318,2],[7403,2],[7404,2]]], [7361,[6074.64,5370,6.35783e-007],[[7318,2],[7403,2],[7405,2]]],
+[7362,[5195.96,6442.89,9.53674e-007],[[7319,2]]], [7363,[5059.47,6013.49,0],[[7322,2],[7406,2],[7407,2],[7364,2]]], [7364,[4966.64,6183.55,-9.53674e-007],[[7323,2],[7363,2],[7408,2],[7409,2]]], [7365,[6469.86,4989.01,0],[[7325,2],[7410,2]]], [7366,[6517.51,5129.09,0],[[7325,2],[7410,2],[7411,2]]], [7367,[6158.25,4980.95,0],[[7326,2],[7412,2]]],
+[7368,[6557.35,4431.48,0],[[7327,2]]], [7369,[6523.89,4497.04,1.58946e-007],[[7327,2],[7413,2],[7414,2]]], [7370,[7004.77,4173.33,-4.76837e-007],[[7328,2]]], [7371,[7115.67,4102.67,0],[[7328,2],[7415,2],[7416,2]]], [7372,[6969.52,3947.86,0],[[7334,2]]], [7373,[674.026,9671.23,0],[[7335,2],[7373,2],[7417,2]]],
+[7374,[1282.69,8655.42,0],[[7336,2],[7374,2],[7418,2]]], [7375,[2085.2,8102.92,0],[[7337,2],[7419,2]]], [7376,[1931.97,7787.69,-4.76837e-007],[[7338,2],[7420,2]]], [7377,[2031.24,7947.61,0],[[7338,2],[7377,2]]], [7378,[2026.41,7738.1,0],[[7338,2],[7421,2]]], [7379,[1470.69,8346.49,0],[[7339,2],[7422,2]]],
+[7380,[1456.54,7977.63,0],[[7340,2]]], [7381,[1546.28,7847.05,4.76837e-007],[[7340,2],[7423,2]]], [7382,[1398.85,8062.55,-3.17891e-007],[[7341,2],[7424,2],[7425,2]]], [7383,[410.028,10652.7,6.35783e-007],[[7342,2],[7426,2],[7427,2]]], [7384,[357.886,10299.7,0],[[7344,2],[7428,2]]], [7385,[237.374,10366.2,0],[[7345,2],[7428,2],[7429,2]]],
+[7386,[191.266,10480.1,-6.35783e-007],[[7345,2],[7429,2],[7430,2]]], [7387,[752.477,17435.7,0],[[7349,2]]], [7388,[914.288,17551,0],[[7349,2],[7431,2]]], [7389,[816.605,17542,0],[[7349,2],[7432,2]]], [7390,[327.29,17177.8,0],[[7350,2],[7433,2],[7434,2]]], [7391,[445.944,17087.4,-1.90735e-006],[[7350,2],[7435,2]]],
+[7392,[188.564,17243.8,-6.35783e-007],[[7351,2],[7436,2],[7437,2]]], [7393,[3968.47,8534.87,-3.8147e-006],[[7352,2]]], [7394,[2355.42,7261.51,9.53674e-007],[[7353,2],[7438,2]]], [7395,[2136.04,7238.88,0],[[7353,2],[7439,2]]], [7396,[2194.52,7534.65,-3.17891e-007],[[7354,2],[7421,2],[7440,2]]], [7397,[4157.15,6401.67,4.76837e-007],[[7355,2]]],
+[7398,[3277.77,6822.86,1.90735e-006],[[7357,2],[7399,2]]], [7399,[3235.41,6821.95,0],[[7358,2],[7398,2],[7441,2],[7442,2]]], [7400,[3112.93,6521.98,-9.53674e-007],[[7359,2],[7443,2]]], [7401,[3283.84,6375.36,0],[[7359,2],[7444,2],[7445,2]]], [7402,[3228.87,6399.88,0],[[7359,2]]], [7403,[6021.94,5284.36,9.53674e-007],[[7360,2],[7361,2],[7446,2],[7447,2]]],
+[7404,[6280.4,5278.34,0],[[7360,2],[7448,2]]], [7405,[5982.84,5470.56,0],[[7361,2],[7449,2]]], [7406,[5009.07,5888.68,9.53674e-007],[[7363,2],[7450,2]]], [7407,[4971.28,6105.13,0],[[7363,2],[7451,2]]], [7408,[4961.05,6130.53,0],[[7364,2]]], [7409,[4890.69,6318.16,0],[[7364,2],[7452,2]]],
+[7410,[6447.23,5035.78,0],[[7365,2],[7366,2],[7453,2]]], [7411,[6466.85,5235.39,0],[[7366,2],[7454,2]]], [7412,[6130.23,4983.78,6.35783e-007],[[7367,2],[7455,2],[7456,2]]], [7413,[6498.75,4480.25,9.53674e-007],[[7369,2]]], [7414,[6494.25,4512.69,-4.76837e-007],[[7369,2]]], [7415,[7165.71,4189.44,0],[[7371,2],[7457,2]]],
+[7416,[7210.59,3952.18,3.17891e-007],[[7371,2],[7458,2],[7459,2]]], [7417,[679.405,9573.19,0],[[7373,2],[7460,2]]], [7418,[1303.09,8623.34,0],[[7374,2],[7418,2],[7461,2]]], [7419,[2167.35,8123.17,0],[[7375,2],[7462,2]]], [7420,[2020.79,7696.42,0],[[7376,2],[7463,2],[7421,2]]], [7421,[2093.72,7656.42,2.38419e-007],[[7378,2],[7396,2],[7420,2],[7464,2],[7465,2]]],
+[7422,[1414.03,8474.87,0],[[7379,2],[7461,2]]], [7423,[1536.51,7711.81,0],[[7381,2],[7466,2]]], [7424,[1369.37,8157.35,0],[[7424,2]]], [7425,[1275.41,8131.12,0],[[7382,2],[7467,2]]], [7426,[401.302,10697.7,0],[[7383,2]]], [7427,[354.562,10655.9,-1.90735e-006],[[7383,2]]],
+[7428,[288.517,10289.5,0],[[7384,2],[7385,2]]], [7429,[110.73,10336.8,2.38419e-007],[[7385,2],[7386,2],[7468,2],[7469,2]]], [7430,[104.278,10647.3,-1.90735e-006],[[7386,2],[7470,2]]], [7431,[927.693,17576.2,0],[[7388,2]]], [7432,[899.043,17616.9,0],[[7389,2],[7471,2]]], [7433,[305.307,17140,0],[[7390,2]]],
+[7434,[352.951,17092.5,0],[[7390,2],[7472,2]]], [7435,[494.914,17022.6,0],[[7391,2]]], [7436,[98.083,17351.4,1.90735e-006],[[7392,2],[7473,2]]], [7437,[38.2002,17164,1.43051e-006],[[7392,2],[7474,2],[7475,2],[7437,2]]], [7438,[2450.32,7203.41,0],[[7394,2],[7476,2],[7477,2]]], [7439,[2084.47,7201.12,2.38419e-007],[[7395,2],[7478,2],[7479,2]]],
+[7440,[2205.47,7499.09,0],[[7396,2]]], [7441,[3110.85,6694.77,0],[[7399,2],[7480,2]]], [7442,[3292.97,6990.11,0],[[7399,2],[7481,2]]], [7443,[3015.35,6537.66,0],[[7400,2],[7482,2],[7483,2],[7480,2],[7484,2]]], [7444,[3448.48,6414.45,9.53674e-007],[[7401,2],[7485,2]]], [7445,[3256.63,6265.19,0],[[7401,2],[7486,2]]],
+[7446,[5905.39,5218.57,0],[[7403,2],[7487,2]]], [7447,[6043.68,5199.42,0],[[7403,2],[7488,2]]], [7448,[6319.05,5326.24,-1.90735e-006],[[7404,2],[7489,2]]], [7449,[6001.38,5561.39,0],[[7405,2],[7490,2]]], [7450,[4980.05,5838.4,3.17891e-007],[[7406,2],[7491,2],[7492,2]]], [7451,[4841.21,6127.83,0],[[7407,2]]],
+[7452,[4901.61,6394.17,0],[[7409,2],[7493,2]]], [7453,[6369.72,5095.54,0],[[7410,2],[7494,2]]], [7454,[6438.85,5294.17,0],[[7411,2],[7495,2]]], [7455,[6106.11,4942.83,0],[[7412,2],[7496,2],[7456,2]]], [7456,[6013.02,4960.16,0],[[7412,2],[7455,2],[7488,2],[7497,2],[7498,2]]], [7457,[7214.76,4246.19,0],[[7415,2],[7499,2]]],
+[7458,[7191.72,3899.23,0],[[7416,2]]], [7459,[7300.81,3914.07,0],[[7416,2],[7500,2]]], [7460,[772.841,9441.38,4.76837e-007],[[7417,2],[7501,2]]], [7461,[1349.41,8595.72,0],[[7418,2],[7422,2],[7461,2],[7502,2]]], [7462,[2269.31,8201.48,0],[[7419,2],[7503,2]]], [7463,[2042.31,7674.63,0],[[7420,2],[7463,2]]],
+[7464,[2055.28,7662.85,4.76837e-007],[[7421,2]]], [7465,[2201.06,7781.22,0],[[7421,2],[7504,2]]], [7466,[1537.43,7665.44,3.17891e-007],[[7423,2],[7505,2],[7506,2]]], [7467,[1141.38,8201.18,0],[[7425,2],[7507,2]]], [7468,[114.844,10271.8,0],[[7429,2]]], [7469,[15.5265,10254.5,3.17891e-007],[[7429,2],[7508,2],[7509,2]]],
+[7470,[98.5519,10664.8,-9.53674e-007],[[7430,2],[7510,2],[7511,2]]], [7471,[938.877,17641.7,0],[[7432,2]]], [7472,[375.576,17001.5,0],[[7434,2],[7512,2]]], [7473,[26.2393,17424.7,1.90735e-006],[[7436,2]]], [7474,[4.33718,17313.4,-1.90735e-006],[[7437,2]]], [7475,[86.547,17048.7,0],[[7437,2],[7513,2]]],
+[7476,[2384.17,7137.29,0],[[7438,2],[7514,2],[7515,2]]], [7477,[2593.65,7123.14,0],[[7438,2],[7516,2]]], [7478,[2190.11,7107.5,0],[[7439,2],[7517,2]]], [7479,[1992.09,7157.41,-2.38419e-007],[[7439,2],[7518,2],[7479,2],[7519,2]]], [7480,[3043.26,6615.46,0],[[7441,2],[7443,2],[7483,2]]], [7481,[3192.28,7021.52,0],[[7442,2],[7520,2]]],
+[7482,[3068.78,6391.49,-7.94729e-008],[[7443,2],[7521,2],[7522,2]]], [7483,[2990.35,6587.98,4.76837e-007],[[7443,2],[7480,2],[7523,2],[7524,2]]], [7484,[2958.52,6457.61,0],[[7443,2]]], [7485,[3604.85,6347.31,0],[[7444,2],[7525,2]]], [7486,[3256.27,6207.78,0],[[7445,2],[7526,2],[7486,2],[7527,2]]], [7487,[5876.67,5208.36,0],[[7446,2]]],
+[7488,[6027.66,5086.16,0],[[7447,2],[7456,2]]], [7489,[6348.23,5418.91,0],[[7448,2],[7528,2],[7529,2]]], [7490,[5997.03,5575.55,-4.76837e-007],[[7449,2],[7530,2],[7490,2]]], [7491,[4864.26,5840.66,0],[[7450,2],[7531,2]]], [7492,[4869.66,5689.07,6.35783e-007],[[7450,2],[7532,2],[7533,2]]], [7493,[4936.51,6407.8,9.53674e-007],[[7452,2]]],
+[7494,[6349.94,5138.98,-1.90735e-006],[[7453,2]]], [7495,[6437.74,5396,-9.53674e-007],[[7454,2],[7534,2]]], [7496,[6133.91,4841.51,0],[[7455,2],[7535,2]]], [7497,[5977.18,4858.33,4.76837e-007],[[7456,2]]], [7498,[5844.94,4959.29,-4.76837e-007],[[7456,2],[7536,2]]], [7499,[7198.18,4302.79,0],[[7457,2]]],
+[7500,[7285.88,3796.07,9.53674e-007],[[7459,2],[7537,2]]], [7501,[782.977,9405.89,0],[[7460,2],[7538,2],[7539,2]]], [7502,[1222.29,8553.48,0],[[7461,2],[7540,2]]], [7503,[2403.01,8183.43,0],[[7462,2],[7541,2]]], [7504,[2230.47,7822.3,0],[[7465,2],[7542,2],[7543,2]]], [7505,[1620.93,7704.73,0],[[7466,2],[7544,2]]],
+[7506,[1535.13,7543.33,0],[[7466,2],[7545,2]]], [7507,[1026.28,8246.73,0],[[7467,2],[7546,2]]], [7508,[77.5337,10197.8,3.17891e-007],[[7469,2],[7508,2],[7547,2]]], [7509,[37.9365,10111,-3.17891e-007],[[7469,2],[7509,2],[7548,2]]], [7510,[120.143,10733.5,0],[[7470,2],[7510,2]]], [7511,[20.4258,10807.8,0],[[7470,2]]],
+[7512,[430.223,16861,1.90735e-006],[[7472,2],[7549,2]]], [7513,[99.1425,17011.2,-1.90735e-006],[[7475,2]]], [7514,[2413.47,7080.04,0],[[7476,2],[7550,2],[7514,2],[7551,2]]], [7515,[2325.87,7087.96,0],[[7476,2]]], [7516,[2609.68,7080.45,-3.17891e-007],[[7477,2],[7552,2],[7553,2]]], [7517,[2249.43,7042.69,-9.53674e-007],[[7478,2]]],
+[7518,[2005.21,7168.42,0],[[7479,2]]], [7519,[1918.18,7116.35,0],[[7479,2],[7554,2],[7555,2],[7556,2]]], [7520,[3100.74,6913.77,0],[[7481,2],[7557,2]]], [7521,[3123.94,6337.76,0],[[7482,2]]], [7522,[3040.94,6354.07,-5.96046e-008],[[7482,2],[7522,2],[7558,2]]], [7523,[2891.06,6681.85,0],[[7483,2],[7559,2]]],
+[7524,[2896.49,6558.71,0],[[7483,2],[7560,2]]], [7525,[3710.46,6260.19,0],[[7485,2],[7561,2]]], [7526,[3355.06,6133.46,-1.58946e-007],[[7486,2],[7562,2],[7563,2]]], [7527,[3244.44,6168.59,0],[[7486,2],[7564,2],[7565,2]]], [7528,[6384.77,5483.6,0],[[7489,2],[7529,2],[7528,2]]], [7529,[6391.44,5489.32,0],[[7528,2],[7489,2]]],
+[7530,[5984.29,5593.65,0],[[7530,2]]], [7531,[4790.83,5878.38,-3.57628e-007],[[7491,2],[7566,2],[7567,2],[7568,2]]], [7532,[4928.77,5591.93,0],[[7492,2],[7569,2]]], [7533,[4794.95,5652.39,0],[[7492,2],[7570,2],[7571,2]]], [7534,[6428.18,5462.78,0],[[7495,2]]], [7535,[6106.38,4747.75,0],[[7496,2],[7572,2]]],
+[7536,[5768.44,4973.02,-1.58946e-007],[[7498,2],[7573,2],[7574,2]]], [7537,[7286.58,3721,3.17891e-007],[[7500,2],[7575,2],[7576,2]]], [7538,[727.215,9356.17,0],[[7501,2],[7577,2]]], [7539,[815.497,9371.42,1.58946e-007],[[7501,2],[7539,2],[7578,2]]], [7540,[1110.42,8477.24,-9.53674e-007],[[7502,2],[7579,2]]], [7541,[2532.82,8125.75,0],[[7503,2],[7580,2]]],
+[7542,[2303.21,7887.2,0],[[7504,2]]], [7543,[2203.19,7849.64,0],[[7504,2]]], [7544,[1657.18,7762.36,0],[[7505,2],[7581,2]]], [7545,[1580.45,7473.11,0],[[7506,2],[7582,2]]], [7546,[985.393,8270.32,-1.90735e-007],[[7507,2],[7583,2],[7584,2],[7546,2],[7585,2],[7579,2]]], [7547,[162.098,10209,-9.53674e-007],[[7508,2]]],
+[7548,[172.069,9983.8,0],[[7509,2],[7586,2]]], [7549,[491.323,16768.5,0],[[7512,2],[7587,2]]], [7550,[2426.65,7093.28,-2.38419e-007],[[7514,2]]], [7551,[2342.62,7017.77,0],[[7514,2]]], [7552,[2550.67,7037.97,0],[[7516,2]]], [7553,[2679.2,6942.27,0],[[7516,2],[7588,2],[7589,2],[7590,2]]],
+[7554,[1797.31,7110.68,0],[[7519,2],[7591,2],[7592,2]]], [7555,[1948.36,7013.61,0],[[7519,2],[7593,2]]], [7556,[1812.17,6974.79,-9.53674e-007],[[7519,2],[7594,2]]], [7557,[2958.56,6892.09,0],[[7520,2],[7590,2]]], [7558,[3030.9,6326.84,0],[[7522,2]]], [7559,[2863.89,6692.34,1.58946e-007],[[7523,2],[7588,2],[7595,2],[7560,2]]],
+[7560,[2832.51,6561.97,0],[[7524,2],[7559,2],[7595,2]]], [7561,[3757.03,6123.48,4.76837e-007],[[7525,2],[7596,2]]], [7562,[3493.88,6108.59,-1.90735e-006],[[7526,2],[7597,2]]], [7563,[3385.67,6075.37,0],[[7526,2],[7598,2],[7599,2]]], [7564,[3262.25,6073.98,2.38419e-007],[[7527,2],[7600,2],[7601,2]]], [7565,[3208.55,6130.89,7.94729e-008],[[7527,2],[7602,2],[7603,2]]],
+[7566,[4735,5860.97,0],[[7531,2]]], [7567,[4723.87,5912.07,0],[[7531,2]]], [7568,[4748.38,5951.31,0],[[7531,2],[7606,2]]], [7569,[4999.6,5533.49,0],[[7532,2],[7607,2]]], [7570,[4803.5,5715.09,0],[[7533,2],[7570,2]]], [7571,[4625.09,5579.6,0],[[7533,2],[7608,2]]],
+[7572,[6107.42,4722.08,-7.94729e-008],[[7535,2],[7609,2],[7610,2]]], [7573,[5662.52,5097.2,9.53674e-007],[[7536,2],[7611,2]]], [7574,[5766.53,4937.69,0],[[7536,2]]], [7575,[7437.47,3631.57,0],[[7537,2],[7612,2]]], [7576,[7203.87,3689.71,0],[[7537,2],[7613,2],[7614,2]]], [7577,[714.776,9342.79,-9.53674e-007],[[7538,2]]],
+[7578,[831.929,9322.13,0],[[7539,2]]], [7579,[1037.11,8372.75,0],[[7540,2],[7546,2]]], [7580,[2588.94,8186.17,0],[[7541,2],[7615,2]]], [7581,[1734.12,7693.26,0],[[7544,2],[7616,2]]], [7582,[1610.36,7400.22,0],[[7545,2],[7617,2]]], [7583,[828.545,8361.31,0],[[7546,2],[7618,2]]],
+[7584,[989.513,8252.66,-4.76837e-007],[[7546,2]]], [7585,[923.72,8195.08,0],[[7546,2],[7619,2]]], [7586,[200.832,9827.38,0],[[7548,2],[7620,2]]], [7587,[512.852,16701.8,0],[[7549,2],[7621,2],[7622,2],[7623,2]]], [7588,[2764.87,6833.4,0],[[7553,2],[7559,2]]], [7589,[2561.75,6956.52,-4.76837e-007],[[7553,2],[7624,2]]],
+[7590,[2843.12,6941.94,9.53674e-007],[[7553,2],[7557,2]]], [7591,[1647.22,7093.85,0],[[7554,2],[7625,2]]], [7592,[1795.05,7062.73,-4.76837e-007],[[7554,2]]], [7593,[1976.33,6887.61,0],[[7555,2],[7626,2]]], [7594,[1738.46,6947.35,-1.19209e-007],[[7556,2],[7627,2],[7628,2],[7629,2]]], [7595,[2812.38,6569.95,-1.19209e-007],[[7559,2],[7560,2],[7630,2],[7631,2]]],
+[7596,[3723.35,6044.89,-1.58946e-007],[[7561,2],[7632,2],[7633,2]]], [7597,[3598.78,6028.4,9.53674e-007],[[7562,2],[7632,2]]], [7598,[3350.29,6040.25,0],[[7563,2]]], [7599,[3434.26,5963.9,0],[[7563,2],[7599,2],[7634,2]]], [7600,[3275.52,6016.06,0],[[7564,2]]], [7601,[3225.29,6031.12,0],[[7564,2]]],
+[7602,[3196.3,6127.21,0],[[7565,2]]], [7603,[3207.84,6089.71,-2.38419e-007],[[7565,2]]], [7604,[5923.98,5660.35,1.90735e-006],[[7530,2],[7605,2]]], [7605,[5890.32,5683.76,0],[[7604,2],[7605,2],[7635,2]]], [7606,[4741.1,5963.25,0],[[7568,2]]], [7607,[4993.53,5528.01,0],[[7569,2],[7636,2],[7637,2]]],
+[7608,[4490.3,5540.63,9.53674e-007],[[7571,2],[7638,2]]], [7609,[6014.4,4680.24,1.19209e-007],[[7609,2]]], [7610,[6097.76,4624.19,0],[[7572,2],[7639,2]]], [7611,[5599.69,5191.77,0],[[7573,2],[7640,2],[7641,2]]], [7612,[7564.4,3598.12,0],[[7575,2],[7642,2]]], [7613,[7172.89,3724.25,0],[[7576,2]]],
+[7614,[7186.66,3644.36,0],[[7576,2],[7643,2],[7644,2]]], [7615,[2676.84,8203.28,0],[[7580,2],[7645,2]]], [7616,[1750.17,7671.88,0],[[7581,2]]], [7617,[1634.36,7368.43,0],[[7582,2]]], [7618,[732.714,8446.56,0],[[7583,2],[7646,2]]], [7619,[861.32,8159.07,-9.53674e-007],[[7585,2],[7647,2]]],
+[7620,[216.416,9677.06,0],[[7586,2],[7648,2]]], [7621,[564.473,16774.3,-1.90735e-006],[[7587,2],[7621,2]]], [7622,[474.555,16690.2,1.90735e-006],[[7587,2]]], [7623,[424.444,16608.3,0],[[7587,2]]], [7624,[2483.85,6937.96,0],[[7589,2],[7649,2]]], [7625,[1517.1,7083.6,0],[[7591,2],[7650,2],[7651,2],[7652,2],[7653,2]]],
+[7626,[2007.14,6821.18,0],[[7593,2],[7654,2],[7655,2]]], [7627,[1695.17,7029.04,-4.76837e-007],[[7594,2]]], [7628,[1799.98,6810.87,4.76837e-007],[[7594,2],[7656,2]]], [7629,[1638.62,6890.92,0],[[7594,2],[7657,2],[7652,2],[7658,2]]], [7630,[2725.99,6592.31,0],[[7595,2],[7659,2],[7631,2]]], [7631,[2769.76,6522.91,-4.76837e-008],[[7595,2],[7630,2],[7631,2],[7660,2],[7661,2],[7662,2]]],
+[7632,[3657.35,5988.79,1.58946e-007],[[7596,2],[7597,2],[7663,2]]], [7633,[3845.96,5951.38,0],[[7596,2],[7664,2]]], [7634,[3421.31,5941.79,0],[[7599,2]]], [7635,[5883.96,5708.46,-9.53674e-007],[[7605,2]]], [7636,[4833.71,5489.78,0],[[7607,2],[7665,2]]], [7637,[5104.13,5518.11,0],[[7607,2],[7666,2],[7667,2]]],
+[7638,[4446.11,5539.44,2.38419e-007],[[7608,2],[7668,2],[7669,2],[7670,2]]], [7639,[6081.3,4598.08,0],[[7610,2]]], [7640,[5669.07,5242.86,-9.53674e-007],[[7611,2],[7671,2]]], [7641,[5411.29,5270.78,0],[[7611,2],[7672,2]]], [7642,[7704.39,3603.97,1.90735e-006],[[7612,2],[7673,2]]], [7643,[7144.14,3651.95,0],[[7614,2]]],
+[7644,[7162.05,3575.65,0],[[7614,2],[7644,2],[7674,2]]], [7645,[2792.57,8261.74,-1.90735e-006],[[7615,2],[7675,2]]], [7646,[709.856,8466.9,0],[[7618,2],[7676,2],[7677,2]]], [7647,[846.509,8158.02,0],[[7619,2]]], [7648,[232.253,9515.56,0],[[7620,2],[7678,2]]], [7649,[2410.52,6865.84,0],[[7624,2],[7679,2]]],
+[7650,[1524.09,7142.49,1.58946e-007],[[7625,2],[7680,2],[7681,2]]], [7651,[1422.62,7079.8,0],[[7625,2],[7682,2],[7683,2],[7653,2]]], [7652,[1479.56,6999.09,0],[[7625,2],[7629,2],[7657,2],[7684,2],[7682,2]]], [7653,[1432.16,7139.55,4.76837e-007],[[7625,2],[7651,2]]], [7654,[2062.78,6712.18,4.76837e-007],[[7626,2],[7685,2],[7654,2],[7686,2]]], [7655,[2055.38,6837.17,-6.35783e-007],[[7626,2],[7655,2],[7687,2]]],
+[7656,[1794.24,6789.72,3.17891e-007],[[7628,2],[7688,2],[7689,2]]], [7657,[1538.17,6975.98,0],[[7629,2],[7652,2],[7690,2]]], [7658,[1603.3,6815.07,0],[[7629,2],[7690,2]]], [7659,[2710.5,6595.04,0],[[7630,2],[7691,2]]], [7660,[2741.28,6500.16,-2.38419e-007],[[7631,2]]], [7661,[2697.17,6597.25,0],[[7631,2]]],
+[7662,[2817.89,6466.46,0],[[7631,2],[7692,2],[7693,2]]], [7663,[3560.16,5897.36,0],[[7632,2]]], [7664,[3960.62,5831.66,0],[[7633,2],[7694,2]]], [7665,[4750.53,5468.28,-6.35783e-007],[[7636,2],[7695,2],[7696,2]]], [7666,[5257.77,5451.94,0],[[7637,2],[7672,2]]], [7667,[5204.03,5632.94,0],[[7637,2],[7697,2]]],
+[7668,[4431.83,5466.26,0],[[7638,2],[7669,2],[7696,2]]], [7669,[4353.27,5480.04,0],[[7638,2],[7668,2],[7698,2],[7699,2]]], [7670,[4467.71,5626.92,0],[[7638,2],[7700,2],[7701,2]]], [7671,[5746.4,5404.47,0],[[7640,2],[7702,2]]], [7672,[5309.67,5377.24,0],[[7641,2],[7666,2]]], [7673,[7841.01,3662.63,0],[[7642,2],[7703,2]]],
+[7674,[7172.41,3529.56,6.35783e-007],[[7644,2],[7704,2],[7705,2]]], [7675,[2833.97,8304.16,9.53674e-007],[[7645,2]]], [7676,[626.325,8382.78,0],[[7646,2],[7706,2]]], [7677,[638.539,8677.11,0],[[7646,2],[7707,2]]], [7678,[237.703,9456.8,1.58946e-007],[[7648,2],[7708,2],[7709,2]]], [7679,[2434.78,6784.4,0],[[7649,2],[7710,2],[7711,2],[7712,2]]],
+[7680,[1642.8,7158.89,0],[[7650,2]]], [7681,[1522.76,7245.46,0],[[7650,2],[7713,2]]], [7682,[1373.65,7038.13,4.76837e-007],[[7651,2],[7652,2],[7684,2],[7714,2]]], [7683,[1354.2,7076.55,0],[[7651,2]]], [7684,[1415.3,7011.8,0],[[7652,2],[7682,2],[7715,2]]], [7685,[2162.9,6606.34,0],[[7654,2],[7716,2]]],
+[7686,[2017.91,6648.88,6.35783e-007],[[7654,2],[7717,2],[7718,2]]], [7687,[2113.18,6908.99,0],[[7655,2],[7719,2]]], [7688,[1869.21,6663.18,-2.38419e-007],[[7656,2],[7720,2],[7721,2],[7722,2],[7718,2]]], [7689,[1704.74,6737.35,0],[[7656,2]]], [7690,[1562.27,6802.49,-2.38419e-007],[[7657,2],[7658,2],[7723,2]]], [7691,[2622.38,6728.81,0],[[7659,2],[7710,2]]],
+[7692,[2839.53,6466.65,0],[[7662,2]]], [7693,[2889.46,6356.64,0],[[7662,2],[7724,2]]], [7694,[3945.63,5678.17,-1.19209e-007],[[7664,2],[7725,2],[7726,2],[7727,2]]], [7695,[4899.72,5404.26,-9.53674e-007],[[7665,2],[7728,2]]], [7696,[4562.76,5446.41,0],[[7665,2],[7668,2],[7729,2]]], [7697,[5311.16,5625.57,-1.90735e-006],[[7667,2],[7730,2]]],
+[7698,[4251.82,5533.15,1.58946e-007],[[7669,2],[7701,2],[7731,2]]], [7699,[4380.85,5392.88,-1.58946e-007],[[7669,2],[7732,2],[7733,2]]], [7700,[4579.49,5780.68,-1.58946e-007],[[7670,2],[7734,2],[7735,2]]], [7701,[4299.12,5656.15,-3.17891e-007],[[7670,2],[7698,2],[7736,2]]], [7702,[5724.5,5613.88,0],[[7671,2],[7737,2]]], [7703,[7959.19,3707.07,0],[[7673,2],[7738,2],[7739,2]]],
+[7704,[7175.18,3460.99,3.17891e-007],[[7674,2],[7740,2],[7741,2]]], [7705,[7138.17,3523.43,0],[[7674,2]]], [7706,[559.908,8324.13,0],[[7676,2],[7742,2]]], [7707,[542.909,8761,0],[[7677,2],[7743,2]]], [7708,[291.971,9283.34,0],[[7678,2],[7744,2],[7745,2]]], [7709,[156.507,9456.34,-3.17891e-007],[[7678,2],[7746,2],[7747,2]]],
+[7710,[2591.63,6800.83,9.53674e-007],[[7679,2],[7691,2]]], [7711,[2489.19,6703.69,0],[[7679,2],[7748,2]]], [7712,[2419.29,6665.07,0],[[7679,2],[7749,2]]], [7713,[1531.49,7252.61,0],[[7681,2],[7713,2],[7750,2]]], [7714,[1316.06,7017.3,0],[[7682,2],[7751,2],[7752,2]]], [7715,[1403.35,6952.43,0],[[7684,2]]],
+[7716,[2211.96,6564.44,-6.35783e-007],[[7685,2],[7717,2],[7753,2]]], [7717,[2061.97,6603.94,6.35783e-007],[[7686,2],[7716,2],[7754,2]]], [7718,[1947.91,6641.45,9.53674e-007],[[7718,2]]], [7719,[2132.29,7002.57,0],[[7687,2],[7755,2]]], [7720,[1836.3,6643.94,9.53674e-007],[[7688,2]]], [7721,[1832.02,6607.2,0],[[7721,2],[7756,2]]],
+[7722,[1933.08,6599.67,0],[[7688,2],[7718,2],[7757,2],[7754,2]]], [7723,[1571.47,6782.45,0],[[7690,2],[7758,2],[7759,2]]], [7724,[2916.86,6302.07,0],[[7693,2]]], [7725,[3800.48,5701.2,0],[[7694,2],[7760,2]]], [7726,[4001.18,5590.09,-1.19209e-007],[[7694,2],[7761,2],[7762,2],[7731,2],[7763,2]]], [7727,[3906.74,5617.1,0],[[7694,2],[7764,2],[7727,2],[7765,2],[7766,2]]],
+[7728,[5005.26,5316.45,0],[[7695,2],[7767,2]]], [7729,[4562.33,5345.7,0],[[7696,2],[7768,2]]], [7730,[5339.43,5644.59,-1.90735e-006],[[7697,2],[7769,2],[7770,2]]], [7731,[4169,5566,1.58946e-007],[[7698,2],[7726,2],[7762,2],[7771,2]]], [7732,[4306.99,5253.5,0],[[7699,2],[7772,2]]], [7733,[4468.62,5270.62,0],[[7699,2],[7773,2]]],
+[7734,[4621.36,5780.88,0],[[7700,2]]], [7735,[4567.94,5835.12,4.76837e-007],[[7700,2]]], [7736,[4339.31,5737.84,0],[[7701,2],[7774,2],[7775,2]]], [7737,[5693.2,5747.35,0],[[7702,2],[7776,2]]], [7738,[8063.23,3629.11,0],[[7703,2],[7777,2],[7778,2]]], [7739,[7913.83,3847.61,0],[[7703,2],[7779,2]]],
+[7740,[7232.94,3337.7,0],[[7704,2],[7780,2]]], [7741,[7101.77,3400.98,0],[[7704,2]]], [7742,[544.417,8316.73,-3.17891e-007],[[7706,2],[7781,2],[7782,2]]], [7743,[447.941,8861.86,0],[[7707,2],[7783,2]]], [7744,[405.315,9293.63,0],[[7708,2]]], [7745,[300.899,9123.63,-1.19209e-007],[[7708,2],[7784,2],[7785,2],[7783,2]]],
+[7746,[107.534,9468.52,0],[[7709,2],[7786,2],[7746,2],[7787,2]]], [7747,[133.54,9412.28,0],[[7709,2]]], [7748,[2505.76,6653.19,0],[[7711,2],[7748,2],[7749,2]]], [7749,[2431.08,6580.89,-3.17891e-007],[[7712,2],[7748,2],[7788,2],[7753,2]]], [7750,[1559.4,7297.91,0],[[7713,2]]], [7751,[1329.97,6958.08,0],[[7714,2],[7789,2],[7790,2]]],
+[7752,[1177.81,6983.56,0],[[7714,2],[7791,2],[7752,2],[7792,2],[7793,2],[7794,2]]], [7753,[2369.22,6538.6,-6.35783e-007],[[7716,2],[7749,2],[7753,2],[7788,2]]], [7754,[2008.09,6540.93,0],[[7717,2],[7722,2],[7757,2]]], [7755,[2092.72,7085.45,0],[[7719,2]]], [7756,[1768.41,6567.02,0],[[7721,2]]], [7757,[1981.14,6499.84,0],[[7722,2],[7754,2],[7795,2]]],
+[7758,[1611.85,6677.5,-2.98023e-008],[[7723,2],[7796,2],[7758,2],[7797,2]]], [7759,[1541.2,6739,0],[[7723,2]]], [7760,[3686.79,5711.08,2.38419e-007],[[7725,2],[7798,2]]], [7761,[3934.77,5511.11,0],[[7726,2],[7799,2],[7800,2]]], [7762,[4117.37,5593.61,0],[[7726,2],[7731,2],[7801,2]]], [7763,[3987.16,5477.41,0],[[7726,2],[7802,2]]],
+[7764,[3931.91,5645.05,0],[[7727,2]]], [7765,[3900.82,5526.91,0],[[7727,2]]], [7766,[3831.46,5531.22,0],[[7727,2]]], [7767,[5056.05,5257.41,-3.17891e-007],[[7728,2],[7803,2],[7804,2]]], [7768,[4547.44,5349.41,0],[[7729,2]]], [7769,[5402.02,5660.98,0],[[7730,2]]],
+[7770,[5328.58,5774.69,0],[[7730,2],[7805,2]]], [7771,[4156.37,5545.31,4.76837e-007],[[7731,2]]], [7772,[4299.41,5175.83,5.96046e-008],[[7732,2],[7806,2],[7772,2],[7807,2]]], [7773,[4524.5,5149.62,0],[[7733,2],[7808,2],[7809,2]]], [7774,[4384.57,5895.6,-3.17891e-007],[[7736,2],[7810,2],[7811,2]]], [7775,[4268.43,5868.21,0],[[7736,2]]],
+[7776,[5634.75,5876.29,0],[[7737,2],[7812,2]]], [7777,[8187.35,3689,0],[[7738,2],[7813,2]]], [7778,[8089.67,3509.07,0],[[7738,2],[7814,2],[7815,2]]], [7779,[7935.61,4010.35,0],[[7739,2],[7816,2],[7817,2],[7818,2],[7819,2]]], [7780,[7228.85,3306.21,-6.35783e-007],[[7740,2],[7820,2],[7821,2]]], [7781,[475.748,8328.41,9.53674e-007],[[7742,2]]],
+[7782,[527.977,8282.22,0],[[7742,2]]], [7783,[375.244,8996.49,0],[[7743,2],[7745,2]]], [7784,[404.005,9158.83,-3.17891e-007],[[7745,2],[7822,2],[7823,2]]], [7785,[147.377,9109.79,-9.53674e-007],[[7745,2],[7824,2]]], [7786,[5.53874,9487.98,4.76837e-007],[[7746,2]]], [7787,[42.5456,9437.76,0],[[7746,2]]],
+[7788,[2442.44,6476.97,1.05964e-007],[[7749,2],[7753,2],[7788,2],[7825,2],[7826,2],[7827,2],[7828,2]]], [7789,[1403.44,6876.86,4.76837e-007],[[7751,2],[7829,2]]], [7790,[1295.04,6893.49,-2.38419e-007],[[7751,2],[7790,2],[7830,2],[7831,2]]], [7791,[1236.2,6990.76,0],[[7752,2]]], [7792,[1042.49,6905.71,-4.76837e-007],[[7752,2],[7832,2],[7833,2],[7834,2],[7793,2]]], [7793,[1067.32,6970.37,0],[[7752,2],[7792,2],[7835,2],[7793,2],[7836,2]]],
+[7794,[1003.46,7074.41,0],[[7752,2],[7837,2]]], [7795,[2075.64,6333.81,0],[[7757,2],[7838,2]]], [7796,[1672.28,6609.88,0],[[7758,2],[7839,2],[7796,2],[7797,2]]], [7797,[1598.79,6604.04,0],[[7758,2],[7796,2],[7840,2]]], [7798,[3639.01,5696.07,-3.97364e-008],[[7760,2],[7841,2],[7842,2]]], [7799,[3907.51,5492.19,0],[[7761,2],[7799,2],[7800,2],[7843,2]]],
+[7800,[3917.96,5467.3,0],[[7761,2],[7799,2]]], [7801,[4133.66,5694.33,-4.76837e-007],[[7762,2],[7844,2]]], [7802,[4023.52,5385.1,0],[[7763,2]]], [7803,[5112.95,5134.27,0],[[7767,2],[7845,2],[7846,2],[7804,2],[7847,2]]], [7804,[5030.47,5201.57,0],[[7767,2],[7803,2],[7848,2],[7846,2]]], [7805,[5326.34,5803.63,0],[[7770,2]]],
+[7806,[4273.37,5166.98,5.96046e-008],[[7772,2],[7849,2],[7806,2]]], [7807,[4411.69,5038.05,2.38419e-007],[[7772,2],[7850,2]]], [7808,[4627.51,5014.74,1.58946e-007],[[7773,2],[7851,2],[7852,2]]], [7809,[4515.34,5098.55,0],[[7773,2]]], [7810,[4371.56,6028.37,9.53674e-007],[[7774,2],[7853,2]]], [7811,[4445.71,5907.93,1.58946e-007],[[7774,2],[7854,2],[7855,2]]],
+[7812,[5595.62,5917.85,0],[[7776,2]]], [7813,[8193.18,3772.58,0],[[7777,2],[7856,2]]], [7814,[8076.16,3406.61,6.35783e-007],[[7778,2],[7857,2],[7858,2]]], [7815,[8199.54,3569.97,0],[[7778,2],[7859,2]]], [7816,[7830.93,3963.28,-1.90735e-006],[[7779,2]]], [7817,[8009.45,4036.94,0],[[7779,2],[7860,2],[7861,2]]],
+[7818,[7963.95,4143.39,0],[[7779,2],[7862,2],[7863,2]]], [7819,[7813.04,4061.63,0],[[7779,2],[7864,2]]], [7820,[7171.66,3258.27,1.90735e-006],[[7780,2]]], [7821,[7265.17,3239.13,0],[[7780,2],[7865,2],[7866,2]]], [7822,[413.878,9184.15,0],[[7784,2]]], [7823,[501.883,9147.46,0],[[7784,2],[7867,2]]],
+[7824,[106.125,9103.08,3.17891e-007],[[7785,2],[7868,2],[7869,2]]], [7825,[2292.85,6401.31,-1.90735e-006],[[7788,2],[7870,2]]], [7826,[2368.67,6372.42,9.53674e-007],[[7788,2],[7871,2]]], [7827,[2549.1,6148.17,0],[[7788,2],[7828,2],[7872,2],[7873,2],[7874,2],[7827,2],[7875,2],[7876,2]]], [7828,[2595.47,6269.05,0],[[7788,2],[7827,2]]], [7829,[1458.65,6792.08,4.76837e-007],[[7789,2]]],
+[7830,[1225.11,6812.98,-3.17891e-007],[[7790,2],[7832,2],[7877,2]]], [7831,[1321.59,6821.38,0],[[7790,2],[7878,2],[7877,2]]], [7832,[1129.72,6834.31,0],[[7792,2],[7830,2]]], [7833,[1033.35,6797.37,0],[[7792,2],[7833,2]]], [7834,[798.082,6952.56,-1.36239e-007],[[7792,2],[7837,2],[7879,2],[7880,2],[7881,2]]], [7835,[1085.45,6971.19,0],[[7793,2],[7882,2],[7835,2]]],
+[7836,[990.839,6977.4,-9.53674e-007],[[7793,2]]], [7837,[967.875,7094.42,0],[[7794,2],[7834,2],[7883,2],[7837,2],[7884,2]]], [7838,[2224.43,6245.39,0],[[7795,2],[7885,2],[7886,2],[7870,2],[7887,2]]], [7839,[1692.62,6587.52,0],[[7796,2],[7888,2]]], [7840,[1480.24,6418.12,0],[[7797,2],[7889,2]]], [7841,[3633.52,5519.4,0],[[7798,2],[7890,2]]],
+[7842,[3605.51,5713.34,-3.97364e-008],[[7798,2],[7891,2],[7892,2]]], [7843,[3884.46,5485.96,0],[[7799,2]]], [7844,[4139.38,5795.14,-4.76837e-007],[[7801,2]]], [7845,[5231.56,5001.6,0],[[7803,2],[7893,2]]], [7846,[5055.32,5169.96,0],[[7803,2],[7804,2],[7846,2]]], [7847,[5083.83,5094.37,0],[[7803,2]]],
+[7848,[4937.9,5125.13,0],[[7804,2],[7894,2]]], [7849,[4225.84,5250.01,0],[[7806,2]]], [7850,[4459.03,4990.45,2.38419e-007],[[7807,2],[7895,2]]], [7851,[4749.19,4970.59,0],[[7808,2],[7896,2]]], [7852,[4641.6,4989.54,0],[[7852,2],[7897,2]]], [7853,[4325.62,6163.05,0],[[7810,2],[7898,2]]],
+[7854,[4484.8,5991.51,0],[[7811,2]]], [7855,[4517.19,5882.79,0],[[7811,2]]], [7856,[8217.78,3841.23,0],[[7813,2],[7899,2]]], [7857,[8088,3322.13,-4.76837e-007],[[7814,2],[7900,2],[7901,2],[7902,2]]], [7858,[8128.02,3434.63,0],[[7814,2]]], [7859,[8243.45,3632.67,0],[[7815,2],[7903,2],[7904,2]]],
+[7860,[8147.49,4132.48,0],[[7817,2],[7905,2]]], [7861,[8030.2,3959.33,0],[[7817,2],[7906,2]]], [7862,[7876.83,4256.17,0],[[7818,2],[7907,2],[7908,2]]], [7863,[8015.99,4202.04,0],[[7818,2],[7909,2]]], [7864,[7799.09,4049.81,0],[[7819,2]]], [7865,[7164.21,3204.57,0],[[7821,2],[7865,2]]],
+[7866,[7283.98,3111.93,0],[[7821,2],[7866,2]]], [7867,[560.665,9171.31,0],[[7823,2]]], [7868,[6.16108,9186.26,0],[[7824,2]]], [7869,[42.7644,9060.1,0],[[7824,2]]], [7870,[2335.98,6312.33,0],[[7825,2],[7838,2],[7887,2],[7871,2]]], [7871,[2373.63,6324.78,0],[[7826,2],[7870,2],[7910,2],[7886,2]]],
+[7872,[2760.02,6189.78,-2.38419e-007],[[7827,2],[7911,2]]], [7873,[2652.85,6088.18,0],[[7827,2]]], [7874,[2444.8,6122.41,0],[[7827,2],[7876,2],[7886,2]]], [7875,[2464.88,5986.63,0],[[7827,2],[7912,2],[7913,2]]], [7876,[2332.51,6033.63,0],[[7827,2],[7874,2],[7912,2],[7886,2],[7914,2],[7915,2]]], [7877,[1227.2,6773.25,0],[[7830,2],[7831,2],[7916,2]]],
+[7878,[1428.11,6756.73,4.76837e-007],[[7831,2]]], [7879,[689.516,6893.85,0],[[7834,2],[7917,2]]], [7880,[673.388,7028.74,0],[[7834,2],[7918,2]]], [7881,[428.144,6823.13,0],[[7834,2],[7919,2]]], [7882,[1093.92,6975.67,0],[[7835,2]]], [7883,[1005.64,7184.25,3.17891e-007],[[7837,2],[7920,2],[7921,2]]],
+[7884,[826.304,7180.77,0],[[7837,2],[7922,2],[7923,2]]], [7885,[2156.85,6178.13,-7.94729e-008],[[7838,2],[7924,2],[7925,2]]], [7886,[2316.5,6179.49,5.10897e-008],[[7838,2],[7871,2],[7874,2],[7876,2],[7886,2]]], [7887,[2342.79,6293.32,0],[[7870,2],[7838,2]]], [7888,[1731.88,6419.8,0],[[7839,2],[7926,2]]], [7889,[1452.02,6384.26,7.94729e-008],[[7840,2],[7889,2],[7927,2]]],
+[7890,[3622.87,5444.45,-5.96046e-008],[[7841,2],[7890,2],[7928,2],[7929,2]]], [7891,[3631.3,5766.33,0],[[7842,2]]], [7892,[3537.13,5595.37,0],[[7842,2],[7930,2]]], [7893,[5341.22,4934.4,0],[[7845,2],[7931,2]]], [7894,[4912.84,5042.43,0],[[7848,2],[7932,2]]], [7895,[4453.28,4958.85,0],[[7850,2]]],
+[7896,[4849.31,4863.44,0],[[7851,2],[7933,2]]], [7897,[4666.82,4955.96,-1.19209e-007],[[7852,2]]], [7898,[4322.56,6185.98,0],[[7853,2]]], [7899,[8236.33,3847.16,0],[[7856,2]]], [7900,[8143.5,3158.62,0],[[7857,2],[7934,2]]], [7901,[8207.18,3380.69,0],[[7857,2],[7935,2]]],
+[7902,[7995.62,3193.26,0],[[7857,2],[7936,2]]], [7903,[8332.89,3593.07,0],[[7859,2],[7903,2],[7937,2]]], [7904,[8314.98,3716.62,0],[[7859,2]]], [7905,[8222.34,4173.25,5.96046e-008],[[7860,2],[7938,2],[7939,2],[7940,2]]], [7906,[8121.29,3919.31,-9.53674e-007],[[7861,2],[7941,2]]], [7907,[7821.07,4247.56,0],[[7862,2],[7942,2],[7943,2]]],
+[7908,[7880.7,4373.74,-4.76837e-007],[[7862,2],[7944,2],[7945,2],[7946,2]]], [7909,[8054.08,4234.83,0],[[7863,2]]], [7910,[2352.98,6287.56,0],[[7871,2]]], [7911,[2837.54,6268.77,0],[[7872,2],[7947,2]]], [7912,[2408.28,5942.56,5.96046e-008],[[7875,2],[7876,2],[7913,2]]], [7913,[2439.19,5925.82,0],[[7875,2],[7912,2],[7913,2]]],
+[7914,[2232.71,6037.5,0],[[7876,2]]], [7915,[2222.56,6081.78,0],[[7876,2]]], [7916,[1189.06,6717.88,0],[[7877,2]]], [7917,[655.966,6879.1,0],[[7879,2]]], [7918,[552.521,7110.66,4.76837e-007],[[7880,2],[7948,2]]], [7919,[336.327,6777.61,1.19209e-007],[[7881,2],[7949,2],[7950,2],[7951,2]]],
+[7920,[940.125,7306.24,-6.35783e-007],[[7883,2],[7952,2],[7953,2]]], [7921,[1036.72,7214.84,3.17891e-007],[[7883,2],[7954,2],[7955,2]]], [7922,[725.309,7321.11,0],[[7884,2],[7956,2]]], [7923,[828.384,7231.28,0],[[7884,2]]], [7924,[2203.97,6088.14,0],[[7885,2]]], [7925,[2014.15,6156.19,0],[[7885,2],[7957,2]]],
+[7926,[1735.17,6350.08,1.19209e-007],[[7888,2]]], [7927,[1353.32,6334.05,1.58946e-007],[[7889,2],[7958,2],[7959,2]]], [7928,[3697.53,5434.01,0],[[7928,2]]], [7929,[3580.53,5422.35,2.38419e-007],[[7890,2]]], [7930,[3523.2,5480.44,4.76837e-007],[[7892,2],[7960,2]]], [7931,[5404.85,4912.99,3.17891e-007],[[7931,2],[7961,2],[7962,2]]],
+[7932,[4884.3,5011.75,0],[[7894,2]]], [7933,[4945.4,4747.64,0],[[7896,2],[7963,2]]], [7934,[8099.47,3024.36,0],[[7900,2],[7964,2]]], [7935,[8308.59,3435.5,0],[[7901,2],[7965,2],[7966,2]]], [7936,[7888.78,3166.4,0],[[7902,2],[7967,2]]], [7937,[8361.01,3593.69,0],[[7903,2]]],
+[7938,[8273.33,4103.7,2.38419e-007],[[7905,2]]], [7939,[8283.78,4173.16,-1.58946e-007],[[7905,2],[7968,2],[7969,2]]], [7940,[8260.35,4226.46,0],[[7905,2],[7970,2],[7971,2]]], [7941,[8228.58,3931.74,0],[[7906,2],[7941,2]]], [7942,[7761.11,4306.55,1.90735e-006],[[7907,2],[7972,2]]], [7943,[7712.69,4201.46,0],[[7907,2]]],
+[7944,[7824.21,4493.6,-3.17891e-007],[[7908,2],[7973,2],[7974,2]]], [7945,[7950.57,4472.14,0],[[7908,2],[7945,2]]], [7946,[7969.46,4350.14,0],[[7908,2],[7975,2]]], [7947,[2850.11,6275.29,4.76837e-007],[[7911,2]]], [7948,[465.93,7139.91,0],[[7918,2],[7976,2]]], [7949,[315.069,6866.16,0],[[7919,2],[7949,2],[7977,2],[7978,2]]],
+[7950,[242.074,6726.44,0],[[7919,2],[7979,2],[7980,2],[7981,2]]], [7951,[368.333,6666.45,0],[[7919,2],[7982,2],[7983,2]]], [7952,[836.892,7376.06,0],[[7920,2],[7984,2]]], [7953,[952.831,7419.18,0],[[7920,2],[7985,2],[7986,2]]], [7954,[1159.84,7322.93,0],[[7921,2]]], [7955,[1123.85,7157.72,0],[[7921,2],[7987,2],[7988,2]]],
+[7956,[674.529,7383.37,3.17891e-007],[[7922,2],[7989,2],[7990,2]]], [7957,[1945.38,6184.14,0],[[7925,2],[7957,2],[7991,2]]], [7958,[1427.08,6293.37,4.76837e-007],[[7927,2],[7992,2]]], [7959,[1291.68,6298.63,-1.58946e-007],[[7927,2],[7993,2],[7994,2]]], [7960,[3506.77,5467.57,0],[[7930,2]]], [7961,[5377.86,4854.16,0],[[7931,2],[7995,2]]],
+[7962,[5477.83,4845.1,0],[[7931,2],[7996,2],[7997,2]]], [7963,[4991.17,4694.18,0],[[7933,2],[7998,2]]], [7964,[8126.29,2975.89,0],[[7934,2],[7999,2],[8000,2]]], [7965,[8387.24,3399.62,3.17891e-007],[[7935,2],[8001,2],[8002,2]]], [7966,[8394.19,3480.45,1.19209e-007],[[7935,2],[7966,2],[8003,2]]], [7967,[7833.34,3235.48,0],[[7936,2],[8004,2]]],
+[7968,[8311.49,4135.15,0],[[7939,2],[7968,2],[8005,2]]], [7969,[8326.13,4207.04,0],[[7939,2]]], [7970,[8272.14,4268,0],[[7940,2],[8006,2],[7970,2],[8007,2]]], [7971,[8237.19,4307.77,0],[[7940,2]]], [7972,[7665.68,4354.29,0],[[7942,2],[8008,2]]], [7973,[7874.96,4566.23,2.38419e-007],[[7944,2]]],
+[7974,[7749.41,4614.46,2.38419e-007],[[7944,2]]], [7975,[7986.74,4348.02,0],[[7946,2],[7975,2],[8009,2]]], [7976,[384.561,7094.46,0],[[7948,2],[8010,2]]], [7977,[291.559,6919.15,0],[[7949,2]]], [7978,[311.298,6930.46,-1.58946e-007],[[7949,2],[8011,2],[7978,2]]], [7979,[202.134,6862.62,0],[[7950,2],[8012,2],[8013,2]]],
+[7980,[179.28,6705.71,0],[[7950,2],[8014,2],[8015,2],[8016,2]]], [7981,[289.364,6537.1,0],[[7950,2],[8017,2]]], [7982,[415.335,6580.38,0],[[7951,2],[8018,2],[8019,2],[8020,2]]], [7983,[406.227,6683.95,-9.53674e-007],[[7951,2]]], [7984,[860.081,7502.08,0],[[7952,2]]], [7985,[928.611,7443.72,0],[[7953,2]]],
+[7986,[970.591,7456.14,0],[[7953,2]]], [7987,[1190.82,7200.65,0],[[7955,2]]], [7988,[1164.12,7110.8,3.17891e-007],[[7955,2],[8021,2],[7988,2]]], [7989,[607.47,7413.08,3.17891e-007],[[7956,2],[8022,2],[8023,2]]], [7990,[739.62,7454.59,0],[[7956,2]]], [7991,[1896.22,6226.24,0],[[7957,2]]],
+[7992,[1444.15,6292.44,0],[[7958,2]]], [7993,[1291.01,6252.39,-1.58946e-007],[[7959,2],[8024,2],[8025,2]]], [7994,[1262.93,6333.16,0],[[7959,2]]], [7995,[5349.24,4838.36,0],[[7961,2]]], [7996,[5473.9,4678.04,0],[[7962,2],[8026,2]]], [7997,[5539.06,4822.21,-1.58946e-007],[[7962,2],[8027,2],[8028,2]]],
+[7998,[5033.6,4645.66,0],[[7963,2],[8029,2]]], [7999,[8176.33,2951.61,0],[[7964,2],[8030,2],[8031,2]]], [8000,[8030.11,2941.53,0],[[7964,2],[8032,2]]], [8001,[8448.05,3334.01,0],[[7965,2],[8002,2]]], [8002,[8483.61,3375.02,0],[[7965,2],[8001,2],[8002,2],[8033,2]]], [8003,[8386.09,3518.31,0],[[7966,2]]],
+[8004,[7689.55,3234.45,-1.90735e-006],[[7967,2],[8034,2]]], [8005,[8367.49,4068.68,5.96046e-008],[[7968,2]]], [8006,[8278.39,4255.7,0],[[7970,2],[8035,2]]], [8007,[8262.25,4323.42,0],[[7970,2]]], [8008,[7635.39,4337.3,-1.90735e-006],[[7972,2]]], [8009,[8007.79,4292.95,0],[[7975,2]]],
+[8010,[266.816,7089.67,0],[[7976,2],[8036,2]]], [8011,[295.58,6990.08,0],[[7978,2]]], [8012,[220.861,6873.98,0],[[7979,2]]], [8013,[161.778,6995.98,-4.76837e-007],[[7979,2],[8036,2]]], [8014,[173.646,6649.68,6.35783e-007],[[7980,2],[8037,2],[8038,2]]], [8015,[7.93468,6653.86,0],[[7980,2]]],
+[8016,[46.0425,6739.17,0],[[7980,2],[8039,2]]], [8017,[282.488,6510.91,-2.38419e-007],[[7981,2],[8037,2],[8040,2],[8041,2]]], [8018,[426.726,6465.34,0],[[7982,2],[8020,2]]], [8019,[550.796,6523.27,1.19209e-007],[[7982,2],[8042,2],[8019,2],[8043,2]]], [8020,[423.36,6475.32,0],[[8018,2],[7982,2]]], [8021,[1277.44,7098.91,0],[[7988,2],[8044,2],[8021,2],[8045,2]]],
+[8022,[570.511,7391.23,0],[[7989,2]]], [8023,[526.679,7455.72,-3.8147e-007],[[7989,2],[8023,2],[8046,2],[8047,2]]], [8024,[1261.73,6237.62,-7.94729e-008],[[7993,2],[8048,2],[8049,2]]], [8025,[1403.81,6235.38,0],[[7993,2],[8050,2]]], [8026,[5498.79,4556.1,0],[[7996,2],[8051,2]]], [8027,[5565.86,4838.9,5.96046e-008],[[8027,2],[8052,2]]],
+[8028,[5572.35,4756.01,-3.97364e-008],[[7997,2],[8053,2],[8054,2]]], [8029,[5113.45,4649.88,-4.76837e-007],[[7998,2]]], [8030,[8260.41,2833.37,6.35783e-007],[[7999,2],[8055,2],[8056,2]]], [8031,[8326.33,3056.93,1.90735e-006],[[7999,2],[8057,2]]], [8032,[7944.05,2882.46,0],[[8000,2],[8058,2]]], [8033,[8555.9,3401.32,0],[[8002,2]]],
+[8034,[7597.62,3138.55,0],[[8004,2],[8059,2]]], [8035,[8285.8,4255.9,0],[[8006,2]]], [8036,[171.389,7076.39,1.58946e-007],[[8010,2],[8013,2],[8060,2]]], [8037,[176.251,6584.47,3.17891e-007],[[8014,2],[8017,2],[8061,2]]], [8038,[29.58,6622.56,9.53674e-007],[[8014,2],[8062,2]]], [8039,[33.9255,6740.84,9.53674e-007],[[8016,2]]],
+[8040,[313.809,6419.78,0],[[8017,2],[8063,2],[8064,2]]], [8041,[212.928,6483.42,1.19209e-007],[[8017,2],[8065,2],[8066,2],[8041,2]]], [8042,[587.021,6454.86,-1.58946e-007],[[8019,2],[8067,2],[8068,2]]], [8043,[608.34,6578.58,0],[[8019,2]]], [8044,[1307.21,7039.41,-9.53674e-007],[[8021,2]]], [8045,[1280.71,7265.27,0],[[8021,2],[8069,2]]],
+[8046,[415.627,7571.2,9.53674e-007],[[8023,2],[8070,2]]], [8047,[474.295,7384.91,0],[[8023,2],[8071,2]]], [8048,[1185.81,6279.95,0],[[8024,2],[8072,2],[8073,2]]], [8049,[1210.49,6100.44,0],[[8024,2],[8074,2]]], [8050,[1507.35,6236.13,0],[[8025,2]]], [8051,[5511.74,4542.26,0],[[8026,2],[8051,2],[8075,2],[8076,2]]],
+[8052,[5674.13,4793.95,0],[[8027,2],[8077,2]]], [8053,[5569.59,4730.58,0],[[8028,2]]], [8054,[5600.82,4737.03,2.38419e-007],[[8028,2]]], [8055,[8306.42,2851.65,6.35783e-007],[[8030,2],[8078,2],[8079,2]]], [8056,[8304.12,2657.19,0],[[8030,2],[8080,2],[8081,2]]], [8057,[8412.02,3117.24,9.53674e-007],[[8031,2],[8082,2]]],
+[8058,[7908.94,2803.58,9.53674e-007],[[8032,2],[8083,2]]], [8059,[7582.07,3046.8,3.17891e-007],[[8034,2],[8084,2],[8085,2]]], [8060,[81.0375,7136.7,0],[[8036,2],[8086,2],[8087,2]]], [8061,[83.2313,6483.88,0],[[8037,2],[8088,2]]], [8062,[8.28122,6620.91,-9.53674e-007],[[8038,2]]], [8063,[257.671,6308.89,0],[[8040,2],[8089,2]]],
+[8064,[360.063,6419.79,4.76837e-007],[[8040,2]]], [8065,[137.399,6406.18,0],[[8041,2]]], [8066,[228.007,6490.75,3.17891e-007],[[8041,2]]], [8067,[517.938,6364.84,-1.58946e-007],[[8042,2],[8090,2],[8091,2],[8067,2]]], [8068,[657.765,6479.14,0],[[8042,2]]], [8069,[1270.35,7307.42,0],[[8045,2]]],
+[8070,[378.184,7595.99,0],[[8046,2],[8092,2],[8093,2]]], [8071,[420.248,7383.34,1.90735e-006],[[8047,2],[8094,2]]], [8072,[1146.21,6325.09,0],[[8048,2]]], [8073,[1184.92,6403.76,0],[[8048,2],[8095,2]]], [8074,[1094.16,6011.61,-2.38419e-007],[[8049,2],[8096,2]]], [8075,[5554.79,4558.18,-2.38419e-007],[[8051,2]]],
+[8076,[5453.33,4512.7,-5.96046e-008],[[8051,2],[8097,2],[8098,2],[8099,2],[8076,2]]], [8077,[5695.46,4770.8,0],[[8052,2]]], [8078,[8353.84,2967.1,0],[[8055,2],[8100,2]]], [8079,[8461,2774.3,0],[[8055,2],[8101,2]]], [8080,[8379.26,2540.6,0],[[8056,2],[8102,2]]], [8081,[8214.21,2579.2,-6.35783e-007],[[8056,2],[8103,2],[8104,2]]],
+[8082,[8490.67,3175.61,0],[[8057,2],[8105,2]]], [8083,[7857.33,2730.89,9.53674e-007],[[8058,2],[8106,2]]], [8084,[7469.05,2994.37,0],[[8059,2],[8107,2]]], [8085,[7572.68,2974.97,0],[[8059,2],[8108,2]]], [8086,[109.323,7179.08,-9.53674e-007],[[8060,2]]], [8087,[9.21829,7162.37,0],[[8060,2]]],
+[8088,[28.4029,6445.25,0],[[8061,2]]], [8089,[213.093,6281.01,0],[[8063,2],[8109,2],[8110,2]]], [8090,[601.015,6231.67,0],[[8067,2],[8111,2]]], [8091,[508.313,6382.9,-2.38419e-007],[[8067,2]]], [8092,[332.928,7723.81,0],[[8070,2],[8112,2]]], [8093,[217.935,7563.36,0],[[8070,2],[8113,2]]],
+[8094,[346.141,7396.06,-1.90735e-006],[[8071,2],[8114,2]]], [8095,[1153.71,6399.81,0],[[8073,2]]], [8096,[1023,5978.18,1.19209e-007],[[8074,2],[8115,2],[8116,2],[8117,2],[8096,2],[8118,2]]], [8097,[5420.39,4460.37,0],[[8076,2]]], [8098,[5353.71,4509.68,7.94729e-008],[[8076,2],[8119,2],[8120,2]]], [8099,[5488.82,4514.15,-7.94729e-008],[[8076,2]]],
+[8100,[8430.31,3051.88,0],[[8078,2],[8121,2]]], [8101,[8546.69,2751.96,6.35783e-007],[[8079,2],[8122,2],[8123,2]]], [8102,[8445.71,2410.13,4.76837e-007],[[8080,2],[8124,2]]], [8103,[8212.67,2465.86,0],[[8081,2],[8125,2]]], [8104,[8112.52,2492.8,1.90735e-006],[[8081,2],[8126,2]]], [8105,[8561.8,3256.44,1.58946e-007],[[8082,2],[8127,2],[8128,2]]],
+[8106,[7770.23,2695.56,0],[[8083,2],[8129,2]]], [8107,[7451.06,2980.95,0],[[8084,2],[8130,2],[8131,2]]], [8108,[7570.15,2912.58,9.53674e-007],[[8085,2],[8132,2]]], [8109,[180.094,6315.05,0],[[8089,2]]], [8110,[170.809,6144.71,0],[[8089,2]]], [8111,[618.248,6146.98,-6.35783e-007],[[8090,2],[8111,2],[8133,2]]],
+[8112,[232.511,7844.93,-9.53674e-007],[[8092,2],[8134,2]]], [8113,[182.52,7519.24,2.38419e-007],[[8093,2],[8113,2],[8135,2],[8136,2]]], [8114,[320.065,7411.09,9.53674e-007],[[8094,2],[8136,2],[8137,2],[8114,2]]], [8115,[851.297,5844.6,0],[[8096,2],[8138,2]]], [8116,[1114.25,5835.57,0],[[8096,2],[8139,2],[8140,2],[8141,2]]], [8117,[1025.91,6014.04,0],[[8096,2]]],
+[8118,[947.878,6060.96,0],[[8096,2],[8142,2]]], [8119,[5387.49,4477.96,1.19209e-007],[[8098,2]]], [8120,[5307.33,4508.13,-2.38419e-007],[[8098,2]]], [8121,[8523.88,3086.88,0],[[8100,2],[8143,2]]], [8122,[8695.9,2687.12,0],[[8101,2],[8144,2]]], [8123,[8649.26,2818.94,1.90735e-006],[[8101,2],[8145,2]]],
+[8124,[8470.31,2323.99,1.58946e-007],[[8102,2],[8146,2],[8147,2]]], [8125,[8150.17,2371.5,-9.53674e-007],[[8103,2],[8148,2]]], [8126,[8023.18,2455.46,0],[[8104,2],[8149,2]]], [8127,[8525.21,3292.82,0],[[8105,2],[8150,2],[8127,2]]], [8128,[8584.95,3267.23,0],[[8105,2]]], [8129,[7683.61,2673.1,0],[[8106,2],[8151,2]]],
+[8130,[7324.91,3017.67,0],[[8107,2],[8152,2]]], [8131,[7454.99,2940.13,0],[[8107,2],[8153,2],[8154,2],[8155,2]]], [8132,[7583.92,2849.75,0],[[8108,2]]], [8133,[621.579,6072.52,0],[[8111,2],[8156,2],[8157,2],[8158,2]]], [8134,[115.401,7925.88,0],[[8112,2],[8159,2]]], [8135,[103.674,7495.9,0],[[8113,2],[8160,2]]],
+[8136,[261.202,7454.3,0],[[8113,2],[8114,2]]], [8137,[327.234,7403.41,9.53674e-007],[[8114,2]]], [8138,[802.314,5807.37,1.90735e-007],[[8115,2],[8161,2],[8162,2],[8163,2],[8164,2]]], [8139,[1036.9,5765.02,0],[[8116,2]]], [8140,[1177.56,5882.94,0],[[8116,2]]], [8141,[1230.84,5755.75,0],[[8116,2],[8165,2]]],
+[8142,[942.619,6118.46,0],[[8118,2],[8166,2]]], [8143,[8603.24,3189.48,9.53674e-007],[[8121,2],[8167,2]]], [8144,[8791.32,2647.42,0],[[8122,2],[8168,2]]], [8145,[8728.51,2848.07,0],[[8123,2],[8169,2]]], [8146,[8389.12,2226.55,0],[[8124,2],[8170,2],[8171,2]]], [8147,[8598.86,2245.41,0],[[8124,2],[8172,2]]],
+[8148,[8064.62,2365.18,-9.53674e-007],[[8125,2],[8148,2]]], [8149,[7972.23,2498.84,0],[[8126,2],[8173,2],[8174,2],[8175,2]]], [8150,[8536.38,3320.21,0],[[8127,2]]], [8151,[7640.4,2665.34,0],[[8129,2]]], [8152,[7276.8,2995.51,-4.76837e-007],[[8130,2]]], [8153,[7369.16,2941.38,0],[[8131,2]]],
+[8154,[7454.82,2925.18,0],[[8131,2]]], [8155,[7550.36,2866.54,9.53674e-007],[[8131,2],[8176,2]]], [8156,[533.302,5975.5,0],[[8133,2],[8177,2]]], [8157,[596.661,5896.5,-1.90735e-006],[[8133,2],[8178,2]]], [8158,[736.628,6021.94,0],[[8133,2],[8179,2]]], [8159,[54.9327,7940.74,-9.53674e-007],[[8134,2]]],
+[8160,[62.4885,7486.11,0],[[8135,2]]], [8161,[791.302,5950.45,0],[[8138,2],[8179,2]]], [8162,[851.021,5785.26,0],[[8138,2],[8162,2],[8180,2]]], [8163,[641.094,5781.36,0],[[8138,2],[8178,2]]], [8164,[728.468,5714.27,0],[[8138,2],[8181,2],[8180,2],[8182,2]]], [8165,[1323.37,5735.33,-9.53674e-007],[[8141,2],[8183,2]]],
+[8166,[883.241,6177.53,0],[[8142,2],[8184,2]]], [8167,[8703.6,3172.29,0],[[8143,2]]], [8168,[8890.92,2581.92,-1.27157e-006],[[8144,2],[8185,2],[8186,2]]], [8169,[8815.71,2949.54,0],[[8145,2],[8187,2]]], [8170,[8360.26,2196.59,0],[[8146,2]]], [8171,[8303.04,2230.04,0],[[8146,2],[8171,2]]],
+[8172,[8620.11,2210.16,0],[[8147,2]]], [8173,[7924.05,2433.85,0],[[8149,2],[8188,2]]], [8174,[7961.55,2563.72,0],[[8149,2],[8174,2],[8189,2]]], [8175,[7936.79,2548.54,0],[[8149,2]]], [8176,[7530.32,2803.59,1.90735e-006],[[8155,2],[8190,2]]], [8177,[480.55,5894.11,0],[[8156,2],[8191,2]]],
+[8178,[506.478,5804.27,0],[[8157,2],[8163,2],[8178,2],[8192,2],[8193,2]]], [8179,[748.772,6025.5,0],[[8158,2],[8161,2],[8194,2]]], [8180,[852.884,5693.19,0],[[8162,2],[8164,2],[8195,2],[8196,2],[8180,2],[8197,2]]], [8181,[762.303,5630.02,0],[[8164,2],[8182,2],[8198,2]]], [8182,[630.619,5596.05,0],[[8164,2],[8181,2],[8199,2],[8198,2]]], [8183,[1339.9,5729.19,-3.17891e-007],[[8165,2],[8200,2],[8201,2]]],
+[8184,[903.071,6233.45,0],[[8166,2]]], [8185,[9018.19,2602.74,0],[[8168,2],[8202,2]]], [8186,[8894.29,2493.81,0],[[8168,2],[8203,2],[8204,2]]], [8187,[8815.66,2962.08,1.58946e-007],[[8169,2],[8187,2],[8205,2]]], [8188,[7930.76,2397.79,0],[[8173,2]]], [8189,[7881.98,2584.4,0],[[8174,2],[8206,2]]],
+[8190,[7478.48,2787.24,0],[[8176,2]]], [8191,[475.247,5868.83,0],[[8177,2]]], [8192,[469.297,5704.24,0],[[8178,2]]], [8193,[442.253,5804.27,2.38419e-007],[[8178,2]]], [8194,[793.405,6119.45,0],[[8179,2],[8207,2]]], [8195,[968.677,5755.92,-9.53674e-007],[[8180,2],[8208,2]]],
+[8196,[861.913,5654.14,0],[[8180,2],[8196,2],[8209,2]]], [8197,[782.311,5632.5,0],[[8180,2]]], [8198,[653.21,5574.4,0],[[8182,2],[8199,2],[8181,2],[8213,2]]], [8199,[580.681,5576.45,-1.90735e-007],[[8182,2],[8199,2],[8210,2],[8198,2],[8211,2],[8212,2]]], [8200,[1449.33,5667.29,0],[[8183,2],[8214,2],[8215,2]]], [8201,[1330.26,5807.8,0],[[8183,2],[8201,2],[8216,2]]],
+[8202,[9098.14,2616.76,0],[[8185,2],[8217,2]]], [8203,[8932.74,2407.81,0],[[8186,2],[8218,2]]], [8204,[8814.01,2403.25,1.90735e-006],[[8186,2],[8219,2]]], [8205,[8793.72,3009.19,4.76837e-007],[[8187,2]]], [8206,[7857.45,2579.19,0],[[8189,2]]], [8207,[802.008,6196.33,0],[[8194,2],[8220,2]]],
+[8208,[996.156,5671.82,0],[[8195,2],[8221,2]]], [8209,[906.913,5595.9,0],[[8196,2],[8222,2],[8209,2],[8223,2],[8221,2]]], [8210,[612.651,5544.44,0],[[8199,2],[8224,2]]], [8211,[447.693,5433.78,0],[[8199,2],[8225,2]]], [8212,[518.634,5619.49,0],[[8199,2],[8212,2],[8226,2],[8227,2]]], [8213,[618.013,5549.37,3.17891e-007],[[8213,2]]],
+[8214,[1560.16,5599.41,0],[[8200,2],[8228,2],[8229,2]]], [8215,[1474.67,5767.08,0],[[8200,2],[8230,2]]], [8216,[1344.4,5842.93,-9.53674e-007],[[8201,2]]], [8217,[9170.06,2682.2,0],[[8202,2],[8231,2],[8232,2]]], [8218,[8997.13,2333.18,0],[[8203,2],[8233,2]]], [8219,[8758.7,2253.83,-2.38419e-007],[[8204,2],[8234,2],[8235,2],[8236,2]]],
+[8220,[804.29,6226.69,0],[[8207,2]]], [8221,[1011.28,5615.62,-3.17891e-007],[[8208,2],[8209,2],[8237,2]]], [8222,[894.448,5591.84,-3.17891e-007],[[8209,2]]], [8223,[858.17,5525.21,0],[[8209,2]]], [8224,[592.81,5488.06,0],[[8210,2],[8238,2],[8239,2]]], [8225,[379.273,5321.51,-1.19209e-007],[[8211,2],[8240,2],[8239,2],[8241,2]]],
+[8226,[477.158,5681.19,9.53674e-007],[[8212,2]]], [8227,[450.885,5609.75,0],[[8212,2],[8242,2]]], [8228,[1625.24,5603.65,0],[[8214,2],[8243,2],[8244,2]]], [8229,[1508.48,5505.66,0],[[8214,2],[8245,2]]], [8230,[1432.7,5810.88,0],[[8215,2]]], [8231,[9218.77,2797.45,0],[[8217,2],[8246,2],[8247,2]]],
+[8232,[9317.73,2712.47,3.17891e-007],[[8217,2],[8248,2],[8249,2]]], [8233,[9046.19,2306.71,0],[[8218,2],[8250,2]]], [8234,[8691.02,2174.88,0],[[8219,2],[8251,2]]], [8235,[8731.77,2131.51,0],[[8219,2],[8235,2]]], [8236,[8848.48,2131.35,-1.90735e-006],[[8219,2],[8252,2]]], [8237,[1071.96,5563.89,-3.17891e-007],[[8221,2],[8253,2],[8254,2]]],
+[8238,[672.889,5472.25,0],[[8224,2]]], [8239,[456.577,5367.38,-2.38419e-007],[[8224,2],[8225,2]]], [8240,[281.843,5258.54,0],[[8225,2],[8241,2],[8255,2]]], [8241,[360.294,5227.72,0],[[8225,2],[8240,2],[8241,2],[8256,2],[8257,2]]], [8242,[412.172,5594.07,0],[[8227,2]]], [8243,[1672.02,5762.25,0],[[8228,2],[8258,2]]],
+[8244,[1762.11,5498.7,4.76837e-007],[[8228,2],[8259,2]]], [8245,[1575.95,5418.97,9.53674e-007],[[8229,2],[8260,2]]], [8246,[9189.68,2837.32,2.38419e-007],[[8231,2]]], [8247,[9249.62,2863.03,2.38419e-007],[[8231,2]]], [8248,[9345.62,2793.46,0],[[8232,2],[8261,2],[8262,2]]], [8249,[9373.3,2670.62,6.35783e-007],[[8232,2],[8263,2],[8264,2]]],
+[8250,[9089.83,2317.54,0],[[8233,2],[8265,2]]], [8251,[8644.75,2162.69,0],[[8234,2]]], [8252,[8855.89,2092.93,-3.17891e-007],[[8236,2],[8266,2],[8267,2]]], [8253,[1063.53,5504.38,9.53674e-007],[[8237,2]]], [8254,[1155.78,5482.13,0],[[8237,2],[8268,2],[8269,2]]], [8255,[204.814,5248.73,0],[[8240,2],[8270,2],[8271,2]]],
+[8256,[348.369,5178.7,-6.35783e-007],[[8241,2],[8272,2],[8273,2]]], [8257,[393.033,5198.19,0],[[8241,2],[8274,2]]], [8258,[1765.16,5802.06,3.17891e-007],[[8243,2],[8275,2],[8276,2]]], [8259,[1867.29,5387.87,4.76837e-007],[[8244,2],[8277,2]]], [8260,[1598.33,5392.77,3.17891e-007],[[8245,2],[8278,2],[8279,2]]], [8261,[9350.28,2856.58,1.58946e-007],[[8248,2],[8280,2],[8281,2]]],
+[8262,[9398.18,2876.28,1.58946e-007],[[8248,2],[8262,2],[8282,2]]], [8263,[9443.14,2749.14,0],[[8249,2],[8283,2]]], [8264,[9510.97,2545.86,0],[[8249,2],[8284,2]]], [8265,[9114.16,2332.56,-3.8147e-006],[[8250,2]]], [8266,[8919.47,2024.62,-9.53674e-007],[[8252,2],[8285,2]]], [8267,[8814.51,2068.49,9.53674e-007],[[8252,2]]],
+[8268,[1164,5429.13,-1.58946e-007],[[8254,2],[8286,2],[8287,2]]], [8269,[1203.15,5481.92,0],[[8254,2]]], [8270,[74.5097,5332.07,-2.38419e-007],[[8255,2],[8288,2]]], [8271,[101.415,5166.57,0],[[8255,2],[8289,2]]], [8272,[383.205,5188.62,0],[[8256,2]]], [8273,[308.762,5068.32,4.76837e-007],[[8256,2],[8290,2],[8273,2],[8291,2]]],
+[8274,[462.856,5124.02,3.17891e-007],[[8257,2],[8292,2],[8293,2]]], [8275,[1781.79,5924.7,-7.15256e-007],[[8258,2],[8294,2],[8295,2],[8296,2]]], [8276,[1937.5,5795.77,9.53674e-007],[[8258,2],[8297,2]]], [8277,[1887.07,5376.95,1.19209e-007],[[8259,2],[8298,2],[8277,2],[8299,2]]], [8278,[1500.1,5383.81,0],[[8260,2],[8300,2]]], [8279,[1693.54,5269.36,-2.38419e-007],[[8260,2],[8301,2]]],
+[8280,[9367.53,2884.69,0],[[8261,2]]], [8281,[9322.85,2881.44,0],[[8261,2]]], [8282,[9500.42,2870.33,0],[[8262,2]]], [8283,[9498.29,2803.67,0],[[8263,2],[8302,2],[8283,2]]], [8284,[9542.86,2532.71,0],[[8264,2],[8303,2],[8304,2]]], [8285,[8959.1,1995.55,0],[[8266,2]]],
+[8286,[1036.91,5391.39,0],[[8268,2],[8305,2]]], [8287,[1204.74,5359.62,0],[[8268,2],[8306,2],[8307,2]]], [8288,[56.6474,5357.45,-7.94729e-008],[[8270,2],[8308,2],[8309,2]]], [8289,[80.0813,5162.65,-1.58946e-007],[[8271,2],[8310,2],[8311,2]]], [8290,[263.476,5051.06,0],[[8273,2],[8312,2],[8290,2],[8313,2]]], [8291,[298.055,4987.07,0],[[8273,2],[8314,2],[8315,2]]],
+[8292,[466.221,4993.4,0],[[8274,2],[8315,2]]], [8293,[593.919,5045.09,0],[[8274,2],[8316,2]]], [8294,[1930.67,5851.86,0],[[8275,2]]], [8295,[1779.39,5968,-6.35783e-007],[[8275,2],[8317,2],[8318,2]]], [8296,[1728.84,5938.43,-6.35783e-007],[[8275,2],[8319,2],[8320,2]]], [8297,[1955.98,5779.56,6.35783e-007],[[8276,2],[8321,2],[8322,2]]],
+[8298,[1843.51,5286.51,0],[[8277,2],[8323,2]]], [8299,[1948.19,5354.48,-3.17891e-007],[[8277,2],[8324,2],[8325,2]]], [8300,[1397.97,5315.61,0],[[8278,2],[8326,2]]], [8301,[1705.22,5256.18,0],[[8279,2]]], [8302,[9535.72,2783.13,0],[[8283,2]]], [8303,[9651.95,2372.24,0],[[8284,2],[8327,2]]],
+[8304,[9623.09,2601.57,-4.76837e-007],[[8284,2]]], [8305,[930.229,5319.78,0],[[8286,2],[8328,2]]], [8306,[1305.33,5259.24,0],[[8287,2],[8326,2],[8329,2]]], [8307,[1171.34,5263.38,0],[[8287,2]]], [8308,[42.9175,5420.26,0],[[8288,2],[8330,2],[8308,2]]], [8309,[6.85209,5351.55,2.38419e-007],[[8288,2]]],
+[8310,[47.8915,5060.76,1.90735e-006],[[8289,2],[8331,2]]], [8311,[17.8545,5154.14,0],[[8289,2]]], [8312,[253.158,5135.05,0],[[8290,2],[8332,2]]], [8313,[165.628,5006.51,0],[[8290,2],[8331,2]]], [8314,[247.826,4942.19,-6.35783e-007],[[8291,2],[8314,2],[8333,2]]], [8315,[415.871,4958.18,0],[[8291,2],[8292,2],[8334,2]]],
+[8316,[701.911,5031.39,-6.35783e-007],[[8293,2],[8335,2],[8336,2]]], [8317,[1753.63,6023.79,0],[[8295,2],[8337,2],[8338,2]]], [8318,[1826.39,5972.83,0],[[8295,2]]], [8319,[1633.4,5856.4,0],[[8296,2],[8339,2]]], [8320,[1631.55,6009,0],[[8296,2],[8340,2]]], [8321,[1928.73,5736.15,0],[[8297,2]]],
+[8322,[2088.54,5776.03,0],[[8297,2],[8341,2],[8322,2]]], [8323,[1809,5250.51,0],[[8298,2]]], [8324,[2079.69,5383.03,-9.53674e-007],[[8299,2],[8342,2]]], [8325,[2023,5262.41,0],[[8299,2]]], [8326,[1381.15,5232.49,0],[[8300,2],[8306,2],[8329,2]]], [8327,[9669.97,2359.84,0],[[8303,2],[8327,2],[8343,2],[8344,2]]],
+[8328,[906.819,5289.63,0],[[8305,2]]], [8329,[1372.96,5222.05,0],[[8326,2],[8306,2],[8329,2],[8356,2]]], [8330,[17.8877,5539.74,0],[[8308,2]]], [8331,[82.5623,4997.11,0],[[8310,2],[8313,2],[8345,2]]], [8332,[263.581,5179.01,-9.53674e-007],[[8312,2]]], [8333,[170.286,4867.03,-1.90735e-006],[[8314,2],[8346,2]]],
+[8334,[384.898,4842.27,0],[[8315,2],[8347,2]]], [8335,[765.866,4989.45,0],[[8316,2],[8348,2],[8349,2]]], [8336,[618.675,4926.85,0],[[8316,2],[8350,2]]], [8337,[1804.34,6104.08,-1.58946e-007],[[8317,2],[8351,2],[8352,2]]], [8338,[1661.76,6070,0],[[8317,2],[8338,2]]], [8339,[1539.48,5880.24,-4.76837e-007],[[8319,2],[8353,2]]],
+[8340,[1575.79,6093.41,0],[[8320,2],[8354,2]]], [8341,[2112.33,5736.66,0],[[8322,2]]], [8342,[2217.07,5321.73,0],[[8324,2],[8355,2]]], [8343,[9714.45,2293.28,0],[[8327,2],[8357,2],[8358,2]]], [8344,[9708.02,2444.97,0],[[8327,2]]], [8345,[19.8478,4955.36,0],[[8331,2]]],
+[8346,[147.351,4786.61,0],[[8333,2],[8359,2]]], [8347,[407.036,4775.63,1.90735e-006],[[8334,2],[8360,2]]], [8348,[846.484,4866.26,0],[[8335,2],[8361,2]]], [8349,[868.152,4996.19,-9.53674e-007],[[8335,2],[8362,2]]], [8350,[522.328,4854.22,-1.90735e-006],[[8336,2],[8360,2]]], [8351,[1754.75,6158.49,0],[[8337,2]]],
+[8352,[1926.1,6040.47,0],[[8337,2],[8363,2]]], [8353,[1455.56,5946.8,0],[[8339,2],[8364,2]]], [8354,[1485.63,6112.42,0],[[8340,2],[8364,2]]], [8355,[2273.41,5304.33,-9.53674e-008],[[8342,2],[8365,2],[8366,2],[8367,2],[8368,2]]], [8356,[1422.22,5173.44,0],[[8329,2],[8369,2],[8370,2],[8356,2]]], [8357,[9745.83,2293.07,3.17891e-007],[[8343,2],[8371,2],[8372,2]]],
+[8358,[9604.13,2202.79,0],[[8343,2],[8373,2]]], [8359,[114.017,4706.1,-1.27157e-006],[[8346,2],[8359,2],[8374,2]]], [8360,[434.317,4756.1,-4.76837e-007],[[8347,2],[8350,2],[8375,2],[8376,2]]], [8361,[880.819,4818.52,4.76837e-007],[[8348,2],[8362,2],[8377,2],[8378,2]]], [8362,[882.374,4997.81,-6.35783e-007],[[8349,2],[8361,2],[8379,2]]], [8363,[2015.29,5969.99,0],[[8352,2],[8380,2]]],
+[8364,[1405.51,6059.34,-4.76837e-007],[[8353,2],[8354,2]]], [8365,[2181.21,5255.39,4.76837e-007],[[8355,2],[8381,2],[8382,2],[8383,2]]], [8366,[2297.59,5212.49,0],[[8355,2]]], [8367,[2380.37,5291.88,0],[[8355,2]]], [8368,[2388.47,5353.94,-4.76837e-007],[[8355,2],[8384,2],[8385,2]]], [8369,[1502,5074.54,0],[[8356,2],[8386,2],[8387,2]]],
+[8370,[1409.32,5197.39,-3.17891e-007],[[8356,2]]], [8371,[9848.25,2208.49,-4.76837e-007],[[8357,2],[8388,2]]], [8372,[9822.37,2385.75,0],[[8357,2],[8389,2]]], [8373,[9502.31,2164.71,0],[[8358,2],[8390,2]]], [8374,[135.41,4673.65,6.35783e-007],[[8359,2],[8374,2],[8391,2]]], [8375,[342.32,4675.68,1.90735e-006],[[8360,2],[8392,2]]],
+[8376,[495.655,4722.12,0],[[8360,2]]], [8377,[875.889,4754.48,0],[[8361,2],[8393,2],[8394,2]]], [8378,[1051.59,4804.44,0],[[8361,2],[8395,2]]], [8379,[885.382,5094.3,0],[[8362,2],[8379,2],[8396,2]]], [8380,[2024.5,5985.11,-1.19209e-007],[[8363,2]]], [8381,[2261.88,5163.39,0],[[8365,2]]],
+[8382,[2159.36,5229.28,0],[[8365,2],[8382,2],[8397,2]]], [8383,[2108.55,5242.55,4.76837e-007],[[8365,2]]], [8384,[2421.81,5373.21,-3.17891e-007],[[8368,2],[8398,2],[8399,2]]], [8385,[2451.17,5309.16,0],[[8368,2]]], [8386,[1522.51,4970.86,0],[[8369,2],[8400,2]]], [8387,[1584.92,5136.63,0],[[8369,2]]],
+[8388,[9978.97,2190.78,-1.58946e-007],[[8371,2],[8401,2],[8402,2]]], [8389,[9844.13,2393.43,4.76837e-007],[[8372,2]]], [8390,[9486.7,2144.58,0],[[8373,2],[8390,2],[8403,2]]], [8391,[212.938,4622.58,1.90735e-006],[[8374,2],[8404,2]]], [8392,[312.645,4627.76,1.90735e-006],[[8375,2],[8404,2]]], [8393,[910.341,4670.83,-3.17891e-007],[[8377,2],[8405,2],[8406,2]]],
+[8394,[835.265,4680.54,9.53674e-007],[[8377,2],[8407,2]]], [8395,[1189.94,4882.89,0],[[8378,2],[8408,2]]], [8396,[925.026,5147.95,0],[[8379,2]]], [8397,[2154.21,5204.95,0],[[8382,2]]], [8398,[2494.7,5299.02,0],[[8384,2]]], [8399,[2518.93,5380.96,1.90735e-007],[[8384,2],[8409,2],[8410,2],[8411,2],[8412,2]]],
+[8400,[1541.61,4952.26,0],[[8386,2],[8413,2]]], [8401,[10018.3,2309.56,0],[[8388,2],[8401,2]]], [8402,[9994.28,2149.68,1.58946e-007],[[8388,2],[8414,2],[8415,2]]], [8403,[9522.33,2007.67,0],[[8390,2],[8416,2]]], [8404,[273.407,4605.59,-1.90735e-006],[[8391,2],[8392,2]]], [8405,[1051.27,4707.01,0],[[8393,2],[8417,2]]],
+[8406,[921.466,4608.7,0],[[8393,2],[8418,2],[8419,2]]], [8407,[784.854,4621.09,2.38419e-007],[[8394,2],[8407,2],[8420,2],[8421,2]]], [8408,[1214.73,4898.41,0],[[8395,2],[8422,2],[8423,2]]], [8409,[2573.79,5299.7,2.38419e-007],[[8399,2]]], [8410,[2574.69,5347.99,-3.17891e-007],[[8399,2],[8424,2],[8410,2]]], [8411,[2528.99,5440.76,3.17891e-007],[[8399,2],[8425,2],[8426,2]]],
+[8412,[2579.93,5397.37,0],[[8399,2]]], [8413,[1560.72,4889.06,0],[[8400,2],[8427,2],[8422,2]]], [8414,[10017.8,2131.72,0],[[8402,2],[8428,2],[8414,2]]], [8415,[9919.66,2072.76,0],[[8402,2],[8429,2]]], [8416,[9510.64,1967.3,0],[[8403,2],[8430,2],[8431,2]]], [8417,[1166.13,4707.45,0],[[8405,2],[8432,2]]],
+[8418,[998.827,4490.85,0],[[8406,2],[8433,2]]], [8419,[847.469,4466.56,1.90735e-006],[[8406,2],[8434,2]]], [8420,[723.88,4572.65,0],[[8407,2],[8435,2]]], [8421,[659.048,4589.74,1.90735e-006],[[8407,2],[8436,2]]], [8422,[1361.47,4886.79,0],[[8408,2],[8413,2]]], [8423,[1161.67,4979.56,0],[[8408,2],[8437,2]]],
+[8424,[2591.46,5322.59,0],[[8410,2]]], [8425,[2472.82,5483.56,0],[[8411,2],[8438,2],[8439,2]]], [8426,[2555.69,5487.57,4.76837e-007],[[8411,2]]], [8427,[1605.33,4865.4,0],[[8413,2]]], [8428,[10100.8,2160.61,0],[[8414,2]]], [8429,[9911.81,2027.39,-1.58946e-007],[[8415,2],[8440,2],[8441,2]]],
+[8430,[9466.46,1960.36,0],[[8416,2],[8442,2],[8443,2]]], [8431,[9550.14,1884.57,0],[[8416,2],[8444,2]]], [8432,[1189.81,4700.6,0],[[8417,2]]], [8433,[1041.11,4421.8,6.35783e-007],[[8418,2],[8445,2],[8446,2]]], [8434,[787.132,4332.19,0],[[8419,2],[8447,2]]], [8435,[717.611,4558.15,0],[[8420,2]]],
+[8436,[603.093,4547.77,0],[[8421,2],[8448,2]]], [8437,[1083.87,5007.85,0],[[8423,2],[8449,2]]], [8438,[2437.91,5530.89,0],[[8425,2],[8450,2],[8451,2]]], [8439,[2500.16,5521.25,0],[[8425,2]]], [8440,[9891.75,1886.72,0],[[8429,2],[8452,2]]], [8441,[9982.33,2042.6,2.38419e-007],[[8429,2]]],
+[8442,[9355.45,1993.48,-9.53674e-007],[[8430,2],[8453,2]]], [8443,[9424.95,1903.64,0],[[8430,2],[8443,2]]], [8444,[9594.14,1827.69,0],[[8431,2]]], [8445,[1093.75,4439.52,-1.90735e-006],[[8433,2],[8445,2],[8454,2]]], [8446,[1038.91,4311.66,0],[[8433,2],[8455,2]]], [8447,[752.552,4254.84,-3.17891e-007],[[8434,2],[8456,2],[8457,2]]],
+[8448,[542.882,4511.53,0],[[8436,2]]], [8449,[1047.87,5029.33,-3.17891e-007],[[8437,2],[8458,2],[8459,2]]], [8450,[2367.06,5633.69,-2.38419e-007],[[8438,2],[8460,2],[8461,2],[8462,2]]], [8451,[2480.75,5604.93,0],[[8438,2]]], [8452,[9873.05,1816,3.57628e-007],[[8440,2],[8452,2],[8463,2],[8464,2]]], [8453,[9337.17,1973.44,-3.17891e-007],[[8442,2],[8465,2],[8466,2]]],
+[8454,[1202.43,4507.82,0],[[8445,2],[8467,2],[8468,2],[8469,2]]], [8455,[1048.09,4233.93,0],[[8446,2],[8470,2],[8471,2]]], [8456,[720.815,4083.86,6.35783e-007],[[8447,2],[8456,2],[8472,2]]], [8457,[690.262,4257.96,0],[[8447,2],[8473,2]]], [8458,[1004.7,5134.92,0],[[8449,2],[8474,2]]], [8459,[1026.86,4995.29,9.53674e-007],[[8449,2]]],
+[8460,[2321.37,5754.99,0],[[8450,2],[8460,2]]], [8461,[2263.26,5712.35,4.76837e-007],[[8450,2],[8475,2]]], [8462,[2414.8,5663.12,0],[[8450,2]]], [8463,[9770.91,1769.18,0],[[8452,2],[8476,2]]], [8464,[9834.28,1824.15,0],[[8452,2]]], [8465,[9370.8,1898.04,0],[[8453,2],[8465,2]]],
+[8466,[9268.51,1911.53,0],[[8453,2],[8477,2]]], [8467,[1181.75,4544.29,0],[[8454,2],[8469,2],[8467,2],[8478,2]]], [8468,[1324.14,4571.33,0],[[8454,2],[8479,2]]], [8469,[1173.8,4537.98,0],[[8467,2],[8489,2],[8454,2],[8469,2]]], [8470,[1093.72,4269.14,-6.35783e-007],[[8455,2],[8480,2],[8481,2]]], [8471,[1035.15,4024.45,4.76837e-008],[[8455,2],[8482,2],[8483,2],[8484,2],[8485,2]]],
+[8472,[653.084,3899.75,4.76837e-007],[[8456,2],[8486,2],[8487,2],[8488,2]]], [8473,[633.464,4246.39,0],[[8457,2]]], [8474,[962.53,5161.16,0],[[8458,2]]], [8475,[2235.79,5777.92,4.76837e-007],[[8461,2]]], [8476,[9737.46,1770.54,0],[[8463,2]]], [8477,[9212.47,1861.81,0],[[8466,2]]],
+[8478,[1235.03,4604.84,0],[[8467,2],[8490,2]]], [8479,[1426.81,4642.42,7.94729e-008],[[8468,2],[8491,2],[8492,2]]], [8480,[1194.32,4361.27,0],[[8470,2],[8493,2]]], [8481,[1202.94,4242.32,0],[[8470,2],[8494,2]]], [8482,[1103.88,4030.62,0],[[8471,2]]], [8483,[896.809,3987,0],[[8471,2],[8487,2]]],
+[8484,[1114.01,4012.31,0],[[8471,2]]], [8485,[1029.72,3937.86,0],[[8471,2],[8495,2],[8496,2]]], [8486,[597.701,3899.06,0],[[8472,2],[8488,2],[8497,2]]], [8487,[791.542,3947.84,0],[[8472,2],[8483,2]]], [8488,[615.644,3866.95,-4.76837e-007],[[8472,2],[8486,2],[8488,2],[8498,2]]], [8489,[1177.43,4525.07,0],[[8469,2]]],
+[8490,[1249.58,4623.77,0],[[8478,2]]], [8491,[1452.07,4590.18,0],[[8479,2]]], [8492,[1477.76,4682.36,0],[[8479,2],[8499,2],[8500,2]]], [8493,[1225.34,4362.65,-3.17891e-007],[[8480,2],[8501,2],[8502,2]]], [8494,[1239.86,4229.04,0],[[8481,2]]], [8495,[1108.8,3963.24,0],[[8485,2]]],
+[8496,[1016.43,3852.5,0],[[8485,2],[8503,2],[8496,2],[8504,2],[8505,2]]], [8497,[417.397,3941.53,0],[[8486,2],[8506,2],[8507,2],[8497,2]]], [8498,[581.926,3822.34,9.53674e-007],[[8488,2],[8508,2]]], [8499,[1587.6,4694.89,0],[[8492,2],[8509,2],[8510,2]]], [8500,[1553.98,4628.43,0],[[8492,2]]], [8501,[1256.94,4339.08,-3.17891e-007],[[8493,2],[8511,2],[8512,2]]],
+[8502,[1289.58,4383.6,0],[[8493,2],[8513,2],[8514,2]]], [8503,[1000.87,3867.29,-1.19209e-007],[[8496,2]]], [8504,[1004.77,3755.94,0],[[8496,2],[8515,2],[8516,2]]], [8505,[1073.65,3830.71,0],[[8496,2]]], [8506,[331.151,3932.02,0],[[8497,2],[8517,2]]], [8507,[429.39,3938.58,0],[[8497,2]]],
+[8508,[534.222,3712.8,0],[[8498,2],[8518,2]]], [8509,[1593.65,4623.12,0],[[8499,2]]], [8510,[1636.49,4678.16,0],[[8499,2],[8519,2],[8520,2]]], [8511,[1313.43,4289.46,0],[[8501,2],[8521,2]]], [8512,[1313.21,4334.5,9.53674e-007],[[8501,2]]], [8513,[1338.02,4454.75,2.38419e-007],[[8502,2]]],
+[8514,[1372.66,4352.59,0],[[8502,2],[8514,2]]], [8515,[991.31,3660.45,4.76837e-007],[[8504,2],[8522,2]]], [8516,[1052.44,3698.23,1.78814e-007],[[8504,2],[8523,2],[8524,2],[8525,2]]], [8517,[289.537,3942.77,0],[[8506,2]]], [8518,[463.069,3644.38,0],[[8508,2],[8526,2]]], [8519,[1704.1,4688.46,0],[[8510,2],[8527,2],[8528,2],[8529,2],[8530,2]]],
+[8520,[1648.79,4616.83,0],[[8510,2]]], [8521,[1340.88,4270.59,0],[[8511,2]]], [8522,[986.322,3648.93,1.58946e-007],[[8515,2],[8522,2],[8531,2]]], [8523,[1082.05,3739.33,2.38419e-007],[[8516,2]]], [8524,[1171.18,3615.4,0],[[8516,2],[8532,2],[8533,2]]], [8525,[1024.52,3650.28,0],[[8516,2]]],
+[8526,[374.44,3580.97,0],[[8518,2],[8534,2]]], [8527,[1688.44,4762.07,0],[[8519,2]]], [8528,[1742.51,4768.57,0],[[8519,2]]], [8529,[1745.87,4690.54,0],[[8519,2]]], [8530,[1734.69,4619.68,-3.17891e-007],[[8519,2],[8535,2],[8530,2]]], [8531,[900.822,3602.11,0],[[8522,2],[8536,2]]],
+[8532,[1283.17,3546.57,3.17891e-007],[[8524,2],[8537,2],[8532,2]]], [8533,[1205.66,3649.15,0],[[8524,2]]], [8534,[314.512,3470.59,0],[[8526,2],[8538,2],[8539,2]]], [8535,[1781.71,4603.67,0],[[8530,2],[8540,2],[8541,2],[8542,2],[8543,2]]], [8536,[884.023,3580.09,-3.17891e-007],[[8531,2],[8536,2],[8544,2]]], [8537,[1353.55,3477.94,0],[[8532,2],[8545,2],[8546,2]]],
+[8538,[218.486,3458.44,-1.90735e-006],[[8534,2],[8547,2]]], [8539,[342.363,3306.67,0],[[8534,2],[8548,2],[8549,2]]], [8540,[1840.22,4663.22,0],[[8535,2]]], [8541,[1723.59,4574.58,0],[[8535,2]]], [8542,[1853.16,4579.37,-2.38419e-007],[[8535,2]]], [8543,[1790.4,4570.22,0],[[8535,2]]],
+[8544,[804.997,3541.29,0],[[8536,2],[8550,2]]], [8545,[1384.78,3436.19,-3.17891e-007],[[8537,2],[8551,2],[8552,2]]], [8546,[1398.66,3508.44,0],[[8537,2]]], [8547,[141.287,3438.46,6.35783e-007],[[8538,2],[8553,2],[8554,2]]], [8548,[495.113,3323.03,0],[[8539,2],[8555,2]]], [8549,[306.251,3229.97,-4.76837e-007],[[8539,2],[8556,2],[8549,2],[8557,2],[8558,2]]],
+[8550,[786.667,3511.75,-9.53674e-007],[[8544,2]]], [8551,[1438.93,3490.73,0],[[8545,2]]], [8552,[1409.64,3403.42,0],[[8545,2],[8559,2],[8560,2]]], [8553,[33.8012,3354.47,0],[[8547,2],[8561,2]]], [8554,[96.2125,3539.02,0],[[8547,2],[8562,2]]], [8555,[592.575,3416.89,0],[[8548,2],[8563,2]]],
+[8556,[281.694,3223.32,0],[[8549,2],[8564,2]]], [8557,[343.506,3101.23,0],[[8549,2],[8565,2]]], [8558,[284.174,3218.92,0],[[8549,2],[8558,2]]], [8559,[1464.56,3267.07,0],[[8552,2],[8566,2]]], [8560,[1473.22,3453.61,0],[[8552,2]]], [8561,[18.9936,3344.67,0],[[8553,2]]],
+[8562,[126.998,3613.67,0],[[8554,2],[8567,2]]], [8563,[655.86,3476.4,-9.53674e-007],[[8555,2]]], [8564,[222.651,3186.07,0],[[8556,2],[8568,2],[8569,2]]], [8565,[391.589,3025.85,0],[[8557,2],[8570,2]]], [8566,[1484.45,3184.62,0],[[8559,2],[8571,2],[8572,2]]], [8567,[100.019,3701.39,0],[[8562,2],[8573,2]]],
+[8568,[238.87,3196.05,6.35783e-007],[[8564,2]]], [8569,[166.193,3141.11,-9.53674e-007],[[8564,2]]], [8570,[395.132,2925.57,9.53674e-007],[[8565,2],[8574,2]]], [8571,[1572.2,3030.19,0],[[8566,2],[8575,2]]], [8572,[1476.89,3178.13,0],[[8566,2]]], [8573,[42.9165,3732.01,0],[[8567,2],[8576,2]]],
+[8574,[422.11,2843.23,0],[[8570,2],[8577,2]]], [8575,[1679.11,2917.76,0],[[8571,2],[8578,2]]], [8576,[4.61758,3735.17,0],[[8573,2]]], [8577,[438.356,2707.76,0],[[8574,2],[8579,2]]], [8578,[1740.02,2853.24,3.17891e-007],[[8575,2],[8580,2],[8581,2]]], [8579,[450.349,2627.28,3.17891e-007],[[8577,2],[8582,2],[8579,2]]],
+[8580,[1588.88,2810.75,6.35783e-007],[[8578,2],[8580,2]]], [8581,[1839.18,2738.34,0],[[8578,2],[8583,2],[8584,2],[8585,2],[8586,2]]], [8582,[452.34,2587.73,4.76837e-007],[[8579,2],[8587,2],[8588,2]]], [8583,[1699.65,2681.35,0],[[8581,2],[8589,2]]], [8584,[1907.79,2811.13,-4.76837e-008],[[8581,2],[8590,2],[8591,2],[8592,2],[8593,2]]], [8585,[1768.21,2881.8,0],[[8581,2],[8594,2]]],
+[8586,[1901.46,2632.79,0],[[8581,2],[8595,2],[8596,2]]], [8587,[369.67,2485.96,0],[[8582,2],[8597,2]]], [8588,[515.684,2521.03,0],[[8582,2],[8598,2]]], [8589,[1601.91,2620.76,0],[[8583,2],[8599,2]]], [8590,[1969.45,2816.14,0],[[8584,2],[8600,2]]], [8591,[1893.73,2881.74,2.38419e-007],[[8584,2]]],
+[8592,[1912.7,2915.95,0],[[8584,2]]], [8593,[1970.5,2872.83,0],[[8584,2]]], [8594,[1717.91,2917.94,0],[[8585,2],[8594,2]]], [8595,[1944.29,2516.75,0],[[8586,2],[8601,2],[8596,2]]], [8596,[1997.52,2572.7,2.38419e-007],[[8586,2],[8595,2],[8602,2],[8603,2]]], [8597,[342.799,2451.22,0],[[8587,2],[8604,2],[8605,2]]],
+[8598,[532.923,2465.49,-3.17891e-007],[[8588,2],[8606,2],[8607,2]]], [8599,[1570.9,2456.96,0],[[8589,2],[8608,2]]], [8600,[2005.55,2834.58,-1.58946e-007],[[8590,2],[8609,2],[8610,2]]], [8601,[1965.61,2361.58,0],[[8595,2],[8611,2]]], [8602,[2154.16,2558.91,0],[[8596,2],[8612,2]]], [8603,[2074.13,2725.77,0],[[8596,2],[8613,2]]],
+[8604,[262.043,2414.94,0],[[8597,2],[8614,2]]], [8605,[426.229,2356.51,0],[[8597,2],[8615,2]]], [8606,[612.082,2377.42,0],[[8598,2],[8616,2]]], [8607,[514.574,2363.09,0],[[8598,2],[8617,2]]], [8608,[1523.13,2360.56,0],[[8599,2],[8618,2]]], [8609,[2024.9,2871.59,-2.38419e-007],[[8600,2]]],
+[8610,[2092.46,2837.98,0],[[8600,2]]], [8611,[1973.19,2282.15,-4.76837e-007],[[8601,2],[8619,2],[8611,2],[8620,2],[8621,2]]], [8612,[2192.98,2561.39,0],[[8602,2],[8622,2],[8623,2]]], [8613,[2152.91,2809.41,0],[[8603,2],[8624,2],[8625,2]]], [8614,[330.43,2292.31,0],[[8604,2],[8626,2]]], [8615,[476.035,2244.6,2.38419e-007],[[8605,2],[8627,2]]],
+[8616,[644.091,2338.47,0],[[8606,2],[8628,2],[8629,2]]], [8617,[553.891,2251.44,0],[[8607,2],[8617,2]]], [8618,[1455.59,2261.06,0],[[8608,2],[8630,2]]], [8619,[1972.04,2328.65,0],[[8611,2]]], [8620,[2108.54,2237.91,0],[[8620,2]]], [8621,[1954.06,2093.7,0],[[8611,2],[8631,2]]],
+[8622,[2304.09,2510.99,0],[[8612,2],[8632,2],[8633,2]]], [8623,[2314.41,2671.48,0],[[8612,2],[8634,2]]], [8624,[2237.01,2793.44,0],[[8613,2],[8635,2]]], [8625,[2198.77,2852.04,-4.76837e-007],[[8613,2],[8625,2]]], [8626,[346.292,2262.53,-1.58946e-007],[[8614,2],[8636,2],[8637,2]]], [8627,[521.502,2147.86,0],[[8615,2]]],
+[8628,[727.832,2334.62,0],[[8616,2],[8638,2],[8628,2]]], [8629,[611.614,2279.28,0],[[8616,2]]], [8630,[1360.88,2180.22,0],[[8618,2],[8639,2]]], [8631,[1953.41,2042.43,0],[[8621,2],[8640,2],[8641,2]]], [8632,[2433.15,2639.45,0],[[8622,2],[8642,2]]], [8633,[2391.51,2442.47,-1.58946e-007],[[8622,2],[8643,2],[8644,2]]],
+[8634,[2402.99,2768.84,0],[[8623,2],[8645,2]]], [8635,[2327.52,2843.61,0],[[8624,2]]], [8636,[429.847,2189.28,0],[[8626,2]]], [8637,[339.183,2205.89,-1.58946e-007],[[8626,2],[8646,2],[8647,2]]], [8638,[703.805,2306.94,0],[[8628,2]]], [8639,[1253.8,2147.58,0],[[8630,2],[8648,2]]],
+[8640,[2018.45,2026.2,0],[[8631,2]]], [8641,[1962.99,1846.24,1.90735e-006],[[8631,2],[8649,2],[8650,2]]], [8642,[2537.22,2749.56,0],[[8632,2]]], [8643,[2447.92,2392.29,0],[[8633,2],[8651,2],[8643,2],[8652,2]]], [8644,[2459.56,2531.48,0],[[8633,2]]], [8645,[2457.54,2836.09,-3.17891e-007],[[8634,2],[8653,2],[8654,2]]],
+[8646,[357.743,2172.39,0],[[8637,2]]], [8647,[295.23,2130.39,1.58946e-007],[[8637,2],[8655,2],[8656,2]]], [8648,[1215.92,2109.89,0],[[8639,2],[8657,2],[8658,2]]], [8649,[1930.99,1803.03,4.76837e-007],[[8641,2],[8659,2],[8660,2],[8650,2]]], [8650,[2008.64,1784.23,-4.76837e-007],[[8641,2],[8649,2],[8661,2],[8662,2]]], [8651,[2432.34,2403.89,0],[[8643,2]]],
+[8652,[2553.8,2290.67,0],[[8643,2],[8663,2],[8664,2]]], [8653,[2499.48,2841.2,4.76837e-007],[[8645,2]]], [8654,[2466.3,2886.31,0],[[8645,2]]], [8655,[264.203,2077.02,0],[[8647,2],[8665,2],[8666,2]]], [8656,[341.112,2095.1,0],[[8647,2]]], [8657,[1138.36,2089.59,-1.58946e-007],[[8648,2],[8667,2],[8668,2]]],
+[8658,[1142.49,1942.5,0],[[8648,2],[8669,2]]], [8659,[1745.28,1792.03,0],[[8649,2],[8670,2]]], [8660,[1871.05,1671.65,0],[[8649,2],[8671,2],[8672,2]]], [8661,[2176.57,1768.4,0],[[8650,2],[8661,2],[8673,2]]], [8662,[2110.9,1614.53,0],[[8650,2],[8674,2]]], [8663,[2585.87,2229.34,1.58946e-007],[[8652,2],[8675,2],[8676,2]]],
+[8664,[2599.66,2348.63,0],[[8652,2]]], [8665,[279.139,2038.74,-4.76837e-007],[[8655,2]]], [8666,[174.871,2029.62,-4.76837e-007],[[8655,2],[8677,2]]], [8667,[1081.43,2091.85,0],[[8657,2],[8678,2],[8679,2],[8680,2]]], [8668,[1103.39,2005.59,0],[[8657,2]]], [8669,[1146.53,1912.03,0],[[8658,2]]],
+[8670,[1705.23,1796.13,0],[[8659,2],[8681,2],[8682,2]]], [8671,[1713.16,1580.75,0],[[8660,2],[8683,2]]], [8672,[1883.47,1552.9,0],[[8660,2],[8684,2],[8685,2]]], [8673,[2239.1,1822.63,-1.90735e-006],[[8661,2]]], [8674,[2137.75,1588.79,6.35783e-007],[[8662,2],[8686,2],[8687,2]]], [8675,[2641.74,2306.32,0],[[8663,2]]],
+[8676,[2620.32,2188.39,2.38419e-007],[[8663,2],[8688,2],[8689,2],[8676,2]]], [8677,[177.64,2000.04,0],[[8666,2]]], [8678,[1046.49,2030.88,0],[[8667,2],[8690,2]]], [8679,[1014.04,2088.54,0],[[8667,2],[8691,2],[8692,2]]], [8680,[1021.69,2229.02,0],[[8667,2],[8693,2]]], [8681,[1649.53,1850.66,0],[[8670,2],[8694,2]]],
+[8682,[1611.75,1770.79,1.27157e-006],[[8670,2],[8695,2],[8696,2]]], [8683,[1636.46,1487.15,0],[[8671,2],[8697,2]]], [8684,[1761.64,1451.87,0],[[8672,2],[8698,2]]], [8685,[1914.11,1456.51,0],[[8672,2],[8699,2],[8700,2]]], [8686,[2227.86,1466.19,-1.90735e-006],[[8674,2],[8701,2]]], [8687,[2261.82,1558,0],[[8674,2],[8702,2]]],
+[8688,[2631.49,2094.15,-1.19209e-007],[[8676,2],[8703,2],[8689,2],[8704,2]]], [8689,[2684.79,2104.82,1.36239e-007],[[8676,2],[8688,2],[8705,2],[8706,2],[8704,2],[8707,2],[8708,2]]], [8690,[1039.23,2020.65,-4.76837e-007],[[8678,2]]], [8691,[993.589,2034.57,0],[[8679,2]]], [8692,[978.029,2124.7,0],[[8692,2],[8709,2]]], [8693,[1002.74,2286.86,-6.35783e-007],[[8680,2],[8710,2],[8711,2]]],
+[8694,[1537,1939.87,0],[[8681,2],[8712,2]]], [8695,[1503.03,1663.16,9.53674e-007],[[8682,2],[8713,2]]], [8696,[1628,1624.66,0],[[8682,2],[8714,2]]], [8697,[1630.77,1467.26,0],[[8683,2],[8715,2],[8716,2]]], [8698,[1664.77,1359.41,0],[[8684,2],[8717,2]]], [8699,[1952.33,1392.67,0],[[8685,2],[8700,2],[8718,2]]],
+[8700,[1906.64,1381.9,0],[[8685,2],[8699,2],[8719,2],[8700,2],[8720,2]]], [8701,[2236.69,1379.72,1.90735e-006],[[8686,2],[8721,2]]], [8702,[2333.39,1664.31,0],[[8687,2],[8702,2]]], [8703,[2487.94,2030,0],[[8688,2],[8722,2]]], [8704,[2657.54,2061.21,0],[[8688,2],[8689,2],[8723,2]]], [8705,[2695.15,2168,0],[[8689,2]]],
+[8706,[2716.12,2135.15,0],[[8689,2]]], [8707,[2737.26,2084.15,0],[[8689,2]]], [8708,[2740.88,1993.86,2.38419e-007],[[8689,2],[8724,2]]], [8709,[958.041,2147.8,0],[[8692,2]]], [8710,[1051.38,2381.79,0],[[8693,2],[8725,2]]], [8711,[925.142,2276.27,0],[[8693,2],[8726,2]]],
+[8712,[1467.28,2002.67,1.90735e-006],[[8694,2],[8727,2]]], [8713,[1398.31,1615.77,-2.38419e-007],[[8695,2],[8728,2],[8729,2],[8730,2]]], [8714,[1575.48,1536.3,9.53674e-007],[[8696,2],[8731,2]]], [8715,[1583.87,1381.45,0],[[8697,2]]], [8716,[1595.97,1430.3,0],[[8697,2]]], [8717,[1649.38,1347.85,7.94729e-008],[[8698,2],[8732,2],[8717,2]]],
+[8718,[1981.12,1275.14,4.76837e-007],[[8699,2],[8718,2],[8733,2],[8734,2]]], [8719,[1908.22,1361.67,0],[[8700,2]]], [8720,[1798.2,1286.37,-1.58946e-007],[[8700,2],[8735,2],[8736,2]]], [8721,[2298.25,1335.44,1.90735e-006],[[8701,2],[8737,2]]], [8722,[2541.37,1939.18,0],[[8703,2]]], [8723,[2717.04,1915.97,9.53674e-007],[[8704,2],[8738,2]]],
+[8724,[2748.82,1979.61,0],[[8708,2]]], [8725,[1060.26,2422.46,0],[[8710,2],[8739,2],[8740,2]]], [8726,[909.306,2228.58,0],[[8711,2]]], [8727,[1447.2,2015.61,6.35783e-007],[[8712,2],[8741,2],[8742,2]]], [8728,[1374.22,1545.07,0],[[8713,2]]], [8729,[1413.51,1507.39,0],[[8713,2]]],
+[8730,[1352.5,1630.41,0],[[8713,2]]], [8731,[1564.4,1487.13,-1.58946e-007],[[8714,2],[8743,2],[8744,2]]], [8732,[1646.79,1301.05,0],[[8717,2]]], [8733,[1978.26,1133.8,-9.53674e-007],[[8718,2],[8745,2]]], [8734,[2015.08,1186.56,-9.53674e-007],[[8718,2],[8746,2]]], [8735,[1726.86,1249.99,0],[[8720,2],[8747,2],[8748,2]]],
+[8736,[1784.23,1199.96,0],[[8720,2]]], [8737,[2371.19,1344.11,0],[[8721,2]]], [8738,[2744.67,1850.36,-3.17891e-007],[[8723,2],[8749,2],[8750,2]]], [8739,[1101.45,2554.56,0],[[8725,2],[8751,2]]], [8740,[927.916,2344.8,0],[[8725,2],[8752,2]]], [8741,[1490.07,2080.37,0],[[8727,2],[8753,2]]],
+[8742,[1331.76,1964.4,0],[[8727,2],[8754,2]]], [8743,[1493.32,1446.52,0],[[8731,2]]], [8744,[1551.53,1428.15,0],[[8744,2]]], [8745,[1987.21,1118.32,-1.19209e-007],[[8733,2],[8755,2],[8746,2],[8756,2]]], [8746,[2047.96,1155.07,6.35783e-007],[[8734,2],[8745,2],[8757,2]]], [8747,[1719.2,1218.17,0],[[8735,2]]],
+[8748,[1714.54,1253.85,0],[[8735,2]]], [8749,[2780.5,1786.85,0],[[8738,2],[8758,2],[8759,2]]], [8750,[2777.98,1857.32,0],[[8738,2]]], [8751,[1142.89,2641.42,0],[[8739,2],[8760,2]]], [8752,[877.26,2264.45,0],[[8740,2],[8761,2]]], [8753,[1512.25,2160.05,0],[[8741,2],[8762,2]]],
+[8754,[1257.03,1910.91,0],[[8742,2],[8763,2],[8764,2]]], [8755,[1923.83,1106.95,0],[[8745,2]]], [8756,[1986.43,1101.52,4.76837e-007],[[8745,2]]], [8757,[2119.09,1111.62,-3.17891e-007],[[8746,2],[8765,2],[8766,2]]], [8758,[2877.59,1682.83,0],[[8749,2],[8767,2]]], [8759,[2821.01,1815.28,0],[[8749,2]]],
+[8760,[1046.04,2774.11,0],[[8751,2],[8768,2]]], [8761,[848.704,2260.79,0],[[8752,2]]], [8762,[1579.71,2251.8,0],[[8753,2],[8769,2]]], [8763,[1205.4,1862.09,0],[[8754,2],[8763,2],[8770,2]]], [8764,[1273.52,1772.56,4.76837e-007],[[8754,2],[8771,2]]], [8765,[2107.68,1074.21,0],[[8757,2],[8766,2],[8772,2]]],
+[8766,[2169.22,1049.38,0],[[8757,2],[8765,2],[8773,2]]], [8767,[2989.34,1571.23,0],[[8758,2],[8774,2]]], [8768,[944.651,2906.14,0],[[8760,2],[8768,2],[8775,2]]], [8769,[1646.42,2259.95,0],[[8762,2]]], [8770,[1220.81,1808.32,-2.38419e-007],[[8763,2]]], [8771,[1273.23,1723.29,0],[[8764,2]]],
+[8772,[2059.7,1038.33,0],[[8765,2]]], [8773,[2262.72,974.133,9.53674e-007],[[8766,2],[8776,2]]], [8774,[3019.05,1525.7,0],[[8767,2],[8777,2],[8778,2]]], [8775,[908.304,2947.88,0],[[8768,2]]], [8776,[2326.59,931.764,0],[[8773,2],[8779,2],[8780,2]]], [8777,[3033.87,1541.37,0],[[8774,2]]],
+[8778,[3058.78,1358.77,0],[[8774,2],[8781,2]]], [8779,[2304.15,895.548,2.38419e-007],[[8776,2]]], [8780,[2383.75,912.997,-4.76837e-007],[[8776,2]]], [8781,[3055.42,1319.97,7.94729e-008],[[8778,2],[8782,2],[8783,2]]], [8782,[3031.81,1289.8,7.94729e-008],[[8781,2],[8784,2],[8785,2]]], [8783,[3113.83,1327.23,-2.38419e-007],[[8781,2]]],
+[8784,[3065.95,1246.67,0],[[8782,2]]], [8785,[2922.26,1129.36,-4.76837e-007],[[8782,2],[8786,2],[8785,2]]], [8786,[2897.19,1078.77,0],[[8785,2],[8787,2]]], [8787,[2874.55,1016.22,0],[[8786,2],[8788,2],[8789,2]]], [8788,[2738.04,951.278,-1.58946e-007],[[8787,2],[8790,2],[8791,2]]], [8789,[2882.38,890.879,1.19209e-007],[[8787,2],[8789,2],[8792,2],[8793,2]]],
+[8790,[2661.35,933.029,0],[[8788,2],[8794,2],[8795,2]]], [8791,[2741.7,887.365,0],[[8788,2]]], [8792,[2769.97,837.19,0],[[8789,2]]], [8793,[2919,845.565,0],[[8789,2],[8796,2]]], [8794,[2647.67,882.949,4.76837e-007],[[8790,2]]], [8795,[2586.87,958.151,4.76837e-007],[[8790,2],[8797,2],[8795,2]]],
+[8796,[2919.01,817.785,0],[[8793,2]]], [8797,[2557.21,930.724,1.90735e-007],[[8795,2],[8798,2],[8799,2]]], [8798,[2577.5,912.339,4.76837e-007],[[8797,2]]], [8799,[2443.32,846.846,2.38419e-007],[[8797,2],[8799,2]]]];
\ No newline at end of file
diff --git a/A3-Antistasi/Scripts/Init_UPSMON.sqf b/A3-Antistasi/Scripts/Init_UPSMON.sqf
index 2883fbac30..84757eec98 100644
--- a/A3-Antistasi/Scripts/Init_UPSMON.sqf
+++ b/A3-Antistasi/Scripts/Init_UPSMON.sqf
@@ -55,7 +55,7 @@ UPSMON_GUER_HM = 100;
//////////////////////// ////////////////////////////////////////////
//Height that heli will fly this input will be randomised in a 10%
-UPSMON_flyInHeight = 40; //80;
+UPSMON_flyInHeight = 60; //80;
//Max distance to target for doing para-drop, will be randomised between 0 and 100% of this value.
UPSMON_paradropdist = 400;
diff --git a/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_SN_EHKILLEDCIV.sqf b/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_SN_EHKILLEDCIV.sqf
index 5af50c1905..fbac1cd7fd 100644
--- a/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_SN_EHKILLEDCIV.sqf
+++ b/A3-Antistasi/Scripts/UPSMON/COMMON/Core/fnc/UPSMON_SN_EHKILLEDCIV.sqf
@@ -46,6 +46,6 @@ if (isPlayer _killer) then
if (UPSMON_Debug > 0) then {player globalchat format["KILLED_CIV_COUNTER: %1",KILLED_CIV_COUNTER]};
if (R_WHO_IS_CIV_KILLER_INFO > 0) then
{
- call compile format ["[{UPSMON_Logic_civkill globalChat ""A CIVILIAN WAS KILLED BY %1"";},""BIS_fnc_spawn""] call BIS_fnc_MP;",name _killer];
+ [UPSMON_Logic_civkill,format ["A CIVILIAN WAS KILLED BY %1",name _killer]] remoteExecCall ["globalChat", 0];
};
};
\ No newline at end of file
diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_CLONES.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_CLONES.sqf
index 608c38997f..c791b42604 100644
--- a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_CLONES.sqf
+++ b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_CLONES.sqf
@@ -58,7 +58,7 @@ for "_grpcnt" from 1 to _copies do
if (isMultiplayer) then
{
- [[netid _newunit, _initstr], "UPSMON_fnc_setVehicleInit", true, true] spawn BIS_fnc_MP;
+ [netid _newunit, _initstr] remoteExec ["UPSMON_fnc_setVehicleInit", 0,true];
}
else
{
diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_RESPAWN.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_RESPAWN.sqf
index ec921e30c1..c8fc26fb17 100644
--- a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_RESPAWN.sqf
+++ b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_RESPAWN.sqf
@@ -111,7 +111,7 @@ If (!_removeunit) then
if (isMultiplayer) then
{
- [[netid _newunit, _initstr], "UPSMON_fnc_setVehicleInit", true, true] spawn BIS_fnc_MP;
+ [netid _newunit, _initstr] remoteExec ["UPSMON_fnc_setVehicleInit", 0,true];
} else
{
_unitstr = "_newunit";
diff --git a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf
index a553d2cb33..d41211e585 100644
--- a/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf
+++ b/A3-Antistasi/Scripts/UPSMON/MODULES/UPSMON_spawn.sqf
@@ -90,7 +90,7 @@ if (UPSMON_Debug>0) then {diag_log format["Spawning %3 copies of template %1 on
if (isMultiplayer) then
{
- [[netid _newunit, _initstr], "UPSMON_fnc_setVehicleInit", true, true] spawn BIS_fnc_MP;
+ [netid _newunit, _initstr] remoteExec ["UPSMON_fnc_setVehicleInit", 0,true];
} else
{
_unitstr = "_newunit";
diff --git a/A3-Antistasi/Scripts/fn_advancedTowingInit.sqf b/A3-Antistasi/Scripts/fn_advancedTowingInit.sqf
index f4f82dc679..3eb68cae63 100644
--- a/A3-Antistasi/Scripts/fn_advancedTowingInit.sqf
+++ b/A3-Antistasi/Scripts/fn_advancedTowingInit.sqf
@@ -412,6 +412,7 @@ SA_Pickup_Tow_Ropes = {
{
_attachedObj ropeDetach _x;
} forEach (_vehicle getVariable ["SA_Tow_Ropes",[]]);
+ detach _attachedObj;
deleteVehicle _attachedObj;
} forEach ropeAttachedObjects _vehicle;
_helper = "Land_Can_V2_F" createVehicle position _player;
diff --git a/A3-Antistasi/Stringtable.xml b/A3-Antistasi/Stringtable.xml
index c8880465c3..cd4a3f6524 100755
--- a/A3-Antistasi/Stringtable.xml
+++ b/A3-Antistasi/Stringtable.xml
@@ -392,7 +392,7 @@
Быть Лидером Сопротивления значит быть героем.
- 2.2
+ 2.2.1
diff --git a/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf b/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf
index f438326ddf..1da9ac7747 100644
--- a/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf
+++ b/A3-Antistasi/Templates/3CB_Occ_TKA_Arid.sqf
@@ -18,7 +18,7 @@ flagNATOmrk = "UK3CB_MARKER_TKA_O_Army";
if (isServer) then {"NATO_carrier" setMarkerText "Takistani Carrier"};
//Loot Crate
-NATOAmmobox = "B_supplyCrate_F";
+NATOAmmobox = "I_supplyCrate_F";
////////////////////////////////////
// PVP LOADOUTS AND VEHICLES ///
@@ -40,7 +40,7 @@ NATOPlayerLoadouts = [
];
//PVP Player Vehicles
-vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_LandRover_Hard_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_Snatch_FFR_Green_A_Tropical","UK3CB_BAF_LandRover_Soft_FFR_Green_B_Tropical","UK3CB_BAF_LandRover_WMIK_HMG_FFR_Green_B_Tropical_RM"];
+vehNATOPVP = ["UK3CB_TKA_I_Hilux_Open","UK3CB_TKA_I_LR_Closed","UK3CB_TKA_I_UAZ_MG"];
////////////////////////////////////
// UNITS ///
@@ -49,9 +49,9 @@ vehNATOPVP = ["UK3CB_BAF_MAN_HX60_Container_Servicing_Air_Green","UK3CB_BAF_Land
NATOGrunt = "UK3CB_TKA_I_RIF_1";
NATOOfficer = "UK3CB_TKA_I_OFF";
NATOOfficer2 = "UK3CB_TKA_I_CREW_COMM";
-NATOBodyG = "UK3CB_BAF_Crewman_RTR_DDPM";
+NATOBodyG = "UK3CB_TKA_I_CREW";
NATOCrew = "UK3CB_TKA_I_CREW";
-NATOUnarmed = "B_G_Survivor_F";
+NATOUnarmed = "I_G_Survivor_F";
NATOMarksman = "UK3CB_TKA_I_MK";
staticCrewOccupants = "UK3CB_TKA_I_NAVY_CREW";
NATOPilot = "UK3CB_TKA_I_JET_PILOT";
diff --git a/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf b/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf
index 6fe9e045f1..09f335ec55 100644
--- a/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf
+++ b/A3-Antistasi/Templates/3CB_Reb_CNM_Temp.sqf
@@ -105,4 +105,4 @@ initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
diff --git a/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf b/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf
index 6fe9e045f1..09f335ec55 100644
--- a/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf
+++ b/A3-Antistasi/Templates/3CB_Reb_CNM_Trop.sqf
@@ -105,4 +105,4 @@ initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
diff --git a/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf b/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf
index d8c78f0966..38e46af16a 100644
--- a/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf
+++ b/A3-Antistasi/Templates/3CB_Reb_TPGM_Arid.sqf
@@ -105,4 +105,4 @@ initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TAFR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]};
-if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_B_Radio_Backpack"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "UK3CB_B_B_Radio_Backpack"};
diff --git a/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf b/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf
index 9a7777c569..74b81c720c 100644
--- a/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf
+++ b/A3-Antistasi/Templates/3CB_Reb_TTF_Arid.sqf
@@ -109,4 +109,4 @@ initialRebelEquipment append ["UK3CB_V_CW_Chestrig","UK3CB_V_CW_Chestrig_2_Small
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "UK3CB_B_O_Radio_Backpack"};
diff --git a/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf b/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf
index ce4bfeec6a..73a84e30c6 100644
--- a/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf
+++ b/A3-Antistasi/Templates/BAF_Occ_BAF_Arid.sqf
@@ -15,7 +15,7 @@ if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "UK3CB_TKP_B"};
//Flag Images
NATOFlag = "Flag_UK_F";
-NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa";
+NATOFlagTexture = "\A3\Data_F\Flags\flag_uk_co.paa";
flagNATOmrk = "flag_UK";
if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"};
diff --git a/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf b/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf
index aa89d35df6..1941782623 100644
--- a/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf
+++ b/A3-Antistasi/Templates/BAF_Occ_BAF_Trop.sqf
@@ -13,7 +13,7 @@ if ((gameMode != 4) and (!hasFFAA)) then {factionFIA = "UK3CB_TKP_B"};
//Flag Images
NATOFlag = "Flag_UK_F";
-NATOFlagTexture = "\A3\Data_F\Flags\Flag_UK.paa";
+NATOFlagTexture = "\A3\Data_F\Flags\flag_uk_co.paa";
flagNATOmrk = "flag_UK";
if (isServer) then {"NATO_carrier" setMarkerText "HMS Ark Royal"};
diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf
index ebe8eee5ad..1f558152ba 100644
--- a/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf
+++ b/A3-Antistasi/Templates/IFA_Reb_POL_Arct.sqf
@@ -103,4 +103,4 @@ initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"];
initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"];
initialRebelEquipment append ["LIB_Binocular_PL"];
//TFAR Unlocks
-if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf
index adc250c37e..29fa957555 100644
--- a/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf
+++ b/A3-Antistasi/Templates/IFA_Reb_POL_Arid.sqf
@@ -103,4 +103,4 @@ initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"];
initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"];
initialRebelEquipment append ["LIB_Binocular_PL"];
//TFAR Unlocks
-if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
diff --git a/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf b/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf
index adc250c37e..29fa957555 100644
--- a/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf
+++ b/A3-Antistasi/Templates/IFA_Reb_POL_Temp.sqf
@@ -103,4 +103,4 @@ initialRebelEquipment append ["B_LIB_SOV_RA_Gasbag"];
initialRebelEquipment append ["V_LIB_WP_OfficerVest","V_LIB_WP_SniperBela","V_LIB_WP_Kar98Vest","V_LIB_SOV_RA_Belt"];
initialRebelEquipment append ["LIB_Binocular_PL"];
//TFAR Unlocks
-if (startLR) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "B_LIB_US_Radio"};
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT.sqf
index dae2e79179..37d3627587 100644
--- a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT.sqf
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT.sqf
@@ -42,7 +42,6 @@
["NVGoggles_OpFor",1],
["SmokeShell",2,1],
["HandGrenade",1,1],
- ["ACE_M84",2,1],
["16Rnd_9x21_Mag",2,17],
["30Rnd_556x45_Stanag_Red",3,30]
]
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_altis.sqf
new file mode 100644
index 0000000000..554f0a0980
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_altis.sqf
@@ -0,0 +1,81 @@
+[//Loadout
+ [//Primary Weapon
+ "arifle_MX_Black_F", //Weapon
+ "", //Muzzle
+ "Acc_Pointer_IR", //Rail
+ "Optic_ACO", //Sight
+ ["30Rnd_65x39_caseless_black_mag",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "launch_MRAWS_sand_rail_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["MRAWS_HEAT55_F",1], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_CombatUniform_mcam", "U_B_CombatUniform_mcam_tshirt", "U_B_CombatUniform_mcam_vest"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr"],
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_65x39_caseless_black_mag",3,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_mcamo", //Backpack
+ [//Inventory
+ ["MRAWS_HEAT55_F",1,1]
+ ]
+ ],
+
+ selectRandom //Headgear
+ ["H_Booniehat_mcamo", "H_MilCap_mcamo", "H_HelmetB_desert", "H_HelmetB_light_desert", "H_HelmetSpecB", "H_Cap_tan_specops_US"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_tanoa.sqf
new file mode 100644
index 0000000000..a2ed881fcc
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_AT_tanoa.sqf
@@ -0,0 +1,81 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_01_KHK_F", //Weapon
+ "", //Muzzle
+ "Acc_Pointer_IR", //Rail
+ "Optic_ACO", //Sight
+ ["30Rnd_556x45_Stanag_Red",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "launch_MRAWS_olive_rail_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["MRAWS_HEAT55_F",1], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_T_Soldier_F", "U_B_T_Soldier_AR_F", "U_B_T_Soldier_SL_F"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_TNA_F", "V_PlateCarrier2_TNA_F"],
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_556x45_Stanag_Red",3,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_TNA_F", //Backpack
+ [//Inventory
+ ["MRAWS_HEAT55_F",1,1]
+ ]
+ ],
+
+ selectRandom //Headgear
+ ["H_BoonieHat_TNA_F", "H_MilCap_TNA_F", "H_HelmetB_TNA_F", "H_HelmetB_Light_TNA_F", "H_HelmetB_Enh_TNA_F"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_altis.sqf
new file mode 100644
index 0000000000..2c525fa97b
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_altis.sqf
@@ -0,0 +1,77 @@
+[//Loadout
+ [//Primary Weapon
+ "LMG_Mk200_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "optic_Holosight", //Sight
+ ["200Rnd_65x39_cased_Box",200], //Primary Magazine
+ [], //Secondary Magazine
+ "Bipod_01_F_BLK" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_CombatUniform_mcam", "U_B_CombatUniform_mcam_tshirt", "U_B_CombatUniform_mcam_vest"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr"],
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["200Rnd_65x39_cased_Box",2,200],
+ []
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [],
+
+ selectRandom //Headgear
+ ["H_Booniehat_mcamo", "H_MilCap_mcamo", "H_HelmetB_desert", "H_HelmetB_light_desert", "H_HelmetSpecB", "H_Cap_tan_specops_US"],
+ "", //Facewear
+
+ [//Binocular
+ "", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_tanoa.sqf
new file mode 100644
index 0000000000..74e06b8fe1
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_machineGunner_tanoa.sqf
@@ -0,0 +1,77 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_02_KHK_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "Optic_Holosight_KHK_F", //Sight
+ ["150Rnd_556x45_Drum_Mag_Tracer_F",150], //Primary Magazine
+ [], //Secondary Magazine
+ "Bipod_01_F_BLK" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_T_Soldier_F", "U_B_T_Soldier_AR_F", "U_B_T_Soldier_SL_F"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_TNA_F", "V_PlateCarrier2_TNA_F"],
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["150Rnd_556x45_Drum_Mag_Tracer_F",1,150],
+ ["30Rnd_556x45_Stanag_Tracer_Red",3,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [],
+
+ selectRandom //Headgear
+ ["H_BoonieHat_TNA_F", "H_MilCap_TNA_F", "H_HelmetB_Light_TNA_F", "H_HelmetB_TNA_F", "H_HelmetB_Enh_TNA_F"],
+ "", //Facewear
+
+ [//Binocular
+ "", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_altis.sqf
new file mode 100644
index 0000000000..caad4bb334
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_altis.sqf
@@ -0,0 +1,74 @@
+[//Loadout
+ [//Primary Weapon
+ "srifle_EBR_F", //Weapon
+ "Muzzle_SNDS_B", //Muzzle
+ "acc_pointer_IR", //Rail
+ "optic_SOS", //Sight
+ ["20Rnd_762x51_Mag",20], //Primary Magazine
+ [], //Secondary Magazine
+ "Bipod_01_F_BLK" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ "U_B_GhillieSuit", //Uniform
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ "V_PlateCarrier1_rgr", //Vest
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",3,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["20Rnd_762x51_Mag",4,20]
+ ]
+ + _aceFlashlight
+ + _aceKestrel
+ + _aceRangecard
+ + _aceM84
+ ],
+
+ [],
+
+ "", //Headgear
+ "G_Balaclava_Oli", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_tanoa.sqf
new file mode 100644
index 0000000000..81d595d0e9
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_marksman_tanoa.sqf
@@ -0,0 +1,74 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_03_KHK_F", //Weapon
+ "Muzzle_SNDS_B", //Muzzle
+ "Acc_Pointer_IR", //Rail
+ "Optic_AMS_KHK", //Sight
+ ["20Rnd_762x51_Mag",20], //Primary Magazine
+ [], //Secondary Magazine
+ "Bipod_01_F_BLK" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ "U_B_T_Sniper_F", //Uniform
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ "V_PlateCarrier1_TNA_F", //Vest
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",3,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["20Rnd_762x51_Mag",4,20]
+ ]
+ + _aceFlashlight
+ + _aceKestrel
+ + _aceRangecard
+ + _aceM84
+ ],
+
+ [],
+
+ "", //Headgear
+ "G_Balaclava_Oli", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_altis.sqf
new file mode 100644
index 0000000000..1fdf70338f
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_altis.sqf
@@ -0,0 +1,79 @@
+[//Loadout
+ [//Primary Weapon
+ "arifle_MX_Black_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "optic_Holosight", //Sight
+ ["30Rnd_65x39_caseless_black_mag",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_CombatUniform_mcam", "U_B_CombatUniform_mcam_tshirt", "U_B_CombatUniform_mcam_vest"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr"],
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_65x39_caseless_black_mag",4,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_mcamo", //Backpack
+ [] + _medicSupplies
+ ],
+
+ selectRandom //Headgear
+ ["H_Booniehat_mcamo", "H_MilCap_mcamo", "H_HelmetB_desert", "H_HelmetB_light_desert", "H_HelmetSpecB", "H_Cap_tan_specops_US"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_tanoa.sqf
new file mode 100644
index 0000000000..308925a19a
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_medic_tanoa.sqf
@@ -0,0 +1,79 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_01_KHK_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "Optic_Holosight_KHK_F", //Sight
+ ["30Rnd_556x45_Stanag_Red",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_T_Soldier_F", "U_B_T_Soldier_AR_F", "U_B_T_Soldier_SL_F"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_TNA_F", "V_PlateCarrier2_TNA_F"],
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_556x45_Stanag_Red",4,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_TNA_F", //Backpack
+ [] + _medicSupplies
+ ],
+
+ selectRandom //Headgear
+ ["H_BoonieHat_TNA_F", "H_MilCap_TNA_F", "H_HelmetB_Light_TNA_F", "H_HelmetB_TNA_F", "H_HelmetB_Enh_TNA_F"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_altis.sqf
new file mode 100644
index 0000000000..ed31b70ed3
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_altis.sqf
@@ -0,0 +1,76 @@
+[//Loadout
+ [//Primary Weapon
+ "arifle_MX_Black_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "optic_Hamr", //Sight
+ ["30Rnd_65x39_caseless_black_mag",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_CombatUniform_mcam", "U_B_CombatUniform_mcam_tshirt", "U_B_CombatUniform_mcam_vest"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr"],
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_65x39_caseless_black_mag",6,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [],
+
+ selectRandom //Headgear
+ ["H_Booniehat_mcamo", "H_MilCap_mcamo", "H_HelmetB_desert", "H_HelmetB_light_desert", "H_HelmetSpecB", "H_Cap_tan_specops_US"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_tanoa.sqf
new file mode 100644
index 0000000000..faf74b0769
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_rifleman_tanoa.sqf
@@ -0,0 +1,76 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_02_KHK_F", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "Optic_HAMR_KHK_F", //Sight
+ ["30Rnd_556x45_Stanag_Red",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_T_Soldier_F", "U_B_T_Soldier_AR_F", "U_B_T_Soldier_SL_F"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_TNA_F", "V_PlateCarrier2_TNA_F"],
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_556x45_Stanag_Red",6,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [],
+
+ selectRandom //Headgear
+ ["H_BoonieHat_TNA_F", "H_MilCap_TNA_F", "H_HelmetB_Light_TNA_F", "H_HelmetB_TNA_F", "H_HelmetB_Enh_TNA_F"],
+ "", //Facewear
+
+ [//Binocular
+ "Binocular", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader.sqf
index 71386b0675..32cfde9a18 100644
--- a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader.sqf
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader.sqf
@@ -50,7 +50,7 @@
],
[//Backpack
- "B_RadioBag_01_Tropic_F", //Backpack
+ "B_AssaultPack_TNA_F", //Backpack
[//Inventory
["SmokeshellBlue",3,1],
["SmokeshellRed",3,1],
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_altis.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_altis.sqf
new file mode 100644
index 0000000000..7a70d5ecb5
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_altis.sqf
@@ -0,0 +1,85 @@
+[//Loadout
+ [//Primary Weapon
+ "arifle_MX_Black_F", //Weapon
+ "", //Muzzle
+ "Acc_Pointer_IR", //Rail
+ "optic_Hamr", //Sight
+ ["30Rnd_65x39_caseless_black_mag",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "hgun_P07_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_CombatUniform_mcam", "U_B_CombatUniform_mcam_tshirt", "U_B_CombatUniform_mcam_vest"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_rgr", "V_PlateCarrier2_rgr", "V_PlateCarrierSpec_rgr"],
+ [//Inventory
+ ["NVGoggles",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_65x39_caseless_black_mag",3,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_mcamo", //Backpack
+ [//Inventory
+ ["SmokeshellBlue",3,1],
+ ["SmokeshellRed",3,1],
+ ["SmokeshellYellow",3,1]
+ ]
+ + ([hasACE, ["ACE_Handflare_Red",2,1]] call _fnc_modItem)
+ + ([hasACE, ["ACE_Chemlight_IR",15,1]] call _fnc_modItem)
+ ],
+
+ selectRandom //Headgear
+ ["H_Booniehat_mcamo", "H_MilCap_mcamo", "H_HelmetB_desert", "H_HelmetB_light_desert", "H_HelmetSpecB", "H_Cap_tan_specops_US"],
+ "", //Facewear
+
+ [//Binocular
+ "Rangefinder", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_tanoa.sqf b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_tanoa.sqf
new file mode 100644
index 0000000000..18d1b76485
--- /dev/null
+++ b/A3-Antistasi/Templates/Loadouts/vanilla_blufor_teamLeader_tanoa.sqf
@@ -0,0 +1,85 @@
+[//Loadout
+ [//Primary Weapon
+ "ARifle_SPAR_01_KHK_F", //Weapon
+ "", //Muzzle
+ "Acc_Pointer_IR", //Rail
+ "Optic_HAMR_KHK_F", //Sight
+ ["30Rnd_556x45_Stanag_Red",30], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Launcher
+ "", //Weapon
+ "", //Muzzle
+ "", //Rail
+ "", //Sight
+ [], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Secondary Weapon
+ "HGun_P07_KHK_F", //Weapon
+ "Muzzle_SNDS_L", //Muzzle
+ "", //Rail
+ "", //Sight
+ ["16Rnd_9x21_Mag", 17], //Primary Magazine
+ [], //Secondary Magazine
+ "" //Bipod
+ ],
+
+ [//Uniform
+ selectRandom //Uniform
+ ["U_B_T_Soldier_F", "U_B_T_Soldier_AR_F", "U_B_T_Soldier_SL_F"],
+ [] + _basicMedicalSupplies + _basicMiscItems
+ ],
+
+ [//Vest
+ selectRandom //Vest
+ ["V_PlateCarrier1_TNA_F", "V_PlateCarrier2_TNA_F", "V_PlateCarrierSpec_TNA_F"],
+ [//Inventory
+ ["NVGoggles_tna_F",1],
+ ["SmokeShell",2,1],
+ ["HandGrenade",1,1],
+ ["16Rnd_9x21_Mag",2,17],
+ ["30Rnd_556x45_Stanag_Red",3,30]
+ ]
+ + _aceFlashlight
+ + _aceM84
+ ],
+
+ [//Backpack
+ "B_AssaultPack_TNA_F", //Backpack
+ [//Inventory
+ ["SmokeshellBlue",3,1],
+ ["SmokeshellRed",3,1],
+ ["SmokeshellYellow",3,1]
+ ]
+ + ([hasACE, ["ACE_Handflare_Red",2,1]] call _fnc_modItem)
+ + ([hasACE, ["ACE_Chemlight_IR",15,1]] call _fnc_modItem)
+ ],
+
+ selectRandom //Headgear
+ ["H_BoonieHat_TNA_F", "H_MilCap_TNA_F", "H_HelmetB_TNA_F", "H_HelmetB_Light_TNA_F", "H_HelmetB_Enh_TNA_F"],
+ "", //Facewear
+
+ [//Binocular
+ "Rangefinder", //Binocular
+ "",
+ "",
+ "",
+ [],
+ [],
+ ""
+ ],
+
+ [//Item
+ "ItemMap", //Map
+ "ItemGPS", //Terminal
+ ["TF_ANPRC152"] call _fnc_tfarRadio, //Radio
+ "ItemCompass", //Compass
+ "ItemWatch", //Watch
+ "" //Goggles
+ ]
+];
diff --git a/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf b/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf
index 19305d3d12..92377d9c6a 100644
--- a/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf
+++ b/A3-Antistasi/Templates/RHS_Reb_CDF_Arid.sqf
@@ -105,4 +105,4 @@ initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m"
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
diff --git a/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf b/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf
index 19305d3d12..92377d9c6a 100644
--- a/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf
+++ b/A3-Antistasi/Templates/RHS_Reb_CDF_Wdl.sqf
@@ -105,4 +105,4 @@ initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m"
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
diff --git a/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf b/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf
index 769f309293..c9b5e26eaa 100644
--- a/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf
+++ b/A3-Antistasi/Templates/RHS_Reb_NAPA_Arid.sqf
@@ -104,4 +104,4 @@ initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m"
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TAFR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_anprc155_coyote"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_anprc155_coyote"};
diff --git a/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf b/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf
index 769f309293..c9b5e26eaa 100644
--- a/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf
+++ b/A3-Antistasi/Templates/RHS_Reb_NAPA_Wdl.sqf
@@ -104,4 +104,4 @@ initialRebelEquipment append ["rhsgref_chestrig","rhsgref_chicom","rhs_vydra_3m"
initialRebelEquipment append ["rhs_acc_2dpZenit","Binocular"];
//TAFR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_anprc155_coyote"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_anprc155_coyote"};
diff --git a/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf
index 533f7e9f7d..e9dbc82ccf 100644
--- a/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Altis.sqf
@@ -1,3 +1,5 @@
+//Call to Tanoa Invader Template
+if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Inv_CSAT_Tanoa.sqf"};
////////////////////////////////////
// NAMES AND FLAGS ///
////////////////////////////////////
@@ -14,7 +16,7 @@ CSATFlag = "Flag_CSAT_F";
CSATFlagTexture = "\A3\Data_F\Flags\Flag_CSAT_CO.paa";
flagCSATmrk = "flag_CSAT";
if (isServer) then {"CSAT_carrier" setMarkerText "CSAT Carrier"};
-
+
//Loot Crate
CSATAmmoBox = "O_supplyCrate_F";
diff --git a/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf
index 5b0e80415a..a7091e952f 100644
--- a/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Inv_CSAT_Tanoa.sqf
@@ -1,5 +1,3 @@
-//Call to Altis Invader Template
-if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Inv_CSAT_Altis.sqf"};
////////////////////////////////////
// NAMES AND FLAGS ///
////////////////////////////////////
diff --git a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf
index eea2c0d38d..23d2354ae4 100644
--- a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Altis.sqf
@@ -1,5 +1,7 @@
//Call to Blufor Alits Template
if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_AAF_Altis.sqf"};
+//Call For Tanoa
+if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_NATO_Tanoa.sqf"};
////////////////////////////////////
// NAMES AND FLAGS ///
////////////////////////////////////
@@ -28,21 +30,21 @@ NATOAmmobox = "B_supplyCrate_F";
//PvP Loadouts
NATOPlayerLoadouts = [
//Team Leader
- ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_teamLeader_altis"] call A3A_fnc_getLoadout,
//Medic
- ["vanilla_blufor_medic"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_medic_altis"] call A3A_fnc_getLoadout,
//Autorifleman
- ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_machineGunner_altis"] call A3A_fnc_getLoadout,
//Marksman
- ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_marksman_altis"] call A3A_fnc_getLoadout,
//Anti-tank Scout
- ["vanilla_blufor_AT"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_AT_altis"] call A3A_fnc_getLoadout,
//AT2
- ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout
+ ["vanilla_blufor_rifleman_altis"] call A3A_fnc_getLoadout
];
//PVP Player Vehicles
-vehNATOPVP = ["B_T_MRAP_01_F","B_MRAP_01_hmg_F"];
+vehNATOPVP = ["B_MRAP_01_F","B_MRAP_01_hmg_F"];
////////////////////////////////////
// UNITS ///
@@ -131,7 +133,7 @@ groupsNATOGen = [policeOfficer,policeGrunt];
//Lite
vehNATOBike = "B_Quadbike_01_F";
vehNATOLightArmed = ["B_MRAP_01_hmg_F"];
-vehNATOLightUnarmed = ["B_T_MRAP_01_F"];
+vehNATOLightUnarmed = ["B_MRAP_01_F"];
vehNATOTrucks = ["B_Truck_01_transport_F","B_Truck_01_covered_F"];
vehNATOCargoTrucks = ["B_Truck_01_cargo_F", "B_Truck_01_flatbed_F"];
vehNATOAmmoTruck = "B_Truck_01_ammo_F";
diff --git a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf
index 4297d90165..f35dbf39dc 100644
--- a/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Occ_NATO_Tanoa.sqf
@@ -1,5 +1,3 @@
-//Call to Altis Template
-if (worldName == "Altis") exitWith {call compile preProcessFileLineNumbers "Templates\Vanilla_Occ_NATO_Altis.sqf"};
////////////////////////////////////
// NAMES AND FLAGS ///
////////////////////////////////////
@@ -28,17 +26,17 @@ NATOAmmobox = "B_supplyCrate_F";
//PvP Loadouts
NATOPlayerLoadouts = [
//Team Leader
- ["vanilla_blufor_teamLeader"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_teamLeader_tanoa"] call A3A_fnc_getLoadout,
//Medic
- ["vanilla_blufor_medic"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_medic_tanoa"] call A3A_fnc_getLoadout,
//Autorifleman
- ["vanilla_blufor_machineGunner"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_machineGunner_tanoa"] call A3A_fnc_getLoadout,
//Marksman
- ["vanilla_blufor_marksman"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_marksman_tanoa"] call A3A_fnc_getLoadout,
//Anti-tank Scout
- ["vanilla_blufor_AT"] call A3A_fnc_getLoadout,
+ ["vanilla_blufor_AT_tanoa"] call A3A_fnc_getLoadout,
//AT2
- ["vanilla_blufor_rifleman"] call A3A_fnc_getLoadout
+ ["vanilla_blufor_rifleman_tanoa"] call A3A_fnc_getLoadout
];
//PVP Player Vehicles
diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf
index e31fd5c7d6..593d6cb597 100644
--- a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Altis.sqf
@@ -5,7 +5,7 @@ if (worldName == "Tanoa") exitWith {call compile preProcessFileLineNumbers "Temp
// NAMES AND FLAGS ///
////////////////////////////////////
nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"};
-SDKFlag = "Flag_Altis_F";
+SDKFlag = "Flag_FIA_F";
SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa";
typePetros = "I_G_officer_F";
@@ -101,10 +101,10 @@ breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_
//Starting Unlocks
initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_P07_F","SMG_01_F","SMG_02_F"];
initialRebelEquipment append ["SMG_01_F","SMG_02_F"];
-initialRebelEquipment append ["6Rnd_45ACP_Cylinder","16Rnd_9x21_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"];
+initialRebelEquipment append ["6Rnd_45ACP_Cylinder","16Rnd_9x21_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell"];
initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_khk"];
initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_cbr","V_BandollierB_rgr","V_BandollierB_khk","V_BandollierB_oli","V_Rangemaster_belt"];
initialRebelEquipment append ["Binocular","acc_flashlight"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_anprc155"};
diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf
index d424a8637f..e98eca6e72 100644
--- a/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_B_Altis.sqf
@@ -98,10 +98,10 @@ breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_
//Starting Unlocks
initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_ACPC2_F","hgun_PDW2000_F","SMG_01_F"];
initialRebelEquipment append ["SMG_01_F","hgun_PDW2000_F"];
-initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"];
+initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","30Rnd_45ACP_Mag_SMG_01","30Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell"];
initialRebelEquipment append ["B_FieldPack_oli","B_FieldPack_blk","B_FieldPack_ocamo","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_khk"];
initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_cbr","V_BandollierB_rgr","V_BandollierB_khk","V_BandollierB_oli","V_Rangemaster_belt"];
initialRebelEquipment append ["Binocular","acc_flashlight"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_rf7800str"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_rt1523g_big_rhs"};
diff --git a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf
index c955cce787..7304258b29 100644
--- a/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Reb_FIA_Enoch.sqf
@@ -4,7 +4,7 @@ if (side petros == west) exitWith {call compile preProcessFileLineNumbers "Templ
// NAMES AND FLAGS ///
////////////////////////////////////
nameTeamPlayer = if (worldName == "Tanoa") then {"SDK"} else {"FIA"};
-SDKFlag = "Flag_Altis_F";
+SDKFlag = "Flag_FIA_F";
SDKFlagTexture = "\A3\Data_F\Flags\Flag_Altis_CO.paa";
typePetros = "I_G_officer_F";
@@ -100,10 +100,10 @@ breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_
//Starting Unlocks
initialRebelEquipment append ["hgun_Pistol_heavy_02_F","hgun_Pistol_heavy_01_green_F","sgun_HunterShotgun_01_F","SMG_02_F"];
initialRebelEquipment append ["SMG_02_F"];
-initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","2Rnd_12Guage_Pellets","2Rnd_12Guage_Slug","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"];
+initialRebelEquipment append ["6Rnd_45ACP_Cylinder","9Rnd_45ACP_Mag","2Rnd_12Guage_Pellets","2Rnd_12Guage_Slug","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell"];
initialRebelEquipment append ["B_FieldPack_blk","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_oli","B_FieldPack_green_F","B_FieldPack_taiga_F"];
initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_SmershVest_01_F","V_BandollierB_rgr","V_SmershVest_01_radio_F","V_BandollierB_oli","V_Rangemaster_belt"];
initialRebelEquipment append ["Binocular","acc_flashlight"];
//TFAR Unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_anprc155"};
diff --git a/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf b/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf
index d0e2ec077c..0ba646ea45 100644
--- a/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf
+++ b/A3-Antistasi/Templates/Vanilla_Reb_SDK_Tanoa.sqf
@@ -100,10 +100,10 @@ breachingExplosivesTank = [["SatchelCharge_Remote_Mag", 1], ["DemoCharge_Remote_
//Starting Unlocks
initialRebelEquipment append ["hgun_Pistol_01_F","hgun_P07_khk_F","SMG_05_F","hgun_PDW2000_F"];
initialRebelEquipment append ["SMG_05_F","hgun_PDW2000_F"];
-initialRebelEquipment append ["10Rnd_9x21_Mag","16Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell","IEDLandBig_Remote_Mag","IEDUrbanBig_Remote_Mag","IEDLandSmall_Remote_Mag","IEDUrbanSmall_Remote_Mag"];
+initialRebelEquipment append ["10Rnd_9x21_Mag","16Rnd_9x21_Mag","30Rnd_9x21_Mag_SMG_02","MiniGrenade","SmokeShell"];
initialRebelEquipment append ["B_FieldPack_blk","B_FieldPack_oucamo","B_FieldPack_cbr","B_FieldPack_oli","B_FieldPack_ghex_F"];
initialRebelEquipment append ["V_Chestrig_blk","V_Chestrig_rgr","V_Chestrig_khk","V_Chestrig_oli","V_BandollierB_blk","V_BandollierB_ghex","V_BandollierB_rgr","V_BandollierB_oli","V_Rangemaster_belt","V_TacChestrig_cbr_F","V_TacChestrig_oli_F","V_TacChestrig_grn_F"];
initialRebelEquipment append ["Binocular","acc_flashlight"];
//TFAR unlocks
if (hasTFAR) then {initialRebelEquipment append ["tf_microdagr","tf_anprc154"]};
-if (startLR) then {initialRebelEquipment pushBack "tf_anprc155"};
+if (hasTFAR && startWithLongRangeRadio) then {initialRebelEquipment pushBack "tf_anprc155"};
diff --git a/A3-Antistasi/dialogs.hpp b/A3-Antistasi/dialogs.hpp
index cef4196568..eb770874c5 100644
--- a/A3-Antistasi/dialogs.hpp
+++ b/A3-Antistasi/dialogs.hpp
@@ -981,7 +981,7 @@ class game_options {
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
tooltip = "Use this option to save your current game. It does save the most important data in a ""Grand Theft Auto"" way. This opnion allows good MP save and independent saves of any version update. Vanilla saves are disabled because of lack of several features";
- action = "closeDialog 0;if (player == theBoss) then {[""statSave\saveLoop.sqf"",""BIS_fnc_execVM""] call BIS_fnc_MP} else {_nul = [] execVM ""statSave\saveLoop.sqf""; hintC ""Personal Stats Saved""};";
+ action = "closeDialog 0;if (player == theBoss) then {""statSave\saveLoop.sqf"" remoteExec [""BIS_fnc_execVM"", 0]} else {_nul = [] execVM ""statSave\saveLoop.sqf""; hintC ""Personal Stats Saved""};";
};
};
}; //slots 6+1
@@ -1194,7 +1194,7 @@ class mission_menu {
y = 0.317959 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""AS""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""AS""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_CONV: RscButton
{
@@ -1204,7 +1204,7 @@ class mission_menu {
y = 0.415981 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""CONVOY""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""CONVOY""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_DES: RscButton
{
@@ -1214,7 +1214,7 @@ class mission_menu {
y = 0.514003 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""DES""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""DES""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_LOG: RscButton
{
@@ -1224,7 +1224,7 @@ class mission_menu {
y = 0.317959 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""LOG""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""LOG""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_RES: RscButton
{
@@ -1234,7 +1234,7 @@ class mission_menu {
y = 0.514003 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""RES""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""RES""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_vehicle: RscButton
{
@@ -1244,7 +1244,7 @@ class mission_menu {
y = 0.415981 * safezoneH + safezoneY;
w = 0.175015 * safezoneW;
h = 0.0560125 * safezoneH;
- action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[[""CON""],""A3A_fnc_missionRequest""] call BIS_fnc_MP} else {hint ""Only Player Commander has access to this function""};";
+ action = "closeDialog 0;if (([player] call A3A_fnc_isMember) or (not(isPlayer theBoss))) then {[""CON""] remoteExec [""A3A_fnc_missionRequest"", 2]} else {hint ""Only Player Commander has access to this function""};";
};
class HQ_button_exit: RscButton
{
diff --git a/A3-Antistasi/functions.hpp b/A3-Antistasi/functions.hpp
index 1b4ce0aa13..7c1b1e7b07 100755
--- a/A3-Antistasi/functions.hpp
+++ b/A3-Antistasi/functions.hpp
@@ -84,6 +84,7 @@ class A3A
class prestige {};
class radioCheck {};
class rebuildAssets {};
+ class rebuildRadioTower {};
class relocateHQObjects {};
class repairRuinedBuilding {};
class resourceCheckSkipTime {};
diff --git a/A3-Antistasi/functions/AI/fn_airstrike.sqf b/A3-Antistasi/functions/AI/fn_airstrike.sqf
index 58242c5f1f..4d8b361cd6 100644
--- a/A3-Antistasi/functions/AI/fn_airstrike.sqf
+++ b/A3-Antistasi/functions/AI/fn_airstrike.sqf
@@ -30,9 +30,12 @@ if (_isMarker) then
if (_markerX in airportsX) then
{
private _runwayTakeoff = [_markerX] call A3A_fnc_getRunwayTakeoffForAirportMarker;
- _positionX = _runwayTakeoff select 0;
- _angOrig = (_runwayTakeoff select 1) + (random 20 - 10);
- _ang = _angOrig + 180;
+ if (count _runwayTakeoff > 0) then
+ {
+ _positionX = _runwayTakeoff select 0;
+ _angOrig = (_runwayTakeoff select 1) + (random 20 - 10);
+ _ang = _angOrig + 180;
+ };
};
_pos1 = [_positionX, 400, _angorig] call BIS_Fnc_relPos;
_origpos = [_positionX, 3*distanceSPWN, _angorig] call BIS_fnc_relPos;
diff --git a/A3-Antistasi/functions/AI/fn_captureX.sqf b/A3-Antistasi/functions/AI/fn_captureX.sqf
index d72454b5d8..cc6eaf0313 100644
--- a/A3-Antistasi/functions/AI/fn_captureX.sqf
+++ b/A3-Antistasi/functions/AI/fn_captureX.sqf
@@ -1,57 +1,79 @@
-_unit = _this select 0;
-_playerX = _this select 1;
+private _unit = _this select 0;
+private _playerX = _this select 1;
+private _recruiting = _this select 3;
[_unit,"remove"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
if (!alive _unit) exitWith {};
-_sideX = side (group _unit);
-_chance = 80;
-if ((_sideX == Occupants) and (faction _unit != factionFIA)) then
- {
- _playerX globalChat "Go back to your base and tell your comrades we are not enemies. We just want to live in peace";
+
+private _sideX = side (group _unit);
+private _interrogated = _unit getVariable ["interrogated", false];
+
+private _modAggroOcc = 0;
+private _modAggroInv = 0;
+private _modHR = false;
+private _response = "";
+private _targetMarker = respawnOccupants;
+
+if (_recruiting) then {
+ _playerX globalChat "How about joining the good guys?";
+
+ private _chance = 0;
+ if (_sideX == Occupants) then {
+ if (faction _unit == factionFIA) then { _chance = 60; _modAggroOcc = 0.1; }
+ else { _chance = 20; _modAggroOcc = 0.5; };
}
-else
- {
- _playerX globalChat "Why not join us and make profitable business?";
- _chance = if (faction _unit != factionFIA) then {100 - prestigeCSAT} else {100 - prestigeNATO};
+ else {
+ if (faction _unit == factionFIA) then { _chance = 60; _modAggroInv = 0.1; }
+ else { _chance = 40; _modAggroInv = 0.5; };
};
+ if (_interrogated) then { _chance = _chance / 2 };
-_chance = _chance + 20;
-
-sleep 5;
-if (round random 100 < _chance) then
- {
- if (isMultiplayer) then {[_unit,true] remoteExec ["enableSimulationGlobal",2]} else {_unit enableSimulation true};
- if ((_sideX == Occupants) and (faction _unit != factionFIA)) then
- {
- _unit globalChat "Okay, thank you. I owe you my life";
- }
- else
- {
- if (faction _unit != factionFIA) then {_unit globalChat "Allah bless you!"} else {_unit globalChat "Thank you. I swear you won't regret it!"};
- };
- _unit enableAI "ANIM";
- _unit enableAI "MOVE";
- _unit stop false;
- [_unit,""] remoteExec ["switchMove"];
- _unit doMove (getMarkerPos respawnOccupants);
- if (_unit getVariable ["spawner",false]) then {_unit setVariable ["spawner",nil,true]};
- sleep 100;
- if (alive _unit) then
- {
- if ((_sideX == Occupants) and (faction _unit != factionFIA)) then
- {
- [-0.5,0] remoteExec ["A3A_fnc_prestige",2];
- }
- else
- {
- [1,0] remoteExec ["A3A_fnc_resourcesFIA",2];
- [1,1] remoteExec ["A3A_fnc_prestige",2];
- };
- };
- deleteVehicle _unit;
+ if (random 100 < _chance) then {
+ _response = "Why not? It can't be any worse.";
+ _modHR = true;
+ _targetMarker = respawnTeamPlayer;
}
-else
- {
- _unit globalChat "Screw you!";
+ else {
+ _response = "Screw you!";
+ _modAggroOcc = 0;
+ _modAggroInv = 0;
};
+}
+else {
+ _playerX globalChat "Go back to your base and tell your comrades we are not enemies. We just want to live in peace";
+ _response = selectRandom [
+ "Okay, thank you. I owe you my life",
+ "Thank you. I swear you won't regret it!",
+ "Thank you, I won't forget this!"
+ ];
+
+ private _mult = if (_interrogated) then { 0.5 } else { 1.0 };
+ if (_sideX == Occupants) then {
+ if (faction _unit == factionFIA) then { _modAggroOcc = -0.3*_mult }
+ else { _modAggroOcc = -0.6*_mult };
+ }
+ else {
+ if (faction _unit == factionFIA) then { _modAggroInv = -0.05*_mult }
+ else { _modAggroInv = -0.1*_mult };
+ };
+};
+
+
+if (isMultiplayer) then {[_unit,true] remoteExec ["enableSimulationGlobal",2]} else {_unit enableSimulation true};
+sleep 3;
+_unit globalChat _response;
+_unit enableAI "ANIM";
+_unit enableAI "MOVE";
+_unit stop false;
+[_unit,""] remoteExec ["switchMove"];
+_unit doMove (getMarkerPos _targetMarker);
+// probably redundant. Should already be done in surrenderAction
+if (_unit getVariable ["spawner",false]) then {_unit setVariable ["spawner",nil,true]};
+sleep 100;
+if (alive _unit) then
+{
+ [_modAggroOcc,_modAggroInv] remoteExec ["A3A_fnc_prestige",2];
+ if (_modHR) then { [1,0] remoteExec ["A3A_fnc_resourcesFIA",2] };
+};
+deleteVehicle _unit;
diff --git a/A3-Antistasi/functions/AI/fn_interrogate.sqf b/A3-Antistasi/functions/AI/fn_interrogate.sqf
index 35d4e7315c..c0908d9a9a 100644
--- a/A3-Antistasi/functions/AI/fn_interrogate.sqf
+++ b/A3-Antistasi/functions/AI/fn_interrogate.sqf
@@ -1,9 +1,17 @@
_unit = _this select 0;
_playerX = _this select 1;
-[_unit,"remove"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
+//[_unit,"remove"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
+
+// Remove interrogate action but leave release/recruit actions
+{
+ private _actparams = _unit actionParams _x;
+ if (_actparams select 0 == "Interrogate") then { _unit removeAction _x };
+} forEach (actionIDs _unit);
if (!alive _unit) exitWith {};
+if (_unit getVariable ["interrogated", false]) exitWith {};
+_unit setVariable ["interrogated", true, true];
_playerX globalChat "You imperialist! Tell me what you know!";
_chance = 0;
diff --git a/A3-Antistasi/functions/AI/fn_surrenderAction.sqf b/A3-Antistasi/functions/AI/fn_surrenderAction.sqf
index cd34ad6eb4..31aeecbeef 100644
--- a/A3-Antistasi/functions/AI/fn_surrenderAction.sqf
+++ b/A3-Antistasi/functions/AI/fn_surrenderAction.sqf
@@ -74,5 +74,4 @@ if (!isNil "_markerX") then
sleep 10;
_unit allowDamage true;
if (isMultiplayer) then {[_unit,false] remoteExec ["enableSimulationGlobal",2]} else {_unit enableSimulation false};
-[_unit,"interrogate"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
-[_unit,"captureX"]remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
\ No newline at end of file
+[_unit,"captureX"] remoteExec ["A3A_fnc_flagaction",[teamPlayer,civilian],_unit];
diff --git a/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf b/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf
index 1f4c242e0b..da012cd99c 100644
--- a/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf
+++ b/A3-Antistasi/functions/Ammunition/fn_CSATCrate.sqf
@@ -147,14 +147,14 @@ private _fnc_pickAmount = if (bobChaosCrates) then
{
{
params ["_max"];
- floor random _max;
+ round random _max;
}
}
else
{
{
params ["_max"];
- floor random [1, floor (_max/2), _max];
+ round random [1, floor (_max/2), _max];
}
};
@@ -194,7 +194,7 @@ for "_i" from 0 to floor random _crateItemTypeMax do {
}
else {
[3, format ["Item chosen: %1", _loot],"fn_CSATCrate"] call A3A_fnc_log;
- _amount = floor random crateItemNumMax;
+ _amount = round random crateItemNumMax;
_crate addItemCargoGlobal [_loot,_amount];
[3, format ["Spawning %2 of %3", _amount,_loot],"fn_CSATCrate"] call A3A_fnc_log;
};
@@ -220,7 +220,7 @@ for "_i" from 0 to floor random _crateExplosiveTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Explosives Left in Loot List",servertime]};
}
else {
- _amount = floor random crateExplosiveNumMax;
+ _amount = round random crateExplosiveNumMax;
_crate addMagazineCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -246,7 +246,7 @@ for "_i" from 0 to floor random _crateBackpackTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Backpacks Left in Loot List",servertime]};
}
else {
- _amount = floor random crateBackpackNumMax;
+ _amount = round random crateBackpackNumMax;
_crate addBackpackCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -259,7 +259,7 @@ for "_i" from 0 to floor random _crateHelmetTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Helmets Left in Loot List",servertime]};
}
else {
- _amount = floor random crateHelmetNumMax;
+ _amount = round random crateHelmetNumMax;
_crate addItemCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -272,7 +272,7 @@ for "_i" from 0 to floor random _crateVestTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Vests Left in Loot List",servertime]};
}
else {
- _amount = floor random crateVestNumMax;
+ _amount = round random crateVestNumMax;
_crate addItemCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -285,7 +285,7 @@ for "_i" from 0 to floor random _crateDeviceTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | No Device Bags Left in Loot List",servertime]};
}
else {
- _amount = floor random crateDeviceNumMax;
+ _amount = round random crateDeviceNumMax;
_crate addBackpackCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | CSATCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
diff --git a/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf b/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf
index c12c9c2dad..62ba8387ca 100755
--- a/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf
+++ b/A3-Antistasi/functions/Ammunition/fn_NATOCrate.sqf
@@ -155,14 +155,19 @@ private _fnc_pickAmount = if (bobChaosCrates) then
{
{
params ["_max"];
- floor random _max;
+ round random _max;
}
}
else
{
{
params ["_max"];
- floor (random [1, floor (_max/2), _max] * _quantityScalingFactor);
+ //Never have a greater than 50% chance of getting nothing
+ if (_max * _quantityScalingFactor < 1) then {
+ round random 1
+ } else {
+ round (random [1, floor (_max/2), _max] * _quantityScalingFactor)
+ }
}
};
@@ -222,7 +227,7 @@ for "_i" from 0 to floor random _crateItemTypeMax do {
}
else {
[3, format ["Item chosen: %1", _loot],"fn_NATOCrate"] call A3A_fnc_log;
- _amount = floor random crateItemNumMax;
+ _amount = round random crateItemNumMax;
_crate addItemCargoGlobal [_loot,_amount];
[3, format ["Spawning %2 of %3", _amount,_loot],"fn_NATOCrate"] call A3A_fnc_log;
};
@@ -248,7 +253,7 @@ for "_i" from 0 to floor random _crateExplosiveTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Explosives Left in Loot List",servertime]};
}
else {
- _amount = floor random crateExplosiveNumMax;
+ _amount = round random crateExplosiveNumMax;
_crate addMagazineCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -274,7 +279,7 @@ for "_i" from 0 to floor random _crateBackpackTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Backpacks Left in Loot List",servertime]};
}
else {
- _amount = floor random crateBackpackNumMax;
+ _amount = round random crateBackpackNumMax;
_crate addBackpackCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -287,7 +292,7 @@ for "_i" from 0 to floor random _crateHelmetTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Helmets Left in Loot List",servertime]};
}
else {
- _amount = floor random crateHelmetNumMax;
+ _amount = round random crateHelmetNumMax;
_crate addItemCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -300,7 +305,7 @@ for "_i" from 0 to floor random _crateVestTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Vests Left in Loot List",servertime]};
}
else {
- _amount = floor random crateVestNumMax;
+ _amount = round random crateVestNumMax;
_crate addItemCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
@@ -313,7 +318,7 @@ for "_i" from 0 to floor random _crateDeviceTypeMax do {
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | No Device Bags Left in Loot List",servertime]};
}
else {
- _amount = floor random crateDeviceNumMax;
+ _amount = round random crateDeviceNumMax;
_crate addBackpackCargoGlobal [_loot,_amount];
if (debug) then {diag_log format ["%1: [Antistasi] | INFO | NATOCrate | Spawning %2 of %3",servertime,_amount,_loot]};
};
diff --git a/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf b/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf
index 166f404097..330c218459 100644
--- a/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf
+++ b/A3-Antistasi/functions/Ammunition/fn_equipmentClassToCategories.sqf
@@ -138,4 +138,11 @@ if (_basecategory == "Headgear") then {
};
};
+if (_basecategory == "Backpacks") then {
+ // 160 = assault pack. Just a way to limit which backpacks friendly AI are using.
+ if (getNumber (configFile >> "CfgVehicles" >> _className >> "maximumLoad") >= 160) then {
+ _categories pushBack "BackpacksCargo";
+ };
+};
+
_categories;
\ No newline at end of file
diff --git a/A3-Antistasi/functions/Base/fn_flagaction.sqf b/A3-Antistasi/functions/Base/fn_flagaction.sqf
index 644ce270b1..4abb94651f 100644
--- a/A3-Antistasi/functions/Base/fn_flagaction.sqf
+++ b/A3-Antistasi/functions/Base/fn_flagaction.sqf
@@ -82,8 +82,13 @@ switch _typeX do
};
case "refugee": {_flag addAction ["Liberate
", A3A_fnc_liberaterefugee,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};//"\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_unbind_ca.paa"
case "prisonerX": {_flag addAction ["Liberate POW
", A3A_fnc_liberatePOW,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
- case "interrogate": {_flag addAction ["Interrogate", { _this spawn A3A_fnc_interrogate; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
- case "captureX": {_flag addAction ["Release POW
", A3A_fnc_captureX,nil,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
+ case "captureX":
+ {
+ // Uses the optional param to determine whether the call of captureX is a release or a recruit
+ _flag addAction ["Release POW
", { _this spawn A3A_fnc_captureX; },false,6,true,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4];
+ _flag addAction ["Recruit", { _this spawn A3A_fnc_captureX; },true,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4];
+ _flag addAction ["Interrogate", { _this spawn A3A_fnc_interrogate; },nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4];
+ };
case "buildHQ": {_flag addAction ["Build HQ here", A3A_fnc_buildHQ,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
case "seaport": {_flag addAction ["Buy Boat", {[vehSDKBoat] spawn A3A_fnc_addFIAVeh},nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
case "steal": {_flag addAction ["Steal Static", A3A_fnc_stealStatic,nil,0,false,true,"","(isPlayer _this) and (_this == _this getVariable ['owner',objNull])",4]};
diff --git a/A3-Antistasi/functions/Base/fn_garbageCleaner.sqf b/A3-Antistasi/functions/Base/fn_garbageCleaner.sqf
index db9fd59408..fbfcb5c6f2 100644
--- a/A3-Antistasi/functions/Base/fn_garbageCleaner.sqf
+++ b/A3-Antistasi/functions/Base/fn_garbageCleaner.sqf
@@ -1,6 +1,6 @@
private ["_toDelete"];
-[[petros,"hint","Deleting Garbage. Please wait"],"A3A_fnc_commsMP"] call BIS_fnc_MP;
+[petros,"hint","Deleting Garbage. Please wait"] remoteExec ["A3A_fnc_commsMP", 0];
/*
_toDelete = nearestObjects [markerPos "base_4", ["WeaponHolderSimulated", "GroundWeaponHolder", "WeaponHolder"], 16000];
@@ -13,4 +13,4 @@ for "_i" from 0 to ((count _toDelete) - 1) do
{deleteVehicle _x} forEach (allMissionObjects "WeaponHolder");
{deleteVehicle _x} forEach (allMissionObjects "WeaponHolderSimulated");
-[[petros,"hint","Garbage deleted"],"A3A_fnc_commsMP"] call BIS_fnc_MP;
\ No newline at end of file
+[petros,"hint","Garbage deleted"] remoteExec ["A3A_fnc_commsMP", 0];
\ No newline at end of file
diff --git a/A3-Antistasi/functions/Base/fn_markerChange.sqf b/A3-Antistasi/functions/Base/fn_markerChange.sqf
index c700583d1f..a295f3e1ff 100644
--- a/A3-Antistasi/functions/Base/fn_markerChange.sqf
+++ b/A3-Antistasi/functions/Base/fn_markerChange.sqf
@@ -92,7 +92,7 @@ else
//End ========================================================================
};
-[_markerX] call A3A_fnc_updateReinfState;
+[_markerX, [_winner, _looser]] call A3A_fnc_updateReinfState;
[3, format ["Garrison set for %1", _markerX], _fileName] call A3A_fnc_log;
diff --git a/A3-Antistasi/functions/Base/fn_outpostDialog.sqf b/A3-Antistasi/functions/Base/fn_outpostDialog.sqf
index b983c8b809..65a251c034 100644
--- a/A3-Antistasi/functions/Base/fn_outpostDialog.sqf
+++ b/A3-Antistasi/functions/Base/fn_outpostDialog.sqf
@@ -60,4 +60,4 @@ if (_typeX != "delete") then
[-_hr,-_costs] remoteExec ["A3A_fnc_resourcesFIA",2];
};
- [[_typeX,_positionTel],"A3A_fnc_createOutpostsFIA"] call BIS_fnc_MP
+ [_typeX,_positionTel] remoteExec ["A3A_fnc_createOutpostsFIA", 2];
diff --git a/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf b/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf
index db328b93ec..f38232c965 100644
--- a/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf
+++ b/A3-Antistasi/functions/Base/fn_rebuildAssets.sqf
@@ -64,29 +64,6 @@ if (isNull _antennaDead) then
else
{
hint "Radio Tower rebuilt";
- antennasDead = antennasDead - [_antennaDead]; publicVariable "antennasDead";
- [_antennaDead] call A3A_fnc_repairRuinedBuilding;
- antennas pushBack _antennaDead; publicVariable "antennas";
-
- {if ([antennas,_x] call BIS_fnc_nearestPosition == _antennaDead) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX;
- _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antennaDead], getPos _antennaDead];
- _mrkFinal setMarkerShape "ICON";
- _mrkFinal setMarkerType "loc_Transmitter";
- _mrkFinal setMarkerColor "ColorBlack";
- _mrkFinal setMarkerText "Radio Tower";
- mrkAntennas pushBack _mrkFinal;
- publicVariable "mrkAntennas";
- _antennaDead addEventHandler ["Killed",
- {
- _antenna = _this select 0;
- _antenna removeAllEventHandlers "Killed";
- {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX;
- _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition;
- antennas = antennas - [_antenna]; antennasDead = antennasDead + [_antenna]; deleteMarker _mrk;
- ["TaskSucceeded",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",teamPlayer];
- ["TaskFailed",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",Occupants];
- publicVariable "antennas"; publicVariable "antennasDead";
- }
- ];
+ [_antennaDead] remoteExec ["A3A_fnc_rebuildRadioTower", 2];
};
[0,-5000] remoteExec ["A3A_fnc_resourcesFIA",2];
\ No newline at end of file
diff --git a/A3-Antistasi/functions/Base/fn_rebuildRadioTower.sqf b/A3-Antistasi/functions/Base/fn_rebuildRadioTower.sqf
new file mode 100644
index 0000000000..3d3abd9ff7
--- /dev/null
+++ b/A3-Antistasi/functions/Base/fn_rebuildRadioTower.sqf
@@ -0,0 +1,38 @@
+// Repairs a radio tower.
+// Parameter should be present in antennasDead array
+private _file = "fn_rebuildRadioTower";
+if (!isServer) exitWith { [1, "Server-only function miscalled", _file] call A3A_fnc_log };
+
+params ["_antenna"];
+
+if !(_antenna in antennasDead) exitWith { [1, "Attempted to rebuild invalid radio tower", _file] call A3A_fnc_log };
+[2, format["Repairing Antenna %1", str _antenna], _file] call A3A_fnc_log;
+
+antennasDead = antennasDead - [_antenna]; publicVariable "antennasDead";
+[_antenna] call A3A_fnc_repairRuinedBuilding;
+antennas pushBack _antenna; publicVariable "antennas";
+
+{if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX;
+
+private _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antenna], getPos _antenna];
+_mrkFinal setMarkerShape "ICON";
+_mrkFinal setMarkerType "loc_Transmitter";
+_mrkFinal setMarkerColor "ColorBlack";
+_mrkFinal setMarkerText "Radio Tower";
+mrkAntennas pushBack _mrkFinal;
+publicVariable "mrkAntennas";
+
+_antenna addEventHandler ["Killed",
+ {
+ params ["_antenna"];
+ _antenna removeAllEventHandlers "Killed";
+ {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX;
+ _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition;
+ mrkAntennas = mrkAntennas - [_mrk]; deleteMarker _mrk;
+ antennas = antennas - [_antenna]; antennasDead = antennasDead + [_antenna];
+ publicVariable "antennas"; publicVariable "antennasDead"; publicVariable "mrkAntennas";
+ ["TaskSucceeded",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",teamPlayer];
+ ["TaskFailed",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",Occupants];
+ }
+ ];
+
diff --git a/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf b/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf
index 18532b2471..2a835845d9 100644
--- a/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf
+++ b/A3-Antistasi/functions/Base/fn_repairRuinedBuilding.sqf
@@ -1,6 +1,8 @@
//Repairs a destroyed building.
//Parameter can either be the ruin of a building, or the building itself buried underneath the ruins.
+if (!isServer) exitWith { [1, "Server-only function miscalled", "fn_repairRuinedBuilding"] call A3A_fnc_log };
+
params ["_target"];
private _buildingToRepair = objNull;
diff --git a/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf b/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf
index deba187ea7..8c43500cba 100644
--- a/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf
+++ b/A3-Antistasi/functions/Base/fn_startBreachVehicle.sqf
@@ -15,6 +15,22 @@ if(!alive _vehicle) exitWith
_vehicle removeAction _actionID;
};
+private _vehCrew = crew _vehicle;
+private _aliveCrew = _vehCrew select {alive _x};
+if(count _aliveCrew == 0) exitWith
+{
+ hint "There is no living crew left, no need for breaching!";
+ _vehicle lock false;
+ _vehicle removeAction _actionID;
+};
+
+if(side (_aliveCrew select 0) == teamPlayer) exitWith
+{
+ hint "You cannot breach a vehicle which is controlled by the rebels!";
+ _vehicle removeAction _actionID;
+};
+
+
private _isAPC = (typeOf _vehicle) in vehAPCs;
private _isTank = (typeOf _vehicle) in vehTanks;
diff --git a/A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf b/A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf
index 3fe4d16269..0ecdf1c994 100644
--- a/A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf
+++ b/A3-Antistasi/functions/CREATE/fn_createFIAOutposts2.sqf
@@ -11,7 +11,7 @@ if (isOnRoad _positionX) then {_isRoad = true};
if (_isRoad) then
{
_radiusX = 1;
- _garrison = garrison getVariable _markerX;
+ _garrison = garrison getVariable [_markerX, []];
_veh = objNull;
if (isNil "_garrison") then
@@ -67,11 +67,11 @@ if ({alive _x} count units _groupX == 0) then
deleteMarker _markerX;
if (_isRoad) then
{
- [["TaskFailed", ["", "Roadblock Lost"]],"BIS_fnc_showNotification"] call BIS_fnc_MP;
+ ["TaskFailed", ["", "Roadblock Lost"]] remoteExec ["BIS_fnc_showNotification", 0];
}
else
{
- [["TaskFailed", ["", "Watchpost Lost"]],"BIS_fnc_showNotification"] call BIS_fnc_MP;
+ ["TaskFailed", ["", "Watchpost Lost"]] remoteExec ["BIS_fnc_showNotification", 0];
};
};
@@ -79,4 +79,4 @@ waitUntil {sleep 1; (spawner getVariable _markerX == 2) or (not(_markerX in outp
if (_isRoad) then {if (!isNull _veh) then {deleteVehicle _veh}};
{deleteVehicle _x} forEach units _groupX;
-deleteGroup _groupX;
\ No newline at end of file
+deleteGroup _groupX;
diff --git a/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf b/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf
index 0e3f74e1e1..ac091c5655 100644
--- a/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf
+++ b/A3-Antistasi/functions/CREATE/fn_milBuildings.sqf
@@ -96,14 +96,30 @@ for "_i" from 0 to (count _buildings) - 1 do
_soldiers pushBack _unit;
_vehiclesX pushBack _veh;
}
+else
+{
+ if ((_typeB == "Land_Cargo_Patrol_V1_F") or (_typeB == "Land_Cargo_Patrol_V2_F") or (_typeB == "Land_Cargo_Patrol_V3_F")) then
+ {
+ _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG};
+ _veh = createVehicle [_typeVehX, (_building buildingPos 1), [], 0, "CAN_COLLIDE"];
+ _ang = (getDir _building) - 180;
+ _pos = [getPosATL _veh, 2.5, _ang] call BIS_Fnc_relPos;
+ _veh setPosATL _pos;
+ _veh setDir (getDir _building) - 180;
+ _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
+ [_unit,_markerX] call A3A_fnc_NATOinit;
+ _unit moveInGunner _veh;
+ _soldiers pushBack _unit;
+ _vehiclesX pushBack _veh;
+ }
else
{
- if ((_typeB == "Land_Cargo_Patrol_V1_F") or (_typeB == "Land_Cargo_Patrol_V2_F") or (_typeB == "Land_Cargo_Patrol_V3_F")) then
+ if ((_typeB == "Land_fortified_nest_small_EP1") or (_typeB == "Land_BagBunker_Small_F") or (_typeB == "Land_BagBunker_01_small_green_F") or (_typeB == "Land_fortified_nest_small") or (_typeB == "Fort_Nest")) then
{
_typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG};
_veh = createVehicle [_typeVehX, (_building buildingPos 1), [], 0, "CAN_COLLIDE"];
_ang = (getDir _building) - 180;
- _pos = [getPosATL _veh, 2.5, _ang] call BIS_Fnc_relPos;
+ _pos = [getPosATL _veh, -1, _ang] call BIS_Fnc_relPos;
_veh setPosATL _pos;
_veh setDir (getDir _building) - 180;
_unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
@@ -114,25 +130,45 @@ for "_i" from 0 to (count _buildings) - 1 do
}
else
{
- if (_typeB in listbld) then
+ if ((_typeB == "Land_Hlaska")) then
{
_typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG};
- _veh = createVehicle [_typeVehX, (_building buildingPos 11), [], 0, "CAN_COLLIDE"];
- _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
- [_unit,_markerX] call A3A_fnc_NATOinit;
- _unit moveInGunner _veh;
- _soldiers pushBack _unit;
- _vehiclesX pushBack _veh;
- sleep 0.5;
- _veh = createVehicle [_typeVehX, (_building buildingPos 13), [], 0, "CAN_COLLIDE"];
+ _veh = createVehicle [_typeVehX, (_building buildingPos 1), [], 0, "CAN_COLLIDE"];
+ _ang = (getDir _building) - 180;
+ _pos = [getPosATL _veh, -1, _ang] call BIS_Fnc_relPos;
+ _veh setPosATL _pos;
+ _veh setDir (getDir _building) - 180;
+
+
+
_unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
[_unit,_markerX] call A3A_fnc_NATOinit;
_unit moveInGunner _veh;
_soldiers pushBack _unit;
_vehiclesX pushBack _veh;
+ }
+ else
+ {
+ if (_typeB in listbld) then
+ {
+ _typeVehX = if (_sideX == Occupants) then {NATOMG} else {CSATMG};
+ _veh = createVehicle [_typeVehX, (_building buildingPos 11), [], 0, "CAN_COLLIDE"];
+ _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
+ [_unit,_markerX] call A3A_fnc_NATOinit;
+ _unit moveInGunner _veh;
+ _soldiers pushBack _unit;
+ _vehiclesX pushBack _veh;
+ sleep 0.5;
+ _veh = createVehicle [_typeVehX, (_building buildingPos 13), [], 0, "CAN_COLLIDE"];
+ _unit = _groupX createUnit [_typeUnit, _positionX, [], 0, "NONE"];
+ [_unit,_markerX] call A3A_fnc_NATOinit;
+ _unit moveInGunner _veh;
+ _soldiers pushBack _unit;
+ _vehiclesX pushBack _veh;
+ };
};
};
};
};
-
+};
[_groupX,_vehiclesX,_soldiers]
diff --git a/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf b/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf
index 0df3ea0e72..72b6f69440 100644
--- a/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf
+++ b/A3-Antistasi/functions/CREATE/fn_patrolCA.sqf
@@ -379,7 +379,7 @@ if (_base != "") then
if (_isMarker) then
{
- if ((count (garrison getVariable _markerX)) < 4) then
+ if ((count (garrison getVariable [_markerX, []])) < 4) then
{
_Vwp1 setWaypointType "MOVE";
_Vwp1 setWaypointBehaviour "AWARE";
diff --git a/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf b/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf
index 4ccbc326f2..078cdf34b0 100644
--- a/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf
+++ b/A3-Antistasi/functions/CREATE/fn_reinforcementsAI.sqf
@@ -6,7 +6,7 @@ _reinfPlaces = [];
_airportX = _x;
_numberX = 8;
_numGarr = [_airportX] call A3A_fnc_garrisonSize;
- _numReal = count (garrison getVariable _airportX);
+ _numReal = count (garrison getVariable [_airportX, []]);
_sideX = sidesX getVariable [_airportX,sideUnknown];
//Self reinforce the airport if needed
@@ -41,7 +41,7 @@ _reinfPlaces = [];
_siteX = "";
{
_numGarr = [_x] call A3A_fnc_garrisonSize;
- _numReal = count (garrison getVariable _x);
+ _numReal = count (garrison getVariable [_x, []]);
if (_numGarr - _numReal > _countX) then
{
_countX = _numGarr - _numReal;
diff --git a/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf b/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf
index b03e29edd9..3cedbe39f3 100644
--- a/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf
+++ b/A3-Antistasi/functions/CREATE/fn_wavedCA.sqf
@@ -460,8 +460,8 @@ while {(_waves > 0)} do
_ang = _runwayTakeoff select 1;
};
_spawnedSquad = false;
-
- private _transportAircraft =
+
+ private _transportAircraft =
if (_sideX == Occupants) then {
vehNATOTransportHelis + vehNATOTransportPlanes;
} else {
@@ -471,16 +471,16 @@ while {(_waves > 0)} do
while {(_countX <= _nVeh) and (count _soldiers <= 80)} do
{
_proceed = true;
-
+
private _availableTransportAircraft = _transportAircraft select {[_x] call A3A_fnc_vehAvailable};
-
+
if (_vehPool isEqualTo []) then {
_vehPool = _availableTransportAircraft;
};
-
+
//Give us a rough 20% baseline of transport aircraft, with a bit of randomness for added flair.
_typeVehX = [selectRandom _vehPool, selectRandom _availableTransportAircraft] select (random 1 < 0.20);
-
+
_typeVehX = if !(_vehPool isEqualTo []) then {selectRandom _vehPool} else {if (_sideX == Occupants) then {selectRandom ([vehNATOPatrolHeli] + vehNATOTransportPlanes)} else {selectRandom ([vehCSATPatrolHeli] + vehCSATTransportPlanes)}};
if ((_typeVehX in vehTransportAir) and !(_spawnedSquad)) then
{
@@ -575,7 +575,7 @@ while {(_waves > 0)} do
else
{
{_x disableAI "TARGET"; _x disableAI "AUTOTARGET"} foreach units _groupVeh;
- if ((_typeVehX in vehFastRope) and ((count(garrison getVariable _mrkDestination)) < 10)) then
+ if ((_typeVehX in vehFastRope) and ((count(garrison getVariable [_mrkDestination, []])) < 10)) then
{
//_grupo setVariable ["mrkAttack",_mrkDestination];
[_veh,_grupo,_posDestination,_posOrigin,_groupVeh] spawn A3A_fnc_fastrope;
diff --git a/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf b/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf
index aee7938eac..8a7956f5f6 100644
--- a/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf
+++ b/A3-Antistasi/functions/Convoy/fn_createAIAction.sqf
@@ -369,7 +369,7 @@ if(_type == "convoy") then
if (_destination in outposts) then
{
//That doesn't make sense, or am I wrong? Can someone double check this logic?
- if (((count (garrison getVariable [_destination,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then
+ if (((count (garrison getVariable [_destination, []]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then
{
_typeConvoy pushBack "Reinforcements";
};
@@ -393,7 +393,7 @@ if(_type == "convoy") then
_typeConvoy = ["Prisoners"];
};
//Same here, not sure about it
- if (((count (garrison getVariable [_destinationX,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then
+ if (((count (garrison getVariable [_destinationX, []]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then
{
_typeConvoy pushBack "Reinforcements"
};
diff --git a/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf b/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf
index f94ce98bcd..826297e0a8 100644
--- a/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf
+++ b/A3-Antistasi/functions/Convoy/fn_roadblockFight.sqf
@@ -5,7 +5,7 @@ _nightTimeBonus = if (daytime < 6 || {daytime > 22}) then {0.25} else {0};
_defenderBonus = 1 + _nightTimeBonus + (random 0.5);
_attackerBonus = 1;
-_garrison = garrison getVariable _roadblockMarker;
+_garrison = garrison getVariable [_roadblockMarker, []];
_roadblockCount = 0;
{
diff --git a/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf b/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf
index 3ed99e5d4b..96d02f1aaa 100644
--- a/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf
+++ b/A3-Antistasi/functions/Dialogs/fn_createDialog_setParams.sqf
@@ -10,22 +10,23 @@ if (!isNil "loadLastSave" && {!loadLastSave}) then {
hint "Choose a difficulty level";
waitUntil {!dialog};
- if (!isNil "skillMult" && {skillMult != 2}) then
- {
- //Easy Difficulty Tweaks
+ [] spawn {
+ waitUntil {(!isNil "serverInitDone")}; // need following params to be initialized
+ if (isNil "skillMult") exitWith {};
if (skillMult == 1) then
{
+ //Easy Difficulty Tweaks
server setVariable ["hr",25,true];
server setVariable ["resourcesFIA",5000,true];
vehInGarage = [vehSDKTruck,vehSDKTruck,SDKMortar,SDKMGStatic,staticAAteamPlayer];
minWeaps = 15;
if !(hasTFAR) then
{
- "ItemRadio" call A3A_fnc_unlockEquipment;
+ ["ItemRadio"] call A3A_fnc_unlockEquipment;
haveRadio = true;
};
- }
- else
+ };
+ if (skillMult == 3) then
{
//Hard Difficulty Tweaks
server setVariable ["hr",0,true];
diff --git a/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf b/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf
index a07fb64b6d..c4c9dbb617 100644
--- a/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf
+++ b/A3-Antistasi/functions/Dialogs/fn_skiptime.sqf
@@ -20,6 +20,6 @@ if ((_x distance _posHQ > 100) and (side _x == teamPlayer)) then {_checkX = true
if (_checkX) exitWith {hint "All players must be in a 100m radius from HQ to be able to rest"};
-[[],"A3A_fnc_resourcecheckSkipTime"] call BIS_fnc_MP;
+remoteExec ["A3A_fnc_resourcecheckSkipTime", 0];
diff --git a/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf b/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf
index 7c7847b778..47279a539f 100644
--- a/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf
+++ b/A3-Antistasi/functions/Garage/fn_garageVehicle.sqf
@@ -2,7 +2,7 @@
private ["_pool","_veh","_typeVehX"];
_pool = false;
-if (_this select 0) then {_pool = true};
+if (_this select 0 || !isMultiplayer) then {_pool = true};
if (side player != teamPlayer) exitWith {hint "Only rebels can add vehicles to the garage."};
if (!([player] call A3A_fnc_isMember)) exitWith {hint "Only server members have the garage feature enabled"};
diff --git a/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf b/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf
index 25e4735f48..c3c250dda4 100644
--- a/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf
+++ b/A3-Antistasi/functions/Garage/fn_vehPlacementCallbacks.sqf
@@ -140,7 +140,7 @@ switch (_callbackTarget) do {
{
if (player == theBoss && ((_typeVehX == SDKMortar) or (_typeVehX == staticATteamPlayer) or (_typeVehX == staticAAteamPlayer) or (_typeVehX == SDKMGStatic))) then
{
- _nul = [0,(-1 * vehiclePurchase_cost)] remoteExecCall ["A3A_fnc_resourcesFIA",2]
+ _nul = [0,(-1 * vehiclePurchase_cost)] remoteExec ["A3A_fnc_resourcesFIA",2]
}
else
{
diff --git a/A3-Antistasi/functions/Garrison/fn_addRequested.sqf b/A3-Antistasi/functions/Garrison/fn_addRequested.sqf
index 7d9df217dc..5a6a483ae2 100644
--- a/A3-Antistasi/functions/Garrison/fn_addRequested.sqf
+++ b/A3-Antistasi/functions/Garrison/fn_addRequested.sqf
@@ -87,6 +87,8 @@ else
_reinforcements pushBack _unit;
garrison setVariable [format ["%1_requested", _marker], _reinforcements, true];
- //Update reinforcement priority
- [_marker] call A3A_fnc_updateReinfState;
+
};
+
+//Update reinforcement priority
+[_marker] call A3A_fnc_updateReinfState;
diff --git a/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf b/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf
index daeeb55124..d3a2cbeddb 100644
--- a/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf
+++ b/A3-Antistasi/functions/Garrison/fn_shouldReinforce.sqf
@@ -1,5 +1,12 @@
params ["_base", "_target"];
+private _fileName = "shouldReinforce";
+[
+ 3,
+ format ["Checking if %1 should reinforce %2", _base, _target],
+ _fileName
+] call A3A_fnc_log;
+
//Bases cannot reinforce themselves
if(_base isEqualTo _target) exitWith {false};
diff --git a/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf b/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf
index 292f688c32..0f4aa577f4 100644
--- a/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf
+++ b/A3-Antistasi/functions/Garrison/fn_updateGarrison.sqf
@@ -13,7 +13,7 @@ private ["_preferred", "_side", "_garCount", "_preCount", "_line"];
_preferred = garrison getVariable (format ["%1_preference", _type]);
_garrison = garrison getVariable (format ["%1_garrison", _marker]);
-_side = garrison getVariable [_marker, sideUnknown];
+_side = sidesX getVariable [_marker, sideUnknown];
if(_side == sideUnknown) exitWith
{
diff --git a/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf b/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf
index 061324019c..6c1aff45ed 100644
--- a/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf
+++ b/A3-Antistasi/functions/Garrison/fn_updateReinfState.sqf
@@ -1,78 +1,97 @@
-params ["_marker"];
+params ["_marker", ["_sides", []]];
/* Updates the reinf state if the marker, decides whether it can reinforce others and/or needs reinforcement
* Params:
-* _marker: STRING : The name of the marker
+* _marker : STRING : The name of the marker
+* _sides : ARRAY of SIDES : If the marker switched sides this will handle the transfer [_loser, _winner]
*
* Returns:
* Nothing
*/
-private ["_ratio", "_side", "_reinfMarker", "_canReinf", "_index", "_isAirport", "_isOutpost"];
+private _loser = teamPlayer;
+private _owner = sideUnknown;
+
+if(_sides isEqualTo []) then
+{
+ //Fixed update, get side from the server
+ _owner = sidesX getVariable [_marker, teamPlayer];
+}
+else
+{
+ //Update as marker changed, sides are given
+ _loser = _sides select 0;
+ _owner = _sides select 1;
+};
-_ratio = [_marker] call A3A_fnc_getGarrisonRatio;
-_side = sidesX getVariable [_marker, sideUnknown];
-if(_side == teamPlayer) exitWith
+private _ratio = [_marker] call A3A_fnc_getGarrisonRatio;
+
+//Remove old entry
+if(_loser != teamPlayer) then
{
- private _index = reinforceMarkerOccupants findIf {(_x select 1) == _marker};
- if(_index == -1) then
- {
- _index = reinforceMarkerInvader findIf {(_x select 1) == _marker};
- if(_index != -1) then
+ private _index = -1;
+ if(_loser == Occupants) then
+ {
+ //Remove marker from occupants
+ _index = reinforceMarkerOccupants findIf {(_x select 1) == _marker};
+ reinforceMarkerOccupants deleteAt _index;
+ canReinforceOccupants = canReinforceOccupants - [_marker];
+ }
+ else
{
- reinforceMarkerInvader deleteAt _index;
+ //Remove marker form occupants
+ _index = reinforceMarkerInvader findIf {(_x select 1) == _marker};
+ reinforceMarkerInvader deleteAt _index;
+ canReinforceInvader = canReinforceInvader - [_marker];
};
- }
- else
- {
- reinforceMarkerOccupants deleteAt _index;
- };
- canReinforceOccupants = canReinforceOccupants - [_marker];
- canReinforceInvader = canReinforceInvader - [_marker];
};
-//diag_log format ["Marker %1 has a ratio of %2", _marker, _ratio];
+if(_owner != teamPlayer) then
+{
+ private _reinfMarker = if(_owner == Occupants) then {reinforceMarkerOccupants} else {reinforceMarkerInvader};
+ private _canReinf = if(_owner == Occupants) then {canReinforceOccupants} else {canReinforceInvader};
-_reinfMarker = if(_side == Occupants) then {reinforceMarkerOccupants} else {reinforceMarkerInvader};
-_canReinf = if(_side == Occupants) then {canReinforceOccupants} else {canReinforceInvader};
+ private _isAirport = _marker in airportsX;
+ private _index = _reinfMarker findIf {(_x select 1) == _marker};
-_isAirport = _marker in airportsX;
+ //If in need of reinforcements
+ if(_ratio != 1) then
+ {
+ //Airports don't get send reinforcements
+ if(!_isAirport) then
+ {
+ if(_index == -1) then
+ {
+ //Add new entry
+ _reinfMarker pushBack [_ratio, _marker];
+ }
+ else
+ {
+ //Update data
+ _reinfMarker set [_index, [_ratio, _marker]];
+ };
+ };
+ }
+ else
+ {
+ //Outpost is full, no more units needed, delete from _reinfMarker
+ if(_index != -1) then
+ {
+ _reinfMarker deleteAt _index;
+ };
+ };
-_index = _reinfMarker findIf {(_x select 1) == _marker};
-if(_ratio != 1 && {!_isAirport}) then
-{
- //TODO calculate importance of target
- if(_index == -1) then
- {
- //Marker not in _reinfMarker
- _reinfMarker pushBack [_ratio, _marker];
- }
- else
- {
- //Marker in it, replace
- _reinfMarker set [_index, [_ratio, _marker]];
- };
-}
-else
-{
- if(_index != -1) then
- {
- //Delete marker
- _reinfMarker deleteAt _index;
- };
-};
+ private _isOutpost = _marker in outposts;
-_isOutpost = _marker in outposts;
-//In desperate need of reinforcements, can't send own
-if((_isAirport && _ratio <= 0.4) || {_isOutpost && _ratio <= 0.8}) then
-{
- _canReinf = _canReinf - [_marker];
-}
-else
-{
- if(_isAirport || {_isOutpost}) then
- {
- _canReinf pushBackUnique _marker;
- };
+ //If units are not depleted, let the outpost send units
+ if((_isAirport && _ratio > 0.4) || {_isOutpost && _ratio > 0.8}) then
+ {
+ _canReinf pushBackUnique _marker;
+ }
+ else
+ {
+ //Marker depleted, cannot send reinforcements
+ _canReinf = _canReinf - [_marker];
+ };
};
diff --git a/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf b/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf
index 27d4051031..9d2be813a6 100644
--- a/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf
+++ b/A3-Antistasi/functions/Missions/fn_REP_Antenna.sqf
@@ -105,30 +105,7 @@ if (dateToNumber date > _dateLimitNum) then
[-600] remoteExec ["A3A_fnc_timingCA",2];
[-10,theBoss] call A3A_fnc_playerScoreAdd;
};
- antennasDead = antennasDead - [_antennaDead]; publicVariable "antennasDead";
- diag_log format ["%1: [Antistasi] | DEBUG | Repairing Antenna %2.",servertime, typeOf _antennaDead];
- [_antennaDead] call A3A_fnc_repairRuinedBuilding;
- antennas pushBack _antennaDead; publicVariable "antennas";
- {if ([antennas,_x] call BIS_fnc_nearestPosition == _antennaDead) then {[_x,true] spawn A3A_fnc_blackout}} forEach citiesX;
- _mrkFinal = createMarker [format ["Ant%1", mapGridPosition _antennaDead], getPos _antennaDead];
- _mrkFinal setMarkerShape "ICON";
- _mrkFinal setMarkerType "loc_Transmitter";
- _mrkFinal setMarkerColor "ColorBlack";
- _mrkFinal setMarkerText "Radio Tower";
- mrkAntennas pushBack _mrkFinal;
- publicVariable "mrkAntennas";
- _antennaDead addEventHandler ["Killed",
- {
- _antenna = _this select 0;
- _antenna removeAllEventHandlers "Killed";
- {if ([antennas,_x] call BIS_fnc_nearestPosition == _antenna) then {[_x,false] spawn A3A_fnc_blackout}} forEach citiesX;
- _mrk = [mrkAntennas, _antenna] call BIS_fnc_nearestPosition;
- antennas = antennas - [_antenna]; antennasDead = antennasDead + [_antenna]; deleteMarker _mrk;
- ["TaskSucceeded",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",teamPlayer];
- ["TaskFailed",["", "Radio Tower Destroyed"]] remoteExec ["BIS_fnc_showNotification",Occupants];
- publicVariable "antennas"; publicVariable "antennasDead";
- }
- ];
+ [_antennaDead] remoteExec ["A3A_fnc_rebuildRadioTower", 2];
};
_nul = [30,"REP"] spawn A3A_fnc_deleteTask;
diff --git a/A3-Antistasi/functions/Missions/fn_convoy.sqf b/A3-Antistasi/functions/Missions/fn_convoy.sqf
index 0d66b527de..870fe1b53a 100644
--- a/A3-Antistasi/functions/Missions/fn_convoy.sqf
+++ b/A3-Antistasi/functions/Missions/fn_convoy.sqf
@@ -45,7 +45,7 @@ private ["_tsk","_grpPOW","_pos"];
if ((_destinationX in airportsX) or (_destinationX in outposts)) then
{
_typeConvoy = ["ammunition","Armor"];
- if (_destinationX in outposts) then {if (((count (garrison getVariable [_destinationX,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then {_typeConvoy pushBack "reinforcementsX"}};
+ if (_destinationX in outposts) then {if (((count (garrison getVariable [_destinationX, []]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then {_typeConvoy pushBack "reinforcementsX"}};
}
else
{
@@ -56,7 +56,7 @@ else
else
{
if ((_destinationX in resourcesX) or (_destinationX in factories)) then {_typeConvoy = ["Money"]} else {_typeConvoy = ["Prisoners"]};
- if (((count (garrison getVariable [_destinationX,0]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then {_typeConvoy pushBack "reinforcementsX"};
+ if (((count (garrison getVariable [_destinationX, []]))/2) >= [_destinationX] call A3A_fnc_garrisonSize) then {_typeConvoy pushBack "reinforcementsX"};
};
};
diff --git a/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf b/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf
index 1a0da51c56..ae4efe3ba7 100644
--- a/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf
+++ b/A3-Antistasi/functions/OrgPlayers/fn_assignBossIfNone.sqf
@@ -42,7 +42,7 @@ if (!isNull _nextBoss) then
_textX = format ["%1 is the new leader of our forces. Greet them!", name _nextBoss];
[_nextBoss] call A3A_fnc_theBossInit;
sleep 5;
- [[petros,"hint",_textX],"A3A_fnc_commsMP"] call BIS_fnc_MP;
+ [petros,"hint",_textX] remoteExec ["A3A_fnc_commsMP", 0];
}
else
{
diff --git a/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf b/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf
index 3b682a638f..ee0874eb76 100644
--- a/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf
+++ b/A3-Antistasi/functions/OrgPlayers/fn_makePlayerBossIfEligible.sqf
@@ -10,7 +10,7 @@ if (_player getVariable ["eligible",true] && ({(side (group _player) == teamPlay
[3, "Player is eligible, making them the boss", _filename] call A3A_fnc_log;
_textX = format ["%1 is the new leader of our forces. Greet them!", name _player];
[_player] call A3A_fnc_theBossInit;
- [[petros,"hint",_textX],"A3A_fnc_commsMP"] call BIS_fnc_MP;
+ [petros,"hint",_textX] remoteExec ["A3A_fnc_commsMP", 0];
true;
};
diff --git a/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf b/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf
index e3dd794bb6..7eaac0efc0 100644
--- a/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf
+++ b/A3-Antistasi/functions/REINF/fn_buildMinefield.sqf
@@ -6,7 +6,7 @@ _typeX = _this select 0;
_positionTel = _this select 1;
_quantity = _this select 2;
_costs = (2*(server getVariable (SDKExp select 0))) + ([vehSDKTruck] call A3A_fnc_vehiclePrice);
-[-2,(-1*_costs)] remoteExecCall ["A3A_fnc_resourcesFIA",2];
+[-2,(-1*_costs)] remoteExec ["A3A_fnc_resourcesFIA",2];
if (_typeX == "ATMine") then
{
diff --git a/A3-Antistasi/functions/REINF/fn_equipRebel.sqf b/A3-Antistasi/functions/REINF/fn_equipRebel.sqf
index 37b1a41bba..4b713a0f38 100644
--- a/A3-Antistasi/functions/REINF/fn_equipRebel.sqf
+++ b/A3-Antistasi/functions/REINF/fn_equipRebel.sqf
@@ -38,8 +38,7 @@ if !(unlockedVests isEqualTo []) then {
if (count unlockedArmoredVests * 20 < random(100)) then { _unit addVest (selectRandom unlockedVests) }
else { _unit addVest (selectRandom unlockedArmoredVests); };
};
-if !(unlockedBackpacks isEqualTo []) then { _unit addBackpack (selectRandom unlockedBackpacks) };
-
+if !(unlockedBackpacksCargo isEqualTo []) then { _unit addBackpack (selectRandom unlockedBackpacksCargo) };
_unit addItemToUniform "FirstAidKit";
_unit addItemToUniform "FirstAidKit";
diff --git a/A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf b/A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf
index 91da106d43..43cec6dd0c 100644
--- a/A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf
+++ b/A3-Antistasi/functions/REINF/fn_garrisonAdd.sqf
@@ -39,9 +39,9 @@ _garrison = _garrison + (garrison getVariable [_markerX,[]]);
_garrison pushBack _typeX;
garrison setVariable [_markerX,_garrison,true];
//[_markerX] call A3A_fnc_mrkUpdate;*/
-_countX = count (garrison getVariable _markerX);
+_countX = count (garrison getVariable [_markerX,[]]);
[_typeX,teamPlayer,_markerX,1] remoteExec ["A3A_fnc_garrisonUpdate",2];
-waitUntil {(_countX < count (garrison getVariable _markerX)) or (sidesX getVariable [_markerX,sideUnknown] != teamPlayer)};
+waitUntil {(_countX < count (garrison getVariable [_markerX, []])) or (sidesX getVariable [_markerX,sideUnknown] != teamPlayer)};
if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then
{
@@ -53,4 +53,3 @@ if (sidesX getVariable [_markerX,sideUnknown] == teamPlayer) then
[_markerX,_typeX] remoteExec ["A3A_fnc_createSDKGarrisonsTemp",2];
};
};
-
diff --git a/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf b/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf
index 089ab42ea8..654d863756 100644
--- a/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf
+++ b/A3-Antistasi/functions/Templates/fn_aceModCompat.sqf
@@ -18,7 +18,8 @@ aceItems = [
"ACE_SpottingScope",
"ACE_Tripod",
"ACE_Spraypaintred",
- "ACE_UAVBattery"
+ "ACE_UAVBattery",
+ "ACE_SpareBarrel"
];
aceMedItems = [
@@ -64,4 +65,4 @@ lootItem append ["ACE_acc_pointer_green_IR","ACE_Chemlight_Shield","ACE_VMH3","A
lootMagazine deleteAt (lootMagazine find "ACE_PreloadedMissileDummy");
allLightAttachments deleteAt (allLightAttachments find "ACE_acc_pointer_green");
-lootItem deleteAt (lootItem find "MineDetector");
\ No newline at end of file
+lootItem deleteAt (lootItem find "MineDetector");
diff --git a/A3-Antistasi/functions/Templates/fn_getLoadout.sqf b/A3-Antistasi/functions/Templates/fn_getLoadout.sqf
index d0b95dcf2a..20d5101021 100644
--- a/A3-Antistasi/functions/Templates/fn_getLoadout.sqf
+++ b/A3-Antistasi/functions/Templates/fn_getLoadout.sqf
@@ -87,7 +87,7 @@ private _fnc_tfarRadio = {
private _tfarMicroDAGRNoArray = [hasTFAR, "TF_MicroDagr", "ItemWatch"] call _fnc_modItemNoArray;
private _aceFlashlight = [hasACE, ["ACE_Flashlight_XL50", 1]] call _fnc_modItem;
-private _aceM84 = [hasACE, ["ACE_M84", 1], ["HandGrenade", 1]] call _fnc_modItem;
+private _aceM84 = [hasACE, ["ACE_M84",2,1]] call _fnc_modItem;
private _aceDefusalKit = [hasACE, ["ACE_DefusalKit", 1]] call _fnc_modItem;
private _aceClacker = [hasACE, ["ACE_Clacker", 1]] call _fnc_modItem;
private _aceRangecard = [hasACE, ["ACE_Rangecard", 1]] call _fnc_modItem;
diff --git a/A3-Antistasi/functions/init/fn_cityinfo.sqf b/A3-Antistasi/functions/init/fn_cityinfo.sqf
index 52fc8fa864..78fad8b361 100644
--- a/A3-Antistasi/functions/init/fn_cityinfo.sqf
+++ b/A3-Antistasi/functions/init/fn_cityinfo.sqf
@@ -86,7 +86,7 @@ while {visibleMap} do
_textX = format ["%1 Airport",_nameFaction];
_busy = [_siteX,true] call A3A_fnc_airportCanAttack;
if (_busy) then {_textX = format ["%1\nStatus: Idle",_textX]} else {_textX = format ["%1\nStatus: Busy",_textX]};
- _garrison = count (garrison getVariable _siteX);
+ _garrison = count (garrison getVariable [_siteX, []]);
if (_garrison >= 40) then {_textX = format ["%1\nGarrison: Good",_textX]} else {if (_garrison >= 20) then {_textX = format ["%1\nGarrison: Weakened",_textX]} else {_textX = format ["%1\nGarrison: Decimated",_textX]}};
}
else
@@ -99,7 +99,7 @@ while {visibleMap} do
if (not(sidesX getVariable [_siteX,sideUnknown] == teamPlayer)) then
{
_textX = format ["%1 Resources",_nameFaction];
- _garrison = count (garrison getVariable _siteX);
+ _garrison = count (garrison getVariable [_siteX, []]);
if (_garrison >= 30) then {_textX = format ["%1\nGarrison: Good",_textX]} else {if (_garrison >= 10) then {_textX = format ["%1\nGarrison: Weakened",_textX]} else {_textX = format ["%1\nGarrison: Decimated",_textX]}};
}
else
@@ -113,7 +113,7 @@ while {visibleMap} do
if (not(sidesX getVariable [_siteX,sideUnknown] == teamPlayer)) then
{
_textX = format ["%1 Factory",_nameFaction];
- _garrison = count (garrison getVariable _siteX);
+ _garrison = count (garrison getVariable [_siteX, []]);
if (_garrison >= 16) then {_textX = format ["%1\nGarrison: Good",_textX]} else {if (_garrison >= 8) then {_textX = format ["%1\nGarrison: Weakened",_textX]} else {_textX = format ["%1\nGarrison: Decimated",_textX]}};
}
else
@@ -129,7 +129,7 @@ while {visibleMap} do
_textX = format ["%1 Grand Outpost",_nameFaction];
_busy = [_siteX,true] call A3A_fnc_airportCanAttack;
if (_busy) then {_textX = format ["%1\nStatus: Idle",_textX]} else {_textX = format ["%1\nStatus: Busy",_textX]};
- _garrison = count (garrison getVariable _siteX);
+ _garrison = count (garrison getVariable [_siteX, []]);
if (_garrison >= 16) then {_textX = format ["%1\nGarrison: Good",_textX]} else {if (_garrison >= 8) then {_textX = format ["%1\nGarrison: Weakened",_textX]} else {_textX = format ["%1\nGarrison: Decimated",_textX]}};
}
else
@@ -142,7 +142,7 @@ while {visibleMap} do
if (not(sidesX getVariable [_siteX,sideUnknown] == teamPlayer)) then
{
_textX = format ["%1 Seaport",_nameFaction];
- _garrison = count (garrison getVariable _siteX);
+ _garrison = count (garrison getVariable [_siteX, []]);
if (_garrison >= 20) then {_textX = format ["%1\nGarrison: Good",_textX]} else {if (_garrison >= 8) then {_textX = format ["%1\nGarrison: Weakened",_textX]} else {_textX = format ["%1\nGarrison: Decimated",_textX]}};
}
else
diff --git a/A3-Antistasi/functions/init/fn_initClient.sqf b/A3-Antistasi/functions/init/fn_initClient.sqf
index 8377551c16..5087ddbafe 100644
--- a/A3-Antistasi/functions/init/fn_initClient.sqf
+++ b/A3-Antistasi/functions/init/fn_initClient.sqf
@@ -81,6 +81,8 @@ else {
player setIdentity "protagonista";
player setUnitRank "COLONEL";
player hcSetGroup [group player];
+ player setUnitTrait ["medic", true];
+ player setUnitTrait ["engineer", true];
waitUntil {/*(scriptdone _introshot) and */(!isNil "serverInitDone")};
};
@@ -405,7 +407,7 @@ else
_textX = [];
if ((hasTFAR) or (hasACRE)) then {
- _textX = ["TFAR or ACRE Detected\n\nAntistasi detects TFAR or ACRE in the server config.\nAll players will start with addon default radios.\nDefault revive system will shut down radios while players are inconscious.\n\n"];
+ _textX = ["TFAR or ACRE Detected\n\nAntistasi detects TFAR or ACRE in the server config.\nAll players will start with addon default radios.\nDefault revive system will shut down radios while players are unconscious.\n\n"];
};
if (hasACE) then {
_textX = _textX + ["ACE 3 Detected\n\nAntistasi detects ACE modules in the server config.\nACE items added to arsenal and ammoboxes. Default AI control is disabled\nIf ACE Medical is used, default revive system will be disabled.\nIf ACE Hearing is used, default earplugs will be disabled."];
diff --git a/A3-Antistasi/functions/init/fn_initGarrisons.sqf b/A3-Antistasi/functions/init/fn_initGarrisons.sqf
index cc2b420299..b7ab1f0fc2 100644
--- a/A3-Antistasi/functions/init/fn_initGarrisons.sqf
+++ b/A3-Antistasi/functions/init/fn_initGarrisons.sqf
@@ -110,18 +110,45 @@ if (gameMode == 1) then
switch (toLower worldName) do {
case "tanoa": {
_mrkCSAT = ["airport_1", "seaport_5", "outpost_10", "control_20"];
- _controlsNATO = _controlsNATO - ["control_20"];
_controlsCSAT = ["control_20"];
};
case "altis": {
_mrkCSAT = ["airport_2", "seaport_4", "outpost_5", "control_52", "control_33"];
- _controlsNATO = _controlsNATO - ["control_52", "control_33"];
_controlsCSAT = ["control_52", "control_33"];
};
case "chernarus_summer": {
_mrkCSAT = ["outpost_21"];
};
+ case "tem_anizay": {
+ _mrkCSAT = ["outpost_8", "control_19", "control_44", "control_45"];
+ _controlsCSAT = ["control_19", "control_44", "control_45"];
+ };
+ case "chernarus_winter": {
+ _mrkCSAT = ["outpost_21", "control_30"];
+ _controlsCSAT = ["control_30"];
+ };
+ case "kunduz": {
+ _mrkCSAT = ["outpost"];
+ };
+ case "enoch": {
+ _mrkCSAT = ["airport_3", "control_14"];
+ _controlsCSAT = ["control_14"];
+ };
+ case "tembelan": {
+ _mrkCSAT = ["airport_4"];
+ };
+ case "malden": {
+ _mrkCSAT = ["airport", "seaport_7"];
+ };
+ case "tem_kujari": {
+ _mrkCSAT = [];
+ };
+ case "vt7": {
+ _mrkCSAT = ["airport_2", "control_25", "control_29", "control_30", "control_31", "control_32", "Seaport_1", "Outpost_3"];
+ _controlsCSAT = ["control_25", "control_29", "control_30", "control_31", "control_32"];
+ };
};
+ _controlsNATO = _controlsNATO - _controlsCSAT;
_mrkNATO = markersX - _mrkCSAT - ["Synd_HQ"];
if (debug) then {
diff --git a/A3-Antistasi/functions/init/fn_initServer.sqf b/A3-Antistasi/functions/init/fn_initServer.sqf
index 5ab2d5a6ba..13fafcd566 100644
--- a/A3-Antistasi/functions/init/fn_initServer.sqf
+++ b/A3-Antistasi/functions/init/fn_initServer.sqf
@@ -38,6 +38,7 @@ if (isMultiplayer) then {
memberDistance = "memberDistance" call BIS_fnc_getParamValue; publicVariable "memberDistance";
limitedFT = if ("allowFT" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "limitedFT";
napalmEnabled = if ("napalmEnabled" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "napalmEnabled";
+ startWithLongRangeRadio = if ("startWithLongRangeRadio" call BIS_fnc_getParamValue == 1) then {true} else {false}; publicVariable "startWithLongRangeRadio";
teamSwitchDelay = "teamSwitchDelay" call BIS_fnc_getParamValue;
playerMarkersEnabled = ("pMarkers" call BIS_fnc_getParamValue == 1); publicVariable "playerMarkersEnabled";
minPlayersRequiredforPVP = "minPlayersRequiredforPVP" call BIS_fnc_getParamValue; publicVariable "minPlayersRequiredforPVP";
@@ -169,7 +170,7 @@ if !(loadLastSave) then {
};
call A3A_fnc_createPetros;
-[[petros,"hint","Server load finished"],"A3A_fnc_commsMP"] call BIS_fnc_MP;
+[petros,"hint","Server load finished"] remoteExec ["A3A_fnc_commsMP", 0];
//HandleDisconnect doesn't get 'owner' param, so we can't use it to handle headless client disconnects.
addMissionEventHandler ["HandleDisconnect",{_this call A3A_fnc_onPlayerDisconnect;false}];
@@ -183,7 +184,10 @@ addMissionEventHandler ["BuildingChanged", {
_oldBuilding setVariable ["ruins", _newBuilding];
_newBuilding setVariable ["building", _oldBuilding];
- destroyedBuildings pushBack (getPosATL _oldBuilding);
+ // Antenna dead/alive status is handled separately
+ if !(_oldBuilding in antennas || _oldBuilding in antennasDead) then {
+ destroyedBuildings pushBack (getPosATL _oldBuilding);
+ };
};
}];
diff --git a/A3-Antistasi/functions/init/fn_initSnowFall.sqf b/A3-Antistasi/functions/init/fn_initSnowFall.sqf
index 3502f0871a..e105adae41 100644
--- a/A3-Antistasi/functions/init/fn_initSnowFall.sqf
+++ b/A3-Antistasi/functions/init/fn_initSnowFall.sqf
@@ -9,7 +9,7 @@ while {true} do
sleep _waitTime;
// Call Snow Storm Script
//"_snowfall","_duration_storm","_ambient_sounds_al","_breath_vapors","_snow_burst","_effect_on_objects","_vanilla_fog","_local_fog","_intensifywind","_unitsneeze"
- [true, _snowTime, 15, true, _sbursts, false, true, true, false, true] execvm "AL_snowstorm\al_snow.sqf";
+ [true, _snowTime, -1, true, _sbursts, false, true, true, false, true] execvm "AL_snowstorm\al_snow.sqf";
sleep _snowTime;
//End snow script here if needed
}
diff --git a/A3-Antistasi/functions/init/fn_initVar.sqf b/A3-Antistasi/functions/init/fn_initVar.sqf
index e574b40eb0..ac99290b64 100755
--- a/A3-Antistasi/functions/init/fn_initVar.sqf
+++ b/A3-Antistasi/functions/init/fn_initVar.sqf
@@ -17,5 +17,5 @@ call A3A_fnc_initVarClient;
//Marks initVar as finished.
initVar = true;
-if (isMultiplayer) then {[[petros,"hint","Variables Init Completed"],"A3A_fnc_commsMP"] call BIS_fnc_MP;};
+hint "Variables Init Completed";
[2,"initVar completed",_fileName] call A3A_fnc_log;
diff --git a/A3-Antistasi/functions/init/fn_initVarCommon.sqf b/A3-Antistasi/functions/init/fn_initVarCommon.sqf
index 9d6d6fc7e0..c224a57ecb 100644
--- a/A3-Antistasi/functions/init/fn_initVarCommon.sqf
+++ b/A3-Antistasi/functions/init/fn_initVarCommon.sqf
@@ -120,7 +120,7 @@ if (isClass (configfile >> "CfgPatches" >> "ffaa_armas")) then {hasFFAA = true;
////////////////////////////////////
[2,"Creating building arrays",_fileName] call A3A_fnc_log;
-listMilBld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F","Land_Cargo_HQ_V1_F","Land_Cargo_HQ_V2_F","Land_Cargo_HQ_V3_F","Land_Cargo_Patrol_V1_F","Land_Cargo_Patrol_V2_F","Land_Cargo_Patrol_V3_F","Land_HelipadSquare_F"];
+listMilBld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F","Land_Cargo_HQ_V1_F","Land_Cargo_HQ_V2_F","Land_Cargo_HQ_V3_F","Land_Cargo_Patrol_V1_F","Land_Cargo_Patrol_V2_F","Land_Cargo_Patrol_V3_F","Land_HelipadSquare_F","Land_Posed","Land_Hlaska","Land_fortified_nest_small_EP1","Land_fortified_nest_small","Fort_Nest","Fortress1","Land_GuardShed","Land_BagBunker_Small_F","Land_BagBunker_01_small_green_F"];
listbld = ["Land_Cargo_Tower_V1_F","Land_Cargo_Tower_V1_No1_F","Land_Cargo_Tower_V1_No2_F","Land_Cargo_Tower_V1_No3_F","Land_Cargo_Tower_V1_No4_F","Land_Cargo_Tower_V1_No5_F","Land_Cargo_Tower_V1_No6_F","Land_Cargo_Tower_V1_No7_F","Land_Cargo_Tower_V2_F", "Land_Cargo_Tower_V3_F"];
UPSMON_Bld_remove = ["Bridge_PathLod_base_F","Land_Slum_House03_F","Land_Bridge_01_PathLod_F","Land_Bridge_Asphalt_PathLod_F","Land_Bridge_Concrete_PathLod_F","Land_Bridge_HighWay_PathLod_F","Land_Bridge_01_F","Land_Bridge_Asphalt_F","Land_Bridge_Concrete_F","Land_Bridge_HighWay_F","Land_Canal_Wall_Stairs_F","warehouse_02_f","cliff_wall_tall_f","cliff_wall_round_f","containerline_02_f","containerline_01_f","warehouse_01_f","quayconcrete_01_20m_f","airstripplatform_01_f","airport_02_terminal_f","cliff_wall_long_f","shop_town_05_f","Land_ContainerLine_01_F"];
//Lights and Lamps array used for 'Blackout'
@@ -189,10 +189,8 @@ switch (toLower worldName) do {
roadsX setVariable ["airport_2",[[[11803,13051.6,0.0368805],360,"Mort"],[[11813.5,13049.2,0.0368915],0.000145629,"Mort"],[[11799.5,13043.2,0.0368919],360,"Mort"],[[11723.3,13114.6,18.1545],300.703,"MG"],[[11782.3,13058.1,0.0307827],19.6564,"Tank"],[[11810.6,13040.2,0.0368905],360,"Tank"],[[11832.9,13042.1,0.0283785],16.3683,"Tank"]]];
roadsX setVariable ["airport_3",[[[11658,3055.02,0.036881],360,"Mort"],[[11662.6,3060.14,0.0368819],0.000294881,"Mort"],[[11664.8,3049.94,0.0368805],360,"Mort"],[[11668.9,3055.64,0.0368805],2.08056e-005,"Mort"],[[11747.8,2982.95,18.1513],249.505,"MG"],[[11784.1,3132.77,0.183631],214.7,"Tank"],[[11720.3,3176.15,0.112019],215.055,"Tank"]]];
roadsX setVariable ["airport_4",[[[2092.87,3412.98,0.0372648],0.00414928,"Mort"],[[2091.5,3420.69,0.0369596],360,"Mort"],[[2099.93,3422.53,0.0373936],0.00215797,"Mort"],[[2100.13,3416.28,0.0394554],0.0043371,"Mort"],[[2198.24,3471.03,18.0123],0.00187816,"MG"],[[2133.01,3405.88,-0.0156536],315.528,"Tank"],[[2145.82,3416.83,-0.00544548],316.441,"Tank"],[[2163.9,3432.18,-0.0256157],318.777,"Tank"]]];
- //Map Markers
- {server setVariable [_x select 0,_x select 1]} forEach [["Lami01",277],["Lifou01",350],["Lobaka01",64],["LaFoa01",38],["Savaka01",33],["Regina01",303],["Katkoula01",413],["Moddergat01",195],["Losi01",83],["Tanouka01",380],["Tobakoro01",45],["Georgetown01",347],["Kotomo01",160],["Rautake01",113],["Harcourt01",325],["Buawa01",44],["SaintJulien01",353],["Balavu01",189],["Namuvaka01",45],["Vagalala01",174],["Imone01",31],["Leqa01",45],["Blerick01",71],["Yanukka01",189],["OuaOue01",200],["Cerebu01",22],["Laikoro01",29],["Saioko01",46],["Belfort01",240],["Oumere01",333],["Muaceba01",18],["Nicolet01",224],["Lailai01",23],["Doodstil01",101],["Tavu01",178],["Lijnhaven01",610],["Nani01",19],["PetitNicolet01",135],["PortBoise01",28],["SaintPaul01",136],["Nasua01",60],["Savu01",184],["Murarua01",258],["Momea01",159],["LaRochelle01",532],["Koumac01",51],["Taga01",31],["Buabua01",27],["Penelo01",189],["Vatukoula01",15],["Nandai01",130],["Tuvanaka01",303],["Rereki01",43],["Ovau01",226],["IndPort01",420],["Ba01",106]];
//Roads DB
- call compile preprocessFileLineNumbers "roadsDB.sqf";
+ call compile preprocessFileLineNumbers "roadsDBTanoa.sqf";
};
case "altis":
{
@@ -202,8 +200,6 @@ switch (toLower worldName) do {
roadsX setVariable ["airport_3",[[[14414.9,16327.8,-0.000991821],207.397,"Tank"],[[14471.9,16383.2,0.0378571],359.939,"Mort"],[[14443,16379.2,0.0369205],359.997,"Mort"],[[14449.4,16376.9,0.0369892],359.996,"Mort"],[[14458,16375.9,0.0369167],359.997,"Mort"],[[14447.2,16397.1,3.71081],269.525,"MG"],[[14472.3,16312,12.1993],317.315,"MG"],[[14411,16229,0.000303268],40.6607,"Tank"],[[14404.4,16235,-0.0169964],50.5741,"Tank"],[[14407.2,16331.7,0.0305004],204.588,"Tank"]]];
roadsX setVariable ["airport_4",[[[11577.4,11953.6,0.241838],122.274,"Tank"],[[11577.8,11964.3,0.258125],124.324,"Tank"],[[11633.3,11762,0.0372791],359.996,"Mort"],[[11637.3,11768.1,0.043232],0.0110098,"Mort"],[[11637.1,11763.1,0.0394402],0.00529677,"Mort"]],true];
roadsX setVariable ["airport_5",[[[9064.02,21531.3,0.00117016],138.075,"Tank"],[[9095.12,21552.8,0.614614],157.935,"Tank"],[[9030.28,21531.1,0.261349],157.935,"Mort"],[[9033.91,21534.7,0.295588],157.935,"Mort"]]];
- //Map Markers
- {server setVariable [_x select 0,_x select 1]} forEach [["Therisa",154],["Zaros",371],["Poliakko",136],["Katalaki",95],["Alikampos",115],["Neochori",309],["Stavros",122],["Lakka",173],["AgiosDionysios",84],["Panochori",264],["Topolia",33],["Ekali",9],["Pyrgos",531],["Orino",45],["Neri",242],["Kore",133],["Kavala",660],["Aggelochori",395],["Koroni",32],["Gravia",291],["Anthrakia",143],["Syrta",151],["Negades",120],["Galati",151],["Telos",84],["Charkia",246],["Athira",342],["Dorida",168],["Ifestiona",48],["Chalkeia",214],["AgiosKonstantinos",39],["Abdera",89],["Panagia",91],["Nifi",24],["Rodopoli",212],["Kalithea",36],["Selakano",120],["Frini",69],["AgiosPetros",11],["Feres",92],["AgiaTriada",8],["Paros",396],["Kalochori",189],["Oreokastro",63],["Ioannina",48],["Delfinaki",29],["Sofia",179],["Molos",188]];
//Roads DB
call compile preprocessFileLineNumbers "roadsDBAltis.sqf";
};
@@ -212,8 +208,6 @@ switch (toLower worldName) do {
roadsX setVariable ["airport",[[[12191.2,12605.8,9.43077],0,"MG"],[[12194.2,12599.4,13.3954],0,"AA"],[[12141,12609,0.00088501],0,"Mort"],[[12144.3,12615.9,0],0,"Mort"],[[12156.5,12614.3,0],0,"Mort"],[[12170,12595.9,0.000305176],250.234,"AT"],[[12070.4,12656,0.0098114],23.5329,"Tank"],[[12022.5,12670.9,0.0098114],18.9519,"Tank"]]];
roadsX setVariable ["airport_1",[[[4782.75,10251.4,18],0,"AA"],[[4716.17,10215.3,13.1149],278.308,"AA"],[[4713.94,10209.3,9.12177],188.973,"MG"],[[4787.34,10248.9,4.99982],188.303,"MG"],[[4740.75,10333.2,20.3206],232.414,"MG"],[[4818.39,10200.1,0.00982666],239.625,"Tank"],[[4765.22,10330.8,0],0,"Mort"],[[4758.21,10328.1,0],0,"Mort"],[[4751.45,10324.4,0],0,"Mort"],[[4745.39,10320.6,0],0,"Mort"],[[4739.97,10283.2,0.00567627],291.41,"AT"],[[4814.19,10245.1,0.00567627],211.414,"AT"],[[4841.34,10158.9,0.0102844],240.137,"Tank"],[[4865.7,10116.7,0.00970459],239.499,"Tank"],[[4888.33,10074.2,0.00982666],235.077,"Tank"]]];
roadsX setVariable ["airport_2",[[[4717.95,2595.24,12.9766],0,"AA"],[[4714.27,2590.97,8.97349],176.197,"MG"],[[4743.55,2567.69,0.0130215],207.155,"Tank"],[[4775.62,2547.37,0.00691605],210.579,"Tank"],[[4719.88,2582.34,0.00566483],261.79,"AT"],[[4826.5,2558.35,0.00150108],0,"Mort"],[[4821.12,2550.32,0.00147152],0,"Mort"],[[4816.59,2543.65,0.00147247],0,"Mort"],[[4812.77,2518.77,0.00566483],150.397,"AT"]]];
- //Map Markers
- {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]];
//Roads DB
call compile preprocessFileLineNumbers "roadsDBcherna.sqf";
};
@@ -222,8 +216,6 @@ switch (toLower worldName) do {
roadsX setVariable ["airport",[[[12191.2,12605.8,9.43077],0,"MG"],[[12194.2,12599.4,13.3954],0,"AA"],[[12141,12609,0.00088501],0,"Mort"],[[12144.3,12615.9,0],0,"Mort"],[[12156.5,12614.3,0],0,"Mort"],[[12170,12595.9,0.000305176],250.234,"AT"],[[12070.4,12656,0.0098114],23.5329,"Tank"],[[12022.5,12670.9,0.0098114],18.9519,"Tank"]]];
roadsX setVariable ["airport_1",[[[4782.75,10251.4,18],0,"AA"],[[4716.17,10215.3,13.1149],278.308,"AA"],[[4713.94,10209.3,9.12177],188.973,"MG"],[[4787.34,10248.9,4.99982],188.303,"MG"],[[4740.75,10333.2,20.3206],232.414,"MG"],[[4818.39,10200.1,0.00982666],239.625,"Tank"],[[4765.22,10330.8,0],0,"Mort"],[[4758.21,10328.1,0],0,"Mort"],[[4751.45,10324.4,0],0,"Mort"],[[4745.39,10320.6,0],0,"Mort"],[[4739.97,10283.2,0.00567627],291.41,"AT"],[[4814.19,10245.1,0.00567627],211.414,"AT"],[[4841.34,10158.9,0.0102844],240.137,"Tank"],[[4865.7,10116.7,0.00970459],239.499,"Tank"],[[4888.33,10074.2,0.00982666],235.077,"Tank"]]];
roadsX setVariable ["airport_2",[[[4717.95,2595.24,12.9766],0,"AA"],[[4714.27,2590.97,8.97349],176.197,"MG"],[[4743.55,2567.69,0.0130215],207.155,"Tank"],[[4775.62,2547.37,0.00691605],210.579,"Tank"],[[4719.88,2582.34,0.00566483],261.79,"AT"],[[4826.5,2558.35,0.00150108],0,"Mort"],[[4821.12,2550.32,0.00147152],0,"Mort"],[[4816.59,2543.65,0.00147247],0,"Mort"],[[4812.77,2518.77,0.00566483],150.397,"AT"]]];
- //Map Markers
- {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]];
//Roads DB
call compile preprocessFileLineNumbers "roadsDBcherna.sqf";
};
@@ -252,6 +244,16 @@ switch (toLower worldName) do {
//Roads DB
call compile preprocessFileLineNumbers "roadsDBanizay.sqf";
};
+ case "tem_kujari":
+ {
+ //Roads DB
+ call compile preprocessFileLineNumbers "roadsDBkujari.sqf";
+ };
+ case "vt7":
+ {
+ //Roads DB
+ call compile preprocessFileLineNumbers "roadsDBvirolahti.sqf";
+ };
};
[2,"initVarCommon completed",_fileName] call A3A_fnc_log;
diff --git a/A3-Antistasi/functions/init/fn_initVarServer.sqf b/A3-Antistasi/functions/init/fn_initVarServer.sqf
index cc12f8dfd0..72c9269bfe 100644
--- a/A3-Antistasi/functions/init/fn_initVarServer.sqf
+++ b/A3-Antistasi/functions/init/fn_initVarServer.sqf
@@ -39,8 +39,8 @@ DECLARE_SERVER_VAR(cleantime, 3600);
DECLARE_SERVER_VAR(distanceSPWN, 1000);
DECLARE_SERVER_VAR(distanceSPWN1, 1300);
DECLARE_SERVER_VAR(distanceSPWN2, 500);
-//Quantity of Civs to spawn in
-DECLARE_SERVER_VAR(civPerc, 40);
+//Quantity of Civs to spawn in (most likely per client - Bob Murphy 26.01.2020)
+DECLARE_SERVER_VAR(civPerc, 5);
//The furthest distance the AI can attack from using helicopters or planes
DECLARE_SERVER_VAR(distanceForAirAttack, 10000);
//The furthest distance the AI can attack from using trucks and armour
@@ -131,7 +131,7 @@ playerHasBeenPvP = [];
//We initialise a LOT of arrays based on the categories. Every category gets a 'allX' variables and an 'unlockedX' variable.
-private _unlockableCategories = allCategoriesExceptSpecial + ["AA", "AT", "GrenadeLaunchers", "ArmoredVests", "ArmoredHeadgear"];
+private _unlockableCategories = allCategoriesExceptSpecial + ["AA", "AT", "GrenadeLaunchers", "ArmoredVests", "ArmoredHeadgear", "BackpacksCargo"];
//Build list of 'allX' variables, such as 'allWeapons'
DECLARE_SERVER_VAR(allEquipmentArrayNames, allCategories apply {"all" + _x});
@@ -180,10 +180,8 @@ everyEquipmentRelatedArrayName = allEquipmentArrayNames + unlockedEquipmentArray
[2,"Setting mod configs",_fileName] call A3A_fnc_log;
//TFAR config
-DECLARE_SERVER_VAR(startLR, false);
if (hasTFAR) then
{
- startLR = true; //set to true to start with LR radios unlocked.
if (isServer) then
{
[] spawn {
diff --git a/A3-Antistasi/functions/init/fn_initZones.sqf b/A3-Antistasi/functions/init/fn_initZones.sqf
index 5819771f60..791c4648bf 100755
--- a/A3-Antistasi/functions/init/fn_initZones.sqf
+++ b/A3-Antistasi/functions/init/fn_initZones.sqf
@@ -17,6 +17,7 @@ citiesX = [];
private ["_name", "_sizeX", "_sizeY", "_size", "_pos", "_mrk"];
+
if ((toLower worldName) in ["altis", "chernarus_summer"]) then {
"((getText (_x >> ""type"")) == ""Hill"") &&
@@ -60,6 +61,22 @@ markersX apply {
spawner setVariable [_x, 2, true];
}; //apply faster then forEach and look better
+// setup hardcoded population counts for towns
+switch (toLower worldName) do {
+ case "tanoa": {
+ {server setVariable [_x select 0,_x select 1]} forEach [["Lami01",277],["Lifou01",350],["Lobaka01",64],["LaFoa01",38],["Savaka01",33],["Regina01",303],["Katkoula01",413],["Moddergat01",195],["Losi01",83],["Tanouka01",380],["Tobakoro01",45],["Georgetown01",347],["Kotomo01",160],["Rautake01",113],["Harcourt01",325],["Buawa01",44],["SaintJulien01",353],["Balavu01",189],["Namuvaka01",45],["Vagalala01",174],["Imone01",31],["Leqa01",45],["Blerick01",71],["Yanukka01",189],["OuaOue01",200],["Cerebu01",22],["Laikoro01",29],["Saioko01",46],["Belfort01",240],["Oumere01",333],["Muaceba01",18],["Nicolet01",224],["Lailai01",23],["Doodstil01",101],["Tavu01",178],["Lijnhaven01",610],["Nani01",19],["PetitNicolet01",135],["PortBoise01",28],["SaintPaul01",136],["Nasua01",60],["Savu01",184],["Murarua01",258],["Momea01",159],["LaRochelle01",532],["Koumac01",51],["Taga01",31],["Buabua01",27],["Penelo01",189],["Vatukoula01",15],["Nandai01",130],["Tuvanaka01",303],["Rereki01",43],["Ovau01",226],["IndPort01",420],["Ba01",106]];
+ };
+ case "altis": {
+ {server setVariable [_x select 0,_x select 1]} forEach [["Therisa",154],["Zaros",371],["Poliakko",136],["Katalaki",95],["Alikampos",115],["Neochori",309],["Stavros",122],["Lakka",173],["AgiosDionysios",84],["Panochori",264],["Topolia",33],["Ekali",9],["Pyrgos",531],["Orino",45],["Neri",242],["Kore",133],["Kavala",660],["Aggelochori",395],["Koroni",32],["Gravia",291],["Anthrakia",143],["Syrta",151],["Negades",120],["Galati",151],["Telos",84],["Charkia",246],["Athira",342],["Dorida",168],["Ifestiona",48],["Chalkeia",214],["AgiosKonstantinos",39],["Abdera",89],["Panagia",91],["Nifi",24],["Rodopoli",212],["Kalithea",36],["Selakano",120],["Frini",69],["AgiosPetros",11],["Feres",92],["AgiaTriada",8],["Paros",396],["Kalochori",189],["Oreokastro",63],["Ioannina",48],["Delfinaki",29],["Sofia",179],["Molos",188]];
+ };
+ case "chernarus_summer": {
+ {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]];
+ };
+ case "chernarus_winter": {
+ {server setVariable [_x select 0,_x select 1]} forEach [["vill_NovySobor",129],["city_StarySobor",149],["vill_Guglovo",26],["vill_Vyshnoye",41],["vill_Kabanino",86],["vill_Rogovo",66],["vill_Mogilevka",104],["city_Gorka",115],["vill_Grishino",168],["vill_Shakhovka",55],["vill_Pogorevka",57],["vill_Pulkovo",26],["vill_Nadezhdino",109],["city_Vybor",180],["vill_Polana",118],["vill_Staroye",115],["vill_Dubrovka",86],["vill_Pustoshka",163],["vill_Kozlovka",100],["vill_Pusta",52],["vill_Dolina",83],["vill_Gvozdno",78],["vill_Prigorodki",145],["vill_Drozhino",58],["vill_Sosnovka",54],["vill_Msta",96],["vill_Lopatino",159],["city_Zelenogorsk",280],["vill_Orlovets",65],["city_Berezino",340],["vill_Myshkino",49],["vill_Petrovka",45],["city_Chernogorsk",761],["vill_Bor",46],["vill_Nizhnoye",146],["vill_Balota",147],["vill_Khelm",110],["city_Krasnostav",194],["vill_Komarovo",127],["city_Elektrozavodsk",745],["city_Solnychniy",224],["vill_Kamyshovo",196],["vill_Tulga",35],["vill_Pavlovo",99],["vill_Kamenka",127],["hill_Olsha",20]];
+ };
+};
+
private ["_nameX", "_roads", "_numCiv", "_roadsProv", "_roadcon", "_dmrk", "_info"];
"(getText (_x >> ""type"") in [""NameCityCapital"", ""NameCity"", ""NameVillage"", ""CityCenter""]) &&
@@ -76,11 +93,11 @@ configClasses (configfile >> "CfgWorlds" >> worldName >> "Names") apply {
_roads = [];
_numCiv = 0;
- if ( (toLower worldName) in ["tanoa", "altis", "chernarus_summer"] ) then
+ if ( (toLower worldName) in ["tanoa", "altis", "chernarus_summer", "chernarus_winter"] ) then
{
- _roads = roadsX getVariable [_name, []];
+ _roads = roadsX getVariable [_nameX, []];
if (count _roads == 0) then {
- [2, format ["No roads found for marker %1", _name], _fileName] call A3A_fnc_log;
+ [2, format ["No roads found for marker %1", _nameX], _fileName] call A3A_fnc_log;
};
_numCiv = server getVariable _nameX;
if (isNil "_numCiv") then
diff --git a/A3-Antistasi/functions/init/fn_playerMarkers.sqf b/A3-Antistasi/functions/init/fn_playerMarkers.sqf
index 05f0b4ea91..5855a6efa6 100644
--- a/A3-Antistasi/functions/init/fn_playerMarkers.sqf
+++ b/A3-Antistasi/functions/init/fn_playerMarkers.sqf
@@ -29,7 +29,7 @@ while {true} do
_mrk setMarkerAlphaLocal 1;
_mrk setMarkerPosLocal position _playerX;
_mrk setMarkerDirLocal getDir _playerX;
- if (_playerX getVariable ["INCAPACITATED",false]) then
+ if (_playerX getVariable ["INCAPACITATED",false] || _playerX getVariable ["ACE_isUnconscious",false]) then
{
_mrk setMarkerTextLocal format ["%1 Injured",name _playerX];
_mrk setMarkerColorLocal "ColorRed";
@@ -43,7 +43,7 @@ while {true} do
else
{
_veh = vehicle _playerX;
- if ((isNull driver _veh) or (driver _veh == _playerX)) then
+ if ((!isPlayer driver _veh) or (driver _veh == _playerX)) then
{
_mrk setMarkerAlphaLocal 1;
_mrk setMarkerPosLocal position _veh;
diff --git a/A3-Antistasi/orgPlayers/unitTraits.sqf b/A3-Antistasi/orgPlayers/unitTraits.sqf
index 697970d0c5..78fb422047 100644
--- a/A3-Antistasi/orgPlayers/unitTraits.sqf
+++ b/A3-Antistasi/orgPlayers/unitTraits.sqf
@@ -4,22 +4,44 @@ _typeX = typeOf player;
_textX = "";
switch (_typeX) do
{
- case "I_C_Soldier_Para_7_F": {player setUnitTrait ["UAVHacker",true]};
- case "I_C_Soldier_Para_8_F": {player setUnitTrait ["engineer",true]; player setUnitTrait ["explosiveSpecialist",true]};
- case "I_C_Soldier_Para_3_F": {player setUnitTrait ["medic",true]};
+ //case "I_C_Soldier_Para_7_F": {player setUnitTrait ["UAVHacker",true]}; //opted as we use units which automatically have the trait - 8th January 2020, Bob Murphy
+ //case "I_C_Soldier_Para_8_F": {player setUnitTrait ["engineer",true]; player setUnitTrait ["explosiveSpecialist",true]}; //opted as we use units which automatically have the trait - 8th January 2020, Bob Murphy
+ //case "I_C_Soldier_Para_3_F": {player setUnitTrait ["medic",true]}; //opted as we use units which automatically have the trait - 8th January 2020, Bob Murphy
case typePetros: {player setUnitTrait ["UAVHacker",true]};
- /*
- case "I_C_Soldier_Para_3_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use Medikits for full health restoration"};
- case "B_G_officer_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4];};
- case SDKRifleman: {player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.2]; _textX = "Rifleman role.\n\nRiflemen are more suitable to silent sneak but have less carryng capacity"};
- case "B_G_Soldier_LAT_F": {player setUnitTrait ["camouflageCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "AT Man role.\n\nAT men have a slight bonus on carry capacity, but are easy to spot"};
- case "B_G_Soldier_AR_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"};
- case "B_G_engineer_F": {_textX = "Engineer role.\n\nEngineers do not have any bonus or penalties, but have the ability to use Repair Kits for vehicle repair"};
- case "B_G_Soldier_A_F": {player setUnitTrait ["camouflageCoef",1.2]; player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.6]; _textX = "Ammo bearer role.\n\nAmmo bearers have a great strenght but are easy to spot and easy to hear."};
- case "B_G_Soldier_M_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["loadCoef",1.2]; _textX = "Marksman role.\n\nMarksmen know well how to hide, but have less carry capacity."};
- */
+ //cases for greenfor missions
+ case "I_G_medic_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use certain medical items for full health restoration"}; //reintroduced - 8th January 2020, Bob Murphy
+ case "I_G_Soldier_TL_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Teamleader role.\n\nTeamleader are more lightweight units with increased camouflage capabilities"}; //reintroduced - 8th January 2020, Bob Murphy
+ case "I_G_Soldier_F": {player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.2]; _textX = "Rifleman role.\n\nRiflemen are more suitable to silent sneak but have less carrying capacity"}; //reintroduced - 8th January 2020, Bob Murphy
+ case "I_G_Soldier_GL_F": {player setUnitTrait ["camouflageCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Grenadier role.\n\nGrenadiers have a slight bonus on carry capacity, but are easy to spot"}; //reintroduced - 8th January 2020, Bob Murphy
+ case "I_G_Soldier_AR_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"}; //reintroduced - 8th January 2020, Bob Murphy
+ case "I_G_engineer_F": {_textX = "Engineer role.\n\nEngineers do not have any bonus or penalties, but have the ability to use Repair Kits for vehicle repair"}; //reintroduced - 8th January 2020, Bob Murphy
+ //cases for blufor missions - added - 8th January 2020, Bob Murphy
+ case "B_G_medic_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use certain medical items for full health restoration"}; //added - 8th January 2020, Bob Murphy
+ case "B_G_Soldier_TL_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Teamleader role.\n\nTeamleader are more lightweight units with increased camouflage capabilities"}; //added - 8th January 2020, Bob Murphy
+ case "B_G_Soldier_F": {player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.2]; _textX = "Rifleman role.\n\nRiflemen are more suitable to silent sneak but have less carrying capacity"}; //added - 8th January 2020, Bob Murphy
+ case "B_G_Soldier_GL_F": {player setUnitTrait ["camouflageCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Grenadier role.\n\nGrenadiers have a slight bonus on carry capacity, but are easy to spot"}; //added - 8th January 2020, Bob Murphy
+ case "B_G_Soldier_AR_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 8th January 2020, Bob Murphy
+ case "B_G_engineer_F": {_textX = "Engineer role.\n\nEngineers do not have any bonus or penalties, but have the ability to use Repair Kits for vehicle repair"}; //added - 8th January 2020, Bob Murphy
+ //cases for pvp green - added - 9th January 2020, Bob Murphy
+ case "I_medic_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use certain medical items for full health restoration"}; //added - 9th January 2020, Bob Murphy
+ case "I_Soldier_TL_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Teamleader role.\n\nTeamleader are more lightweight units with increased camouflage capabilities"}; //added - 9th January 2020, Bob Murphy
+ case "I_Soldier_M_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Marksman role.\n\nMarksmen are more suitable to silent sneak but have less carrying capacity"}; //added - 9th January 2020, Bob Murphy
+ case "I_Soldier_AR_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
+ case "I_Soldier_LAT_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Antitank role.\n\nAntitanks have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
+ //cases for pvp blue - added - 9th January 2020, Bob Murphy
+ case "B_recon_medic_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use certain medical items for full health restoration"}; //added - 9th January 2020, Bob Murphy
+ case "B_recon_TL_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Teamleader role.\n\nTeamleader are more lightweight units with increased camouflage capabilities"}; //added - 9th January 2020, Bob Murphy
+ case "B_recon_M_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Marksman role.\n\nMarksmen are more suitable to silent sneak but have less carrying capacity"}; //added - 9th January 2020, Bob Murphy
+ case "B_Patrol_Soldier_MG_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
+ case "B_recon_LAT_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Antitank role.\n\nAntitanks have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
+ //cases for pvp red - added - 9th January 2020, Bob Murphy
+ case "O_T_Recon_Medic_F": {_textX = "Medic role.\n\nMedics do not have any bonus or penalties, but have the ability to use certain medical items for full health restoration"}; //added - 9th January 2020, Bob Murphy
+ case "O_T_Recon_TL_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["audibleCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Teamleader role.\n\nTeamleader are more lightweight units with increased camouflage capabilities"}; //added - 9th January 2020, Bob Murphy
+ case "O_T_Recon_M_F": {player setUnitTrait ["camouflageCoef",0.8]; player setUnitTrait ["loadCoef",1.4]; _textX = "Marksman role.\n\nMarksmen are more suitable to silent sneak but have less carrying capacity"}; //added - 9th January 2020, Bob Murphy
+ case "O_Soldier_AR_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Autorifleman role.\n\nAutoriflemen have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
+ case "O_T_Recon_LAT_F": {player setUnitTrait ["audibleCoef",1.2]; player setUnitTrait ["loadCoef",0.8]; _textX = "Antitank role.\n\nAntitanks have a slight bonus on carry capacity, but make too much noise when they move"}; //added - 9th January 2020, Bob Murphy
};
-/*
+
if (isMultiPlayer) then
{
sleep 5;
diff --git a/A3-Antistasi/statSave/saveLoop.sqf b/A3-Antistasi/statSave/saveLoop.sqf
index a03567aad3..ee92296a70 100644
--- a/A3-Antistasi/statSave/saveLoop.sqf
+++ b/A3-Antistasi/statSave/saveLoop.sqf
@@ -205,5 +205,6 @@ _controlsX = controlsX select {(sidesX getVariable [_x,sideUnknown] == teamPlaye
["controlsSDK",_controlsX] call fn_SaveStat;
savingServer = false;
-[[petros,"hint",format ["Savegame Done.\n\nYou won't lose your stats in the event of a game update.\n\nRemember: if you want to preserve any vehicle, it must be near the HQ Flag with no AI inside.\nIf AI are inside, you will save the funds you spent on it.\n\nAI will be refunded\n\nStolen and purchased Static Weapons need to be ASSEMBLED in order to be saved. You can save disassembled Static Weapons in the ammo box.\n\nMounted Statics (Mortar/AA/AT squads) won't get saved, but you will be able to recover the cost.\n\nSame for assigned vehicles more than 50m away from HQ.\n\n%1 fund count:\nHR: %2\nMoney: %3 €",nameTeamPlayer,_hrBackground,_resourcesBackground]],"A3A_fnc_commsMP"] call BIS_fnc_MP;
+_saveHintText = format ["Savegame Done.\n\nYou won't lose your stats in the event of a game update.\n\nRemember: if you want to preserve any vehicle, it must be near the HQ Flag with no AI inside.\nIf AI are inside, you will save the funds you spent on it.\n\nAI will be refunded\n\nStolen and purchased Static Weapons need to be ASSEMBLED in order to be saved. You can save disassembled Static Weapons in the ammo box.\n\nMounted Statics (Mortar/AA/AT squads) won't get saved, but you will be able to recover the cost.\n\nSame for assigned vehicles more than 50m away from HQ.\n\n%1 fund count:\nHR: %2\nMoney: %3 €",nameTeamPlayer,_hrBackground,_resourcesBackground];
+[petros,"hint",_saveHintText] remoteExec ["A3A_fnc_commsMP", 0];
diag_log format ["%1: [Antistasi] | INFO | Persistent Save Completed.",servertime];
diff --git a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg
index 532876af94..192c181e78 100644
Binary files a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg and b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/PIC.jpg differ
diff --git a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm
index 16bd68d176..bace912218 100755
--- a/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm
+++ b/Map-Templates/Antistasi-Altis-BLUFOR.Altis/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=514;
class ItemIDProvider
{
- nextID=2964;
+ nextID=3003;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=498;
+ nextID=508;
};
class Camera
{
- pos[]={13556.234,41.887928,12059.663};
- dir[]={-0.66024649,-0.60780692,0.44120061};
- up[]={-0.5053609,0.79408169,0.33770081};
- aside[]={0.55560595,1.5355181e-007,0.83145243};
+ pos[]={3637.04,40.355995,10282.369};
+ dir[]={-0.66807073,-0.74400634,0.012217433};
+ up[]={-0.74388564,0.66816783,0.013604266};
+ aside[]={0.01828455,-1.077151e-007,0.99983603};
};
};
binarizationWanted=0;
@@ -34,7 +34,6 @@ addons[]=
"A3_Modules_F",
"A3_Characters_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
- "A3_Weapons_F",
"A3_Structures_F_Mil_Flags",
"A3_Ui_F_Exp",
"A3_Characters_F_Exp",
@@ -50,7 +49,8 @@ addons[]=
"A3_Structures_F_Walls",
"A3_Structures_F_Ind_Transmitter_Tower",
"A3_Structures_F_Ind_Cargo",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
@@ -169,7 +169,6 @@ class Mission
day=1;
hour=10;
minute=0;
-
};
class Entities
{
@@ -409,27 +408,22 @@ class Mission
side="West";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={3606.198,15.751395,10275.502};
+ position[]={3600.1211,15.997869,10278.858};
+ angles[]={0,2.0248263,0};
};
side="West";
flags=7;
class Attributes
{
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=1487;
+ id=1488;
type="B_G_officer_F";
class CustomAttributes
{
@@ -448,7 +442,7 @@ class Mission
"STRING"
};
};
- value="Male04GRE";
+ value="Male06GRE";
};
};
};
@@ -467,33 +461,85 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=1.05;
};
};
};
nAttributes=2;
};
};
- class Item1
+ };
+ class Attributes
+ {
+ };
+ id=1489;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Petros";
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3608.8811,19.602364,10284.22};
+ angles[]={6.2272439,0,6.2392135};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=1490;
+ type="Flag_FIA_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item16
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={3611.3052,15.357435,10272.316};
+ position[]={13537.176,16.839275,12079.607};
};
- side="West";
- flags=5;
+ side="Independent";
+ flags=3;
class Attributes
{
- description="Machinegunner";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_green_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1492;
- type="B_G_Soldier_AR_F";
+ id=1562;
+ type="I_Soldier_TL_F";
+ atlOffset=1.1369991;
class CustomAttributes
{
class Attribute0
@@ -530,33 +576,31 @@ class Mission
"SCALAR"
};
};
- value=0.94999999;
+ value=1;
};
};
};
nAttributes=2;
};
};
- class Item2
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={3620.7786,14.942623,10277.655};
+ position[]={13532.44,16.044815,12074.052};
};
- side="West";
- flags=5;
+ side="Independent";
+ flags=1;
class Attributes
{
- description="Machinegunner";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_green_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1502;
- type="B_G_Soldier_AR_F";
+ id=1563;
+ type="I_medic_F";
+ atlOffset=1.2700014;
class CustomAttributes
{
class Attribute0
@@ -574,7 +618,7 @@ class Mission
"STRING"
};
};
- value="Male02GRE";
+ value="Male01GRE";
};
};
};
@@ -593,33 +637,31 @@ class Mission
"SCALAR"
};
};
- value=0.94999999;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item3
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={3623.3313,14.7978,10277.673};
+ position[]={13540.869,15.886252,12074.554};
};
- side="West";
+ side="Independent";
flags=5;
class Attributes
{
- description="AT Launcher";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_green_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1504;
- type="B_G_Soldier_LAT_F";
+ id=1564;
+ type="I_Soldier_M_F";
+ atlOffset=-1.9073486e-006;
class CustomAttributes
{
class Attribute0
@@ -656,33 +698,30 @@ class Mission
"SCALAR"
};
};
- value=0.99000001;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item4
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={3626.3606,14.680888,10277.655};
+ position[]={13536.766,15.660179,12076.168};
};
- side="West";
+ side="Independent";
flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_green_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1506;
- type="B_G_medic_F";
+ id=1649;
+ type="I_Soldier_AR_F";
class CustomAttributes
{
class Attribute0
@@ -700,7 +739,7 @@ class Mission
"STRING"
};
};
- value="Male02GRE";
+ value="Male06GRE";
};
};
};
@@ -719,33 +758,30 @@ class Mission
"SCALAR"
};
};
- value=1.03;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item5
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={3629.23,14.596958,10277.691};
+ position[]={13540.1,15.931467,12079.609};
};
- side="West";
+ side="Independent";
flags=5;
class Attributes
{
- description="Engineer";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_green_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1508;
- type="B_G_engineer_F";
+ id=1650;
+ type="I_Soldier_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -763,7 +799,7 @@ class Mission
"STRING"
};
};
- value="Male04GRE";
+ value="Male05GRE";
};
};
};
@@ -789,26 +825,23 @@ class Mission
nAttributes=2;
};
};
- class Item6
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={3631.9236,14.522006,10277.673};
+ position[]={13538.076,15.801028,12082.178};
};
- side="West";
+ side="Independent";
flags=5;
class Attributes
{
- description="Grenadier";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_green_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1510;
- type="B_G_Soldier_GL_F";
+ id=1651;
+ type="I_Soldier_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -845,33 +878,53 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item7
+ };
+ class Attributes
+ {
+ };
+ id=1561;
+ atlOffset=1.1369991;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={8431.7119,115.93193,25106.738};
+ name="respawn_east";
+ type="flag_Viper";
+ id=1571;
+ atlOffset=5.68927;
+ };
+ class Item18
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={3618.2109,15.07185,10277.62};
+ position[]={8430.2979,111.02246,25110.721};
};
- side="West";
- flags=5;
+ side="East";
+ flags=7;
class Attributes
{
- description="Officer";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1512;
- type="B_G_officer_F";
+ id=1573;
+ type="O_T_Recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -889,7 +942,7 @@ class Mission
"STRING"
};
};
- value="Male04GRE";
+ value="Male03CHI";
};
};
};
@@ -915,26 +968,23 @@ class Mission
nAttributes=2;
};
};
- class Item8
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={3620.6335,14.914344,10280.802};
+ position[]={8425.4854,110.56212,25106.207};
};
- side="West";
+ side="East";
flags=5;
class Attributes
{
- description="Machinegunner";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1514;
- type="B_G_Soldier_AR_F";
+ id=1574;
+ type="O_T_Recon_Medic_F";
class CustomAttributes
{
class Attribute0
@@ -952,7 +1002,7 @@ class Mission
"STRING"
};
};
- value="Male02GRE";
+ value="Male01CHI";
};
};
};
@@ -971,33 +1021,30 @@ class Mission
"SCALAR"
};
};
- value=0.94999999;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item9
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={3623.1863,14.765662,10280.819};
+ position[]={8434.96,109.85142,25106.357};
};
- side="West";
+ side="East";
flags=5;
class Attributes
{
- description="AT Launcher";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1516;
- type="B_G_Soldier_LAT_F";
+ id=1575;
+ type="O_T_Recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -1015,7 +1062,7 @@ class Mission
"STRING"
};
};
- value="Male05GRE";
+ value="Male02CHI";
};
};
};
@@ -1034,34 +1081,32 @@ class Mission
"SCALAR"
};
};
- value=0.99000001;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item10
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={3626.2156,14.677603,10280.802};
+ position[]={8421.1982,110.12845,25101.018};
};
- side="West";
+ side="East";
flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1518;
- type="B_G_medic_F";
- class CustomAttributes
+ id=1576;
+ type="O_T_Recon_LAT_F";
+ atlOffset=7.6293945e-006;
+ class CustomAttributes
{
class Attribute0
{
@@ -1078,7 +1123,7 @@ class Mission
"STRING"
};
};
- value="Male02GRE";
+ value="Male02CHI";
};
};
};
@@ -1097,33 +1142,30 @@ class Mission
"SCALAR"
};
};
- value=1.03;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item11
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={3629.085,14.608832,10280.838};
+ position[]={8436.4316,109.33715,25104.035};
};
- side="West";
+ side="East";
flags=5;
class Attributes
{
- description="Engineer";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1520;
- type="B_G_engineer_F";
+ id=1644;
+ type="O_Soldier_AR_F";
class CustomAttributes
{
class Attribute0
@@ -1141,7 +1183,7 @@ class Mission
"STRING"
};
};
- value="Male04GRE";
+ value="Male01PER";
};
};
};
@@ -1160,33 +1202,30 @@ class Mission
"SCALAR"
};
};
- value=1.01;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item12
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={3631.7786,14.536454,10280.819};
+ position[]={8433.3594,110.63219,25111.08};
};
- side="West";
+ side="East";
flags=5;
class Attributes
{
- description="Grenadier";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=1522;
- type="B_G_Soldier_GL_F";
+ id=1646;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1204,7 +1243,7 @@ class Mission
"STRING"
};
};
- value="Male02GRE";
+ value="Male03CHI";
};
};
};
@@ -1230,4030 +1269,149 @@ class Mission
nAttributes=2;
};
};
- class Item13
+ };
+ class Attributes
+ {
+ };
+ id=1572;
+ };
+ class Item19
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3602.1523,15.835608,10267.798};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=1633;
+ type="HeadlessClient_F";
+ atlOffset=1.7166138e-005;
+ };
+ class Item20
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3605.4236,15.676936,10265.767};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=1634;
+ type="HeadlessClient_F";
+ atlOffset=2.9563904e-005;
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3607.073,16.1,10278.632};
+ angles[]={0.014660765,0,6.2232509};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=1641;
+ type="Land_TentSolar_01_olive_F";
+ atlOffset=-0.14473438;
+ };
+ class Item22
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3593.9009,16.122522,10260.412};
+ };
+ id=1643;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={3618.0659,15.082511,10280.767};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1524;
- type="B_G_officer_F";
- class CustomAttributes
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
+ "STRING"
};
};
+ value="#adminLogged";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item14
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.5249,14.972713,10283.839};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1526;
- type="B_G_Soldier_AR_F";
- class CustomAttributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
+ "STRING"
};
};
+ value="";
};
- class Attribute1
+ };
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
+ "SCALAR"
};
};
- };
- nAttributes=2;
- };
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3623.0776,14.776744,10283.856};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1528;
- type="B_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3626.1069,14.703787,10283.839};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1530;
- type="B_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.9763,14.635045,10283.875};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1532;
- type="B_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.6699,14.622231,10283.856};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1534;
- type="B_G_Soldier_GL_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.9573,15.138463,10283.804};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1536;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.4529,15.050589,10286.695};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1538;
- type="B_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3623.0056,14.820369,10286.713};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1540;
- type="B_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3626.0349,14.747169,10286.695};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1542;
- type="B_G_medic_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.9043,14.674952,10286.731};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1544;
- type="B_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.5979,14.65974,10286.713};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1546;
- type="B_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.8853,15.303119,10286.66};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1548;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.4165,15.095855,10289.518};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1550;
- type="B_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.9692,14.862626,10289.535};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1552;
- type="B_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.9985,14.785713,10289.518};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1554;
- type="B_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.8679,14.713508,10289.554};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1556;
- type="B_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.5615,14.698468,10289.535};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1558;
- type="B_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.8489,15.369222,10289.482};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1560;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.5378,15.507857,10292.378};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1583;
- type="B_G_Soldier_AR_F";
- atlOffset=0.31138611;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3623.0906,15.274629,10292.396};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1585;
- type="B_G_Soldier_LAT_F";
- atlOffset=0.31738853;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3626.1199,15.197716,10292.378};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1587;
- type="B_G_medic_F";
- atlOffset=0.31792545;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.9893,15.12551,10292.414};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1589;
- type="B_G_engineer_F";
- atlOffset=0.33147812;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.6829,15.110471,10292.396};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1591;
- type="B_G_Soldier_GL_F";
- atlOffset=0.33759689;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.9702,15.781224,10292.343};
- };
- side="West";
- flags=1;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1593;
- type="B_G_officer_F";
- atlOffset=0.3096056;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.4919,15.320822,10294.948};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1595;
- type="B_G_Soldier_AR_F";
- atlOffset=0.019706726;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3623.0447,15.087593,10294.966};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1597;
- type="B_G_Soldier_LAT_F";
- atlOffset=0.029860497;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3626.074,15.01068,10294.948};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1599;
- type="B_G_medic_F";
- atlOffset=0.040740967;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.9434,14.938475,10294.984};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1601;
- type="B_G_engineer_F";
- atlOffset=0.070830345;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.637,14.923435,10294.966};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1603;
- type="B_G_Soldier_GL_F";
- atlOffset=0.07905674;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.9243,15.594189,10294.913};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1605;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.3542,15.447033,10297.748};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1607;
- type="B_G_Soldier_AR_F";
- atlOffset=0.019241333;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.907,15.213804,10297.766};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1609;
- type="B_G_Soldier_LAT_F";
- atlOffset=0.048957825;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.9363,15.136891,10297.748};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1611;
- type="B_G_medic_F";
- atlOffset=0.081747055;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.8057,15.064686,10297.784};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1613;
- type="B_G_engineer_F";
- atlOffset=0.11147594;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.4993,15.049646,10297.766};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1615;
- type="B_G_Soldier_GL_F";
- atlOffset=0.094394684;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.7866,15.7204,10297.713};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1617;
- type="B_G_officer_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.4919,15.557705,10300.18};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1619;
- type="B_G_Soldier_AR_F";
- atlOffset=0.028369904;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3623.0447,15.324476,10300.197};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1621;
- type="B_G_Soldier_LAT_F";
- atlOffset=0.07380867;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3626.074,15.247563,10300.18};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1623;
- type="B_G_medic_F";
- atlOffset=0.1065979;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.9434,15.175358,10300.216};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1625;
- type="B_G_engineer_F";
- atlOffset=0.093374252;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.637,15.160318,10300.197};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1627;
- type="B_G_Soldier_GL_F";
- atlOffset=0.045767784;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.9243,15.831072,10300.145};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1629;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.4502,14.762181,10272.334};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1500;
- type="B_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.7566,14.877787,10272.353};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1498;
- type="B_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male04GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3616.8872,15.00565,10272.316};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1496;
- type="B_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3613.8579,15.180957,10272.334};
- };
- side="West";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1494;
- type="B_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=1486;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Guerillas";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item15
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3600.1211,15.997869,10278.858};
- angles[]={0,2.0248263,0};
- };
- side="West";
- flags=7;
- class Attributes
- {
- name="petros";
- };
- id=1488;
- type="B_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.05;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=1489;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Petros";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3608.8811,19.602364,10284.22};
- angles[]={6.2272439,0,6.2392135};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=1490;
- type="Flag_FIA_F";
- atlOffset=9.5367432e-007;
- };
- class Item17
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13537.176,16.839275,12079.607};
- };
- side="Independent";
- flags=3;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_green_1";
- isPlayable=1;
- };
- id=1562;
- type="I_Soldier_SL_F";
- atlOffset=1.1369991;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13532.44,16.044815,12074.052};
- };
- side="Independent";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_green_2";
- isPlayable=1;
- };
- id=1563;
- type="I_medic_F";
- atlOffset=1.2700014;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13540.869,15.886252,12074.554};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_green_4";
- isPlayable=1;
- };
- id=1564;
- type="I_Soldier_M_F";
- atlOffset=-1.9073486e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13536.766,15.660179,12076.168};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_green_3";
- isPlayable=1;
- };
- id=1649;
- type="I_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13540.1,15.931467,12079.609};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_green_6";
- isPlayable=1;
- };
- id=1650;
- type="I_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male05GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13538.076,15.801028,12082.178};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_green_5";
- isPlayable=1;
- };
- id=1651;
- type="I_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=1561;
- atlOffset=1.1369991;
- };
- class Item18
- {
- dataType="Marker";
- position[]={8431.7119,115.93193,25106.738};
- name="respawn_east";
- type="flag_Viper";
- id=1571;
- atlOffset=5.68927;
- };
- class Item19
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8430.2979,111.02246,25110.721};
- };
- side="East";
- flags=7;
- class Attributes
- {
- init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_red_1";
- isPlayable=1;
- };
- id=1573;
- type="O_T_Recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8425.4854,110.56212,25106.207};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_red_2";
- isPlayable=1;
- };
- id=1574;
- type="O_T_Recon_Medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8434.96,109.85142,25106.357};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_red_4";
- isPlayable=1;
- };
- id=1575;
- type="O_T_Recon_M_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.1982,110.12845,25101.018};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=1576;
- type="O_T_Recon_LAT_F";
- atlOffset=7.6293945e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8436.4316,109.33715,25104.035};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=1644;
- type="O_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01PER";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8433.3594,110.63219,25111.08};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=1646;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=1572;
- };
- class Item20
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3602.1523,15.835608,10267.798};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_1";
- isPlayable=1;
- id=1633;
- type="HeadlessClient_F";
- atlOffset=1.7166138e-005;
- };
- class Item21
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3605.4236,15.676936,10265.767};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_2";
- isPlayable=1;
- id=1634;
- type="HeadlessClient_F";
- atlOffset=2.9563904e-005;
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3607.073,16.1,10278.632};
- angles[]={0.014660765,0,6.2232509};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=1641;
- type="Land_TentSolar_01_olive_F";
- atlOffset=-0.14473438;
- };
- class Item23
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3593.9009,16.122522,10260.412};
- };
- id=1643;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
+ value=3;
};
};
};
nAttributes=4;
};
};
- class Item24
+ class Item23
{
dataType="Logic";
class PositionInfo
@@ -5265,7 +1423,7 @@ class Mission
type="Logic";
atlOffset=9.5367432e-007;
};
- class Item25
+ class Item24
{
dataType="Marker";
position[]={11722.869,-186.03819,4256.5566};
@@ -5273,7 +1431,7 @@ class Mission
type="flag_AltisColonial";
id=23;
};
- class Item26
+ class Item25
{
dataType="Marker";
position[]={15372.398,-56.407341,14833.389};
@@ -5282,7 +1440,7 @@ class Mission
id=176;
atlOffset=3.8146973e-006;
};
- class Item27
+ class Item26
{
dataType="Marker";
position[]={15388.874,-90.985153,12976.936};
@@ -5291,7 +1449,7 @@ class Mission
id=175;
atlOffset=7.6293945e-006;
};
- class Item28
+ class Item27
{
dataType="Marker";
position[]={15241.775,0,13870.712};
@@ -5301,7 +1459,7 @@ class Mission
id=1180;
atlOffset=67.766624;
};
- class Item29
+ class Item28
{
dataType="Marker";
position[]={24070.148,-0.050999999,29143.369};
@@ -5310,7 +1468,7 @@ class Mission
id=22;
atlOffset=185.91901;
};
- class Item30
+ class Item29
{
dataType="Marker";
position[]={3337.3398,130.54485,17042.906};
@@ -5319,7 +1477,7 @@ class Mission
id=2278;
atlOffset=206.54761;
};
- class Item31
+ class Item30
{
dataType="Marker";
position[]={3247.0752,100.62038,15367.988};
@@ -5328,7 +1486,7 @@ class Mission
id=2279;
atlOffset=207.06781;
};
- class Item32
+ class Item31
{
dataType="Marker";
position[]={3004.0684,174.38411,13716.562};
@@ -5337,7 +1495,7 @@ class Mission
id=2280;
atlOffset=207.08414;
};
- class Item33
+ class Item32
{
dataType="Marker";
position[]={2779.2949,184.87955,12867.355};
@@ -5346,7 +1504,7 @@ class Mission
id=2281;
atlOffset=206.94388;
};
- class Item34
+ class Item33
{
dataType="Marker";
position[]={2678.4688,179.98424,12424.213};
@@ -5355,7 +1513,7 @@ class Mission
id=2282;
atlOffset=206.71344;
};
- class Item35
+ class Item34
{
dataType="Marker";
position[]={2717.3252,155.85457,10870.713};
@@ -5364,7 +1522,7 @@ class Mission
id=2283;
atlOffset=207.29001;
};
- class Item36
+ class Item35
{
dataType="Marker";
position[]={14518.147,69.005302,9158.7578};
@@ -5373,7 +1531,7 @@ class Mission
id=2284;
atlOffset=207.1091;
};
- class Item37
+ class Item36
{
dataType="Marker";
position[]={13564.181,111.91078,11123.83};
@@ -5382,7 +1540,7 @@ class Mission
id=2285;
atlOffset=206.22696;
};
- class Item38
+ class Item37
{
dataType="Marker";
position[]={15389.546,116.11678,12979.282};
@@ -5391,7 +1549,7 @@ class Mission
id=2286;
atlOffset=207.32629;
};
- class Item39
+ class Item38
{
dataType="Marker";
position[]={15373.07,150.69458,14835.735};
@@ -5400,7 +1558,7 @@ class Mission
id=2287;
atlOffset=207.19003;
};
- class Item40
+ class Item39
{
dataType="Marker";
position[]={27998.807,179.53445,24281.582};
@@ -5409,7 +1567,7 @@ class Mission
id=2288;
atlOffset=207.30873;
};
- class Item41
+ class Item40
{
dataType="Marker";
position[]={28478.389,168.63277,24857.613};
@@ -5418,7 +1576,7 @@ class Mission
id=2289;
atlOffset=206.64738;
};
- class Item42
+ class Item41
{
dataType="Marker";
position[]={28748.992,174.2493,25990.926};
@@ -5427,7 +1585,7 @@ class Mission
id=2290;
atlOffset=207.14847;
};
- class Item43
+ class Item42
{
dataType="Marker";
position[]={27755,165.46266,25878.398};
@@ -5436,7 +1594,7 @@ class Mission
id=2291;
atlOffset=207.02464;
};
- class Item44
+ class Item43
{
dataType="Marker";
position[]={26996.783,176.42392,25465.797};
@@ -5445,7 +1603,7 @@ class Mission
id=2292;
atlOffset=206.93188;
};
- class Item45
+ class Item44
{
dataType="Marker";
position[]={25962.609,186.89674,24431.621};
@@ -5454,7 +1612,7 @@ class Mission
id=2293;
atlOffset=207.10718;
};
- class Item46
+ class Item45
{
dataType="Marker";
position[]={26495.033,191.812,25001.895};
@@ -5463,7 +1621,7 @@ class Mission
id=2294;
atlOffset=207.35278;
};
- class Item47
+ class Item46
{
dataType="Marker";
position[]={21037.496,200.95976,19986.074};
@@ -5472,7 +1630,7 @@ class Mission
id=2295;
atlOffset=207.03401;
};
- class Item48
+ class Item47
{
dataType="Marker";
position[]={21440.449,172.8671,20567.477};
@@ -5481,7 +1639,7 @@ class Mission
id=2296;
atlOffset=207.3761;
};
- class Item49
+ class Item48
{
dataType="Marker";
position[]={20829.973,95.750183,21009.922};
@@ -5490,7 +1648,7 @@ class Mission
id=2297;
atlOffset=207.43275;
};
- class Item50
+ class Item49
{
dataType="Marker";
position[]={19649.236,149.68198,20360.035};
@@ -5499,7 +1657,7 @@ class Mission
id=2298;
atlOffset=207.43951;
};
- class Item51
+ class Item50
{
dataType="Marker";
position[]={18765.988,137.21149,19434.543};
@@ -5508,7 +1666,7 @@ class Mission
id=2299;
atlOffset=206.81441;
};
- class Item52
+ class Item51
{
dataType="Marker";
position[]={18105.475,192.92429,18436.09};
@@ -5517,7 +1675,7 @@ class Mission
id=2300;
atlOffset=207.00026;
};
- class Item53
+ class Item52
{
dataType="Marker";
position[]={17655.588,161.94582,19880.805};
@@ -5526,7 +1684,7 @@ class Mission
id=2301;
atlOffset=206.98421;
};
- class Item54
+ class Item53
{
dataType="Marker";
position[]={17094.916,172.08469,20418.434};
@@ -5535,7 +1693,7 @@ class Mission
id=2302;
atlOffset=207.6337;
};
- class Item55
+ class Item54
{
dataType="Marker";
position[]={24402.568,160.39333,24634.41};
@@ -5544,7 +1702,7 @@ class Mission
id=2303;
atlOffset=207.66992;
};
- class Item56
+ class Item55
{
dataType="Marker";
position[]={21877.943,122.56293,22559.484};
@@ -5553,7 +1711,7 @@ class Mission
id=2304;
atlOffset=207.25781;
};
- class Item57
+ class Item56
{
dataType="Marker";
position[]={22722.113,113.7464,24121.598};
@@ -5562,17 +1720,17 @@ class Mission
id=2305;
atlOffset=207.11432;
};
- class Item58
+ class Item57
{
dataType="Marker";
position[]={21333.643,225.95993,7324.0293};
name="spawnPoint";
type="hd_start";
- angle=28.146917;
+ angle=28.146914;
id=2384;
atlOffset=207.1053;
};
- class Item59
+ class Item58
{
dataType="Marker";
position[]={22913.398,217.03192,19081.605};
@@ -5582,7 +1740,7 @@ class Mission
id=2385;
atlOffset=205.69991;
};
- class Item60
+ class Item59
{
dataType="Marker";
position[]={26833.752,234.14293,24436.691};
@@ -5592,7 +1750,7 @@ class Mission
id=2386;
atlOffset=207.12477;
};
- class Item61
+ class Item60
{
dataType="Marker";
position[]={14415.887,223.65625,16813.977};
@@ -5602,7 +1760,7 @@ class Mission
id=2387;
atlOffset=207.05586;
};
- class Item62
+ class Item61
{
dataType="Marker";
position[]={11565.752,232.28767,12099.108};
@@ -5612,7 +1770,7 @@ class Mission
id=2388;
atlOffset=206.98756;
};
- class Item63
+ class Item62
{
dataType="Marker";
position[]={9185.0156,221.89238,21736.594};
@@ -5622,7 +1780,7 @@ class Mission
id=2389;
atlOffset=207.08432;
};
- class Item64
+ class Item63
{
dataType="Marker";
position[]={3181.8047,209.52193,12484.441};
@@ -5635,7 +1793,7 @@ class Mission
id=2390;
atlOffset=207.08269;
};
- class Item65
+ class Item64
{
dataType="Marker";
position[]={4219.875,253.21332,12253.836};
@@ -5648,7 +1806,7 @@ class Mission
id=2391;
atlOffset=207.16989;
};
- class Item66
+ class Item65
{
dataType="Marker";
position[]={5097.6211,231.5822,13861.521};
@@ -5661,7 +1819,7 @@ class Mission
id=2392;
atlOffset=207.02454;
};
- class Item67
+ class Item66
{
dataType="Marker";
position[]={5203.1016,225.64362,14487.979};
@@ -5674,7 +1832,7 @@ class Mission
id=2393;
atlOffset=207.16223;
};
- class Item68
+ class Item67
{
dataType="Marker";
position[]={3631.9053,214.55852,13876.935};
@@ -5687,7 +1845,7 @@ class Mission
id=2394;
atlOffset=207.10887;
};
- class Item69
+ class Item68
{
dataType="Marker";
position[]={4387.4189,278.14285,16017.934};
@@ -5700,7 +1858,7 @@ class Mission
id=2395;
atlOffset=207.22113;
};
- class Item70
+ class Item69
{
dataType="Marker";
position[]={5953.5791,443.88956,19867.109};
@@ -5713,7 +1871,7 @@ class Mission
id=2396;
atlOffset=207.08942;
};
- class Item71
+ class Item70
{
dataType="Marker";
position[]={9128.9141,227.78291,22071.156};
@@ -5726,7 +1884,7 @@ class Mission
id=2397;
atlOffset=207.10239;
};
- class Item72
+ class Item71
{
dataType="Marker";
position[]={8409.6992,262.42349,20836.609};
@@ -5739,7 +1897,7 @@ class Mission
id=2398;
atlOffset=206.81137;
};
- class Item73
+ class Item72
{
dataType="Marker";
position[]={9351.9639,245.55682,21245.773};
@@ -5752,7 +1910,7 @@ class Mission
id=2399;
atlOffset=207.35381;
};
- class Item74
+ class Item73
{
dataType="Marker";
position[]={9466.8467,221.96548,21873.234};
@@ -5765,7 +1923,7 @@ class Mission
id=2400;
atlOffset=207.09254;
};
- class Item75
+ class Item74
{
dataType="Marker";
position[]={8784.1973,306.97516,15790.667};
@@ -5778,7 +1936,7 @@ class Mission
id=2401;
atlOffset=207.06302;
};
- class Item76
+ class Item75
{
dataType="Marker";
position[]={7241.6289,211.59077,11031.837};
@@ -5791,7 +1949,7 @@ class Mission
id=2402;
atlOffset=207.0925;
};
- class Item77
+ class Item76
{
dataType="Marker";
position[]={10772.411,210.57669,10875.501};
@@ -5804,7 +1962,7 @@ class Mission
id=2403;
atlOffset=207.00285;
};
- class Item78
+ class Item77
{
dataType="Marker";
position[]={10831.6,224.31812,12158.453};
@@ -5817,7 +1975,7 @@ class Mission
id=2404;
atlOffset=207.11411;
};
- class Item79
+ class Item78
{
dataType="Marker";
position[]={10094.229,225.83615,12922.144};
@@ -5830,7 +1988,7 @@ class Mission
id=2405;
atlOffset=207.04605;
};
- class Item80
+ class Item79
{
dataType="Marker";
position[]={12378.049,228.68013,15873.92};
@@ -5843,7 +2001,7 @@ class Mission
id=2406;
atlOffset=207.11403;
};
- class Item81
+ class Item80
{
dataType="Marker";
position[]={11293.979,265.90872,17519.941};
@@ -5856,7 +2014,7 @@ class Mission
id=2407;
atlOffset=207.0988;
};
- class Item82
+ class Item81
{
dataType="Marker";
position[]={13548.217,226.20168,18671.605};
@@ -5869,7 +2027,7 @@ class Mission
id=2408;
atlOffset=207.08403;
};
- class Item83
+ class Item82
{
dataType="Marker";
position[]={14300.13,235.71681,19469.402};
@@ -5882,7 +2040,7 @@ class Mission
id=2409;
atlOffset=207.17482;
};
- class Item84
+ class Item83
{
dataType="Marker";
position[]={13645.948,226.2572,16086.868};
@@ -5895,7 +2053,7 @@ class Mission
id=2410;
atlOffset=207.08447;
};
- class Item85
+ class Item84
{
dataType="Marker";
position[]={15868.847,221.71736,17423.516};
@@ -5908,7 +2066,7 @@ class Mission
id=2411;
atlOffset=207.0769;
};
- class Item86
+ class Item85
{
dataType="Marker";
position[]={15987.165,215.13191,16133.075};
@@ -5921,7 +2079,7 @@ class Mission
id=2412;
atlOffset=207.0587;
};
- class Item87
+ class Item86
{
dataType="Marker";
position[]={18362.799,226.33023,17344.508};
@@ -5934,7 +2092,7 @@ class Mission
id=2413;
atlOffset=207.12338;
};
- class Item88
+ class Item87
{
dataType="Marker";
position[]={17491.359,212.65886,14327.144};
@@ -5947,7 +2105,7 @@ class Mission
id=2414;
atlOffset=207.10353;
};
- class Item89
+ class Item88
{
dataType="Marker";
position[]={18272.131,234.37762,12903.081};
@@ -5960,7 +2118,7 @@ class Mission
id=2415;
atlOffset=207.0889;
};
- class Item90
+ class Item89
{
dataType="Marker";
position[]={20229.326,259.12195,9770.4014};
@@ -5973,7 +2131,7 @@ class Mission
id=2416;
atlOffset=207.05414;
};
- class Item91
+ class Item90
{
dataType="Marker";
position[]={21587.594,221.20706,7804.3369};
@@ -5986,7 +2144,7 @@ class Mission
id=2417;
atlOffset=207.10014;
};
- class Item92
+ class Item91
{
dataType="Marker";
position[]={20792.701,244.05165,16647.652};
@@ -5999,7 +2157,7 @@ class Mission
id=2418;
atlOffset=207.07555;
};
- class Item93
+ class Item92
{
dataType="Marker";
position[]={21686.252,229.47137,17645.633};
@@ -6012,7 +2170,7 @@ class Mission
id=2419;
atlOffset=207.1114;
};
- class Item94
+ class Item93
{
dataType="Marker";
position[]={22971.781,220.59483,19368.418};
@@ -6025,7 +2183,7 @@ class Mission
id=2420;
atlOffset=207.12585;
};
- class Item95
+ class Item94
{
dataType="Marker";
position[]={24790.805,227.57651,20723.227};
@@ -6038,7 +2196,7 @@ class Mission
id=2421;
atlOffset=207.11124;
};
- class Item96
+ class Item95
{
dataType="Marker";
position[]={25990.932,231.85326,21570.633};
@@ -6051,7 +2209,7 @@ class Mission
id=2422;
atlOffset=206.9996;
};
- class Item97
+ class Item96
{
dataType="Marker";
position[]={26981.951,218.94193,23833.32};
@@ -6064,7 +2222,7 @@ class Mission
id=2423;
atlOffset=207.10193;
};
- class Item98
+ class Item97
{
dataType="Marker";
position[]={5931.9932,242.60175,22075.207};
@@ -6077,7 +2235,7 @@ class Mission
id=2424;
atlOffset=27.08403;
};
- class Item99
+ class Item98
{
dataType="Marker";
position[]={4079.6465,340.33676,22093.223};
@@ -6090,7 +2248,7 @@ class Mission
id=2425;
atlOffset=207.93146;
};
- class Item100
+ class Item99
{
dataType="Marker";
position[]={3877.3984,357.211,21274.602};
@@ -6103,7 +2261,7 @@ class Mission
id=2426;
atlOffset=206.75163;
};
- class Item101
+ class Item100
{
dataType="Marker";
position[]={7788.5166,305.2428,21687.223};
@@ -6116,7 +2274,7 @@ class Mission
id=2427;
atlOffset=181.51501;
};
- class Item102
+ class Item101
{
dataType="Marker";
position[]={3262.584,329.63889,19388.117};
@@ -6129,7 +2287,7 @@ class Mission
id=2428;
atlOffset=164.57132;
};
- class Item103
+ class Item102
{
dataType="Marker";
position[]={4095.8125,497.85452,19933.289};
@@ -6142,7 +2300,7 @@ class Mission
id=2429;
atlOffset=206.00711;
};
- class Item104
+ class Item103
{
dataType="Marker";
position[]={5529.1685,380.71536,21302.027};
@@ -6155,7 +2313,7 @@ class Mission
id=2430;
atlOffset=205.84341;
};
- class Item105
+ class Item104
{
dataType="Marker";
position[]={8185.6787,290.59659,22895.996};
@@ -6168,7 +2326,7 @@ class Mission
id=2431;
atlOffset=206.11313;
};
- class Item106
+ class Item105
{
dataType="Marker";
position[]={14259.37,303.48303,22078.895};
@@ -6181,7 +2339,7 @@ class Mission
id=2432;
atlOffset=232.04526;
};
- class Item107
+ class Item106
{
dataType="Marker";
position[]={8006.9063,278.0835,20045.223};
@@ -6194,7 +2352,7 @@ class Mission
id=2433;
atlOffset=207.25772;
};
- class Item108
+ class Item107
{
dataType="Marker";
position[]={5772.4678,396.59335,19096.383};
@@ -6207,7 +2365,7 @@ class Mission
id=2434;
atlOffset=206.20912;
};
- class Item109
+ class Item108
{
dataType="Marker";
position[]={11739.365,252.59326,8852.958};
@@ -6220,7 +2378,7 @@ class Mission
id=2435;
atlOffset=207.39941;
};
- class Item110
+ class Item109
{
dataType="Marker";
position[]={21061.072,208.47031,14719.993};
@@ -6233,7 +2391,7 @@ class Mission
id=2436;
atlOffset=207.11006;
};
- class Item111
+ class Item110
{
dataType="Marker";
position[]={17992.754,277.02676,10674.25};
@@ -6246,7 +2404,7 @@ class Mission
id=2437;
atlOffset=206.83978;
};
- class Item112
+ class Item111
{
dataType="Marker";
position[]={22961.645,232.05942,21889.684};
@@ -6259,7 +2417,7 @@ class Mission
id=2438;
atlOffset=206.50633;
};
- class Item113
+ class Item112
{
dataType="Marker";
position[]={24233.471,273.37555,21798.02};
@@ -6272,7 +2430,7 @@ class Mission
id=2439;
atlOffset=207.77448;
};
- class Item114
+ class Item113
{
dataType="Marker";
position[]={23924.107,252.82391,22726.109};
@@ -6285,7 +2443,7 @@ class Mission
id=2440;
atlOffset=207.53732;
};
- class Item115
+ class Item114
{
dataType="Marker";
position[]={24348.051,232.91309,23562.535};
@@ -6298,7 +2456,7 @@ class Mission
id=2441;
atlOffset=207.0984;
};
- class Item116
+ class Item115
{
dataType="Marker";
position[]={28046.412,246.60393,25411.922};
@@ -6311,7 +2469,7 @@ class Mission
id=2442;
atlOffset=206.91652;
};
- class Item117
+ class Item116
{
dataType="Marker";
position[]={25964.469,273.6788,22491.207};
@@ -6324,7 +2482,7 @@ class Mission
id=2443;
atlOffset=207.02988;
};
- class Item118
+ class Item117
{
dataType="Marker";
position[]={8800.2266,336.78128,15253.247};
@@ -6337,7 +2495,7 @@ class Mission
id=2444;
atlOffset=206.35326;
};
- class Item119
+ class Item118
{
dataType="Marker";
position[]={10823.294,313.38348,15027.392};
@@ -6350,7 +2508,7 @@ class Mission
id=2445;
atlOffset=206.99362;
};
- class Item120
+ class Item119
{
dataType="Marker";
position[]={6642.3921,339.61301,12200.023};
@@ -6363,7 +2521,7 @@ class Mission
id=2446;
atlOffset=205.74603;
};
- class Item121
+ class Item120
{
dataType="Marker";
position[]={9523.2363,259.60046,7535.1172};
@@ -6376,7 +2534,7 @@ class Mission
id=2447;
atlOffset=201.50053;
};
- class Item122
+ class Item121
{
dataType="Marker";
position[]={23663.305,212.40474,16241.952};
@@ -6389,7 +2547,7 @@ class Mission
id=2448;
atlOffset=207.0988;
};
- class Item123
+ class Item122
{
dataType="Marker";
position[]={3377.2734,207.10193,12755.404};
@@ -6398,7 +2556,7 @@ class Mission
id=2449;
atlOffset=209.90524;
};
- class Item124
+ class Item123
{
dataType="Marker";
position[]={3535.8174,207.10193,13776.693};
@@ -6407,7 +2565,7 @@ class Mission
id=2450;
atlOffset=208.26828;
};
- class Item125
+ class Item124
{
dataType="Marker";
position[]={3807.7119,207.10193,17344.215};
@@ -6416,7 +2574,7 @@ class Mission
id=2451;
atlOffset=211.43423;
};
- class Item126
+ class Item125
{
dataType="Marker";
position[]={16582.803,207.10193,12306.157};
@@ -6425,7 +2583,7 @@ class Mission
id=2452;
atlOffset=215.26413;
};
- class Item127
+ class Item126
{
dataType="Marker";
position[]={12750.637,207.10193,14200.559};
@@ -6434,7 +2592,7 @@ class Mission
id=2453;
atlOffset=216.75415;
};
- class Item128
+ class Item127
{
dataType="Marker";
position[]={11838.184,207.10193,13532.533};
@@ -6443,7 +2601,7 @@ class Mission
id=2454;
atlOffset=211.54929;
};
- class Item129
+ class Item128
{
dataType="Marker";
position[]={2256.4541,207.10193,13237.144};
@@ -6453,7 +2611,7 @@ class Mission
id=2455;
atlOffset=333.48044;
};
- class Item130
+ class Item129
{
dataType="Marker";
position[]={3173.6484,207.10193,16759.453};
@@ -6463,7 +2621,7 @@ class Mission
id=2456;
atlOffset=314.88629;
};
- class Item131
+ class Item130
{
dataType="Marker";
position[]={19879.965,207.10193,21961.16};
@@ -6473,7 +2631,7 @@ class Mission
id=2457;
atlOffset=378.37085;
};
- class Item132
+ class Item131
{
dataType="Marker";
position[]={25806.242,207.10193,25993.34};
@@ -6483,7 +2641,7 @@ class Mission
id=2458;
atlOffset=385.92563;
};
- class Item133
+ class Item132
{
dataType="Marker";
position[]={24006.816,207.10193,6605.4922};
@@ -6493,7 +2651,7 @@ class Mission
id=2459;
atlOffset=387.65833;
};
- class Item134
+ class Item133
{
dataType="Marker";
position[]={15242.447,207.10193,13873.059};
@@ -6503,7 +2661,7 @@ class Mission
id=2460;
atlOffset=274.9671;
};
- class Item135
+ class Item134
{
dataType="Marker";
position[]={13682.604,207.10193,10428.973};
@@ -6513,7 +2671,7 @@ class Mission
id=2461;
atlOffset=348.68527;
};
- class Item136
+ class Item135
{
dataType="Marker";
position[]={3239.709,207.10193,12863.792};
@@ -6522,7 +2680,7 @@ class Mission
id=2462;
atlOffset=215.90306;
};
- class Item137
+ class Item136
{
dataType="Marker";
position[]={20650.537,207.10193,19499.43};
@@ -6531,7 +2689,7 @@ class Mission
id=2463;
atlOffset=209.23535;
};
- class Item138
+ class Item137
{
dataType="Marker";
position[]={27620.217,207.10193,24545.668};
@@ -6540,7 +2698,7 @@ class Mission
id=2464;
atlOffset=211.59435;
};
- class Item139
+ class Item138
{
dataType="Marker";
position[]={15383.626,207.10193,15816.063};
@@ -6549,7 +2707,7 @@ class Mission
id=2465;
atlOffset=213.25826;
};
- class Item140
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -6565,7 +2723,7 @@ class Mission
type="Land_Airport_Tower_F";
atlOffset=0.0086307526;
};
- class Item141
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -6581,7 +2739,7 @@ class Mission
id=2467;
type="Land_Hangar_F";
};
- class Item142
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -6597,7 +2755,7 @@ class Mission
id=2468;
type="Land_Cargo_HQ_V1_F";
};
- class Item143
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -6613,7 +2771,7 @@ class Mission
id=2469;
type="Land_Cargo_HQ_V1_F";
};
- class Item144
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -6629,7 +2787,7 @@ class Mission
id=2470;
type="Land_Cargo_HQ_V1_F";
};
- class Item145
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -6714,7 +2872,7 @@ class Mission
nAttributes=1;
};
};
- class Item146
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -6731,7 +2889,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=0.11933517;
};
- class Item147
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -6748,7 +2906,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=0.1354351;
};
- class Item148
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -6765,7 +2923,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-0.026918411;
};
- class Item149
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -6782,7 +2940,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.014034271;
};
- class Item150
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -6799,7 +2957,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.039430618;
};
- class Item151
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -6816,7 +2974,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-0.01877594;
};
- class Item152
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -6833,7 +2991,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.20433426;
};
- class Item153
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -6849,7 +3007,7 @@ class Mission
id=2479;
type="Land_Cargo_Patrol_V1_F";
};
- class Item154
+ class Item153
{
dataType="Object";
class PositionInfo
@@ -6866,7 +3024,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.12693214;
};
- class Item155
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -6882,7 +3040,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-0.00058269501;
};
- class Item156
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -6899,7 +3057,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-1.9073486e-006;
};
- class Item157
+ class Item156
{
dataType="Object";
class PositionInfo
@@ -6916,7 +3074,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=0.098054171;
};
- class Item158
+ class Item157
{
dataType="Object";
class PositionInfo
@@ -6933,7 +3091,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-0.94850731;
};
- class Item159
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -6949,7 +3107,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=0.26329422;
};
- class Item160
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -6966,7 +3124,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=0.04709816;
};
- class Item161
+ class Item160
{
dataType="Object";
class PositionInfo
@@ -6982,7 +3140,7 @@ class Mission
id=2487;
type="Land_TentHangar_V1_F";
};
- class Item162
+ class Item161
{
dataType="Object";
class PositionInfo
@@ -6999,7 +3157,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-0.029521942;
};
- class Item163
+ class Item162
{
dataType="Object";
class PositionInfo
@@ -7016,7 +3174,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=0.10547829;
};
- class Item164
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -7032,7 +3190,7 @@ class Mission
id=2490;
type="Land_Airport_01_hangar_F";
};
- class Item165
+ class Item164
{
dataType="Object";
class PositionInfo
@@ -7048,7 +3206,7 @@ class Mission
id=2491;
type="Land_Cargo_Patrol_V1_F";
};
- class Item166
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -7065,7 +3223,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.024765015;
};
- class Item167
+ class Item166
{
dataType="Object";
class PositionInfo
@@ -7082,7 +3240,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.087217331;
};
- class Item168
+ class Item167
{
dataType="Object";
class PositionInfo
@@ -7099,7 +3257,7 @@ class Mission
type="Land_Airport_Tower_F";
atlOffset=0.46519089;
};
- class Item169
+ class Item168
{
dataType="Object";
class PositionInfo
@@ -7115,7 +3273,7 @@ class Mission
id=2495;
type="Land_Cargo_Patrol_V1_F";
};
- class Item170
+ class Item169
{
dataType="Object";
class PositionInfo
@@ -7131,7 +3289,7 @@ class Mission
id=2496;
type="Land_Cargo_Patrol_V1_F";
};
- class Item171
+ class Item170
{
dataType="Object";
class PositionInfo
@@ -7147,7 +3305,7 @@ class Mission
id=2497;
type="Land_Cargo_Patrol_V1_F";
};
- class Item172
+ class Item171
{
dataType="Object";
class PositionInfo
@@ -7163,7 +3321,7 @@ class Mission
id=2498;
type="Land_Cargo_Patrol_V1_F";
};
- class Item173
+ class Item172
{
dataType="Object";
class PositionInfo
@@ -7179,7 +3337,7 @@ class Mission
id=2499;
type="Land_Cargo_Patrol_V1_F";
};
- class Item174
+ class Item173
{
dataType="Object";
class PositionInfo
@@ -7196,7 +3354,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-0.0054092407;
};
- class Item175
+ class Item174
{
dataType="Object";
class PositionInfo
@@ -7212,7 +3370,7 @@ class Mission
id=2501;
type="Land_Cargo_Tower_V1_F";
};
- class Item176
+ class Item175
{
dataType="Object";
class PositionInfo
@@ -7228,7 +3386,7 @@ class Mission
id=2502;
type="Land_Cargo_HQ_V1_F";
};
- class Item177
+ class Item176
{
dataType="Object";
class PositionInfo
@@ -7245,7 +3403,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.0009021759;
};
- class Item178
+ class Item177
{
dataType="Marker";
position[]={10028.254,224.69717,12817.005};
@@ -7255,7 +3413,7 @@ class Mission
id=2514;
atlOffset=207.04475;
};
- class Item179
+ class Item178
{
dataType="Marker";
position[]={8781.5693,242.69424,12046.101};
@@ -7265,7 +3423,7 @@ class Mission
id=2515;
atlOffset=207.11841;
};
- class Item180
+ class Item179
{
dataType="Marker";
position[]={7337.1489,223.14734,11420.635};
@@ -7275,7 +3433,7 @@ class Mission
id=2516;
atlOffset=210.4803;
};
- class Item181
+ class Item180
{
dataType="Marker";
position[]={10433.247,221.79193,11984.847};
@@ -7285,7 +3443,7 @@ class Mission
id=2517;
atlOffset=207.10417;
};
- class Item182
+ class Item181
{
dataType="Marker";
position[]={9615.7051,219.70853,11698.256};
@@ -7295,7 +3453,7 @@ class Mission
id=2518;
atlOffset=207.72679;
};
- class Item183
+ class Item182
{
dataType="Marker";
position[]={11035.04,270.21774,12975.45};
@@ -7305,7 +3463,7 @@ class Mission
id=2519;
atlOffset=250.81619;
};
- class Item184
+ class Item183
{
dataType="Marker";
position[]={11739.101,220.42517,13915.596};
@@ -7315,7 +3473,7 @@ class Mission
id=2520;
atlOffset=207.09477;
};
- class Item185
+ class Item184
{
dataType="Marker";
position[]={13483.799,222.38394,16031.15};
@@ -7325,7 +3483,7 @@ class Mission
id=2521;
atlOffset=207.07001;
};
- class Item186
+ class Item185
{
dataType="Marker";
position[]={12480.492,239.24866,15888.915};
@@ -7335,7 +3493,7 @@ class Mission
id=2522;
atlOffset=219.98683;
};
- class Item187
+ class Item186
{
dataType="Marker";
position[]={14287.046,224.37161,18163.477};
@@ -7345,7 +3503,7 @@ class Mission
id=2523;
atlOffset=207.09567;
};
- class Item188
+ class Item187
{
dataType="Marker";
position[]={14311.098,233.83075,19602.867};
@@ -7355,7 +3513,7 @@ class Mission
id=2524;
atlOffset=207.10059;
};
- class Item189
+ class Item188
{
dataType="Marker";
position[]={14772.826,221.88092,17177.539};
@@ -7365,7 +3523,7 @@ class Mission
id=2525;
atlOffset=207.11859;
};
- class Item190
+ class Item189
{
dataType="Marker";
position[]={16953.717,223.38274,17815.453};
@@ -7375,7 +3533,7 @@ class Mission
id=2526;
atlOffset=207.0988;
};
- class Item191
+ class Item190
{
dataType="Marker";
position[]={15897.321,218.30458,16180.612};
@@ -7385,7 +3543,7 @@ class Mission
id=2527;
atlOffset=207.07936;
};
- class Item192
+ class Item191
{
dataType="Marker";
position[]={17470.652,211.46404,14446.198};
@@ -7395,7 +3553,7 @@ class Mission
id=2528;
atlOffset=207.13133;
};
- class Item193
+ class Item192
{
dataType="Marker";
position[]={17046.191,222.78551,12895.485};
@@ -7405,7 +3563,7 @@ class Mission
id=2529;
atlOffset=207.10774;
};
- class Item194
+ class Item193
{
dataType="Marker";
position[]={9381.4385,254.64844,21154.723};
@@ -7415,7 +3573,7 @@ class Mission
id=2530;
atlOffset=207.071;
};
- class Item195
+ class Item194
{
dataType="Marker";
position[]={9719.1211,390.66769,19931.555};
@@ -7425,7 +3583,7 @@ class Mission
id=2531;
atlOffset=207.17831;
};
- class Item196
+ class Item195
{
dataType="Marker";
position[]={9819.6953,301.79428,18542.309};
@@ -7435,7 +3593,7 @@ class Mission
id=2532;
atlOffset=207.17839;
};
- class Item197
+ class Item196
{
dataType="Marker";
position[]={7528.8491,378.86459,17283.188};
@@ -7445,7 +3603,7 @@ class Mission
id=2533;
atlOffset=206.94324;
};
- class Item198
+ class Item197
{
dataType="Marker";
position[]={6923.1553,396.07712,19242.508};
@@ -7455,7 +3613,7 @@ class Mission
id=2534;
atlOffset=207.02161;
};
- class Item199
+ class Item198
{
dataType="Marker";
position[]={5246.8613,437.67661,20361.473};
@@ -7465,7 +3623,7 @@ class Mission
id=2535;
atlOffset=207.15965;
};
- class Item200
+ class Item199
{
dataType="Marker";
position[]={21952.133,221.23347,7365.5059};
@@ -7475,7 +3633,7 @@ class Mission
id=2536;
atlOffset=207.02257;
};
- class Item201
+ class Item200
{
dataType="Marker";
position[]={21275.615,222.55862,8188.9502};
@@ -7485,7 +3643,7 @@ class Mission
id=2537;
atlOffset=207.08943;
};
- class Item202
+ class Item201
{
dataType="Marker";
position[]={20047,262.94885,8867.416};
@@ -7495,7 +3653,7 @@ class Mission
id=2538;
atlOffset=207.10971;
};
- class Item203
+ class Item202
{
dataType="Marker";
position[]={20574.352,226.96756,10698.154};
@@ -7505,7 +3663,7 @@ class Mission
id=2539;
atlOffset=207.00183;
};
- class Item204
+ class Item203
{
dataType="Marker";
position[]={22283.16,222.5508,18424.008};
@@ -7515,7 +3673,7 @@ class Mission
id=2540;
atlOffset=207.09207;
};
- class Item205
+ class Item204
{
dataType="Marker";
position[]={21706.771,229.67892,17681.234};
@@ -7525,7 +3683,7 @@ class Mission
id=2541;
atlOffset=207.11749;
};
- class Item206
+ class Item205
{
dataType="Marker";
position[]={21006.381,242.58272,17678.875};
@@ -7535,7 +3693,7 @@ class Mission
id=2542;
atlOffset=207.26607;
};
- class Item207
+ class Item206
{
dataType="Marker";
position[]={20652.164,241.22063,18728.516};
@@ -7545,7 +3703,7 @@ class Mission
id=2543;
atlOffset=207.00783;
};
- class Item208
+ class Item207
{
dataType="Marker";
position[]={20633.988,237.71661,16460.012};
@@ -7555,7 +3713,7 @@ class Mission
id=2544;
atlOffset=207.07196;
};
- class Item209
+ class Item208
{
dataType="Marker";
position[]={19814.883,223.16016,15689.729};
@@ -7565,7 +3723,7 @@ class Mission
id=2545;
atlOffset=207.07376;
};
- class Item210
+ class Item209
{
dataType="Marker";
position[]={23162.822,221.3853,19609.68};
@@ -7575,7 +3733,7 @@ class Mission
id=2546;
atlOffset=207.12292;
};
- class Item211
+ class Item210
{
dataType="Marker";
position[]={22555.842,234.20135,20591.816};
@@ -7585,7 +3743,7 @@ class Mission
id=2547;
atlOffset=207.09488;
};
- class Item212
+ class Item211
{
dataType="Marker";
position[]={23030.576,258.94626,21115.848};
@@ -7595,7 +3753,7 @@ class Mission
id=2548;
atlOffset=207.08276;
};
- class Item213
+ class Item212
{
dataType="Marker";
position[]={24638.145,228.38713,20651.25};
@@ -7605,7 +3763,7 @@ class Mission
id=2549;
atlOffset=207.08659;
};
- class Item214
+ class Item213
{
dataType="Marker";
position[]={25175.039,221.76308,20625.598};
@@ -7615,7 +3773,7 @@ class Mission
id=2550;
atlOffset=207.07173;
};
- class Item215
+ class Item214
{
dataType="Marker";
position[]={25326.443,224.68488,21113.227};
@@ -7625,7 +3783,7 @@ class Mission
id=2551;
atlOffset=207.00446;
};
- class Item216
+ class Item215
{
dataType="Marker";
position[]={24740.145,282.32803,21813.039};
@@ -7635,7 +3793,7 @@ class Mission
id=2552;
atlOffset=207.01666;
};
- class Item217
+ class Item216
{
dataType="Marker";
position[]={26281.104,247.36038,21791.027};
@@ -7645,7 +3803,7 @@ class Mission
id=2553;
atlOffset=206.93509;
};
- class Item218
+ class Item217
{
dataType="Marker";
position[]={26493.738,227.28189,21327.176};
@@ -7655,7 +3813,7 @@ class Mission
id=2554;
atlOffset=207.00717;
};
- class Item219
+ class Item218
{
dataType="Marker";
position[]={27081.205,218.9371,24021.121};
@@ -7665,7 +3823,7 @@ class Mission
id=2555;
atlOffset=207.10999;
};
- class Item220
+ class Item219
{
dataType="Marker";
position[]={26717.316,230.62947,22930.988};
@@ -7675,7 +3833,7 @@ class Mission
id=2556;
atlOffset=207.14931;
};
- class Item221
+ class Item220
{
dataType="Object";
class PositionInfo
@@ -7692,7 +3850,7 @@ class Mission
id=2565;
type="Flag_Viper_F";
};
- class Item222
+ class Item221
{
dataType="Object";
class PositionInfo
@@ -7703,12 +3861,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2574;
type="Land_HelipadCircle_F";
atlOffset=7.1189671;
};
- class Item223
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -7719,12 +3878,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2575;
type="Land_HelipadCircle_F";
atlOffset=7.2019939;
};
- class Item224
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -7735,12 +3895,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2576;
type="Land_HelipadCircle_F";
atlOffset=7.1081963;
};
- class Item225
+ class Item224
{
dataType="Object";
class PositionInfo
@@ -7757,7 +3918,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-1.9073486e-006;
};
- class Item226
+ class Item225
{
dataType="Object";
class PositionInfo
@@ -7774,7 +3935,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-1.9073486e-006;
};
- class Item227
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -7786,12 +3947,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2579;
type="Land_HelipadCircle_F";
atlOffset=0.16606903;
};
- class Item228
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -7803,12 +3965,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2580;
type="Land_HelipadCircle_F";
atlOffset=0.074874878;
};
- class Item229
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -7820,12 +3983,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2581;
type="Land_HelipadCircle_F";
atlOffset=0.12126541;
};
- class Item230
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -7837,12 +4001,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2582;
type="Land_HelipadCircle_F";
atlOffset=0.12021446;
};
- class Item231
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -7858,7 +4023,7 @@ class Mission
id=2583;
type="Land_Hangar_F";
};
- class Item232
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -7870,11 +4035,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2584;
type="Land_HelipadCircle_F";
};
- class Item233
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -7886,11 +4052,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2585;
type="Land_HelipadCircle_F";
};
- class Item234
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -7902,11 +4069,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2586;
type="Land_HelipadCircle_F";
};
- class Item235
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -7918,11 +4086,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2587;
type="Land_HelipadCircle_F";
};
- class Item236
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -7934,11 +4103,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2588;
type="Land_HelipadCircle_F";
};
- class Item237
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -7954,7 +4124,7 @@ class Mission
id=2589;
type="Land_Cargo_Patrol_V1_F";
};
- class Item238
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -7971,7 +4141,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-0.41496658;
};
- class Item239
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -7988,7 +4158,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-0.0004234314;
};
- class Item240
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -8000,12 +4170,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2592;
type="Land_HelipadCircle_F";
atlOffset=0.062786102;
};
- class Item241
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -8017,11 +4188,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2593;
type="Land_HelipadCircle_F";
};
- class Item242
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -8033,12 +4205,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2594;
type="Land_HelipadSquare_F";
atlOffset=0.058639526;
};
- class Item243
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -8050,12 +4223,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2595;
type="Land_HelipadSquare_F";
atlOffset=0.042076111;
};
- class Item244
+ class Item243
{
dataType="Object";
class PositionInfo
@@ -8067,12 +4241,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2596;
type="Land_HelipadSquare_F";
atlOffset=0.014266968;
};
- class Item245
+ class Item244
{
dataType="Object";
class PositionInfo
@@ -8084,12 +4259,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2597;
type="Land_HelipadCircle_F";
atlOffset=-0.0034770966;
};
- class Item246
+ class Item245
{
dataType="Object";
class PositionInfo
@@ -8101,12 +4277,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2598;
type="Land_HelipadCircle_F";
atlOffset=0.008939743;
};
- class Item247
+ class Item246
{
dataType="Object";
class PositionInfo
@@ -8118,12 +4295,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2599;
type="Land_HelipadCircle_F";
atlOffset=-0.0062427521;
};
- class Item248
+ class Item247
{
dataType="Object";
class PositionInfo
@@ -8135,12 +4313,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2600;
type="Land_HelipadCircle_F";
atlOffset=1.7166138e-005;
};
- class Item249
+ class Item248
{
dataType="Object";
class PositionInfo
@@ -8152,12 +4331,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2601;
type="Land_HelipadCircle_F";
atlOffset=-0.0030708313;
};
- class Item250
+ class Item249
{
dataType="Object";
class PositionInfo
@@ -8169,12 +4349,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2602;
type="Land_HelipadCircle_F";
atlOffset=0.00091362;
};
- class Item251
+ class Item250
{
dataType="Object";
class PositionInfo
@@ -8186,11 +4367,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2603;
type="Land_HelipadSquare_F";
};
- class Item252
+ class Item251
{
dataType="Object";
class PositionInfo
@@ -8202,12 +4384,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2604;
type="Land_HelipadSquare_F";
atlOffset=1.5258789e-005;
};
- class Item253
+ class Item252
{
dataType="Object";
class PositionInfo
@@ -8219,12 +4402,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2605;
type="Land_HelipadSquare_F";
atlOffset=1.5258789e-005;
};
- class Item254
+ class Item253
{
dataType="Object";
class PositionInfo
@@ -8236,12 +4420,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2606;
type="Land_HelipadCircle_F";
atlOffset=-0.067829132;
};
- class Item255
+ class Item254
{
dataType="Object";
class PositionInfo
@@ -8252,12 +4437,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2607;
type="Land_HelipadCircle_F";
atlOffset=0.31982994;
};
- class Item256
+ class Item255
{
dataType="Object";
class PositionInfo
@@ -8269,12 +4455,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2608;
type="Land_HelipadCircle_F";
atlOffset=0.017000198;
};
- class Item257
+ class Item256
{
dataType="Layer";
name="Airports";
@@ -8427,7 +4614,7 @@ class Mission
colorName="ColorGreen";
a=35.460999;
b=6;
- angle=225.2576;
+ angle=225.25757;
id=2620;
atlOffset=207.10193;
};
@@ -8588,22 +4775,22 @@ class Mission
class Item22
{
dataType="Marker";
- position[]={9097.1865,222.45056,21510.531};
+ position[]={9079.5029,222.45056,21521.654};
name="airport_5";
markerType="RECTANGLE";
type="Empty";
colorName="ColorEAST";
- a=200;
- b=100;
+ a=207.52794;
+ b=119.48747;
angle=143.29141;
id=2632;
- atlOffset=205.85873;
+ atlOffset=206.73419;
};
};
id=2609;
- atlOffset=181.23535;
+ atlOffset=180.78305;
};
- class Item258
+ class Item257
{
dataType="Object";
class PositionInfo
@@ -8615,11 +4802,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2633;
type="Land_HelipadCircle_F";
};
- class Item259
+ class Item258
{
dataType="Object";
class PositionInfo
@@ -8631,11 +4819,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2634;
type="Land_HelipadCircle_F";
};
- class Item260
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -8647,12 +4836,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2635;
type="Land_HelipadCircle_F";
atlOffset=5.7220459e-006;
};
- class Item261
+ class Item260
{
dataType="Object";
class PositionInfo
@@ -8664,11 +4854,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2636;
type="Land_HelipadCircle_F";
};
- class Item262
+ class Item261
{
dataType="Object";
class PositionInfo
@@ -8679,12 +4870,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2637;
type="Land_HelipadCircle_F";
atlOffset=7.1380177;
};
- class Item263
+ class Item262
{
dataType="Layer";
name="Factories";
@@ -8841,7 +5033,7 @@ class Mission
colorName="ColorGreen";
a=15.529018;
b=5.5;
- angle=56.906193;
+ angle=56.906185;
id=2649;
atlOffset=207.01587;
};
@@ -9127,7 +5319,7 @@ class Mission
id=2638;
atlOffset=160.58017;
};
- class Item264
+ class Item263
{
dataType="Layer";
name="Resources";
@@ -9200,7 +5392,7 @@ class Mission
colorName="ColorGreen";
a=19.902;
b=5.5;
- angle=56.794907;
+ angle=56.794899;
id=2675;
atlOffset=207.30643;
};
@@ -9376,7 +5568,7 @@ class Mission
id=2670;
atlOffset=90.896408;
};
- class Item265
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -9388,11 +5580,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2688;
type="Land_HelipadCircle_F";
};
- class Item266
+ class Item265
{
dataType="Object";
class PositionInfo
@@ -9403,12 +5596,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2689;
type="Land_HelipadCircle_F";
atlOffset=206.42648;
};
- class Item267
+ class Item266
{
dataType="Object";
class PositionInfo
@@ -9420,11 +5614,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2690;
type="Land_HelipadCircle_F";
};
- class Item268
+ class Item267
{
dataType="Layer";
name="Seaports";
@@ -9575,7 +5770,7 @@ class Mission
id=2691;
atlOffset=246.84656;
};
- class Item269
+ class Item268
{
dataType="Object";
class PositionInfo
@@ -9587,11 +5782,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2702;
type="Land_HelipadCircle_F";
};
- class Item270
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -9603,12 +5799,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2703;
type="Land_HelipadCircle_F";
atlOffset=-0.10459518;
};
- class Item271
+ class Item270
{
dataType="Object";
class PositionInfo
@@ -9620,11 +5817,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2704;
type="Land_HelipadCircle_F";
};
- class Item272
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -9636,12 +5834,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2705;
type="Land_HelipadCircle_F";
atlOffset=-7.6293945e-006;
};
- class Item273
+ class Item272
{
dataType="Object";
class PositionInfo
@@ -9652,12 +5851,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2706;
type="Land_HelipadCircle_F";
atlOffset=8.1710167;
};
- class Item274
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -9668,12 +5868,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2707;
type="Land_HelipadCircle_F";
atlOffset=8.1646986;
};
- class Item275
+ class Item274
{
dataType="Object";
class PositionInfo
@@ -9685,11 +5886,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2708;
type="Land_HelipadSquare_F";
};
- class Item276
+ class Item275
{
dataType="Object";
class PositionInfo
@@ -9701,11 +5903,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2709;
type="Land_HelipadCircle_F";
};
- class Item277
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -9716,12 +5919,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2710;
type="Land_HelipadCircle_F";
atlOffset=207.18915;
};
- class Item278
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -9732,12 +5936,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2711;
type="Land_HelipadCircle_F";
atlOffset=207.10306;
};
- class Item279
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -9749,11 +5954,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2712;
type="Land_HelipadCircle_F";
};
- class Item280
+ class Item279
{
dataType="Object";
class PositionInfo
@@ -9765,12 +5971,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2713;
type="Land_HelipadCircle_F";
atlOffset=-4.1425972;
};
- class Item281
+ class Item280
{
dataType="Object";
class PositionInfo
@@ -9782,12 +5989,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2714;
type="Land_HelipadCircle_F";
atlOffset=0.079021454;
};
- class Item282
+ class Item281
{
dataType="Object";
class PositionInfo
@@ -9799,11 +6007,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2715;
type="Land_HelipadCircle_F";
};
- class Item283
+ class Item282
{
dataType="Object";
class PositionInfo
@@ -9815,11 +6024,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2716;
type="Land_HelipadCircle_F";
};
- class Item284
+ class Item283
{
dataType="Object";
class PositionInfo
@@ -9831,12 +6041,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2717;
type="Land_HelipadCircle_F";
atlOffset=-0.10194397;
};
- class Item285
+ class Item284
{
dataType="Object";
class PositionInfo
@@ -9848,11 +6059,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2718;
type="Land_HelipadCircle_F";
};
- class Item286
+ class Item285
{
dataType="Object";
class PositionInfo
@@ -9864,11 +6076,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2719;
type="Land_HelipadSquare_F";
};
- class Item287
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -9880,12 +6093,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2720;
type="Land_HelipadCircle_F";
atlOffset=-0.46903992;
};
- class Item288
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -9897,11 +6111,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2721;
type="Land_HelipadCircle_F";
};
- class Item289
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -9913,12 +6128,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2722;
type="Land_HelipadCircle_F";
atlOffset=0.14759827;
};
- class Item290
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -9929,12 +6145,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2723;
type="Land_HelipadCircle_F";
atlOffset=9.0383759;
};
- class Item291
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -9945,12 +6162,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2724;
type="Land_HelipadCircle_F";
atlOffset=207.16562;
};
- class Item292
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -9961,12 +6179,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2725;
type="Land_HelipadCircle_F";
atlOffset=207.06699;
};
- class Item293
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -9977,12 +6196,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2726;
type="Land_HelipadCircle_F";
atlOffset=207.16269;
};
- class Item294
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -9993,12 +6213,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2727;
type="Land_HelipadCircle_F";
atlOffset=207.12726;
};
- class Item295
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -10010,11 +6231,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2728;
type="Land_HelipadSquare_F";
};
- class Item296
+ class Item295
{
dataType="Object";
class PositionInfo
@@ -10025,12 +6247,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2729;
type="Land_HelipadSquare_F";
atlOffset=0.4276886;
};
- class Item297
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -10041,12 +6264,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2730;
type="Land_HelipadSquare_F";
atlOffset=1.8909988;
};
- class Item298
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -10057,12 +6281,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2731;
type="Land_HelipadSquare_F";
atlOffset=1.093998;
};
- class Item299
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -10073,12 +6298,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2732;
type="Land_HelipadCircle_F";
atlOffset=7.4586487;
};
- class Item300
+ class Item299
{
dataType="Object";
class PositionInfo
@@ -10090,11 +6316,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2733;
type="Land_HelipadSquare_F";
};
- class Item301
+ class Item300
{
dataType="Object";
class PositionInfo
@@ -10106,11 +6333,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2734;
type="Land_HelipadCircle_F";
};
- class Item302
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -10122,12 +6350,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2735;
type="Land_HelipadCircle_F";
atlOffset=-0.19012451;
};
- class Item303
+ class Item302
{
dataType="Object";
class PositionInfo
@@ -10138,12 +6367,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2736;
type="Land_HelipadCircle_F";
atlOffset=7.1169586;
};
- class Item304
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -10154,12 +6384,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2737;
type="Land_HelipadCircle_F";
atlOffset=6.9489403;
};
- class Item305
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -10171,12 +6402,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2738;
type="Land_HelipadSquare_F";
atlOffset=-0.078055382;
};
- class Item306
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -10188,12 +6420,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2739;
type="Land_HelipadSquare_F";
atlOffset=9.5367432e-007;
};
- class Item307
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -10205,11 +6438,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2740;
type="Land_HelipadSquare_F";
};
- class Item308
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -10220,12 +6454,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2741;
type="Land_HelipadCircle_F";
atlOffset=7.8716507;
};
- class Item309
+ class Item308
{
dataType="Object";
class PositionInfo
@@ -10237,12 +6472,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2742;
type="Land_HelipadSquare_F";
atlOffset=-0.019302368;
};
- class Item310
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -10254,11 +6490,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2743;
type="Land_HelipadSquare_F";
};
- class Item311
+ class Item310
{
dataType="Object";
class PositionInfo
@@ -10269,12 +6506,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2744;
type="Land_HelipadCircle_F";
atlOffset=207.56033;
};
- class Item312
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -10285,12 +6523,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2745;
type="Land_HelipadCircle_F";
atlOffset=208.94418;
};
- class Item313
+ class Item312
{
dataType="Object";
class PositionInfo
@@ -10301,12 +6540,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2746;
type="Land_HelipadCircle_F";
atlOffset=7.0029793;
};
- class Item314
+ class Item313
{
dataType="Object";
class PositionInfo
@@ -10317,12 +6557,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2747;
type="Land_HelipadCircle_F";
atlOffset=7.0029793;
};
- class Item315
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -10333,12 +6574,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2748;
type="Land_HelipadCircle_F";
atlOffset=7.0029793;
};
- class Item316
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -10349,12 +6591,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2749;
type="Land_HelipadSquare_F";
atlOffset=7.0029793;
};
- class Item317
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -10366,11 +6609,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2750;
type="Land_HelipadCircle_F";
};
- class Item318
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -10382,12 +6626,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2751;
type="Land_HelipadSquare_F";
atlOffset=-0.27038574;
};
- class Item319
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -10399,12 +6644,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2752;
type="Land_HelipadSquare_F";
atlOffset=-0.23748779;
};
- class Item320
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -10416,12 +6662,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2753;
type="Land_HelipadCircle_F";
atlOffset=-0.072425842;
};
- class Item321
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -10433,11 +6680,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2754;
type="Land_HelipadCircle_F";
};
- class Item322
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -10449,11 +6697,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2755;
type="Land_HelipadCircle_F";
};
- class Item323
+ class Item322
{
dataType="Object";
class PositionInfo
@@ -10465,12 +6714,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2756;
type="Land_HelipadCircle_F";
atlOffset=-0.096824646;
};
- class Item324
+ class Item323
{
dataType="Object";
class PositionInfo
@@ -10482,12 +6732,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2757;
type="Land_HelipadCircle_F";
atlOffset=-0.089668274;
};
- class Item325
+ class Item324
{
dataType="Object";
class PositionInfo
@@ -10499,12 +6750,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2758;
type="Land_HelipadCircle_F";
atlOffset=0.076579094;
};
- class Item326
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -10516,12 +6768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2759;
type="Land_HelipadSquare_F";
atlOffset=0.024902344;
};
- class Item327
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -10533,11 +6786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2760;
type="Land_HelipadCircle_F";
};
- class Item328
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -10549,12 +6803,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2761;
type="Land_HelipadCircle_F";
atlOffset=0.0084524155;
};
- class Item329
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -10566,12 +6821,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2762;
type="Land_HelipadCircle_F";
atlOffset=0.022742271;
};
- class Item330
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -10582,12 +6838,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2763;
type="Land_HelipadCircle_F";
atlOffset=0.70133972;
};
- class Item331
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -10599,11 +6856,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2764;
type="Land_HelipadCircle_F";
};
- class Item332
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -10614,12 +6872,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2765;
type="Land_HelipadCircle_F";
atlOffset=0.64060044;
};
- class Item333
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -10631,12 +6890,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2766;
type="Land_HelipadCircle_F";
atlOffset=-7.6293945e-006;
};
- class Item334
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -10648,12 +6908,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2767;
type="Land_HelipadCircle_F";
atlOffset=0.076263428;
};
- class Item335
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -10665,12 +6926,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2768;
type="Land_HelipadCircle_F";
atlOffset=0.22304535;
};
- class Item336
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -10682,11 +6944,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2769;
type="Land_HelipadCircle_F";
};
- class Item337
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -10697,12 +6960,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2770;
type="Land_HelipadCircle_F";
atlOffset=0.42436981;
};
- class Item338
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -10714,11 +6978,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2771;
type="Land_HelipadSquare_F";
};
- class Item339
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -10729,12 +6994,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2772;
type="Land_HelipadCircle_F";
atlOffset=7.9072399;
};
- class Item340
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -10745,12 +7011,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2773;
type="Land_HelipadCircle_F";
atlOffset=7.9235306;
};
- class Item341
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -10761,12 +7028,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2774;
type="Land_HelipadCircle_F";
atlOffset=1.3495522;
};
- class Item342
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -10777,12 +7045,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2775;
type="Land_HelipadCircle_F";
atlOffset=1.4686909;
};
- class Item343
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -10793,12 +7062,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2776;
type="Land_HelipadCircle_F";
atlOffset=0.39395142;
};
- class Item344
+ class Item343
{
dataType="Object";
class PositionInfo
@@ -10810,12 +7080,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2777;
type="Land_HelipadCircle_F";
atlOffset=-1.0588913;
};
- class Item345
+ class Item344
{
dataType="Object";
class PositionInfo
@@ -10827,12 +7098,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2778;
type="Land_HelipadCircle_F";
atlOffset=-0.83277893;
};
- class Item346
+ class Item345
{
dataType="Object";
class PositionInfo
@@ -10844,12 +7116,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2779;
type="Land_HelipadCircle_F";
atlOffset=0.013858795;
};
- class Item347
+ class Item346
{
dataType="Object";
class PositionInfo
@@ -10861,11 +7134,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2780;
type="Land_HelipadCircle_F";
};
- class Item348
+ class Item347
{
dataType="Object";
class PositionInfo
@@ -10877,11 +7151,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2781;
type="Land_HelipadCircle_F";
};
- class Item349
+ class Item348
{
dataType="Layer";
name="Outposts";
@@ -12444,7 +8719,7 @@ class Mission
id=2782;
atlOffset=126.60043;
};
- class Item350
+ class Item349
{
dataType="Marker";
position[]={14253.987,224.8902,15840.211};
@@ -12457,7 +8732,7 @@ class Mission
id=2893;
atlOffset=206.99365;
};
- class Item351
+ class Item350
{
dataType="Marker";
position[]={15347.921,224.37141,17059.684};
@@ -12470,7 +8745,7 @@ class Mission
id=2894;
atlOffset=206.46141;
};
- class Item352
+ class Item351
{
dataType="Marker";
position[]={14631.026,224.02478,16666.316};
@@ -12483,7 +8758,7 @@ class Mission
id=2895;
atlOffset=206.11478;
};
- class Item353
+ class Item352
{
dataType="Marker";
position[]={21150.719,228.69763,7173.3672};
@@ -12496,7 +8771,7 @@ class Mission
id=2896;
atlOffset=206.11505;
};
- class Item354
+ class Item353
{
dataType="Marker";
position[]={21181.049,225.48235,7539.1064};
@@ -12509,7 +8784,7 @@ class Mission
id=2897;
atlOffset=206.72942;
};
- class Item355
+ class Item354
{
dataType="Object";
class PositionInfo
@@ -12526,7 +8801,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.00016593933;
};
- class Item356
+ class Item355
{
dataType="Marker";
position[]={11094.279,56.207184,15710.343};
@@ -12538,7 +8813,7 @@ class Mission
angle=231.22296;
id=2901;
};
- class Item357
+ class Item356
{
dataType="Object";
class PositionInfo
@@ -12550,11 +8825,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2902;
type="Land_HBarrier_Big_F";
};
- class Item358
+ class Item357
{
dataType="Object";
class PositionInfo
@@ -12566,11 +8842,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2903;
type="Land_HBarrier_Big_F";
};
- class Item359
+ class Item358
{
dataType="Object";
class PositionInfo
@@ -12582,11 +8859,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2904;
type="Land_HBarrier_Big_F";
};
- class Item360
+ class Item359
{
dataType="Object";
class PositionInfo
@@ -12598,11 +8876,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2905;
type="Land_HBarrier_Big_F";
};
- class Item361
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -12614,11 +8893,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2906;
type="Land_HBarrier_Big_F";
};
- class Item362
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -12630,11 +8910,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2907;
type="Land_HBarrier_Big_F";
};
- class Item363
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -12646,11 +8927,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2908;
type="Land_HBarrier_Big_F";
};
- class Item364
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -12662,11 +8944,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2909;
type="Land_HBarrier_Big_F";
};
- class Item365
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -12678,11 +8961,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2910;
type="Land_HBarrier_Big_F";
};
- class Item366
+ class Item365
{
dataType="Object";
class PositionInfo
@@ -12694,11 +8978,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2911;
type="Land_HBarrier_Big_F";
};
- class Item367
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -12710,11 +8995,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2912;
type="Land_HBarrier_Big_F";
};
- class Item368
+ class Item367
{
dataType="Object";
class PositionInfo
@@ -12726,11 +9012,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2913;
type="Land_HBarrier_Big_F";
};
- class Item369
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -12742,11 +9029,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2914;
type="Land_HBarrier_Big_F";
};
- class Item370
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -12758,11 +9046,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2915;
type="Land_HBarrier_Big_F";
};
- class Item371
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -12774,11 +9063,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2916;
type="Land_HBarrier_Big_F";
};
- class Item372
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -12790,11 +9080,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2917;
type="Land_HBarrier_Big_F";
};
- class Item373
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -12806,11 +9097,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2918;
type="Land_HBarrier_Big_F";
};
- class Item374
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -12822,11 +9114,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2919;
type="Land_HBarrier_Big_F";
};
- class Item375
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -12838,11 +9131,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2920;
type="Land_HBarrier_Big_F";
};
- class Item376
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -12854,12 +9148,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2921;
type="Land_HBarrier_Big_F";
atlOffset=-0.25000381;
};
- class Item377
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -12871,11 +9166,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2922;
type="Land_HBarrier_Big_F";
};
- class Item378
+ class Item377
{
dataType="Object";
class PositionInfo
@@ -12887,11 +9183,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2923;
type="Land_HBarrier_Big_F";
};
- class Item379
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -12903,11 +9200,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2924;
type="Land_HBarrier_Big_F";
};
- class Item380
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -12919,12 +9217,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2925;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item381
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -12936,11 +9235,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2926;
type="Land_HBarrier_Big_F";
};
- class Item382
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -12952,11 +9252,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2927;
type="Land_HBarrier_Big_F";
};
- class Item383
+ class Item382
{
dataType="Object";
class PositionInfo
@@ -12968,11 +9269,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2928;
type="Land_HBarrier_Big_F";
};
- class Item384
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -12988,7 +9290,7 @@ class Mission
id=2929;
type="Land_BarGate_F";
};
- class Item385
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -13004,7 +9306,7 @@ class Mission
id=2930;
type="Land_Cargo_Patrol_V1_F";
};
- class Item386
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -13016,11 +9318,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2931;
type="Land_HBarrier_Big_F";
};
- class Item387
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -13032,11 +9335,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2932;
type="Land_HBarrier_Big_F";
};
- class Item388
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -13048,11 +9352,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2933;
type="Land_HBarrier_Big_F";
};
- class Item389
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -13064,11 +9369,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2934;
type="Land_HBarrier_Big_F";
};
- class Item390
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -13080,11 +9386,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2935;
type="Land_HBarrier_Big_F";
};
- class Item391
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -13096,11 +9403,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2936;
type="Land_HBarrier_Big_F";
};
- class Item392
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -13112,11 +9420,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2937;
type="Land_HBarrier_Big_F";
};
- class Item393
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -13132,7 +9441,7 @@ class Mission
id=2938;
type="Land_BarGate_F";
};
- class Item394
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -13148,7 +9457,7 @@ class Mission
id=2939;
type="Land_Cargo_Patrol_V1_F";
};
- class Item395
+ class Item394
{
dataType="Object";
class PositionInfo
@@ -13165,7 +9474,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.42819977;
};
- class Item396
+ class Item395
{
dataType="Object";
class PositionInfo
@@ -13181,7 +9490,7 @@ class Mission
id=2941;
type="Land_Cargo_House_V1_F";
};
- class Item397
+ class Item396
{
dataType="Object";
class PositionInfo
@@ -13198,7 +9507,7 @@ class Mission
type="Land_Cargo_House_V1_F";
atlOffset=0.10601425;
};
- class Item398
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -13215,7 +9524,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=0.38066864;
};
- class Item399
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -13232,7 +9541,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=-1.0318947;
};
- class Item400
+ class Item399
{
dataType="Object";
class PositionInfo
@@ -13248,7 +9557,7 @@ class Mission
id=2945;
type="Land_Cargo_Patrol_V1_F";
};
- class Item401
+ class Item400
{
dataType="Object";
class PositionInfo
@@ -13261,11 +9570,12 @@ class Mission
class Attributes
{
createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2946;
type="Land_Cargo40_military_green_F";
};
- class Item402
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -13278,12 +9588,13 @@ class Mission
class Attributes
{
createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2947;
type="Land_Cargo40_military_green_F";
atlOffset=3.8146973e-006;
};
- class Item403
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -13295,12 +9606,13 @@ class Mission
class Attributes
{
createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2948;
type="Land_Cargo40_military_green_F";
atlOffset=2.4690018;
};
- class Item404
+ class Item403
{
dataType="Object";
class PositionInfo
@@ -13316,7 +9628,7 @@ class Mission
id=2949;
type="Land_Medevac_house_V1_F";
};
- class Item405
+ class Item404
{
dataType="Object";
class PositionInfo
@@ -13328,11 +9640,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2951;
type="Land_HelipadCircle_F";
};
- class Item406
+ class Item405
{
dataType="Marker";
position[]={26895.244,20.950012,24798.67};
@@ -13345,7 +9658,7 @@ class Mission
id=2957;
atlOffset=0.82716751;
};
- class Item407
+ class Item406
{
dataType="Object";
class PositionInfo
@@ -13362,7 +9675,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=6.1035156e-005;
};
- class Item408
+ class Item407
{
dataType="Object";
class PositionInfo
@@ -13370,64 +9683,943 @@ class Mission
position[]={27152.494,29.299078,24997.223};
angles[]={0,3.1307805,0};
};
- side="Empty";
- flags=5;
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2959;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=3.2424927e-005;
+ };
+ class Item408
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3600.0771,15.89888,10275.092};
+ };
+ name="HC_commanderX";
+ id=2960;
+ type="HighCommand";
+ atlOffset=-0.0594244;
+ };
+ class Item409
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3603.4766,15.89888,10274.996};
+ };
+ id=2961;
+ type="HighCommandSubordinate";
+ atlOffset=0.059479713;
+ };
+ class Item410
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13536.585,19.295261,12072.4};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=2963;
+ type="Flag_FIA_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item411
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=38;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3611.3611,15.394545,10277.721};
+ };
+ side="West";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2965;
+ type="B_G_Soldier_TL_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male05GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1.02;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3614.9319,15.194558,10276};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2966;
+ type="B_G_Soldier_TL_F";
+ atlOffset=-8.5830688e-006;
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.071,15.211149,10278.12};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2967;
+ type="B_G_Soldier_TL_F";
+ atlOffset=-6.6757202e-006;
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.0435,15.234458,10280.193};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2968;
+ type="B_G_Soldier_TL_F";
+ atlOffset=1.0490417e-005;
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3614.9729,15.259294,10282.238};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2969;
+ type="B_G_Soldier_TL_F";
+ atlOffset=-1.335144e-005;
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.1814,15.353321,10284.402};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2970;
+ type="B_G_Soldier_TL_F";
+ atlOffset=-2.9563904e-005;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.3076,15.456325,10286.389};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2971;
+ type="B_G_Soldier_F";
+ atlOffset=-2.5749207e-005;
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.6064,15.558286,10288.559};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2972;
+ type="B_G_Soldier_F";
+ atlOffset=-6.0081482e-005;
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3616.7424,15.118722,10276.14};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2973;
+ type="B_G_Soldier_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3616.8762,15.136186,10278.313};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2974;
+ type="B_G_Soldier_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3616.8508,15.158612,10280.313};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2975;
+ type="B_G_Soldier_F";
+ atlOffset=-4.7683716e-006;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3617.0266,15.130725,10282.411};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2976;
+ type="B_G_Soldier_F";
+ atlOffset=4.0054321e-005;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3617.0325,15.239642,10284.531};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2977;
+ type="B_G_Soldier_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3617.074,15.346433,10286.487};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2978;
+ type="B_G_Soldier_F";
+ atlOffset=-7.6293945e-006;
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.6152,15.041072,10276.352};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2979;
+ type="B_G_Soldier_AR_F";
+ atlOffset=3.8146973e-006;
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.4863,15.068346,10278.394};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2980;
+ type="B_G_Soldier_AR_F";
+ atlOffset=-7.6293945e-006;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.3367,15.068675,10280.449};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2981;
+ type="B_G_Soldier_AR_F";
+ atlOffset=4.196167e-005;
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.2476,15.049272,10282.549};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2982;
+ type="B_G_Soldier_AR_F";
+ atlOffset=2.3841858e-005;
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.51,15.148995,10284.637};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2983;
+ type="B_G_Soldier_AR_F";
+ atlOffset=-1.0490417e-005;
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.7559,15.230732,10286.638};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2984;
+ type="B_G_Soldier_AR_F";
+ atlOffset=-4.1007996e-005;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.1489,14.975923,10276.378};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2985;
+ type="B_G_Soldier_GL_F";
+ atlOffset=1.1444092e-005;
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.0842,14.978161,10278.477};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2986;
+ type="B_G_Soldier_GL_F";
+ atlOffset=3.3378601e-005;
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.0723,14.952924,10280.644};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2987;
+ type="B_G_Soldier_GL_F";
+ atlOffset=1.335144e-005;
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3619.8572,14.946092,10282.585};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2988;
+ type="B_G_Soldier_GL_F";
+ atlOffset=-1.9073486e-006;
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.0989,15.041965,10284.578};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2989;
+ type="B_G_Soldier_GL_F";
+ atlOffset=4.863739e-005;
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.1707,15.084365,10286.946};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2990;
+ type="B_G_Soldier_GL_F";
+ atlOffset=-5.7220459e-006;
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.677,14.89887,10276.411};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2991;
+ type="B_G_medic_F";
+ atlOffset=2.0027161e-005;
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.6338,14.880065,10278.215};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2992;
+ type="B_G_medic_F";
+ atlOffset=3.2424927e-005;
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.5623,14.859242,10280.339};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2993;
+ type="B_G_medic_F";
+ atlOffset=3.2424927e-005;
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.5225,14.83554,10282.531};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2994;
+ type="B_G_medic_F";
+ atlOffset=2.8610229e-005;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.4763,14.911756,10284.673};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2995;
+ type="B_G_medic_F";
+ atlOffset=-1.5258789e-005;
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.5913,14.929896,10286.746};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2996;
+ type="B_G_medic_F";
+ atlOffset=4.7683716e-006;
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.0779,14.822458,10276.438};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2997;
+ type="B_G_engineer_F";
+ atlOffset=2.9563904e-005;
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.009,14.803505,10278.239};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2998;
+ type="B_G_engineer_F";
+ atlOffset=3.3378601e-005;
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.0012,14.780713,10280.164};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2999;
+ type="B_G_engineer_F";
+ atlOffset=4.4822693e-005;
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3622.8801,14.762211,10282.511};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3000;
+ type="B_G_engineer_F";
+ atlOffset=3.8146973e-006;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.0234,14.787869,10284.526};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3001;
+ type="B_G_engineer_F";
+ atlOffset=-5.7220459e-006;
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.0771,14.816882,10286.593};
+ };
+ side="West";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3002;
+ type="B_G_engineer_F";
+ atlOffset=-1.335144e-005;
+ };
+ };
class Attributes
{
};
- id=2959;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=3.2424927e-005;
- };
- class Item409
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3600.0771,15.89888,10275.092};
- };
- name="HC_commanderX";
- id=2960;
- type="HighCommand";
- atlOffset=-0.0594244;
- };
- class Item410
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3603.4766,15.89888,10274.996};
- };
- id=2961;
- type="HighCommandSubordinate";
- atlOffset=0.059479713;
- };
- class Item411
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13536.585,19.295261,12072.4};
- };
- side="Empty";
- flags=4;
- class Attributes
+ id=2964;
+ class CustomAttributes
{
- init="if !(isMultiplayer) then {deleteVehicle this}";
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
+ };
+ nAttributes=1;
};
- id=2963;
- type="Flag_Altis_F";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -13441,7 +10633,7 @@ class Mission
class Item1
{
linkID=1;
- item0=1487;
+ item0=2965;
item1=2960;
class CustomData
{
@@ -13451,7 +10643,7 @@ class Mission
class Item2
{
linkID=2;
- item0=1492;
+ item0=2979;
item1=2960;
class CustomData
{
@@ -13461,7 +10653,7 @@ class Mission
class Item3
{
linkID=3;
- item0=1502;
+ item0=2980;
item1=2960;
class CustomData
{
@@ -13471,7 +10663,7 @@ class Mission
class Item4
{
linkID=4;
- item0=1504;
+ item0=2981;
item1=2960;
class CustomData
{
@@ -13481,7 +10673,7 @@ class Mission
class Item5
{
linkID=5;
- item0=1506;
+ item0=2982;
item1=2960;
class CustomData
{
@@ -13491,7 +10683,7 @@ class Mission
class Item6
{
linkID=6;
- item0=1508;
+ item0=2983;
item1=2960;
class CustomData
{
@@ -13501,7 +10693,7 @@ class Mission
class Item7
{
linkID=7;
- item0=1510;
+ item0=2984;
item1=2960;
class CustomData
{
@@ -13511,7 +10703,7 @@ class Mission
class Item8
{
linkID=8;
- item0=1512;
+ item0=2991;
item1=2960;
class CustomData
{
@@ -13521,7 +10713,7 @@ class Mission
class Item9
{
linkID=9;
- item0=1514;
+ item0=2992;
item1=2960;
class CustomData
{
@@ -13531,7 +10723,7 @@ class Mission
class Item10
{
linkID=10;
- item0=1516;
+ item0=2993;
item1=2960;
class CustomData
{
@@ -13541,7 +10733,7 @@ class Mission
class Item11
{
linkID=11;
- item0=1518;
+ item0=2994;
item1=2960;
class CustomData
{
@@ -13551,7 +10743,7 @@ class Mission
class Item12
{
linkID=12;
- item0=1520;
+ item0=2995;
item1=2960;
class CustomData
{
@@ -13561,7 +10753,7 @@ class Mission
class Item13
{
linkID=13;
- item0=1522;
+ item0=2996;
item1=2960;
class CustomData
{
@@ -13571,7 +10763,7 @@ class Mission
class Item14
{
linkID=14;
- item0=1524;
+ item0=2997;
item1=2960;
class CustomData
{
@@ -13581,7 +10773,7 @@ class Mission
class Item15
{
linkID=15;
- item0=1526;
+ item0=2998;
item1=2960;
class CustomData
{
@@ -13591,7 +10783,7 @@ class Mission
class Item16
{
linkID=16;
- item0=1528;
+ item0=2999;
item1=2960;
class CustomData
{
@@ -13601,7 +10793,7 @@ class Mission
class Item17
{
linkID=17;
- item0=1530;
+ item0=3000;
item1=2960;
class CustomData
{
@@ -13611,7 +10803,7 @@ class Mission
class Item18
{
linkID=18;
- item0=1532;
+ item0=3001;
item1=2960;
class CustomData
{
@@ -13621,7 +10813,7 @@ class Mission
class Item19
{
linkID=19;
- item0=1534;
+ item0=3002;
item1=2960;
class CustomData
{
@@ -13631,7 +10823,7 @@ class Mission
class Item20
{
linkID=20;
- item0=1536;
+ item0=2985;
item1=2960;
class CustomData
{
@@ -13641,7 +10833,7 @@ class Mission
class Item21
{
linkID=21;
- item0=1538;
+ item0=2986;
item1=2960;
class CustomData
{
@@ -13651,7 +10843,7 @@ class Mission
class Item22
{
linkID=22;
- item0=1540;
+ item0=2987;
item1=2960;
class CustomData
{
@@ -13661,7 +10853,7 @@ class Mission
class Item23
{
linkID=23;
- item0=1542;
+ item0=2988;
item1=2960;
class CustomData
{
@@ -13671,7 +10863,7 @@ class Mission
class Item24
{
linkID=24;
- item0=1544;
+ item0=2989;
item1=2960;
class CustomData
{
@@ -13681,7 +10873,7 @@ class Mission
class Item25
{
linkID=25;
- item0=1546;
+ item0=2990;
item1=2960;
class CustomData
{
@@ -13691,7 +10883,7 @@ class Mission
class Item26
{
linkID=26;
- item0=1548;
+ item0=2966;
item1=2960;
class CustomData
{
@@ -13701,7 +10893,7 @@ class Mission
class Item27
{
linkID=27;
- item0=1550;
+ item0=2967;
item1=2960;
class CustomData
{
@@ -13711,7 +10903,7 @@ class Mission
class Item28
{
linkID=28;
- item0=1552;
+ item0=2968;
item1=2960;
class CustomData
{
@@ -13721,7 +10913,7 @@ class Mission
class Item29
{
linkID=29;
- item0=1554;
+ item0=2969;
item1=2960;
class CustomData
{
@@ -13731,7 +10923,7 @@ class Mission
class Item30
{
linkID=30;
- item0=1556;
+ item0=2970;
item1=2960;
class CustomData
{
@@ -13741,7 +10933,7 @@ class Mission
class Item31
{
linkID=31;
- item0=1558;
+ item0=2971;
item1=2960;
class CustomData
{
@@ -13751,7 +10943,7 @@ class Mission
class Item32
{
linkID=32;
- item0=1560;
+ item0=2972;
item1=2960;
class CustomData
{
@@ -13761,7 +10953,7 @@ class Mission
class Item33
{
linkID=33;
- item0=1583;
+ item0=2973;
item1=2960;
class CustomData
{
@@ -13771,7 +10963,7 @@ class Mission
class Item34
{
linkID=34;
- item0=1585;
+ item0=2974;
item1=2960;
class CustomData
{
@@ -13781,7 +10973,7 @@ class Mission
class Item35
{
linkID=35;
- item0=1587;
+ item0=2975;
item1=2960;
class CustomData
{
@@ -13791,7 +10983,7 @@ class Mission
class Item36
{
linkID=36;
- item0=1589;
+ item0=2976;
item1=2960;
class CustomData
{
@@ -13801,7 +10993,7 @@ class Mission
class Item37
{
linkID=37;
- item0=1591;
+ item0=2977;
item1=2960;
class CustomData
{
@@ -13811,227 +11003,7 @@ class Mission
class Item38
{
linkID=38;
- item0=1593;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=1595;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=1597;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=1599;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=1601;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=1603;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=1605;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=1607;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=1609;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=1611;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=1613;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=1615;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=1617;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=1619;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=1621;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=1623;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=1625;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=1627;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=1629;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=1500;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=1498;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=1496;
- item1=2960;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=1494;
+ item0=2978;
item1=2960;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Altis.Altis/PIC.jpg b/Map-Templates/Antistasi-Altis.Altis/PIC.jpg
index 532876af94..3da2391124 100644
Binary files a/Map-Templates/Antistasi-Altis.Altis/PIC.jpg and b/Map-Templates/Antistasi-Altis.Altis/PIC.jpg differ
diff --git a/Map-Templates/Antistasi-Altis.Altis/mission.sqm b/Map-Templates/Antistasi-Altis.Altis/mission.sqm
index dd6eb8c403..183e623b6f 100755
--- a/Map-Templates/Antistasi-Altis.Altis/mission.sqm
+++ b/Map-Templates/Antistasi-Altis.Altis/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1666;
class ItemIDProvider
{
- nextID=2076;
+ nextID=2115;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=503;
+ nextID=518;
};
class Camera
{
- pos[]={3643.606,51.059433,10276.297};
- dir[]={-0.63776839,-0.7528035,-0.16295114};
- up[]={-0.72937334,0.65824056,-0.18635601};
- aside[]={-0.24755117,-9.6391886e-008,0.96888137};
+ pos[]={14079.244,59.815231,22944.676};
+ dir[]={0,-0.70710683,0.70710683};
+ up[]={0,0.70710677,0.70710677};
+ aside[]={0.99999994,0,-0};
};
};
binarizationWanted=0;
@@ -33,7 +33,6 @@ addons[]=
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F",
"A3_Characters_F",
- "A3_Weapons_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Ind_AirPort",
"A3_Structures_F_Mil_Cargo",
@@ -51,7 +50,8 @@ addons[]=
"A3_Structures_F_Walls",
"A3_Structures_F_Ind_Transmitter_Tower",
"A3_Structures_F_Ind_Cargo",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
@@ -678,29 +678,22 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={3607.4099,15.69819,10275.639};
- angles[]={0.014660765,0,6.2232509};
+ position[]={3601.614,15.950262,10279.248};
+ angles[]={6.2725215,2.1016905,6.2485409};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=1013;
+ id=1182;
type="I_G_officer_F";
class CustomAttributes
{
@@ -719,7 +712,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -742,36 +735,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3610.9431,15.376605,10272.114};
- angles[]={6.253861,6.2412972,6.213963};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1014;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -783,3895 +750,76 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ value="";
};
};
};
- nAttributes=2;
+ nAttributes=3;
};
};
- class Item2
+ };
+ class Attributes
+ {
+ };
+ id=1068;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.4028,14.829173,10278.267};
- angles[]={0.012000273,6.2412972,6.2179451};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1020;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "STRING"
};
};
+ value="Petros";
};
- nAttributes=2;
};
};
- class Item3
+ nAttributes=1;
+ };
+ };
+ class Item43
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3604.6182,16.735788,10282.353};
+ angles[]={0.014660765,0,6.2232509};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=1098;
+ type="MapBoard_seismic_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.4768,14.704896,10278.502};
- angles[]={0.012000273,0,6.2445378};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1022;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.4067,14.617949,10278.153};
- angles[]={6.2805333,0,6.259192};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1024;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.3059,14.541884,10278.332};
- angles[]={6.2805333,0,6.253861};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1026;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item6
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.2937,14.465902,10278.552};
- angles[]={6.2432079,0,0.0080009829};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1028;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item7
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.9419,14.99068,10278.206};
- angles[]={0.012000273,0,6.2179451};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1030;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item8
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.2998,14.802361,10281.062};
- angles[]={0.012000273,6.2412972,6.2179451};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1032;
- type="I_G_Soldier_AR_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item9
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.3738,14.699122,10281.297};
- angles[]={6.2805333,0,6.259192};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1034;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.3037,14.627873,10280.948};
- angles[]={6.2805333,0,6.259192};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1036;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item11
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.2029,14.552358,10281.127};
- angles[]={6.2805333,0,6.253861};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1038;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.1907,14.576846,10281.347};
- angles[]={6.2432079,0,0.0080009829};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1040;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.8389,14.963868,10281.001};
- angles[]={0.012000273,0,6.2179451};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1042;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.3738,14.728109,10284.298};
- angles[]={6.2685165,0,6.2591896};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1046;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.3037,14.652675,10283.949};
- angles[]={6.2685165,0,6.2591896};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1048;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.2029,14.622108,10284.128};
- angles[]={6.2698507,0,0.0079936078};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1050;
- type="I_G_engineer_F";
- atlOffset=9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.1907,14.64894,10284.348};
- angles[]={6.2698536,0,0.0079935296};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1052;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.8389,15.026655,10284.002};
- angles[]={6.2272439,0,6.2179451};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1054;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.27,14.76855,10286.885};
- angles[]={6.2685165,0,6.2591896};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1058;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.2,14.690199,10286.536};
- angles[]={6.2698536,0,6.2578602};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1060;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.0991,14.655776,10286.715};
- angles[]={6.2698536,0,0.0079935296};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1062;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.0869,14.683905,10286.935};
- angles[]={6.2685208,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1064;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.7351,15.12558,10286.589};
- angles[]={6.2685208,0,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1066;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.3989,14.806094,10284.178};
- angles[]={6.2685208,6.1574922,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1044;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.4939,14.833896,10286.765};
- angles[]={6.2685208,0,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1056;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.6023,14.795665,10289.511};
- angles[]={6.2698536,0,6.2578602};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1417;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.5322,14.716789,10289.162};
- angles[]={6.2698536,0,6.2578602};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1419;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.4314,14.694407,10289.341};
- angles[]={6.2685208,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1421;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.4192,14.725517,10289.561};
- angles[]={6.2685208,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1423;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.0674,15.128654,10289.215};
- angles[]={6.2685208,0,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1425;
- type="I_G_officer_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.8262,14.863952,10289.391};
- angles[]={6.2685165,0,6.2591896};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1427;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.6758,14.89904,10292.585};
- angles[]={6.2445378,0,6.2578578};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1429;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.6057,14.802868,10292.236};
- angles[]={6.2551947,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1431;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.5049,14.771727,10292.415};
- angles[]={6.2551947,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1433;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.4927,14.805766,10292.635};
- angles[]={6.2551947,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1435;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3620.1409,15.237556,10292.289};
- angles[]={6.2365522,0,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1437;
- type="I_G_officer_F";
- atlOffset=9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.8997,14.964696,10292.465};
- angles[]={6.2445378,0,6.2578578};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1439;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.709,15.089675,10295.571};
- angles[]={6.2445378,0,6.2578578};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1498;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.6389,14.993293,10295.223};
- angles[]={6.2551947,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1500;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.5381,14.893919,10295.401};
- angles[]={6.2551947,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1502;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.5259,14.861694,10295.621};
- angles[]={6.2551947,0,0.0093286335};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1504;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.1741,15.693403,10295.275};
- angles[]={6.2365522,0,6.1769204};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1506;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.9329,15.384641,10295.451};
- angles[]={6.2445378,0,6.1690178};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1508;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.5605,15.217278,10298.836};
- angles[]={6.2458687,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1510;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3625.4905,15.098813,10298.487};
- angles[]={6.2458687,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1512;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3628.3896,15.001105,10298.666};
- angles[]={6.2458687,0,6.247201};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1514;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3631.3774,15.023723,10298.886};
- angles[]={6.2192731,0,0.02666023};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1516;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3617.0256,15.850656,10298.54};
- angles[]={6.2312322,0,6.1690178};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1518;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.7844,15.543464,10298.716};
- angles[]={6.2312322,0,6.1690178};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1520;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3621.3738,15.467607,10301.581};
- angles[]={6.2458706,0,6.1545658};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1522;
- type="I_G_Soldier_LAT_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3624.3037,15.524534,10301.232};
- angles[]={5.957521,0,0.24143139};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1524;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3627.2029,15.174692,10301.411};
- angles[]={6.2192731,0,6.2738566};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1526;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3630.1907,15.167741,10301.631};
- angles[]={6.2192731,0,0.02666023};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1528;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3615.8389,16.323023,10301.285};
- angles[]={5.8855929,0,5.4282241};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1530;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3618.5977,15.822173,10301.461};
- angles[]={6.2458706,0,6.1545658};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1532;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3616.947,14.993358,10272.001};
- angles[]={6.253861,0,6.2325621};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1016;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3619.9722,14.865136,10272.26};
- angles[]={6.2458687,0,6.2405448};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1017;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3622.5569,14.771102,10272.666};
- angles[]={6.2458706,0,6.259192};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1018;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3614.0171,15.170384,10272.35};
- angles[]={6.253861,0,6.213963};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=1015;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=1067;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Guerillas";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item43
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3601.614,15.950262,10279.248};
- angles[]={6.2725215,2.1016905,6.2485409};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=1182;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=1068;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Petros";
+ value=0;
};
};
};
@@ -4679,56 +827,16 @@ class Mission
};
};
class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3604.6182,16.735788,10282.353};
- angles[]={0.014660765,0,6.2232509};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=1098;
- type="MapBoard_seismic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item45
{
dataType="Marker";
position[]={21332.971,18.858,7321.6831};
name="spawnPoint";
type="hd_start";
- angle=28.146921;
+ angle=28.146914;
id=1099;
atlOffset=0.00024414063;
};
- class Item46
+ class Item45
{
dataType="Marker";
position[]={22912.727,9.9300003,19079.26};
@@ -4738,7 +846,7 @@ class Mission
id=1100;
atlOffset=-1.441308;
};
- class Item47
+ class Item46
{
dataType="Marker";
position[]={26833.08,27.041002,24434.344};
@@ -4747,7 +855,7 @@ class Mission
angle=220.45634;
id=1102;
};
- class Item48
+ class Item47
{
dataType="Marker";
position[]={14415.215,16.554316,16811.631};
@@ -4756,7 +864,7 @@ class Mission
angle=223.34677;
id=1103;
};
- class Item49
+ class Item48
{
dataType="Marker";
position[]={11565.08,25.18574,12096.762};
@@ -4765,7 +873,7 @@ class Mission
angle=286.13657;
id=1104;
};
- class Item50
+ class Item49
{
dataType="Marker";
position[]={9184.3438,14.790446,21734.248};
@@ -4774,7 +882,7 @@ class Mission
angle=143.57869;
id=1105;
};
- class Item51
+ class Item50
{
dataType="Marker";
position[]={3181.1331,2.4200001,12482.095};
@@ -4787,7 +895,7 @@ class Mission
id=1107;
atlOffset=9.059906e-006;
};
- class Item52
+ class Item51
{
dataType="Marker";
position[]={4219.2031,46.111389,12251.489};
@@ -4799,7 +907,7 @@ class Mission
angle=231.22296;
id=1108;
};
- class Item53
+ class Item52
{
dataType="Marker";
position[]={5096.9497,24.480274,13859.174};
@@ -4811,7 +919,7 @@ class Mission
angle=231.22296;
id=1109;
};
- class Item54
+ class Item53
{
dataType="Marker";
position[]={5202.4297,18.541693,14485.633};
@@ -4823,7 +931,7 @@ class Mission
angle=231.22296;
id=1110;
};
- class Item55
+ class Item54
{
dataType="Marker";
position[]={3631.2336,7.4565849,13874.588};
@@ -4835,7 +943,7 @@ class Mission
angle=231.22296;
id=1111;
};
- class Item56
+ class Item55
{
dataType="Marker";
position[]={4386.7471,71.040924,16015.587};
@@ -4847,7 +955,7 @@ class Mission
angle=231.22296;
id=1112;
};
- class Item57
+ class Item56
{
dataType="Marker";
position[]={5952.9072,236.78763,19864.762};
@@ -4859,7 +967,7 @@ class Mission
angle=231.22296;
id=1113;
};
- class Item58
+ class Item57
{
dataType="Marker";
position[]={9128.2422,20.68099,22068.809};
@@ -4871,7 +979,7 @@ class Mission
angle=231.22296;
id=1114;
};
- class Item59
+ class Item58
{
dataType="Marker";
position[]={8409.0273,55.321545,20834.262};
@@ -4883,7 +991,7 @@ class Mission
angle=231.22296;
id=1115;
};
- class Item60
+ class Item59
{
dataType="Marker";
position[]={9351.292,38.454903,21243.428};
@@ -4895,7 +1003,7 @@ class Mission
angle=231.22296;
id=1116;
};
- class Item61
+ class Item60
{
dataType="Marker";
position[]={9466.1748,14.863552,21870.887};
@@ -4907,7 +1015,7 @@ class Mission
angle=231.22296;
id=1117;
};
- class Item62
+ class Item61
{
dataType="Marker";
position[]={8783.5254,99.873222,15788.32};
@@ -4919,7 +1027,7 @@ class Mission
angle=231.22296;
id=1118;
};
- class Item63
+ class Item62
{
dataType="Marker";
position[]={7240.957,4.4888473,11029.49};
@@ -4931,7 +1039,7 @@ class Mission
angle=231.22296;
id=1119;
};
- class Item64
+ class Item63
{
dataType="Marker";
position[]={10771.739,3.4747643,10873.154};
@@ -4943,7 +1051,7 @@ class Mission
angle=231.22296;
id=1120;
};
- class Item65
+ class Item64
{
dataType="Marker";
position[]={10830.928,17.216188,12156.106};
@@ -4955,7 +1063,7 @@ class Mission
angle=231.22296;
id=1121;
};
- class Item66
+ class Item65
{
dataType="Marker";
position[]={10093.558,18.734219,12919.797};
@@ -4967,7 +1075,7 @@ class Mission
angle=231.22296;
id=1122;
};
- class Item67
+ class Item66
{
dataType="Marker";
position[]={12377.377,21.578207,15871.573};
@@ -4979,7 +1087,7 @@ class Mission
angle=231.22296;
id=1123;
};
- class Item68
+ class Item67
{
dataType="Marker";
position[]={11293.307,58.806793,17517.594};
@@ -4991,7 +1099,7 @@ class Mission
angle=231.22296;
id=1124;
};
- class Item69
+ class Item68
{
dataType="Marker";
position[]={13547.545,19.099752,18669.258};
@@ -5003,7 +1111,7 @@ class Mission
angle=231.22296;
id=1125;
};
- class Item70
+ class Item69
{
dataType="Marker";
position[]={14299.458,28.614883,19467.055};
@@ -5015,7 +1123,7 @@ class Mission
angle=231.22296;
id=1126;
};
- class Item71
+ class Item70
{
dataType="Marker";
position[]={13645.276,19.155266,16084.521};
@@ -5028,7 +1136,7 @@ class Mission
id=1127;
atlOffset=-3.8146973e-006;
};
- class Item72
+ class Item71
{
dataType="Marker";
position[]={15868.175,14.615435,17421.17};
@@ -5040,7 +1148,7 @@ class Mission
angle=231.22296;
id=1128;
};
- class Item73
+ class Item72
{
dataType="Marker";
position[]={15986.493,8.0299902,16130.729};
@@ -5053,7 +1161,7 @@ class Mission
id=1129;
atlOffset=3.1471252e-005;
};
- class Item74
+ class Item73
{
dataType="Marker";
position[]={18362.127,19.228302,17342.16};
@@ -5065,7 +1173,7 @@ class Mission
angle=231.22296;
id=1130;
};
- class Item75
+ class Item74
{
dataType="Marker";
position[]={17490.688,5.5569239,14324.797};
@@ -5077,7 +1185,7 @@ class Mission
angle=231.22296;
id=1131;
};
- class Item76
+ class Item75
{
dataType="Marker";
position[]={18271.459,27.275703,12900.734};
@@ -5089,7 +1197,7 @@ class Mission
angle=231.22296;
id=1132;
};
- class Item77
+ class Item76
{
dataType="Marker";
position[]={20228.654,52.020004,9768.0547};
@@ -5101,7 +1209,7 @@ class Mission
angle=231.22296;
id=1133;
};
- class Item78
+ class Item77
{
dataType="Marker";
position[]={21586.922,14.105127,7801.9902};
@@ -5113,7 +1221,7 @@ class Mission
angle=231.22296;
id=1134;
};
- class Item79
+ class Item78
{
dataType="Marker";
position[]={20792.029,36.949718,16645.305};
@@ -5125,7 +1233,7 @@ class Mission
angle=231.22296;
id=1135;
};
- class Item80
+ class Item79
{
dataType="Marker";
position[]={21685.58,22.36945,17643.285};
@@ -5137,7 +1245,7 @@ class Mission
angle=231.22296;
id=1136;
};
- class Item81
+ class Item80
{
dataType="Marker";
position[]={22971.109,13.492899,19366.07};
@@ -5149,7 +1257,7 @@ class Mission
angle=231.22296;
id=1137;
};
- class Item82
+ class Item81
{
dataType="Marker";
position[]={24790.133,20.474581,20720.881};
@@ -5161,7 +1269,7 @@ class Mission
angle=231.22296;
id=1138;
};
- class Item83
+ class Item82
{
dataType="Marker";
position[]={25990.26,24.751326,21568.287};
@@ -5173,7 +1281,7 @@ class Mission
angle=231.22296;
id=1139;
};
- class Item84
+ class Item83
{
dataType="Marker";
position[]={26981.279,11.84,23830.973};
@@ -5185,7 +1293,7 @@ class Mission
angle=231.22296;
id=1140;
};
- class Item85
+ class Item84
{
dataType="Marker";
position[]={5931.3213,35.499817,22072.861};
@@ -5198,7 +1306,7 @@ class Mission
id=1141;
atlOffset=-180.69971;
};
- class Item86
+ class Item85
{
dataType="Marker";
position[]={4078.9751,133.23485,22090.877};
@@ -5210,7 +1318,7 @@ class Mission
angle=231.22296;
id=1142;
};
- class Item87
+ class Item86
{
dataType="Marker";
position[]={3876.7268,150.10907,21272.254};
@@ -5222,7 +1330,7 @@ class Mission
angle=231.22296;
id=1143;
};
- class Item88
+ class Item87
{
dataType="Marker";
position[]={7787.8447,98.140869,21684.877};
@@ -5235,7 +1343,7 @@ class Mission
id=1144;
atlOffset=-25.776688;
};
- class Item89
+ class Item88
{
dataType="Marker";
position[]={3261.9119,122.53696,19385.77};
@@ -5248,7 +1356,7 @@ class Mission
id=1145;
atlOffset=-42.672791;
};
- class Item90
+ class Item89
{
dataType="Marker";
position[]={4095.1401,290.75259,19930.941};
@@ -5260,7 +1368,7 @@ class Mission
angle=231.22296;
id=1146;
};
- class Item91
+ class Item90
{
dataType="Marker";
position[]={5528.4966,173.61342,21299.682};
@@ -5272,7 +1380,7 @@ class Mission
angle=231.22296;
id=1147;
};
- class Item92
+ class Item91
{
dataType="Marker";
position[]={8185.0068,83.494675,22893.648};
@@ -5284,7 +1392,7 @@ class Mission
angle=231.22296;
id=1148;
};
- class Item93
+ class Item92
{
dataType="Marker";
position[]={14258.698,96.381104,22076.549};
@@ -5297,7 +1405,7 @@ class Mission
id=1149;
atlOffset=24.824684;
};
- class Item94
+ class Item93
{
dataType="Marker";
position[]={8006.2344,70.981575,20042.875};
@@ -5309,7 +1417,7 @@ class Mission
angle=231.22296;
id=1150;
};
- class Item95
+ class Item94
{
dataType="Marker";
position[]={5771.7959,189.49142,19094.035};
@@ -5321,7 +1429,7 @@ class Mission
angle=231.22296;
id=1151;
};
- class Item96
+ class Item95
{
dataType="Marker";
position[]={11738.693,45.491325,8850.6113};
@@ -5333,7 +1441,7 @@ class Mission
angle=231.22296;
id=1152;
};
- class Item97
+ class Item96
{
dataType="Marker";
position[]={21060.4,1.3683789,14717.646};
@@ -5346,7 +1454,7 @@ class Mission
id=1153;
atlOffset=-3.4213066e-005;
};
- class Item98
+ class Item97
{
dataType="Marker";
position[]={17992.082,69.924828,10671.903};
@@ -5358,7 +1466,7 @@ class Mission
angle=231.22296;
id=1154;
};
- class Item99
+ class Item98
{
dataType="Marker";
position[]={22960.973,24.957481,21887.336};
@@ -5370,7 +1478,7 @@ class Mission
angle=231.22296;
id=1155;
};
- class Item100
+ class Item99
{
dataType="Marker";
position[]={24232.799,66.273628,21795.674};
@@ -5382,7 +1490,7 @@ class Mission
angle=231.22296;
id=1156;
};
- class Item101
+ class Item100
{
dataType="Marker";
position[]={23923.436,45.721985,22723.762};
@@ -5394,7 +1502,7 @@ class Mission
angle=231.22296;
id=1157;
};
- class Item102
+ class Item101
{
dataType="Marker";
position[]={24347.379,25.81115,23560.189};
@@ -5406,7 +1514,7 @@ class Mission
angle=231.22296;
id=1158;
};
- class Item103
+ class Item102
{
dataType="Marker";
position[]={28045.74,39.501999,25409.574};
@@ -5419,7 +1527,7 @@ class Mission
id=1159;
atlOffset=0.00048828125;
};
- class Item104
+ class Item103
{
dataType="Marker";
position[]={25963.797,66.576874,22488.859};
@@ -5431,7 +1539,7 @@ class Mission
angle=231.22296;
id=1160;
};
- class Item105
+ class Item104
{
dataType="Marker";
position[]={8799.5547,129.67937,15250.9};
@@ -5443,7 +1551,7 @@ class Mission
angle=231.22296;
id=1161;
};
- class Item106
+ class Item105
{
dataType="Marker";
position[]={10822.622,106.28155,15025.045};
@@ -5455,7 +1563,7 @@ class Mission
angle=231.22296;
id=1162;
};
- class Item107
+ class Item106
{
dataType="Marker";
position[]={6641.7202,132.51106,12197.677};
@@ -5467,7 +1575,7 @@ class Mission
angle=231.22296;
id=1163;
};
- class Item108
+ class Item107
{
dataType="Marker";
position[]={9522.5645,52.498535,7532.7705};
@@ -5480,7 +1588,7 @@ class Mission
id=1165;
atlOffset=-6.007225;
};
- class Item109
+ class Item108
{
dataType="Marker";
position[]={23662.633,5.3028078,16239.605};
@@ -5492,7 +1600,7 @@ class Mission
angle=231.22296;
id=1166;
};
- class Item110
+ class Item109
{
dataType="Marker";
position[]={3376.6011,0,12753.058};
@@ -5501,7 +1609,7 @@ class Mission
id=1167;
atlOffset=2.941112;
};
- class Item111
+ class Item110
{
dataType="Marker";
position[]={3535.1458,2.8441161e-009,13774.347};
@@ -5510,7 +1618,7 @@ class Mission
id=1168;
atlOffset=1.2454736;
};
- class Item112
+ class Item111
{
dataType="Marker";
position[]={3807.0403,8.2976584e-008,17341.869};
@@ -5519,7 +1627,7 @@ class Mission
id=1169;
atlOffset=4.6103921;
};
- class Item113
+ class Item112
{
dataType="Marker";
position[]={16582.131,0,12303.811};
@@ -5528,7 +1636,7 @@ class Mission
id=1170;
atlOffset=8.3859863;
};
- class Item114
+ class Item113
{
dataType="Marker";
position[]={12749.965,2.2184195e-006,14198.212};
@@ -5537,7 +1645,7 @@ class Mission
id=1171;
atlOffset=9.9826164;
};
- class Item115
+ class Item114
{
dataType="Marker";
position[]={11837.512,-2.1113763e-006,13530.187};
@@ -5546,7 +1654,7 @@ class Mission
id=1172;
atlOffset=4.5436969;
};
- class Item116
+ class Item115
{
dataType="Marker";
position[]={2255.782,0,13234.797};
@@ -5556,7 +1664,7 @@ class Mission
id=1174;
atlOffset=126.38051;
};
- class Item117
+ class Item116
{
dataType="Marker";
position[]={3172.9761,2.8623674e-008,16757.107};
@@ -5566,7 +1674,7 @@ class Mission
id=1176;
atlOffset=107.35194;
};
- class Item118
+ class Item117
{
dataType="Marker";
position[]={19879.293,0,21958.814};
@@ -5576,7 +1684,7 @@ class Mission
id=1177;
atlOffset=171.26703;
};
- class Item119
+ class Item118
{
dataType="Marker";
position[]={25805.57,0,25990.992};
@@ -5586,7 +1694,7 @@ class Mission
id=1178;
atlOffset=178.77411;
};
- class Item120
+ class Item119
{
dataType="Marker";
position[]={24006.145,-6.4275355e-008,6603.1455};
@@ -5596,7 +1704,7 @@ class Mission
id=1179;
atlOffset=180.55885;
};
- class Item121
+ class Item120
{
dataType="Marker";
position[]={15241.775,0,13870.712};
@@ -5606,7 +1714,7 @@ class Mission
id=1180;
atlOffset=67.766624;
};
- class Item122
+ class Item121
{
dataType="Marker";
position[]={13681.933,-8.68244e-008,10426.626};
@@ -5616,7 +1724,7 @@ class Mission
id=1181;
atlOffset=141.36031;
};
- class Item123
+ class Item122
{
dataType="Marker";
position[]={3239.0374,7.4641165e-010,12861.445};
@@ -5625,7 +1733,7 @@ class Mission
id=1184;
atlOffset=8.8429317;
};
- class Item124
+ class Item123
{
dataType="Marker";
position[]={20649.865,0,19497.082};
@@ -5634,7 +1742,7 @@ class Mission
id=1185;
atlOffset=2.1248169;
};
- class Item125
+ class Item124
{
dataType="Marker";
position[]={27619.545,1.5190345e-008,24543.322};
@@ -5643,7 +1751,7 @@ class Mission
id=1186;
atlOffset=5.0577831;
};
- class Item126
+ class Item125
{
dataType="Marker";
position[]={15382.954,-4.1486221e-008,15813.717};
@@ -5652,7 +1760,7 @@ class Mission
id=1187;
atlOffset=6.1902537;
};
- class Item127
+ class Item126
{
dataType="Object";
class PositionInfo
@@ -5667,7 +1775,7 @@ class Mission
id=1188;
type="Land_Airport_Tower_F";
};
- class Item128
+ class Item127
{
dataType="Object";
class PositionInfo
@@ -5683,7 +1791,7 @@ class Mission
id=1200;
type="Land_Hangar_F";
};
- class Item129
+ class Item128
{
dataType="Object";
class PositionInfo
@@ -5700,7 +1808,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=0.3626709;
};
- class Item130
+ class Item129
{
dataType="Object";
class PositionInfo
@@ -5716,7 +1824,7 @@ class Mission
id=1237;
type="Land_Cargo_HQ_V1_F";
};
- class Item131
+ class Item130
{
dataType="Object";
class PositionInfo
@@ -5733,7 +1841,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=1.0188999;
};
- class Item132
+ class Item131
{
dataType="Object";
class PositionInfo
@@ -5818,7 +1926,7 @@ class Mission
nAttributes=1;
};
};
- class Item133
+ class Item132
{
dataType="Object";
class PositionInfo
@@ -5834,7 +1942,7 @@ class Mission
id=1244;
type="Land_Cargo_HQ_V1_F";
};
- class Item134
+ class Item133
{
dataType="Object";
class PositionInfo
@@ -5851,7 +1959,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=9.5367432e-006;
};
- class Item135
+ class Item134
{
dataType="Object";
class PositionInfo
@@ -5867,7 +1975,7 @@ class Mission
id=1262;
type="Land_Cargo_Patrol_V1_F";
};
- class Item136
+ class Item135
{
dataType="Object";
class PositionInfo
@@ -5883,7 +1991,7 @@ class Mission
id=1264;
type="Land_Cargo_Patrol_V1_F";
};
- class Item137
+ class Item136
{
dataType="Object";
class PositionInfo
@@ -5899,7 +2007,7 @@ class Mission
id=1265;
type="Land_Cargo_Patrol_V1_F";
};
- class Item138
+ class Item137
{
dataType="Object";
class PositionInfo
@@ -5915,7 +2023,7 @@ class Mission
id=1271;
type="Land_Cargo_Patrol_V1_F";
};
- class Item139
+ class Item138
{
dataType="Object";
class PositionInfo
@@ -5931,7 +2039,7 @@ class Mission
id=1273;
type="Land_Cargo_Patrol_V1_F";
};
- class Item140
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -5948,7 +2056,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=1.5258789e-005;
};
- class Item141
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -5965,7 +2073,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=2.0980835e-005;
};
- class Item142
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -5981,7 +2089,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-0.0099000931;
};
- class Item143
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -5998,7 +2106,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-0.017017365;
};
- class Item144
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -6015,7 +2123,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-4.7683716e-007;
};
- class Item145
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -6032,7 +2140,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-1.011385;
};
- class Item146
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -6048,7 +2156,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-1.9073486e-006;
};
- class Item147
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -6065,7 +2173,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-9.5367432e-007;
};
- class Item148
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -6082,7 +2190,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=9.5367432e-007;
};
- class Item149
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -6099,7 +2207,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=1.9073486e-006;
};
- class Item150
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -6115,7 +2223,7 @@ class Mission
id=1332;
type="Land_TentHangar_V1_F";
};
- class Item151
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -6131,7 +2239,7 @@ class Mission
id=1336;
type="Land_Airport_01_hangar_F";
};
- class Item152
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -6147,7 +2255,7 @@ class Mission
id=1337;
type="Land_Cargo_Patrol_V1_F";
};
- class Item153
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -6163,7 +2271,7 @@ class Mission
id=1338;
type="Land_Cargo_Patrol_V1_F";
};
- class Item154
+ class Item153
{
dataType="Object";
class PositionInfo
@@ -6180,7 +2288,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=1.4176254;
};
- class Item155
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -6197,7 +2305,7 @@ class Mission
type="Land_Airport_Tower_F";
atlOffset=0.48480988;
};
- class Item156
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -6213,7 +2321,7 @@ class Mission
id=1343;
type="Land_Cargo_Patrol_V1_F";
};
- class Item157
+ class Item156
{
dataType="Object";
class PositionInfo
@@ -6229,7 +2337,7 @@ class Mission
id=1344;
type="Land_Cargo_Patrol_V1_F";
};
- class Item158
+ class Item157
{
dataType="Object";
class PositionInfo
@@ -6245,7 +2353,7 @@ class Mission
id=1345;
type="Land_Cargo_Patrol_V1_F";
};
- class Item159
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -6261,7 +2369,7 @@ class Mission
id=1346;
type="Land_Cargo_Patrol_V1_F";
};
- class Item160
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -6277,7 +2385,7 @@ class Mission
id=1347;
type="Land_Cargo_Patrol_V1_F";
};
- class Item161
+ class Item160
{
dataType="Object";
class PositionInfo
@@ -6293,7 +2401,7 @@ class Mission
id=1350;
type="Land_Cargo_Patrol_V1_F";
};
- class Item162
+ class Item161
{
dataType="Object";
class PositionInfo
@@ -6309,7 +2417,7 @@ class Mission
id=1351;
type="Land_Cargo_Tower_V1_F";
};
- class Item163
+ class Item162
{
dataType="Object";
class PositionInfo
@@ -6325,7 +2433,7 @@ class Mission
id=1357;
type="Land_Cargo_HQ_V1_F";
};
- class Item164
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -6341,7 +2449,7 @@ class Mission
id=1358;
type="Land_Cargo_Patrol_V1_F";
};
- class Item165
+ class Item164
{
dataType="Object";
class PositionInfo
@@ -6356,7 +2464,7 @@ class Mission
name="flagX";
};
id=1370;
- type="Flag_Altis_F";
+ type="Flag_FIA_F";
atlOffset=9.5367432e-007;
class CustomAttributes
{
@@ -6382,7 +2490,7 @@ class Mission
nAttributes=1;
};
};
- class Item166
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -6399,7 +2507,7 @@ class Mission
type="Flag_NATO_F";
atlOffset=-0.6429987;
};
- class Item167
+ class Item166
{
dataType="Marker";
position[]={13537.383,17.984203,12063.334};
@@ -6408,7 +2516,7 @@ class Mission
id=1390;
atlOffset=4.0483103;
};
- class Item168
+ class Item167
{
dataType="Group";
side="West";
@@ -6791,7 +2899,7 @@ class Mission
};
id=1406;
};
- class Item169
+ class Item168
{
dataType="Marker";
position[]={10027.582,17.59524,12814.658};
@@ -6800,7 +2908,7 @@ class Mission
angle=227.508;
id=1440;
};
- class Item170
+ class Item169
{
dataType="Marker";
position[]={8780.8975,35.592316,12043.754};
@@ -6809,7 +2917,7 @@ class Mission
angle=223.50795;
id=1441;
};
- class Item171
+ class Item170
{
dataType="Marker";
position[]={7336.4771,16.04541,11418.288};
@@ -6819,7 +2927,7 @@ class Mission
id=1442;
atlOffset=3.2962132;
};
- class Item172
+ class Item171
{
dataType="Marker";
position[]={10432.575,14.689998,11982.5};
@@ -6828,7 +2936,7 @@ class Mission
angle=227.508;
id=1445;
};
- class Item173
+ class Item172
{
dataType="Marker";
position[]={9615.0332,12.606598,11695.909};
@@ -6838,7 +2946,7 @@ class Mission
id=1446;
atlOffset=0.63069153;
};
- class Item174
+ class Item173
{
dataType="Marker";
position[]={11034.368,63.11581,12973.104};
@@ -6848,7 +2956,7 @@ class Mission
id=1443;
atlOffset=43.66288;
};
- class Item175
+ class Item174
{
dataType="Marker";
position[]={11738.429,13.323238,13913.249};
@@ -6857,7 +2965,7 @@ class Mission
angle=26.564579;
id=1447;
};
- class Item176
+ class Item175
{
dataType="Marker";
position[]={13483.127,15.282019,16028.804};
@@ -6866,7 +2974,7 @@ class Mission
angle=254.67212;
id=1448;
};
- class Item177
+ class Item176
{
dataType="Marker";
position[]={12479.82,32.146729,15886.568};
@@ -6876,7 +2984,7 @@ class Mission
id=1450;
atlOffset=12.854931;
};
- class Item178
+ class Item177
{
dataType="Marker";
position[]={14286.374,17.269678,18161.129};
@@ -6885,7 +2993,7 @@ class Mission
angle=333.82483;
id=1451;
};
- class Item179
+ class Item178
{
dataType="Marker";
position[]={14310.426,26.728813,19600.521};
@@ -6894,7 +3002,7 @@ class Mission
angle=14.435917;
id=1452;
};
- class Item180
+ class Item179
{
dataType="Marker";
position[]={14772.154,14.778986,17175.191};
@@ -6903,7 +3011,7 @@ class Mission
angle=53.226994;
id=1453;
};
- class Item181
+ class Item180
{
dataType="Marker";
position[]={16953.045,16.280811,17813.107};
@@ -6912,7 +3020,7 @@ class Mission
angle=64.545609;
id=1454;
};
- class Item182
+ class Item181
{
dataType="Marker";
position[]={15896.649,11.202651,16178.266};
@@ -6921,7 +3029,7 @@ class Mission
angle=120.79032;
id=1455;
};
- class Item183
+ class Item182
{
dataType="Marker";
position[]={17469.98,4.3621092,14443.852};
@@ -6930,7 +3038,7 @@ class Mission
angle=148.54735;
id=1456;
};
- class Item184
+ class Item183
{
dataType="Marker";
position[]={17045.52,15.683575,12893.139};
@@ -6939,7 +3047,7 @@ class Mission
angle=227.508;
id=1457;
};
- class Item185
+ class Item184
{
dataType="Marker";
position[]={9380.7666,47.546509,21152.375};
@@ -6948,7 +3056,7 @@ class Mission
angle=155.2245;
id=1458;
};
- class Item186
+ class Item185
{
dataType="Marker";
position[]={9718.4492,183.56577,19929.207};
@@ -6957,7 +3065,7 @@ class Mission
angle=117.23835;
id=1459;
};
- class Item187
+ class Item186
{
dataType="Marker";
position[]={9819.0234,94.69236,18539.961};
@@ -6966,7 +3074,7 @@ class Mission
angle=227.508;
id=1460;
};
- class Item188
+ class Item187
{
dataType="Marker";
position[]={7528.1772,171.76268,17280.842};
@@ -6975,7 +3083,7 @@ class Mission
angle=227.508;
id=1462;
};
- class Item189
+ class Item188
{
dataType="Marker";
position[]={6922.4834,188.9752,19240.162};
@@ -6984,7 +3092,7 @@ class Mission
angle=1.5074006;
id=1463;
};
- class Item190
+ class Item189
{
dataType="Marker";
position[]={5246.1899,230.57468,20359.127};
@@ -6993,7 +3101,7 @@ class Mission
angle=284.62128;
id=1464;
};
- class Item191
+ class Item190
{
dataType="Marker";
position[]={21951.461,14.131549,7363.1597};
@@ -7002,7 +3110,7 @@ class Mission
angle=128.61185;
id=1465;
};
- class Item192
+ class Item191
{
dataType="Marker";
position[]={21274.943,15.456692,8186.6035};
@@ -7011,7 +3119,7 @@ class Mission
angle=317.16461;
id=1466;
};
- class Item193
+ class Item192
{
dataType="Marker";
position[]={20046.328,55.846924,8865.0693};
@@ -7020,7 +3128,7 @@ class Mission
angle=290.07159;
id=1467;
};
- class Item194
+ class Item193
{
dataType="Marker";
position[]={20573.68,19.865625,10695.808};
@@ -7029,7 +3137,7 @@ class Mission
angle=354.21683;
id=1468;
};
- class Item195
+ class Item194
{
dataType="Marker";
position[]={22282.488,15.448867,18421.662};
@@ -7038,7 +3146,7 @@ class Mission
angle=227.508;
id=1469;
};
- class Item196
+ class Item195
{
dataType="Marker";
position[]={21706.1,22.576994,17678.889};
@@ -7047,7 +3155,7 @@ class Mission
angle=213.26985;
id=1470;
};
- class Item197
+ class Item196
{
dataType="Marker";
position[]={21005.709,35.480789,17676.527};
@@ -7056,7 +3164,7 @@ class Mission
angle=2.0592506;
id=1471;
};
- class Item198
+ class Item197
{
dataType="Marker";
position[]={20651.492,34.118702,18726.168};
@@ -7065,7 +3173,7 @@ class Mission
angle=353.88327;
id=1472;
};
- class Item199
+ class Item198
{
dataType="Marker";
position[]={20633.316,30.614683,16457.666};
@@ -7074,7 +3182,7 @@ class Mission
angle=227.508;
id=1473;
};
- class Item200
+ class Item199
{
dataType="Marker";
position[]={19814.211,16.058229,15687.382};
@@ -7083,7 +3191,7 @@ class Mission
angle=227.508;
id=1474;
};
- class Item201
+ class Item200
{
dataType="Marker";
position[]={23162.15,14.283377,19607.332};
@@ -7092,7 +3200,7 @@ class Mission
angle=34.257725;
id=1475;
};
- class Item202
+ class Item201
{
dataType="Marker";
position[]={22555.17,27.099434,20589.469};
@@ -7101,7 +3209,7 @@ class Mission
angle=335.03088;
id=1476;
};
- class Item203
+ class Item202
{
dataType="Marker";
position[]={23029.904,51.844334,21113.5};
@@ -7110,7 +3218,7 @@ class Mission
angle=63.785625;
id=1477;
};
- class Item204
+ class Item203
{
dataType="Marker";
position[]={24637.473,21.285206,20648.904};
@@ -7119,7 +3227,7 @@ class Mission
angle=57.619133;
id=1478;
};
- class Item205
+ class Item204
{
dataType="Marker";
position[]={25174.367,14.661154,20623.25};
@@ -7128,7 +3236,7 @@ class Mission
angle=127.69429;
id=1479;
};
- class Item206
+ class Item205
{
dataType="Marker";
position[]={25325.771,17.582952,21110.881};
@@ -7137,7 +3245,7 @@ class Mission
angle=334.7471;
id=1480;
};
- class Item207
+ class Item206
{
dataType="Marker";
position[]={24739.473,75.226112,21810.691};
@@ -7146,7 +3254,7 @@ class Mission
angle=69.393608;
id=1481;
};
- class Item208
+ class Item207
{
dataType="Marker";
position[]={26280.432,40.25845,21788.68};
@@ -7155,7 +3263,7 @@ class Mission
angle=52.54501;
id=1482;
};
- class Item209
+ class Item208
{
dataType="Marker";
position[]={26493.066,20.179955,21324.83};
@@ -7164,7 +3272,7 @@ class Mission
angle=113.11586;
id=1483;
};
- class Item210
+ class Item209
{
dataType="Marker";
position[]={27080.533,11.835176,24018.773};
@@ -7174,7 +3282,7 @@ class Mission
id=1484;
atlOffset=9.5367432e-007;
};
- class Item211
+ class Item210
{
dataType="Marker";
position[]={26716.645,23.527546,22928.643};
@@ -7183,7 +3291,7 @@ class Mission
angle=227.508;
id=1485;
};
- class Item212
+ class Item211
{
dataType="Marker";
position[]={8431.4795,115.94597,25108.053};
@@ -7192,7 +3300,7 @@ class Mission
id=1486;
atlOffset=5.421051;
};
- class Item213
+ class Item212
{
dataType="Group";
side="East";
@@ -7569,7 +3677,7 @@ class Mission
id=1487;
atlOffset=7.6293945e-006;
};
- class Item214
+ class Item213
{
dataType="Object";
class PositionInfo
@@ -7586,7 +3694,7 @@ class Mission
id=1496;
type="Flag_Viper_F";
};
- class Item215
+ class Item214
{
dataType="Logic";
class PositionInfo
@@ -7600,7 +3708,7 @@ class Mission
type="HeadlessClient_F";
atlOffset=1.1444092e-005;
};
- class Item216
+ class Item215
{
dataType="Logic";
class PositionInfo
@@ -7614,7 +3722,7 @@ class Mission
type="HeadlessClient_F";
atlOffset=1.5258789e-005;
};
- class Item217
+ class Item216
{
dataType="Logic";
class PositionInfo
@@ -7697,14 +3805,14 @@ class Mission
"SCALAR"
};
};
- value=2;
+ value=3;
};
};
};
nAttributes=4;
};
};
- class Item218
+ class Item217
{
dataType="Object";
class PositionInfo
@@ -7745,7 +3853,7 @@ class Mission
nAttributes=1;
};
};
- class Item219
+ class Item218
{
dataType="Logic";
class PositionInfo
@@ -7757,7 +3865,7 @@ class Mission
type="Logic";
atlOffset=9.5367432e-007;
};
- class Item220
+ class Item219
{
dataType="Object";
class PositionInfo
@@ -7769,11 +3877,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1563;
type="Land_HelipadCircle_F";
+ atlOffset=-1.9073486e-006;
};
- class Item221
+ class Item220
{
dataType="Object";
class PositionInfo
@@ -7785,11 +3895,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1564;
type="Land_HelipadCircle_F";
};
- class Item222
+ class Item221
{
dataType="Object";
class PositionInfo
@@ -7801,12 +3912,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1565;
type="Land_HelipadCircle_F";
atlOffset=3.2424927e-005;
};
- class Item223
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -7822,7 +3934,7 @@ class Mission
id=1567;
type="Land_TentHangar_V1_F";
};
- class Item224
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -7838,7 +3950,7 @@ class Mission
id=1568;
type="Land_TentHangar_V1_F";
};
- class Item225
+ class Item224
{
dataType="Object";
class PositionInfo
@@ -7850,11 +3962,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1575;
type="Land_HelipadCircle_F";
};
- class Item226
+ class Item225
{
dataType="Object";
class PositionInfo
@@ -7866,11 +3979,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1576;
type="Land_HelipadCircle_F";
};
- class Item227
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -7882,12 +3996,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1577;
type="Land_HelipadCircle_F";
atlOffset=5.7220459e-006;
};
- class Item228
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -7899,11 +4014,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1578;
type="Land_HelipadCircle_F";
};
- class Item229
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -7919,7 +4035,7 @@ class Mission
id=1585;
type="Land_Hangar_F";
};
- class Item230
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -7931,11 +4047,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1587;
type="Land_HelipadCircle_F";
};
- class Item231
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -7947,11 +4064,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1588;
type="Land_HelipadCircle_F";
};
- class Item232
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -7963,11 +4081,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1589;
type="Land_HelipadCircle_F";
};
- class Item233
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -7979,11 +4098,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1590;
type="Land_HelipadCircle_F";
};
- class Item234
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -7995,11 +4115,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1591;
type="Land_HelipadCircle_F";
};
- class Item235
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -8015,7 +4136,7 @@ class Mission
id=1592;
type="Land_Cargo_Patrol_V1_F";
};
- class Item236
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -8032,7 +4153,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-0.41318321;
};
- class Item237
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -8049,7 +4170,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=1.1444092e-005;
};
- class Item238
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -8061,12 +4182,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1599;
type="Land_HelipadCircle_F";
atlOffset=6.4849854e-005;
};
- class Item239
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -8078,11 +4200,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1600;
type="Land_HelipadCircle_F";
+ atlOffset=-1.9073486e-005;
};
- class Item240
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -8094,11 +4218,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1606;
type="Land_HelipadSquare_F";
};
- class Item241
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -8110,11 +4235,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1610;
type="Land_HelipadSquare_F";
+ atlOffset=-0.00021743774;
};
- class Item242
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -8126,11 +4253,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1611;
type="Land_HelipadSquare_F";
};
- class Item243
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -8142,11 +4270,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1617;
type="Land_HelipadCircle_F";
};
- class Item244
+ class Item243
{
dataType="Object";
class PositionInfo
@@ -8158,11 +4287,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1618;
type="Land_HelipadCircle_F";
};
- class Item245
+ class Item244
{
dataType="Object";
class PositionInfo
@@ -8174,11 +4304,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1619;
type="Land_HelipadCircle_F";
};
- class Item246
+ class Item245
{
dataType="Object";
class PositionInfo
@@ -8190,11 +4321,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1620;
type="Land_HelipadCircle_F";
};
- class Item247
+ class Item246
{
dataType="Object";
class PositionInfo
@@ -8206,11 +4338,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1621;
type="Land_HelipadCircle_F";
};
- class Item248
+ class Item247
{
dataType="Object";
class PositionInfo
@@ -8222,12 +4355,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1622;
type="Land_HelipadCircle_F";
atlOffset=3.8146973e-006;
};
- class Item249
+ class Item248
{
dataType="Object";
class PositionInfo
@@ -8239,11 +4373,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1623;
type="Land_HelipadSquare_F";
};
- class Item250
+ class Item249
{
dataType="Object";
class PositionInfo
@@ -8255,11 +4390,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1624;
type="Land_HelipadSquare_F";
};
- class Item251
+ class Item250
{
dataType="Object";
class PositionInfo
@@ -8271,11 +4407,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1625;
type="Land_HelipadSquare_F";
};
- class Item252
+ class Item251
{
dataType="Object";
class PositionInfo
@@ -8287,11 +4424,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1631;
type="Land_HelipadCircle_F";
};
- class Item253
+ class Item252
{
dataType="Object";
class PositionInfo
@@ -8302,12 +4440,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1632;
type="Land_HelipadCircle_F";
atlOffset=0.27338982;
};
- class Item254
+ class Item253
{
dataType="Object";
class PositionInfo
@@ -8319,11 +4458,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1633;
type="Land_HelipadCircle_F";
+ atlOffset=-1.9073486e-006;
};
- class Item255
+ class Item254
{
dataType="Layer";
name="Airports";
@@ -8472,7 +4613,7 @@ class Mission
colorName="ColorGreen";
a=35.460999;
b=6;
- angle=225.25763;
+ angle=225.25757;
id=1626;
};
class Item11
@@ -8631,22 +4772,22 @@ class Mission
class Item22
{
dataType="Marker";
- position[]={9096.5146,15.348633,21508.184};
+ position[]={9084.4961,15.348633,21518.113};
name="airport_5";
markerType="RECTANGLE";
type="Empty";
colorName="ColorEAST";
- a=200;
- b=100;
+ a=203.69968;
+ b=115.14452;
angle=143.29141;
id=46;
- atlOffset=-1.2858829;
+ atlOffset=-0.38585663;
};
};
id=1636;
- atlOffset=-25.965174;
+ atlOffset=-26.1625;
};
- class Item256
+ class Item255
{
dataType="Object";
class PositionInfo
@@ -8658,12 +4799,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1648;
type="Land_HelipadCircle_F";
atlOffset=2.2888184e-005;
};
- class Item257
+ class Item256
{
dataType="Object";
class PositionInfo
@@ -8675,11 +4817,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1652;
type="Land_HelipadCircle_F";
+ atlOffset=-3.0517578e-005;
};
- class Item258
+ class Item257
{
dataType="Object";
class PositionInfo
@@ -8690,12 +4834,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1656;
type="Land_HelipadCircle_F";
atlOffset=0.64629745;
};
- class Item259
+ class Item258
{
dataType="Object";
class PositionInfo
@@ -8707,11 +4852,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1657;
type="Land_HelipadCircle_F";
};
- class Item260
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -8723,11 +4869,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1660;
type="Land_HelipadCircle_F";
};
- class Item261
+ class Item260
{
dataType="Layer";
name="Factories";
@@ -8880,7 +5027,7 @@ class Mission
colorName="ColorGreen";
a=15.529018;
b=5.5;
- angle=56.9062;
+ angle=56.906185;
id=1646;
atlOffset=-0.15297318;
};
@@ -9163,7 +5310,7 @@ class Mission
id=1662;
atlOffset=-46.166866;
};
- class Item262
+ class Item261
{
dataType="Layer";
name="Resources";
@@ -9234,7 +5381,7 @@ class Mission
colorName="ColorGreen";
a=19.902;
b=5.5;
- angle=56.794914;
+ angle=56.794899;
id=1668;
atlOffset=-0.00017929077;
};
@@ -9406,7 +5553,7 @@ class Mission
id=1672;
atlOffset=-116.46241;
};
- class Item263
+ class Item262
{
dataType="Object";
class PositionInfo
@@ -9418,11 +5565,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1674;
type="Land_HelipadCircle_F";
};
- class Item264
+ class Item263
{
dataType="Object";
class PositionInfo
@@ -9434,11 +5582,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1677;
type="Land_HelipadCircle_F";
+ atlOffset=-0.66293097;
};
- class Item265
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -9450,11 +5600,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1680;
type="Land_HelipadCircle_F";
};
- class Item266
+ class Item265
{
dataType="Layer";
name="Seaports";
@@ -9605,7 +5756,7 @@ class Mission
id=1683;
atlOffset=39.728893;
};
- class Item267
+ class Item266
{
dataType="Object";
class PositionInfo
@@ -9617,11 +5768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1685;
type="Land_HelipadCircle_F";
+ atlOffset=-1.9073486e-005;
};
- class Item268
+ class Item267
{
dataType="Object";
class PositionInfo
@@ -9633,11 +5786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1686;
type="Land_HelipadCircle_F";
};
- class Item269
+ class Item268
{
dataType="Object";
class PositionInfo
@@ -9648,12 +5802,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1688;
type="Land_HelipadCircle_F";
atlOffset=0.73409367;
};
- class Item270
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -9665,11 +5820,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1689;
type="Land_HelipadCircle_F";
};
- class Item271
+ class Item270
{
dataType="Object";
class PositionInfo
@@ -9681,12 +5837,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1691;
type="Land_HelipadCircle_F";
atlOffset=7.6293945e-006;
};
- class Item272
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -9698,11 +5855,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1692;
type="Land_HelipadCircle_F";
+ atlOffset=-1.1444092e-005;
};
- class Item273
+ class Item272
{
dataType="Object";
class PositionInfo
@@ -9713,12 +5872,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1695;
type="Land_HelipadSquare_F";
atlOffset=1.3027191;
};
- class Item274
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -9730,11 +5890,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1698;
type="Land_HelipadCircle_F";
+ atlOffset=-3.0517578e-005;
};
- class Item275
+ class Item274
{
dataType="Object";
class PositionInfo
@@ -9746,11 +5908,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1699;
type="Land_HelipadCircle_F";
};
- class Item276
+ class Item275
{
dataType="Object";
class PositionInfo
@@ -9762,11 +5925,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1703;
type="Land_HelipadCircle_F";
};
- class Item277
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -9777,12 +5941,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1705;
type="Land_HelipadCircle_F";
atlOffset=2.0363579;
};
- class Item278
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -9794,12 +5959,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1707;
type="Land_HelipadCircle_F";
atlOffset=1.7166138e-005;
};
- class Item279
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -9811,12 +5977,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1708;
type="Land_HelipadCircle_F";
atlOffset=3.0517578e-005;
};
- class Item280
+ class Item279
{
dataType="Object";
class PositionInfo
@@ -9828,11 +5995,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1710;
type="Land_HelipadCircle_F";
};
- class Item281
+ class Item280
{
dataType="Object";
class PositionInfo
@@ -9844,11 +6012,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1715;
type="Land_HelipadCircle_F";
+ atlOffset=-1.5258789e-005;
};
- class Item282
+ class Item281
{
dataType="Object";
class PositionInfo
@@ -9860,11 +6030,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1716;
type="Land_HelipadCircle_F";
+ atlOffset=-1.5258789e-005;
};
- class Item283
+ class Item282
{
dataType="Object";
class PositionInfo
@@ -9875,12 +6047,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1718;
type="Land_HelipadSquare_F";
atlOffset=0.56990051;
};
- class Item284
+ class Item283
{
dataType="Object";
class PositionInfo
@@ -9892,12 +6065,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1719;
type="Land_HelipadCircle_F";
atlOffset=9.1552734e-005;
};
- class Item285
+ class Item284
{
dataType="Object";
class PositionInfo
@@ -9909,11 +6083,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1721;
type="Land_HelipadCircle_F";
+ atlOffset=-3.8146973e-005;
};
- class Item286
+ class Item285
{
dataType="Object";
class PositionInfo
@@ -9925,11 +6101,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1722;
type="Land_HelipadCircle_F";
+ atlOffset=-7.6293945e-006;
};
- class Item287
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -9941,11 +6119,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1724;
type="Land_HelipadCircle_F";
+ atlOffset=-0.00043487549;
};
- class Item288
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -9957,12 +6137,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1727;
type="Land_HelipadCircle_F";
atlOffset=1.6212463e-005;
};
- class Item289
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -9974,11 +6155,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1728;
type="Land_HelipadCircle_F";
+ atlOffset=-2.8610229e-005;
};
- class Item290
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -9990,11 +6173,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1729;
type="Land_HelipadCircle_F";
};
- class Item291
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -10006,11 +6190,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1730;
type="Land_HelipadCircle_F";
};
- class Item292
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -10022,12 +6207,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1734;
type="Land_HelipadSquare_F";
atlOffset=7.6293945e-006;
};
- class Item293
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -10038,12 +6224,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1735;
type="Land_HelipadSquare_F";
atlOffset=0.37651825;
};
- class Item294
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -10054,12 +6241,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1736;
type="Land_HelipadSquare_F";
atlOffset=1.1153603;
};
- class Item295
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -10070,12 +6258,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1737;
type="Land_HelipadSquare_F";
atlOffset=0.3127594;
};
- class Item296
+ class Item295
{
dataType="Object";
class PositionInfo
@@ -10087,11 +6276,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1742;
type="Land_HelipadCircle_F";
};
- class Item297
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -10103,11 +6293,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1744;
type="Land_HelipadSquare_F";
};
- class Item298
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -10119,11 +6310,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1747;
type="Land_HelipadCircle_F";
};
- class Item299
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -10135,11 +6327,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1748;
type="Land_HelipadCircle_F";
};
- class Item300
+ class Item299
{
dataType="Object";
class PositionInfo
@@ -10151,11 +6344,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1752;
type="Land_HelipadCircle_F";
};
- class Item301
+ class Item300
{
dataType="Object";
class PositionInfo
@@ -10167,11 +6361,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1753;
type="Land_HelipadCircle_F";
+ atlOffset=-3.8146973e-006;
};
- class Item302
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -10183,11 +6379,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1759;
type="Land_HelipadSquare_F";
};
- class Item303
+ class Item302
{
dataType="Object";
class PositionInfo
@@ -10199,11 +6396,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1760;
type="Land_HelipadSquare_F";
+ atlOffset=-1.3689947;
};
- class Item304
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -10215,11 +6414,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1761;
type="Land_HelipadSquare_F";
};
- class Item305
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -10231,11 +6431,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1766;
type="Land_HelipadCircle_F";
};
- class Item306
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -10247,12 +6448,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1767;
type="Land_HelipadSquare_F";
atlOffset=0.00032043457;
};
- class Item307
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -10264,11 +6466,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1768;
type="Land_HelipadSquare_F";
};
- class Item308
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -10279,12 +6482,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1772;
type="Land_HelipadCircle_F";
atlOffset=0.7975235;
};
- class Item309
+ class Item308
{
dataType="Object";
class PositionInfo
@@ -10295,12 +6499,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1773;
type="Land_HelipadCircle_F";
atlOffset=2.1677933;
};
- class Item310
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -10312,11 +6517,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1776;
type="Land_HelipadCircle_F";
};
- class Item311
+ class Item310
{
dataType="Object";
class PositionInfo
@@ -10328,11 +6534,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1777;
type="Land_HelipadCircle_F";
};
- class Item312
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -10344,11 +6551,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1778;
type="Land_HelipadCircle_F";
};
- class Item313
+ class Item312
{
dataType="Object";
class PositionInfo
@@ -10360,11 +6568,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1779;
type="Land_HelipadSquare_F";
};
- class Item314
+ class Item313
{
dataType="Object";
class PositionInfo
@@ -10376,11 +6585,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1782;
type="Land_HelipadCircle_F";
};
- class Item315
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -10392,11 +6602,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1787;
type="Land_HelipadSquare_F";
+ atlOffset=-3.8146973e-005;
};
- class Item316
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -10408,11 +6620,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1788;
type="Land_HelipadSquare_F";
};
- class Item317
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -10424,11 +6637,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1789;
type="Land_HelipadCircle_F";
+ atlOffset=-1.5258789e-005;
};
- class Item318
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -10440,12 +6655,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1790;
type="Land_HelipadCircle_F";
atlOffset=3.0517578e-005;
};
- class Item319
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -10457,11 +6673,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1794;
type="Land_HelipadCircle_F";
};
- class Item320
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -10473,11 +6690,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1795;
type="Land_HelipadCircle_F";
};
- class Item321
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -10489,11 +6707,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1797;
type="Land_HelipadCircle_F";
};
- class Item322
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -10505,11 +6724,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1798;
type="Land_HelipadCircle_F";
};
- class Item323
+ class Item322
{
dataType="Object";
class PositionInfo
@@ -10521,11 +6741,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1799;
type="Land_HelipadSquare_F";
};
- class Item324
+ class Item323
{
dataType="Object";
class PositionInfo
@@ -10537,12 +6758,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1801;
type="Land_HelipadCircle_F";
atlOffset=1.335144e-005;
};
- class Item325
+ class Item324
{
dataType="Object";
class PositionInfo
@@ -10554,11 +6776,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1802;
type="Land_HelipadCircle_F";
+ atlOffset=-5.7220459e-006;
};
- class Item326
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -10570,11 +6794,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1803;
type="Land_HelipadCircle_F";
+ atlOffset=-5.7220459e-006;
};
- class Item327
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -10586,11 +6812,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1809;
type="Land_HelipadCircle_F";
+ atlOffset=-3.4332275e-005;
};
- class Item328
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -10602,11 +6830,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1810;
type="Land_HelipadCircle_F";
+ atlOffset=-0.58641291;
};
- class Item329
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -10618,12 +6848,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1811;
type="Land_HelipadCircle_F";
atlOffset=4.0769577e-005;
};
- class Item330
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -10635,11 +6866,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1813;
type="Land_HelipadCircle_F";
+ atlOffset=-1.5258789e-005;
};
- class Item331
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -10651,11 +6884,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1814;
type="Land_HelipadCircle_F";
};
- class Item332
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -10667,12 +6901,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1815;
type="Land_HelipadCircle_F";
atlOffset=2.2888184e-005;
};
- class Item333
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -10684,11 +6919,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1818;
type="Land_HelipadCircle_F";
};
- class Item334
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -10700,11 +6936,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1819;
type="Land_HelipadSquare_F";
+ atlOffset=-7.6293945e-006;
};
- class Item335
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -10716,11 +6954,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1821;
type="Land_HelipadCircle_F";
+ atlOffset=-1.7666759;
};
- class Item336
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -10732,11 +6972,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1822;
type="Land_HelipadCircle_F";
};
- class Item337
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -10747,12 +6988,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1825;
type="Land_HelipadCircle_F";
atlOffset=0.96735001;
};
- class Item338
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -10763,12 +7005,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1826;
type="Land_HelipadCircle_F";
atlOffset=0.80735016;
};
- class Item339
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -10780,11 +7023,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1827;
type="Land_HelipadCircle_F";
};
- class Item340
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -10796,11 +7040,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1828;
type="Land_HelipadCircle_F";
+ atlOffset=-0.00016021729;
};
- class Item341
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -10811,12 +7057,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1829;
type="Land_HelipadCircle_F";
atlOffset=0.25952148;
};
- class Item342
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -10828,12 +7075,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1833;
type="Land_HelipadCircle_F";
atlOffset=0.00011825562;
};
- class Item343
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -10844,12 +7092,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1835;
type="Land_HelipadCircle_F";
atlOffset=0.55281067;
};
- class Item344
+ class Item343
{
dataType="Layer";
name="Outposts";
@@ -12388,7 +8637,7 @@ class Mission
colorName="ColorGreen";
a=15.285;
b=6;
- angle=312.75592;
+ angle=312.75589;
id=2067;
atlOffset=-0.0001335144;
};
@@ -12396,7 +8645,7 @@ class Mission
id=1838;
atlOffset=77.531845;
};
- class Item345
+ class Item344
{
dataType="Marker";
position[]={14253.315,17.788271,15837.864};
@@ -12409,7 +8658,7 @@ class Mission
id=1842;
atlOffset=-0.11751556;
};
- class Item346
+ class Item345
{
dataType="Marker";
position[]={15347.249,17.269489,17057.338};
@@ -12422,7 +8671,7 @@ class Mission
id=1843;
atlOffset=-0.64051056;
};
- class Item347
+ class Item346
{
dataType="Marker";
position[]={14630.354,16.922852,16663.969};
@@ -12435,7 +8684,7 @@ class Mission
id=1844;
atlOffset=-0.98714828;
};
- class Item348
+ class Item347
{
dataType="Marker";
position[]={21150.047,21.595703,7171.021};
@@ -12448,7 +8697,7 @@ class Mission
id=1845;
atlOffset=-1.137167;
};
- class Item349
+ class Item348
{
dataType="Marker";
position[]={21180.377,18.380419,7536.7598};
@@ -12461,7 +8710,7 @@ class Mission
id=1846;
atlOffset=-0.41155434;
};
- class Item350
+ class Item349
{
dataType="Marker";
position[]={26809.674,20.055626,24839.627};
@@ -12474,7 +8723,7 @@ class Mission
id=1847;
atlOffset=-1.4739056;
};
- class Item351
+ class Item350
{
dataType="Object";
class PositionInfo
@@ -12486,11 +8735,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2018;
type="Land_HBarrier_Big_F";
};
- class Item352
+ class Item351
{
dataType="Object";
class PositionInfo
@@ -12502,11 +8752,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2019;
type="Land_HBarrier_Big_F";
};
- class Item353
+ class Item352
{
dataType="Object";
class PositionInfo
@@ -12518,11 +8769,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2020;
type="Land_HBarrier_Big_F";
};
- class Item354
+ class Item353
{
dataType="Object";
class PositionInfo
@@ -12534,11 +8786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2021;
type="Land_HBarrier_Big_F";
};
- class Item355
+ class Item354
{
dataType="Object";
class PositionInfo
@@ -12550,11 +8803,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2022;
type="Land_HBarrier_Big_F";
};
- class Item356
+ class Item355
{
dataType="Object";
class PositionInfo
@@ -12566,11 +8820,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2023;
type="Land_HBarrier_Big_F";
};
- class Item357
+ class Item356
{
dataType="Object";
class PositionInfo
@@ -12582,11 +8837,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2024;
type="Land_HBarrier_Big_F";
};
- class Item358
+ class Item357
{
dataType="Object";
class PositionInfo
@@ -12598,11 +8854,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2025;
type="Land_HBarrier_Big_F";
};
- class Item359
+ class Item358
{
dataType="Object";
class PositionInfo
@@ -12614,11 +8871,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2026;
type="Land_HBarrier_Big_F";
};
- class Item360
+ class Item359
{
dataType="Object";
class PositionInfo
@@ -12630,11 +8888,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2027;
type="Land_HBarrier_Big_F";
};
- class Item361
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -12646,11 +8905,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2028;
type="Land_HBarrier_Big_F";
};
- class Item362
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -12662,11 +8922,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2029;
type="Land_HBarrier_Big_F";
};
- class Item363
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -12678,12 +8939,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2030;
type="Land_HBarrier_Big_F";
atlOffset=6.4849854e-005;
};
- class Item364
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -12695,11 +8957,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2031;
type="Land_HBarrier_Big_F";
};
- class Item365
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -12711,11 +8974,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2032;
type="Land_HBarrier_Big_F";
};
- class Item366
+ class Item365
{
dataType="Object";
class PositionInfo
@@ -12727,11 +8991,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2033;
type="Land_HBarrier_Big_F";
};
- class Item367
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -12743,11 +9008,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2034;
type="Land_HBarrier_Big_F";
};
- class Item368
+ class Item367
{
dataType="Object";
class PositionInfo
@@ -12759,11 +9025,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2035;
type="Land_HBarrier_Big_F";
};
- class Item369
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -12775,11 +9042,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2036;
type="Land_HBarrier_Big_F";
};
- class Item370
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -12791,11 +9059,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2037;
type="Land_HBarrier_Big_F";
};
- class Item371
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -12807,11 +9076,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2038;
type="Land_HBarrier_Big_F";
};
- class Item372
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -12823,11 +9093,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2039;
type="Land_HBarrier_Big_F";
};
- class Item373
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -12839,11 +9110,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2040;
type="Land_HBarrier_Big_F";
};
- class Item374
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -12855,11 +9127,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2041;
type="Land_HBarrier_Big_F";
};
- class Item375
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -12871,11 +9144,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2042;
type="Land_HBarrier_Big_F";
};
- class Item376
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -12887,11 +9161,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2043;
type="Land_HBarrier_Big_F";
};
- class Item377
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -12903,11 +9178,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2044;
type="Land_HBarrier_Big_F";
};
- class Item378
+ class Item377
{
dataType="Object";
class PositionInfo
@@ -12923,7 +9199,7 @@ class Mission
id=2045;
type="Land_BarGate_F";
};
- class Item379
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -12939,7 +9215,7 @@ class Mission
id=2046;
type="Land_Cargo_Patrol_V1_F";
};
- class Item380
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -12951,11 +9227,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2047;
type="Land_HBarrier_Big_F";
};
- class Item381
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -12967,11 +9244,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2048;
type="Land_HBarrier_Big_F";
};
- class Item382
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -12983,11 +9261,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2049;
type="Land_HBarrier_Big_F";
};
- class Item383
+ class Item382
{
dataType="Object";
class PositionInfo
@@ -12999,11 +9278,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2050;
type="Land_HBarrier_Big_F";
};
- class Item384
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -13015,11 +9295,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2051;
type="Land_HBarrier_Big_F";
};
- class Item385
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -13031,11 +9312,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2052;
type="Land_HBarrier_Big_F";
};
- class Item386
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -13047,11 +9329,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2053;
type="Land_HBarrier_Big_F";
};
- class Item387
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -13067,7 +9350,7 @@ class Mission
id=2054;
type="Land_BarGate_F";
};
- class Item388
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -13083,7 +9366,7 @@ class Mission
id=2055;
type="Land_Cargo_Patrol_V1_F";
};
- class Item389
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -13099,7 +9382,7 @@ class Mission
id=2056;
type="Land_Cargo_Patrol_V1_F";
};
- class Item390
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -13115,7 +9398,7 @@ class Mission
id=2057;
type="Land_Cargo_House_V1_F";
};
- class Item391
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -13131,7 +9414,7 @@ class Mission
id=2058;
type="Land_Cargo_House_V1_F";
};
- class Item392
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -13147,7 +9430,7 @@ class Mission
id=2059;
type="Land_TTowerSmall_1_F";
};
- class Item393
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -13163,7 +9446,7 @@ class Mission
id=2060;
type="Land_TTowerSmall_2_F";
};
- class Item394
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -13179,57 +9462,63 @@ class Mission
id=2061;
type="Land_Cargo_Patrol_V1_F";
};
- class Item395
+ class Item394
{
dataType="Object";
class PositionInfo
{
position[]={14079.237,36.143406,22969.693};
- angles[]={0,0.8457005,0};
+ angles[]={0,0.84569931,0};
};
side="Empty";
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2062;
type="Land_Cargo40_military_green_F";
atlOffset=-0.0017242432;
};
- class Item396
+ class Item395
{
dataType="Object";
class PositionInfo
{
position[]={14077.167,36.137745,22967.902};
- angles[]={0,0.8457005,0};
+ angles[]={0,0.84569931,0};
};
side="Empty";
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2063;
type="Land_Cargo40_military_green_F";
atlOffset=-0.0065155029;
};
- class Item397
+ class Item396
{
dataType="Object";
class PositionInfo
{
position[]={14078.302,38.766918,22968.865};
- angles[]={0,0.8457005,0};
+ angles[]={0,0.84569931,0};
};
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2064;
type="Land_Cargo40_military_green_F";
atlOffset=2.6157455;
};
- class Item398
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -13245,7 +9534,7 @@ class Mission
id=2065;
type="Land_Medevac_house_V1_F";
};
- class Item399
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -13257,11 +9546,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2068;
type="Land_HelipadCircle_F";
+ atlOffset=-1.4862022;
};
- class Item400
+ class Item399
{
dataType="Marker";
position[]={23151.998,3.1900001,18710.371};
@@ -13273,7 +9564,7 @@ class Mission
angle=35.229828;
id=2069;
};
- class Item401
+ class Item400
{
dataType="Marker";
position[]={26907.941,19.783936,24787.373};
@@ -13286,7 +9577,7 @@ class Mission
id=2070;
atlOffset=-0.27813339;
};
- class Item402
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -13303,7 +9594,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=1.9073486e-006;
};
- class Item403
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -13311,61 +9602,918 @@ class Mission
position[]={27154.068,29.099325,25006.623};
angles[]={0,3.1593726,0};
};
- side="Empty";
- flags=5;
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2072;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=5.531311e-005;
+ };
+ class Item403
+ {
+ dataType="Marker";
+ position[]={9083.5059,16.686979,21513.898};
+ name="detectPlayer_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=137.24051;
+ b=229.81824;
+ angle=53.608429;
+ id=2073;
+ atlOffset=0.76835632;
+ };
+ class Item404
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3596.8462,16.245623,10281.467};
+ };
+ name="HC_commanderX";
+ id=2074;
+ type="HighCommand";
+ atlOffset=-0.25428963;
+ };
+ class Item405
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3600.2461,16.245623,10281.371};
+ };
+ id=2075;
+ type="HighCommandSubordinate";
+ atlOffset=0.22619057;
+ };
+ class Item406
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=38;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3611.1216,14.951613,10278.536};
+ };
+ side="Independent";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2077;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-0.44756603;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.9165,15.390531,10275.833};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2078;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.23984337;
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3616.0552,15.394004,10278.069};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2079;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.22537708;
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.9976,15.357925,10280.403};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2080;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.16194534;
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.8345,15.26186,10282.716};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2081;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.045625687;
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.7935,15.171802,10285.171};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2082;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-0.18462944;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.6079,15.052153,10287.486};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2083;
+ type="I_G_Soldier_F";
+ atlOffset=-0.4460516;
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3615.4009,14.924973,10289.382};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2084;
+ type="I_G_Soldier_F";
+ atlOffset=-0.69289207;
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.2759,15.601477,10275.957};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2085;
+ type="I_G_Soldier_F";
+ atlOffset=0.55012512;
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.2749,15.592041,10278.296};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2086;
+ type="I_G_Soldier_F";
+ atlOffset=0.51570892;
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.1685,15.543119,10280.67};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2087;
+ type="I_G_Soldier_F";
+ atlOffset=0.46614361;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3618.1099,15.460299,10282.87};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2088;
+ type="I_G_Soldier_F";
+ atlOffset=0.38410473;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3617.9067,15.332737,10285.292};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2089;
+ type="I_G_Soldier_F";
+ atlOffset=0.10762024;
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3617.7192,15.18074,10287.623};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2090;
+ type="I_G_Soldier_F";
+ atlOffset=-0.17505169;
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.3843,15.790287,10275.993};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2091;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.82851601;
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.5464,15.795074,10278.433};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2092;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.84661198;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.146,15.713996,10280.849};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2093;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.76836109;
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3620.1226,15.614005,10282.997};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2094;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.66218662;
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3619.9224,15.466564,10285.238};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2095;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.38076019;
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3619.8354,15.313412,10287.697};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2096;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.18226337;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3622.4731,15.977149,10276.073};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2097;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.1262426;
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3622.3433,15.956235,10278.391};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2098;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.1246681;
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3622.2192,15.861652,10281.135};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2099;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.0549059;
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3622.0454,15.729821,10283.144};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2100;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.90120506;
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.9761,15.594293,10285.328};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2101;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.72624016;
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.8706,15.43797,10287.819};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2102;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.52212715;
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3624.0005,15.978456,10276.15};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2103;
+ type="I_G_medic_F";
+ atlOffset=1.1882639;
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.8247,15.96973,10278.431};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2104;
+ type="I_G_medic_F";
+ atlOffset=1.2000971;
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.7827,15.874046,10281.302};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2105;
+ type="I_G_medic_F";
+ atlOffset=1.1367235;
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.6948,15.765423,10283.108};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2106;
+ type="I_G_medic_F";
+ atlOffset=1.0144587;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.5112,15.6234,10285.468};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2107;
+ type="I_G_medic_F";
+ atlOffset=0.83342648;
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3623.522,15.478828,10287.878};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2108;
+ type="I_G_medic_F";
+ atlOffset=0.65377235;
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.8022,15.974913,10276.315};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2109;
+ type="I_G_engineer_F";
+ atlOffset=1.2563658;
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.8257,15.974535,10278.616};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2110;
+ type="I_G_engineer_F";
+ atlOffset=1.2845001;
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.5835,15.872133,10281.405};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2111;
+ type="I_G_engineer_F";
+ atlOffset=1.1777554;
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.3286,15.754671,10283.354};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2112;
+ type="I_G_engineer_F";
+ atlOffset=1.0393324;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.1333,15.620001,10285.59};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2113;
+ type="I_G_engineer_F";
+ atlOffset=0.86717224;
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3625.0288,15.471598,10288.06};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2114;
+ type="I_G_engineer_F";
+ atlOffset=0.68074989;
+ };
+ };
class Attributes
{
};
- id=2072;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=5.531311e-005;
- };
- class Item404
- {
- dataType="Marker";
- position[]={9100.9619,16.686979,21505.963};
- name="detectPlayer_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=120.49665;
- b=220.47403;
- angle=53.608429;
- id=2073;
- atlOffset=0.051624298;
- };
- class Item405
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3596.8462,16.245623,10281.467};
- };
- name="HC_commanderX";
- id=2074;
- type="HighCommand";
- atlOffset=-0.25428963;
- };
- class Item406
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3600.2461,16.245623,10281.371};
- };
- id=2075;
- type="HighCommandSubordinate";
- atlOffset=0.22619057;
+ id=2076;
+ atlOffset=-0.44756603;
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -13379,7 +10527,7 @@ class Mission
class Item1
{
linkID=1;
- item0=1013;
+ item0=2077;
item1=2074;
class CustomData
{
@@ -13389,7 +10537,7 @@ class Mission
class Item2
{
linkID=2;
- item0=1014;
+ item0=2078;
item1=2074;
class CustomData
{
@@ -13399,7 +10547,7 @@ class Mission
class Item3
{
linkID=3;
- item0=1020;
+ item0=2079;
item1=2074;
class CustomData
{
@@ -13409,7 +10557,7 @@ class Mission
class Item4
{
linkID=4;
- item0=1022;
+ item0=2080;
item1=2074;
class CustomData
{
@@ -13419,7 +10567,7 @@ class Mission
class Item5
{
linkID=5;
- item0=1024;
+ item0=2081;
item1=2074;
class CustomData
{
@@ -13429,7 +10577,7 @@ class Mission
class Item6
{
linkID=6;
- item0=1026;
+ item0=2082;
item1=2074;
class CustomData
{
@@ -13439,7 +10587,7 @@ class Mission
class Item7
{
linkID=7;
- item0=1028;
+ item0=2083;
item1=2074;
class CustomData
{
@@ -13449,7 +10597,7 @@ class Mission
class Item8
{
linkID=8;
- item0=1030;
+ item0=2084;
item1=2074;
class CustomData
{
@@ -13459,7 +10607,7 @@ class Mission
class Item9
{
linkID=9;
- item0=1032;
+ item0=2085;
item1=2074;
class CustomData
{
@@ -13469,7 +10617,7 @@ class Mission
class Item10
{
linkID=10;
- item0=1034;
+ item0=2086;
item1=2074;
class CustomData
{
@@ -13479,7 +10627,7 @@ class Mission
class Item11
{
linkID=11;
- item0=1036;
+ item0=2087;
item1=2074;
class CustomData
{
@@ -13489,7 +10637,7 @@ class Mission
class Item12
{
linkID=12;
- item0=1038;
+ item0=2088;
item1=2074;
class CustomData
{
@@ -13499,7 +10647,7 @@ class Mission
class Item13
{
linkID=13;
- item0=1040;
+ item0=2089;
item1=2074;
class CustomData
{
@@ -13509,7 +10657,7 @@ class Mission
class Item14
{
linkID=14;
- item0=1042;
+ item0=2090;
item1=2074;
class CustomData
{
@@ -13519,7 +10667,7 @@ class Mission
class Item15
{
linkID=15;
- item0=1046;
+ item0=2091;
item1=2074;
class CustomData
{
@@ -13529,7 +10677,7 @@ class Mission
class Item16
{
linkID=16;
- item0=1048;
+ item0=2092;
item1=2074;
class CustomData
{
@@ -13539,7 +10687,7 @@ class Mission
class Item17
{
linkID=17;
- item0=1050;
+ item0=2093;
item1=2074;
class CustomData
{
@@ -13549,7 +10697,7 @@ class Mission
class Item18
{
linkID=18;
- item0=1052;
+ item0=2094;
item1=2074;
class CustomData
{
@@ -13559,7 +10707,7 @@ class Mission
class Item19
{
linkID=19;
- item0=1054;
+ item0=2095;
item1=2074;
class CustomData
{
@@ -13569,7 +10717,7 @@ class Mission
class Item20
{
linkID=20;
- item0=1058;
+ item0=2096;
item1=2074;
class CustomData
{
@@ -13579,7 +10727,7 @@ class Mission
class Item21
{
linkID=21;
- item0=1060;
+ item0=2097;
item1=2074;
class CustomData
{
@@ -13589,7 +10737,7 @@ class Mission
class Item22
{
linkID=22;
- item0=1062;
+ item0=2098;
item1=2074;
class CustomData
{
@@ -13599,7 +10747,7 @@ class Mission
class Item23
{
linkID=23;
- item0=1064;
+ item0=2099;
item1=2074;
class CustomData
{
@@ -13609,7 +10757,7 @@ class Mission
class Item24
{
linkID=24;
- item0=1066;
+ item0=2100;
item1=2074;
class CustomData
{
@@ -13619,7 +10767,7 @@ class Mission
class Item25
{
linkID=25;
- item0=1044;
+ item0=2101;
item1=2074;
class CustomData
{
@@ -13629,7 +10777,7 @@ class Mission
class Item26
{
linkID=26;
- item0=1056;
+ item0=2102;
item1=2074;
class CustomData
{
@@ -13639,7 +10787,7 @@ class Mission
class Item27
{
linkID=27;
- item0=1417;
+ item0=2103;
item1=2074;
class CustomData
{
@@ -13649,7 +10797,7 @@ class Mission
class Item28
{
linkID=28;
- item0=1419;
+ item0=2104;
item1=2074;
class CustomData
{
@@ -13659,7 +10807,7 @@ class Mission
class Item29
{
linkID=29;
- item0=1421;
+ item0=2105;
item1=2074;
class CustomData
{
@@ -13669,7 +10817,7 @@ class Mission
class Item30
{
linkID=30;
- item0=1423;
+ item0=2106;
item1=2074;
class CustomData
{
@@ -13679,7 +10827,7 @@ class Mission
class Item31
{
linkID=31;
- item0=1425;
+ item0=2107;
item1=2074;
class CustomData
{
@@ -13689,7 +10837,7 @@ class Mission
class Item32
{
linkID=32;
- item0=1427;
+ item0=2108;
item1=2074;
class CustomData
{
@@ -13699,7 +10847,7 @@ class Mission
class Item33
{
linkID=33;
- item0=1429;
+ item0=2109;
item1=2074;
class CustomData
{
@@ -13709,7 +10857,7 @@ class Mission
class Item34
{
linkID=34;
- item0=1431;
+ item0=2110;
item1=2074;
class CustomData
{
@@ -13719,7 +10867,7 @@ class Mission
class Item35
{
linkID=35;
- item0=1433;
+ item0=2111;
item1=2074;
class CustomData
{
@@ -13729,7 +10877,7 @@ class Mission
class Item36
{
linkID=36;
- item0=1435;
+ item0=2112;
item1=2074;
class CustomData
{
@@ -13739,7 +10887,7 @@ class Mission
class Item37
{
linkID=37;
- item0=1437;
+ item0=2113;
item1=2074;
class CustomData
{
@@ -13749,227 +10897,7 @@ class Mission
class Item38
{
linkID=38;
- item0=1439;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=1498;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=1500;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=1502;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=1504;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=1506;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=1508;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=1510;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=1512;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=1514;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=1516;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=1518;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=1520;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=1522;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=1524;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=1526;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=1528;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=1530;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=1532;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=1016;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=1017;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=1018;
- item1=2074;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=1015;
+ item0=2114;
item1=2074;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm b/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm
index b415f70bfa..a1d85ead76 100644
--- a/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm
+++ b/Map-Templates/Antistasi-Anizay.tem_anizay/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1025;
class ItemIDProvider
{
- nextID=2638;
+ nextID=2700;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=163;
+ nextID=213;
};
class Camera
{
- pos[]={4529.8794,285.65625,3572.1687};
- dir[]={-0.559551,-0.75248569,0.34744111};
- up[]={-0.63928288,0.65858829,0.39694855};
- aside[]={0.52752161,-3.8635335e-008,0.84956974};
+ pos[]={4484.001,230.33473,3601.7454};
+ dir[]={-0.43830523,-0.87096131,0.22222641};
+ up[]={-0.77682322,0.49135727,0.39385739};
+ aside[]={0.45222646,-1.5030673e-007,0.89194578};
};
};
binarizationWanted=0;
@@ -34,7 +34,6 @@ addons[]=
"A3_Modules_F",
"A3_Characters_F",
"A3_Modules_F_Hc",
- "A3_Weapons_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Mil_Flags",
"A3_Modules_F_Curator_Curator",
@@ -50,18 +49,15 @@ addons[]=
"A3_Structures_F_Heli_Furniture",
"A3_Structures_F_EPA_Civ_Constructions",
"A3_Structures_F_Walls",
- "A3_Structures_F_Enoch_Military_Camps",
"A3_Structures_F_Civ_Lamps",
- "A3_Structures_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Heli_Ind_Machines",
- "A3_Props_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Enoch_Military_Radar",
- "A3_Structures_F_Mil_Cargo",
"A3_Structures_F_Mil_Helipads",
"A3_Supplies_F_Heli_Bladders",
"A3_Ui_F_Exp",
"A3_Characters_F_Exp",
"A3_Structures_F_Exp_Military_Flags",
+ "A3_Structures_F_Mil_Cargo",
"A3_Structures_F_Ind_Transmitter_Tower",
"A3_Structures_F_Mil_BagBunker",
"A3_Structures_F_Civ_Camping",
@@ -77,13 +73,14 @@ addons[]=
"CUP_CAMisc",
"CUP_CAStructures_PMC_FuelStation",
"A3_Structures_F_Kart_Mil_Flags",
- "CUP_CAStructuresHouse_A_FuelStation"
+ "CUP_CAStructuresHouse_A_FuelStation",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
class List
{
- items=29;
+ items=27;
class Item0
{
className="A3_Ui_F";
@@ -176,97 +173,83 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item13
- {
- className="A3_Structures_F_Orange";
- name="Arma 3 Orange - Buildings and Structures";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item14
- {
- className="A3_Props_F_Orange";
- name="Arma 3 Orange - Decorative and Mission Objects";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item15
{
className="A3_Supplies_F_Heli";
name="Arma 3 Helicopters - Ammoboxes and Supplies";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item16
+ class Item14
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item17
+ class Item15
{
className="A3_Characters_F_Exp";
name="Arma 3 Apex - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item18
+ class Item16
{
className="A3_Structures_F_Exp";
name="Arma 3 Apex - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item19
+ class Item17
{
className="CUP_CAStructures_E_Ind_Misc_PowerStation";
name="CUP_CAStructures_E_Ind_Misc_PowerStation";
};
- class Item20
+ class Item18
{
className="CUP_CAStructures_E_HouseC";
name="CUP_CAStructures_E_HouseC";
};
- class Item21
+ class Item19
{
className="CUP_CAStructures_E_Misc";
name="CUP_CAStructures_E_Misc";
};
- class Item22
+ class Item20
{
className="CUP_CAStructures_E_Mil";
name="CUP_CAStructures_E_Mil";
};
- class Item23
+ class Item21
{
className="CUP_CAStructures_E_Wall_Wall_L";
name="CUP_CAStructures_E_Wall_Wall_L";
};
- class Item24
+ class Item22
{
className="A3_Signs_F";
name="Arma 3 - Signs";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item25
+ class Item23
{
className="CUP_CAMisc";
name="CUP_CAMisc";
};
- class Item26
+ class Item24
{
className="CUP_CAStructures_PMC_FuelStation";
name="CUP_CAStructures_PMC_FuelStation";
};
- class Item27
+ class Item25
{
className="A3_Structures_F_Kart";
name="Arma 3 Karts - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item28
+ class Item26
{
className="CUP_CAStructuresHouse_A_FuelStation";
name="CUP_CAStructuresHouse_A_FuelStation";
@@ -281,24 +264,14 @@ class Mission
{
briefingName=$STR_antistasi_mission_info_anizay_mapname_text;
resistanceWest=0;
- timeOfChanges=1800.0002;
- startWeather=0;
- startWind=0.10000001;
- startWaves=0.1;
- forecastWeather=0;
- forecastWind=0.1;
- forecastWaves=0.1;
- forecastLightnings=0.1;
year=2018;
month=7;
day=2;
hour=12;
- startFogDecay=0.014;
- forecastFogDecay=0.014;
};
class Entities
{
- items=870;
+ items=861;
class Item0
{
dataType="Layer";
@@ -602,7 +575,7 @@ class Mission
colorName="ColorGreen";
a=7.7494531;
b=12.772196;
- angle=12.947085;
+ angle=12.947083;
id=801;
atlOffset=0.023376465;
};
@@ -657,7 +630,7 @@ class Mission
colorName="ColorGUER";
a=52.454731;
b=41.750999;
- angle=13.567805;
+ angle=13.567803;
id=806;
atlOffset=-0.0062637329;
};
@@ -685,7 +658,7 @@ class Mission
colorName="ColorGUER";
a=54.500015;
b=56.263123;
- angle=328.50308;
+ angle=328.50305;
id=810;
atlOffset=-3.7432404;
};
@@ -1158,7 +1131,7 @@ class Mission
colorName="ColorOrange";
a=59.402908;
b=60.699497;
- angle=13.536361;
+ angle=13.536359;
id=890;
atlOffset=-1.8619385;
};
@@ -1172,7 +1145,7 @@ class Mission
colorName="ColorGreen";
a=10;
b=6;
- angle=27.656986;
+ angle=27.656982;
id=897;
atlOffset=1.0401154;
};
@@ -1675,32 +1648,24 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={4448.9102,190.20132,3599.4604};
- angles[]={6.2232571,0,6.2691903};
+ position[]={4443.1152,190.60461,3603.0698};
+ angles[]={6.2033539,2.1016905,6.245204};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ name="petros";
};
- id=705;
+ id=766;
type="I_G_officer_F";
+ atlOffset=-1.5258789e-005;
class CustomAttributes
{
class Attribute0
@@ -1718,7 +1683,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -1741,38 +1706,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4456.2725,189.97711,3595.896};
- angles[]={6.2292376,6.2412972,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=706;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -1784,5005 +1721,1077 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ value="";
};
};
};
- nAttributes=2;
+ nAttributes=3;
};
};
- class Item2
+ };
+ class Attributes
+ {
+ };
+ id=765;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4446.6475,192.37035,3614.208};
+ angles[]={6.2113094,0,6.219274};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=767;
+ type="MapBoard_seismic_F";
+ atlOffset=-0.00053405762;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4467.7334,190.04243,3602.0483};
- angles[]={6.2511988,6.2412972,6.2491965};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=707;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item3
+ nAttributes=1;
+ };
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4450.5488,194.98672,3612.1245};
+ angles[]={6.2113094,0,6.2412086};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=768;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4466.9785,190.07692,3602.3237};
- angles[]={6.2511988,0,6.2491965};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=708;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
+ "BOOL"
};
};
+ value=0;
};
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
};
- class Item4
+ nAttributes=1;
+ };
+ };
+ class Item25
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4442.7266,189.93709,3592.6211};
+ angles[]={6.2232599,0,6.2611909};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=769;
+ type="HeadlessClient_F";
+ atlOffset=0.099807739;
+ };
+ class Item26
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4444.5742,189.73697,3591.627};
+ angles[]={6.2232599,0,6.2611909};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=770;
+ type="HeadlessClient_F";
+ atlOffset=-1.5258789e-005;
+ };
+ class Item27
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4472.0566,189.42114,3594.0078};
+ angles[]={6.2013679,0,6.2212658};
+ };
+ id=771;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4469.9082,189.97354,3601.9761};
- angles[]={6.2471995,0,6.2531958};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=709;
- type="I_G_medic_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
+ "STRING"
};
};
+ value="#adminLogged";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item5
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4472.8066,189.84813,3602.1558};
- angles[]={6.2471995,0,6.2372193};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=710;
- type="I_G_engineer_F";
- class CustomAttributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "STRING"
};
};
+ value="";
};
- class Attribute1
+ };
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
+ "SCALAR"
};
};
+ value=3;
};
- nAttributes=2;
};
};
- class Item6
+ nAttributes=4;
+ };
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4436.377,192.34113,3611.4917};
+ angles[]={6.1736255,1.0016968,6.2212658};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=772;
+ type="Land_TentSolar_01_olive_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4475.7949,189.67661,3602.3745};
- angles[]={6.2372193,0,6.1558776};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=711;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "BOOL"
};
};
+ value=0;
};
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
};
- class Item7
+ nAttributes=1;
+ };
+ };
+ class Item29
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4452.5742,189.6521,3590.4492};
+ angles[]={6.2232571,0,0.0019834081};
+ };
+ name="pathFinding";
+ id=773;
+ type="Logic";
+ };
+ class Item30
+ {
+ dataType="Marker";
+ position[]={8385.1416,110.13867,6670.5601};
+ name="spawnPoint_1";
+ type="hd_start";
+ id=774;
+ atlOffset=-0.59091949;
+ };
+ class Item31
+ {
+ dataType="Marker";
+ position[]={719.8089,137.07715,4622.2583};
+ name="spawnPoint_2";
+ type="hd_start";
+ angle=84.683006;
+ id=780;
+ atlOffset=-7.109848;
+ };
+ class Item32
+ {
+ dataType="Marker";
+ position[]={3189.446,143.52148,8383.582};
+ name="spawnPoint_3";
+ type="hd_start";
+ id=786;
+ atlOffset=-1.2295227;
+ };
+ class Item33
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={966.16309,130.62363,4642.7285};
+ angles[]={0.035982672,2.7792044,6.2332263};
+ };
+ areaSize[]={113.49379,0,62.547222};
+ areaIsRectangle=1;
+ flags=1;
+ id=940;
+ type="ModuleHideTerrainObjects_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4461.4434,190.20978,3602.0269};
- angles[]={6.2491984,0,6.2631893};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=712;
- type="I_G_officer_F";
- class CustomAttributes
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "SCALAR"
};
};
+ value=15;
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item8
+ nAttributes=2;
+ };
+ };
+ class Item34
+ {
+ dataType="Layer";
+ name="Open Ammo Dump_4";
+ class Entities
+ {
+ items=24;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={4467.6299,190.14502,3604.8413};
- angles[]={6.2471995,6.2412972,6.2531958};
+ position[]={931.69635,131.11131,4637.8047};
+ angles[]={0.0080009829,2.769927,6.2651882};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=713;
- type="I_G_Soldier_AR_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=942;
+ type="Land_BagFence_Short_F";
};
- class Item9
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={4466.875,190.17688,3605.1206};
- angles[]={6.2591896,0,6.2531958};
+ position[]={928.95978,131.17397,4636.6494};
+ angles[]={0.0080009829,2.769927,6.2611909};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=714;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=943;
+ type="Land_BagFence_Short_F";
};
- class Item10
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={4469.8047,190.07719,3604.769};
- angles[]={6.2471995,0,6.2531958};
+ position[]={932.46826,131.14261,4636.6333};
+ angles[]={0.0080009829,4.3136024,6.2651882};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=715;
- type="I_G_medic_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=944;
+ type="Land_Pallet_MilBoxes_F";
};
- class Item11
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={4472.7031,189.97946,3604.9487};
- angles[]={6.2372193,0,6.2471995};
+ position[]={929.62372,131.17941,4635.0381};
+ angles[]={0.0060001095,2.7632599,6.2631865};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=716;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=945;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00064086914;
};
- class Item12
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={4475.6914,189.85979,3605.1675};
- angles[]={6.2491965,0,6.2172837};
+ position[]={931.22144,131.47194,4634.7856};
+ angles[]={0.015998369,1.1879252,6.2651916};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=717;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=946;
+ type="Land_HBarrier_5_F";
+ atlOffset=-1.5258789e-005;
};
- class Item13
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={4461.3398,190.30472,3604.8237};
- angles[]={6.2511969,0,6.261188};
+ position[]={929.95569,131.18457,4634.1807};
+ angles[]={0.013999403,2.7804689,6.2631893};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=718;
- type="I_G_officer_F";
- class CustomAttributes
+ id=947;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00057983398;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ position[]={929.51202,131.20435,4633.3862};
+ angles[]={0.013999403,2.7319307,6.2631893};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=948;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00080871582;
};
- class Item14
+ class Item7
{
dataType="Object";
class PositionInfo
{
- position[]={4466.875,190.24889,3608.1206};
- angles[]={6.2591896,0,6.2531958};
+ position[]={930.28906,131.19183,4633.2612};
+ angles[]={0.013999403,2.7698212,6.2671871};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=719;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ id=949;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00065612793;
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ position[]={933.6474,131.1519,4633.9087};
+ angles[]={0.015998369,2.769927,6.2651916};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=950;
+ type="Land_Pallet_MilBoxes_F";
+ atlOffset=-1.5258789e-005;
};
- class Item15
+ class Item9
{
dataType="Object";
class PositionInfo
{
- position[]={4469.8047,190.15263,3607.7729};
- angles[]={6.259192,0,6.2531939};
+ position[]={935.95178,131.02148,4639.4385};
+ angles[]={0.011995304,2.769927,6.2731848};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=720;
- type="I_G_medic_F";
+ id=951;
+ type="Land_BagFence_Short_F";
atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
};
- class Item16
+ class Item10
{
dataType="Object";
class PositionInfo
{
- position[]={4472.7031,190.05969,3607.9487};
- angles[]={6.2491965,0,6.2571931};
+ position[]={936.24957,131.22346,4638.3584};
+ angles[]={0.010000871,2.769927,6.2751846};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=721;
- type="I_G_engineer_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=952;
+ type="Land_PaperBox_open_empty_F";
};
- class Item17
+ class Item11
{
dataType="Object";
class PositionInfo
{
- position[]={4475.6914,189.96193,3608.1714};
- angles[]={6.2491965,0,6.2172837};
+ position[]={929.94318,131.20842,4632.4746};
+ angles[]={0.013999403,2.7563477,6.2631893};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=722;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
+ id=953;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00088500977;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
+ position[]={930.72803,131.19942,4632.1997};
+ angles[]={0.013999403,2.7612171,6.2671871};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=954;
+ type="Land_MetalBarrel_F";
+ atlOffset=-0.00091552734;
};
- class Item18
+ class Item13
{
dataType="Object";
class PositionInfo
{
- position[]={4461.3398,190.40071,3607.8237};
- angles[]={6.251195,0,6.261188};
+ position[]={924.8623,131.26778,4635.0879};
+ angles[]={6.2812018,2.769927,6.259192};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=723;
- type="I_G_officer_F";
- class CustomAttributes
+ id=955;
+ type="Land_BagFence_Short_F";
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ position[]={936.85724,131.26912,4636.9229};
+ angles[]={0.010000871,2.769927,6.2751846};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=956;
+ type="Land_PaperBox_closed_F";
};
- class Item19
+ class Item15
{
dataType="Object";
class PositionInfo
{
- position[]={4466.7715,190.31404,3610.7065};
- angles[]={6.259192,0,6.2531939};
+ position[]={924.99512,131.42583,4634.0249};
+ angles[]={0.0099949092,2.8308764,6.259192};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=724;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=957;
+ type="Land_WaterBarrel_F";
+ atlOffset=-0.00099182129;
};
- class Item20
+ class Item16
{
dataType="Object";
class PositionInfo
{
- position[]={4469.7012,190.21779,3610.3589};
- angles[]={6.2591896,0,6.2531958};
+ position[]={932.71344,131.49573,4631.5264};
+ angles[]={0.013999403,2.769927,6.2671871};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
+ disableSimulation=1;
};
- id=725;
- type="I_G_medic_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
+ id=958;
+ type="Land_HBarrier_5_F";
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
+ position[]={926.39087,131.54163,4631.894};
+ angles[]={0.0099949092,1.1648692,6.2671909};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=959;
+ type="Land_WaterTank_F";
+ atlOffset=-0.0022277832;
};
- class Item21
+ class Item18
{
dataType="Object";
class PositionInfo
{
- position[]={4472.5996,190.14557,3610.5386};
- angles[]={6.2591872,0,6.2571931};
+ position[]={937.43915,131.36868,4635.3604};
+ angles[]={0.010000871,2.7572556,6.2751846};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
+ skill=0.2;
};
- id=726;
- type="I_G_engineer_F";
- class CustomAttributes
+ id=960;
+ type="Land_CargoBox_V1_F";
+ atlOffset=-0.00057983398;
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
+ position[]={938.40802,131.34514,4637.6055};
+ angles[]={0.011995304,1.1879252,6.2731848};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ disableSimulation=1;
};
+ id=961;
+ type="Land_HBarrier_5_F";
+ atlOffset=-1.5258789e-005;
};
- class Item22
+ class Item20
{
dataType="Object";
class PositionInfo
{
- position[]={4475.5879,190.07831,3610.7573};
- angles[]={6.2551904,0,6.261188};
+ position[]={924.3493,131.63579,4632.0332};
+ angles[]={0.0099949092,1.1879252,6.259192};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=727;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=962;
+ type="Land_HBarrier_5_F";
};
- class Item23
+ class Item21
{
dataType="Object";
class PositionInfo
{
- position[]={4461.2363,190.47729,3610.4097};
- angles[]={6.2472029,0,6.2531958};
+ position[]={937.84467,131.40062,4633.5693};
+ angles[]={0.015998369,2.769927,6.2751846};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=728;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=963;
+ type="Land_HBarrier_5_F";
+ atlOffset=-1.5258789e-005;
};
- class Item24
+ class Item22
{
dataType="Object";
class PositionInfo
{
- position[]={4467.7295,190.21935,3607.9585};
- angles[]={6.259192,6.1574922,6.2531939};
+ position[]={927.63428,131.60651,4629.5474};
+ angles[]={0.01799392,2.769927,6.2671909};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
+ disableSimulation=1;
};
- id=729;
- type="I_G_Soldier_AR_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
+ id=964;
+ type="Land_HBarrier_5_F";
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ position[]={931.25403,134.3576,4634.353};
+ angles[]={0,2.7699249,0};
};
+ side="Empty";
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=2678;
+ type="CamoNet_OPFOR_open_F";
+ atlOffset=1.0665131;
};
- class Item25
+ };
+ id=941;
+ atlOffset=0.46556091;
+ };
+ class Item35
+ {
+ dataType="Layer";
+ name="Vehicle Repair_4";
+ class Entities
+ {
+ items=15;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={4467.8232,190.27861,3610.5444};
- angles[]={6.259192,0,6.2531939};
+ position[]={1014.5587,127.06186,4668.3569};
+ angles[]={6.2751918,2.78864,6.2491984};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=730;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ id=967;
+ type="Land_ClutterCutter_large_F";
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ position[]={1013.7539,128.37816,4671.2236};
+ angles[]={6.2412086,2.6896801,6.2491965};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=968;
+ type="Land_Scrap_MRAP_01_F";
};
- class Item26
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={4467.1035,190.36707,3613.3315};
- angles[]={6.2591896,0,6.2531958};
+ position[]={1013.6198,127.77195,4665.6162};
+ angles[]={6.2811723,4.3908281,6.2432065};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=731;
- type="I_G_Soldier_LAT_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
+ id=969;
+ type="Land_WeldingTrolley_01_F";
+ atlOffset=-0.00061035156;
};
- class Item27
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={4470.0332,190.27098,3612.9839};
- angles[]={6.2591872,0,6.2571931};
+ position[]={1016.3259,127.47793,4666.4375};
+ angles[]={6.2751846,2.8095417,6.2452054};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
};
- id=732;
- type="I_G_medic_F";
- class CustomAttributes
+ id=970;
+ type="Land_Workbench_01_F";
+ atlOffset=-0.00029754639;
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
+ position[]={1011.8265,128.23141,4665.332};
+ angles[]={0,3.3685646,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=971;
+ type="Land_PortableLight_double_F";
+ atlOffset=-7.6293945e-006;
};
- class Item28
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={4472.9316,190.20413,3613.1636};
- angles[]={6.2551904,0,6.261188};
+ position[]={1009.3772,127.98795,4666.2681};
+ angles[]={6.2811723,4.3766074,6.2432079};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
+ skill=0.2;
+ disableSimulation=1;
};
- id=733;
- type="I_G_engineer_F";
- class CustomAttributes
+ id=972;
+ type="Land_HBarrier_5_F";
+ atlOffset=-7.6293945e-006;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
+ position[]={1018.051,128.01573,4667.8252};
+ angles[]={0,2.4332561,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ skill=0.2;
};
+ id=973;
+ type="Land_PortableLight_double_F";
};
- class Item29
+ class Item7
{
dataType="Object";
class PositionInfo
{
- position[]={4475.9199,190.1445,3613.3823};
- angles[]={6.2551904,0,6.261188};
+ position[]={1008.2853,127.99966,4669.4878};
+ angles[]={6.2811723,4.3740973,6.2432079};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=734;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=974;
+ type="Land_HBarrier_1_F";
+ atlOffset=-1.5258789e-005;
};
- class Item30
+ class Item8
{
dataType="Object";
class PositionInfo
{
- position[]={4461.5684,190.56198,3613.0386};
- angles[]={6.2472029,0,6.2531958};
+ position[]={1013.0431,127.87197,4663.8149};
+ angles[]={0.027993103,5.9464121,6.2432065};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=735;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=975;
+ type="Land_HBarrier_5_F";
};
- class Item31
+ class Item9
{
dataType="Object";
class PositionInfo
{
- position[]={4468.1553,190.33173,3613.1733};
- angles[]={6.2591896,0,6.2531958};
+ position[]={1007.7922,128.04617,4670.8047};
+ angles[]={6.2511969,4.3740973,6.2432079};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=736;
- type="I_G_Soldier_AR_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
+ disableSimulation=1;
};
+ id=976;
+ type="Land_HBarrier_1_F";
+ atlOffset=7.6293945e-006;
};
- class Item32
+ class Item10
{
dataType="Object";
class PositionInfo
{
- position[]={4467.1777,190.45493,3616.4058};
- angles[]={6.2472029,0,6.2531958};
+ position[]={1019.1787,127.66415,4669.8101};
+ angles[]={6.269186,4.3766074,6.2511969};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
+ disableSimulation=1;
};
- id=737;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ id=977;
+ type="Land_HBarrier_5_F";
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ position[]={1018.3562,127.63904,4665.7568};
+ angles[]={6.2751846,5.9464121,6.2452054};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ disableSimulation=1;
};
+ id=978;
+ type="Land_HBarrier_5_F";
};
- class Item33
+ class Item12
{
dataType="Object";
class PositionInfo
{
- position[]={4470.1074,190.34932,3616.0581};
- angles[]={6.2531958,0,6.261188};
+ position[]={1018.1062,127.81612,4673.1216};
+ angles[]={6.229239,4.3740973,6.2591896};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
+ skill=0.2;
+ disableSimulation=1;
};
- id=738;
- type="I_G_medic_F";
- class CustomAttributes
+ id=979;
+ type="Land_HBarrier_1_F";
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
+ position[]={1017.7239,127.88657,4674.2563};
+ angles[]={6.229239,4.3740973,6.2591896};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ disableSimulation=1;
};
+ id=980;
+ type="Land_HBarrier_1_F";
+ atlOffset=7.6293945e-006;
};
- class Item34
+ class Item14
{
dataType="Object";
class PositionInfo
{
- position[]={4473.0059,190.29094,3616.2378};
- angles[]={6.2531958,0,6.261188};
+ position[]={1014.559,129.13177,4668.3569};
+ angles[]={6.2751913,2.96507,6.2492037};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=739;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4475.9941,190.24368,3616.4565};
- angles[]={6.2531977,0,6.2731905};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=740;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4461.6426,190.65919,3616.1128};
- angles[]={6.2392135,0,6.2412114};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=741;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4468.2295,190.41765,3616.2476};
- angles[]={6.2472029,0,6.2531958};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=742;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ skill=0.2;
};
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4464.209,190.66737,3619.394};
- angles[]={6.2472029,0,6.2332263};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=743;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4467.1406,190.54425,3619.0464};
- angles[]={6.2531958,0,6.2472029};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=744;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4470.0391,190.44574,3619.2222};
- angles[]={6.2531958,0,6.261188};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=745;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4473.0273,190.38666,3619.4448};
- angles[]={6.2531958,0,6.261188};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=746;
- type="I_G_Soldier_GL_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4458.6758,190.9469,3619.0972};
- angles[]={6.2392135,0,6.2172809};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=747;
- type="I_G_officer_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4465.2627,190.61409,3619.2319};
- angles[]={6.2472029,0,6.2531958};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=748;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4464.0605,190.8345,3622.6597};
- angles[]={6.2332263,0,6.2272439};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=749;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4466.9922,190.69261,3622.3081};
- angles[]={6.2332263,0,6.2472029};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=750;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4469.8906,190.57863,3622.4878};
- angles[]={6.2412114,0,6.2392135};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=751;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4472.8789,190.51537,3622.7065};
- angles[]={6.2491999,0,6.2531958};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=752;
- type="I_G_Soldier_GL_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4458.5273,191.13992,3622.3628};
- angles[]={6.2272439,0,6.2093177};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=753;
- type="I_G_officer_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4465.1143,190.76968,3622.4976};
- angles[]={6.2332263,0,6.2472029};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=754;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4462.875,191.03943,3625.4019};
- angles[]={6.2292366,0,6.2272449};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=755;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4465.8047,190.86621,3625.0542};
- angles[]={6.2372155,0,6.2392135};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=756;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4468.7031,190.74695,3625.2339};
- angles[]={6.2372155,0,6.2392135};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=757;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4468.8223,190.86305,3628.1187};
- angles[]={6.2432051,0,6.2332263};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=758;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4457.3398,191.38159,3625.1089};
- angles[]={6.2272439,0,6.2093177};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=759;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4463.9287,190.97188,3625.2437};
- angles[]={6.2292366,0,6.2272449};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=760;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4458.4473,189.97321,3595.8237};
- angles[]={6.2292376,0,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=761;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4461.4727,189.95149,3596.0815};
- angles[]={6.2352209,0,6.2631893};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=762;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4464.0586,189.91928,3596.4878};
- angles[]={6.2352209,0,6.2631893};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=763;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4455.5176,189.99199,3596.1714};
- angles[]={6.2292376,0,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- compass="ItemCompass";
- watch="ItemWatch";
- };
- };
- id=764;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=704;
- };
- class Item23
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4443.1152,190.60461,3603.0698};
- angles[]={6.2033539,2.1016905,6.245204};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=766;
- type="I_G_officer_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=765;
- atlOffset=-1.5258789e-005;
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4446.6475,192.37035,3614.208};
- angles[]={6.2113094,0,6.219274};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=767;
- type="MapBoard_seismic_F";
- atlOffset=-0.00053405762;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4450.5488,194.98672,3612.1245};
- angles[]={6.2113094,0,6.2412086};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=768;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item26
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={4442.7266,189.93709,3592.6211};
- angles[]={6.2232599,0,6.2611909};
- };
- name="hc_1";
- isPlayable=1;
- id=769;
- type="HeadlessClient_F";
- atlOffset=0.099807739;
- };
- class Item27
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={4444.5742,189.73697,3591.627};
- angles[]={6.2232599,0,6.2611909};
- };
- name="hc_2";
- isPlayable=1;
- id=770;
- type="HeadlessClient_F";
- atlOffset=-1.5258789e-005;
- };
- class Item28
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={4472.0566,189.42114,3594.0078};
- angles[]={6.2013679,0,6.2212658};
- };
- id=771;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4436.377,192.34113,3611.4917};
- angles[]={6.1736255,1.0016968,6.2212658};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=772;
- type="Land_TentSolar_01_olive_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item30
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={4452.5742,189.6521,3590.4492};
- angles[]={6.2232571,0,0.0019834081};
- };
- name="pathFinding";
- id=773;
- type="Logic";
- };
- class Item31
- {
- dataType="Marker";
- position[]={8385.1416,110.13867,6670.5601};
- name="spawnPoint_1";
- type="hd_start";
- id=774;
- atlOffset=-0.59091949;
- };
- class Item32
- {
- dataType="Marker";
- position[]={719.8089,137.07715,4622.2583};
- name="spawnPoint_2";
- type="hd_start";
- angle=84.683006;
- id=780;
- atlOffset=-7.109848;
- };
- class Item33
- {
- dataType="Marker";
- position[]={3189.446,143.52148,8383.582};
- name="spawnPoint_3";
- type="hd_start";
- id=786;
- atlOffset=-1.2295227;
- };
- class Item34
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={966.16309,130.62363,4642.7285};
- angles[]={0.035982672,2.7792044,6.2332263};
- };
- areaSize[]={113.49379,0,62.547222};
- areaIsRectangle=1;
- flags=1;
- id=940;
- type="ModuleHideTerrainObjects_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Layer";
- name="Open Ammo Dump_4";
- class Entities
- {
- items=24;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={931.69635,131.11131,4637.8047};
- angles[]={0.0080009829,2.769927,6.2651882};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=942;
- type="Land_BagFence_Short_F";
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={928.95978,131.17397,4636.6494};
- angles[]={0.0080009829,2.769927,6.2611909};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=943;
- type="Land_BagFence_Short_F";
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={932.46826,131.14261,4636.6333};
- angles[]={0.0080009829,4.3136024,6.2651882};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=944;
- type="Land_Pallet_MilBoxes_F";
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.62372,131.17941,4635.0381};
- angles[]={0.0060001095,2.7632599,6.2631865};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=945;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00064086914;
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={931.22144,131.47194,4634.7856};
- angles[]={0.015998369,1.1879252,6.2651916};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=946;
- type="Land_HBarrier_5_F";
- atlOffset=-1.5258789e-005;
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.95569,131.18457,4634.1807};
- angles[]={0.013999403,2.7804689,6.2631893};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=947;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00057983398;
- };
- class Item6
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.51202,131.20435,4633.3862};
- angles[]={0.013999403,2.7319307,6.2631893};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=948;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00080871582;
- };
- class Item7
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={930.28906,131.19183,4633.2612};
- angles[]={0.013999403,2.7698212,6.2671871};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=949;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00065612793;
- };
- class Item8
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={933.6474,131.1519,4633.9087};
- angles[]={0.015998369,2.769927,6.2651916};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=950;
- type="Land_Pallet_MilBoxes_F";
- atlOffset=-1.5258789e-005;
- };
- class Item9
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={935.95178,131.02148,4639.4385};
- angles[]={0.011995304,2.769927,6.2731848};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=951;
- type="Land_BagFence_Short_F";
- atlOffset=-1.5258789e-005;
- };
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={936.24957,131.22346,4638.3584};
- angles[]={0.010000871,2.769927,6.2751846};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=952;
- type="Land_PaperBox_open_empty_F";
- };
- class Item11
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.94318,131.20842,4632.4746};
- angles[]={0.013999403,2.7563477,6.2631893};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=953;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00088500977;
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={930.72803,131.19942,4632.1997};
- angles[]={0.013999403,2.7612171,6.2671871};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=954;
- type="Land_MetalBarrel_F";
- atlOffset=-0.00091552734;
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={924.8623,131.26778,4635.0879};
- angles[]={6.2812018,2.769927,6.259192};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=955;
- type="Land_BagFence_Short_F";
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={936.85724,131.26912,4636.9229};
- angles[]={0.010000871,2.769927,6.2751846};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=956;
- type="Land_PaperBox_closed_F";
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={924.99512,131.42583,4634.0249};
- angles[]={0.0099949092,2.8308764,6.259192};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=957;
- type="Land_WaterBarrel_F";
- atlOffset=-0.00099182129;
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={932.71344,131.49573,4631.5264};
- angles[]={0.013999403,2.769927,6.2671871};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=958;
- type="Land_HBarrier_5_F";
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={926.39087,131.54163,4631.894};
- angles[]={0.0099949092,1.1648692,6.2671909};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=959;
- type="Land_WaterTank_F";
- atlOffset=-0.0022277832;
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={937.43915,131.36868,4635.3604};
- angles[]={0.010000871,2.7572556,6.2751846};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=960;
- type="Land_CargoBox_V1_F";
- atlOffset=-0.00057983398;
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={938.40802,131.34514,4637.6055};
- angles[]={0.011995304,1.1879252,6.2731848};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=961;
- type="Land_HBarrier_5_F";
- atlOffset=-1.5258789e-005;
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={924.3493,131.63579,4632.0332};
- angles[]={0.0099949092,1.1879252,6.259192};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=962;
- type="Land_HBarrier_5_F";
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={937.84467,131.40062,4633.5693};
- angles[]={0.015998369,2.769927,6.2751846};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=963;
- type="Land_HBarrier_5_F";
- atlOffset=-1.5258789e-005;
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={927.63428,131.60651,4629.5474};
- angles[]={0.01799392,2.769927,6.2671909};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=964;
- type="Land_HBarrier_5_F";
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={931.25397,134.3576,4634.3525};
- angles[]={0,2.769927,0};
- };
- side="Empty";
- class Attributes
- {
- skill=0.2;
- };
- id=965;
- type="CamoNet_BLUFOR_open_F";
- atlOffset=1.0664825;
- };
- };
- id=941;
- atlOffset=1.22966;
- };
- class Item36
- {
- dataType="Layer";
- name="Vehicle Repair_4";
- class Entities
- {
- items=15;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1014.5587,127.06186,4668.3569};
- angles[]={6.2751918,2.78864,6.2491984};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=967;
- type="Land_ClutterCutter_large_F";
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1013.7539,128.37816,4671.2236};
- angles[]={6.2412086,2.6896801,6.2491965};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=968;
- type="Land_Scrap_MRAP_01_F";
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1013.6198,127.77195,4665.6162};
- angles[]={6.2811723,4.3908281,6.2432065};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=969;
- type="Land_WeldingTrolley_01_F";
- atlOffset=-0.00061035156;
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1016.3259,127.47793,4666.4375};
- angles[]={6.2751846,2.8095417,6.2452054};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=970;
- type="Land_Workbench_01_F";
- atlOffset=-0.00029754639;
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1011.8265,128.23141,4665.332};
- angles[]={0,3.3685646,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- skill=0.2;
- };
- id=971;
- type="Land_PortableLight_double_F";
- atlOffset=-7.6293945e-006;
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1009.3772,127.98795,4666.2681};
- angles[]={6.2811723,4.3766074,6.2432079};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=972;
- type="Land_HBarrier_5_F";
- atlOffset=-7.6293945e-006;
- };
- class Item6
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1018.051,128.01573,4667.8252};
- angles[]={0,2.4332561,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- skill=0.2;
- };
- id=973;
- type="Land_PortableLight_double_F";
- };
- class Item7
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1008.2853,127.99966,4669.4878};
- angles[]={6.2811723,4.3740973,6.2432079};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=974;
- type="Land_HBarrier_1_F";
- atlOffset=-1.5258789e-005;
- };
- class Item8
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1013.0431,127.87197,4663.8149};
- angles[]={0.027993103,5.9464121,6.2432065};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=975;
- type="Land_HBarrier_5_F";
- };
- class Item9
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1007.7922,128.04617,4670.8047};
- angles[]={6.2511969,4.3740973,6.2432079};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=976;
- type="Land_HBarrier_1_F";
- atlOffset=7.6293945e-006;
- };
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1019.1787,127.66415,4669.8101};
- angles[]={6.269186,4.3766074,6.2511969};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=977;
- type="Land_HBarrier_5_F";
- };
- class Item11
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1018.3562,127.63904,4665.7568};
- angles[]={6.2751846,5.9464121,6.2452054};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=978;
- type="Land_HBarrier_5_F";
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1018.1062,127.81612,4673.1216};
- angles[]={6.229239,4.3740973,6.2591896};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=979;
- type="Land_HBarrier_1_F";
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1017.7239,127.88657,4674.2563};
- angles[]={6.229239,4.3740973,6.2591896};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=980;
- type="Land_HBarrier_1_F";
- atlOffset=7.6293945e-006;
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1014.5587,129.13179,4668.3569};
- angles[]={6.2751918,2.9650755,6.2491984};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- skill=0.2;
- };
- id=981;
- type="CamoNet_BLUFOR_big_F";
- atlOffset=-7.6293945e-006;
+ id=2680;
+ type="CamoNet_OPFOR_big_F";
};
};
id=966;
- atlOffset=0.049041748;
+ atlOffset=0.032669067;
};
- class Item37
+ class Item36
{
dataType="Object";
class PositionInfo
@@ -6794,12 +2803,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=982;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item38
+ class Item37
{
dataType="Object";
class PositionInfo
@@ -6811,11 +2821,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=983;
type="Land_HBarrier_5_F";
};
- class Item39
+ class Item38
{
dataType="Object";
class PositionInfo
@@ -6827,11 +2838,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=984;
type="Land_HBarrier_Big_F";
};
- class Item40
+ class Item39
{
dataType="Object";
class PositionInfo
@@ -6843,11 +2855,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=985;
type="Land_HBarrier_5_F";
};
- class Item41
+ class Item40
{
dataType="Object";
class PositionInfo
@@ -6859,11 +2872,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=986;
type="Land_HBarrier_Big_F";
};
- class Item42
+ class Item41
{
dataType="Object";
class PositionInfo
@@ -6875,11 +2889,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=987;
type="Land_HBarrier_5_F";
};
- class Item43
+ class Item42
{
dataType="Object";
class PositionInfo
@@ -6891,11 +2906,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=988;
type="Land_HBarrier_5_F";
};
- class Item44
+ class Item43
{
dataType="Object";
class PositionInfo
@@ -6907,11 +2923,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=989;
type="Land_HBarrier_Big_F";
};
- class Item45
+ class Item44
{
dataType="Object";
class PositionInfo
@@ -6923,12 +2940,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=990;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item46
+ class Item45
{
dataType="Object";
class PositionInfo
@@ -6940,11 +2958,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=991;
type="Land_HBarrier_5_F";
};
- class Item47
+ class Item46
{
dataType="Object";
class PositionInfo
@@ -6956,11 +2975,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=992;
type="Land_HBarrier_3_F";
};
- class Item48
+ class Item47
{
dataType="Object";
class PositionInfo
@@ -6972,12 +2992,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=993;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item49
+ class Item48
{
dataType="Object";
class PositionInfo
@@ -6989,11 +3010,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=994;
type="Land_HBarrier_5_F";
};
- class Item50
+ class Item49
{
dataType="Object";
class PositionInfo
@@ -7005,11 +3027,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=995;
type="Land_HBarrier_Big_F";
};
- class Item51
+ class Item50
{
dataType="Object";
class PositionInfo
@@ -7021,11 +3044,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=996;
type="Land_HBarrier_Big_F";
};
- class Item52
+ class Item51
{
dataType="Object";
class PositionInfo
@@ -7037,11 +3061,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=997;
type="Land_HBarrier_Big_F";
};
- class Item53
+ class Item52
{
dataType="Object";
class PositionInfo
@@ -7053,11 +3078,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=998;
type="Land_HBarrier_3_F";
};
- class Item54
+ class Item53
{
dataType="Object";
class PositionInfo
@@ -7069,11 +3095,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=999;
type="Land_HBarrier_Big_F";
};
- class Item55
+ class Item54
{
dataType="Object";
class PositionInfo
@@ -7085,11 +3112,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1000;
type="Land_HBarrier_5_F";
};
- class Item56
+ class Item55
{
dataType="Object";
class PositionInfo
@@ -7101,11 +3129,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1001;
type="Land_HBarrier_Big_F";
};
- class Item57
+ class Item56
{
dataType="Object";
class PositionInfo
@@ -7117,11 +3146,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1002;
type="Land_HBarrier_Big_F";
};
- class Item58
+ class Item57
{
dataType="Object";
class PositionInfo
@@ -7133,12 +3163,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1003;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item59
+ class Item58
{
dataType="Object";
class PositionInfo
@@ -7150,11 +3181,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1004;
type="Land_HBarrier_3_F";
};
- class Item60
+ class Item59
{
dataType="Object";
class PositionInfo
@@ -7166,12 +3198,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1005;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item61
+ class Item60
{
dataType="Object";
class PositionInfo
@@ -7183,11 +3216,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1006;
type="Land_HBarrier_Big_F";
};
- class Item62
+ class Item61
{
dataType="Object";
class PositionInfo
@@ -7199,12 +3233,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1007;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item63
+ class Item62
{
dataType="Object";
class PositionInfo
@@ -7216,11 +3251,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1008;
type="Land_HBarrierWall6_F";
};
- class Item64
+ class Item63
{
dataType="Object";
class PositionInfo
@@ -7232,11 +3268,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1009;
type="Land_HBarrier_5_F";
};
- class Item65
+ class Item64
{
dataType="Object";
class PositionInfo
@@ -7252,7 +3289,7 @@ class Mission
id=1010;
type="Land_Mil_WiredFence_Gate_F";
};
- class Item66
+ class Item65
{
dataType="Object";
class PositionInfo
@@ -7264,11 +3301,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1011;
type="Land_HBarrier_5_F";
};
- class Item67
+ class Item66
{
dataType="Object";
class PositionInfo
@@ -7280,11 +3318,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1012;
type="Land_HBarrier_Big_F";
};
- class Item68
+ class Item67
{
dataType="Object";
class PositionInfo
@@ -7296,11 +3335,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1013;
type="Land_HBarrier_5_F";
};
- class Item69
+ class Item68
{
dataType="Object";
class PositionInfo
@@ -7312,11 +3352,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1014;
type="Land_HBarrier_Big_F";
};
- class Item70
+ class Item69
{
dataType="Object";
class PositionInfo
@@ -7328,11 +3369,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1015;
type="Land_HBarrier_5_F";
};
- class Item71
+ class Item70
{
dataType="Object";
class PositionInfo
@@ -7344,11 +3386,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1016;
type="Land_HBarrier_5_F";
};
- class Item72
+ class Item71
{
dataType="Object";
class PositionInfo
@@ -7360,12 +3403,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1017;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item73
+ class Item72
{
dataType="Object";
class PositionInfo
@@ -7377,11 +3421,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1018;
type="Land_HBarrier_5_F";
};
- class Item74
+ class Item73
{
dataType="Object";
class PositionInfo
@@ -7393,11 +3438,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1019;
type="Land_HBarrier_Big_F";
};
- class Item75
+ class Item74
{
dataType="Object";
class PositionInfo
@@ -7409,11 +3455,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1020;
type="Land_HBarrier_5_F";
};
- class Item76
+ class Item75
{
dataType="Object";
class PositionInfo
@@ -7425,12 +3472,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1021;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item77
+ class Item76
{
dataType="Object";
class PositionInfo
@@ -7442,11 +3490,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1022;
type="Land_HBarrier_Big_F";
};
- class Item78
+ class Item77
{
dataType="Object";
class PositionInfo
@@ -7458,11 +3507,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1023;
type="Land_HBarrier_5_F";
};
- class Item79
+ class Item78
{
dataType="Object";
class PositionInfo
@@ -7474,11 +3524,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1024;
type="Land_HBarrier_Big_F";
};
- class Item80
+ class Item79
{
dataType="Object";
class PositionInfo
@@ -7490,11 +3541,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1025;
type="Land_HBarrier_5_F";
};
- class Item81
+ class Item80
{
dataType="Object";
class PositionInfo
@@ -7506,11 +3558,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1026;
type="Land_HBarrier_5_F";
};
- class Item82
+ class Item81
{
dataType="Object";
class PositionInfo
@@ -7522,11 +3575,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1027;
type="Land_HBarrier_Big_F";
};
- class Item83
+ class Item82
{
dataType="Object";
class PositionInfo
@@ -7538,11 +3592,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1028;
type="Land_HBarrier_5_F";
};
- class Item84
+ class Item83
{
dataType="Object";
class PositionInfo
@@ -7554,11 +3609,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1029;
type="Land_HBarrier_Big_F";
};
- class Item85
+ class Item84
{
dataType="Object";
class PositionInfo
@@ -7570,12 +3626,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1030;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item86
+ class Item85
{
dataType="Object";
class PositionInfo
@@ -7587,11 +3644,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1031;
type="Land_HBarrier_5_F";
};
- class Item87
+ class Item86
{
dataType="Object";
class PositionInfo
@@ -7603,12 +3661,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1032;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item88
+ class Item87
{
dataType="Object";
class PositionInfo
@@ -7620,12 +3679,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1033;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item89
+ class Item88
{
dataType="Object";
class PositionInfo
@@ -7637,11 +3697,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1034;
type="Land_HBarrier_Big_F";
};
- class Item90
+ class Item89
{
dataType="Object";
class PositionInfo
@@ -7653,52 +3714,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1035;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item91
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={992.21014,129.62624,4659.1143};
- angles[]={0.049958061,5.930233,6.2232571};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1036;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item92
+ class Item90
{
dataType="Object";
class PositionInfo
@@ -7714,7 +3736,7 @@ class Mission
id=1037;
type="Land_Razorwire_F";
};
- class Item93
+ class Item91
{
dataType="Object";
class PositionInfo
@@ -7730,7 +3752,7 @@ class Mission
id=1038;
type="Land_Razorwire_F";
};
- class Item94
+ class Item92
{
dataType="Object";
class PositionInfo
@@ -7746,7 +3768,7 @@ class Mission
id=1039;
type="Land_Razorwire_F";
};
- class Item95
+ class Item93
{
dataType="Object";
class PositionInfo
@@ -7762,7 +3784,7 @@ class Mission
id=1040;
type="Land_Razorwire_F";
};
- class Item96
+ class Item94
{
dataType="Object";
class PositionInfo
@@ -7778,7 +3800,7 @@ class Mission
id=1041;
type="Land_Razorwire_F";
};
- class Item97
+ class Item95
{
dataType="Object";
class PositionInfo
@@ -7794,7 +3816,7 @@ class Mission
id=1042;
type="Land_Razorwire_F";
};
- class Item98
+ class Item96
{
dataType="Object";
class PositionInfo
@@ -7806,11 +3828,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1043;
type="Land_HBarrier_3_F";
};
- class Item99
+ class Item97
{
dataType="Object";
class PositionInfo
@@ -7826,40 +3849,7 @@ class Mission
id=1044;
type="Land_LampSolar_F";
};
- class Item100
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1000.7253,159.74902,4663.478};
- angles[]={0,2.78864,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=1045;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=28.810425;
- };
- class Item101
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={992.21014,131.5938,4659.1143};
- angles[]={6.2072682,2.78864,0.27551216};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1046;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.1700592;
- };
- class Item102
+ class Item98
{
dataType="Object";
class PositionInfo
@@ -7871,11 +3861,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1047;
type="Land_HBarrier_Big_F";
};
- class Item103
+ class Item99
{
dataType="Object";
class PositionInfo
@@ -7892,116 +3883,7 @@ class Mission
type="Land_PressureWasher_01_F";
atlOffset=-0.00073242188;
};
- class Item104
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={999.85266,128.59503,4655.1509};
- angles[]={0.05394781,2.78864,6.2392149};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1049;
- type="Land_AirConditioner_03_F";
- };
- class Item105
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={986.4043,129.20145,4657.5718};
- angles[]={0.035987642,4.359437,6.2172809};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1050;
- type="Land_AirConditioner_02_F";
- };
- class Item106
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1001.5925,129.04027,4662.5708};
- angles[]={0.033988956,5.930233,6.2412086};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1051;
- type="Land_MedicalTent_01_NATO_generic_closed_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="MedSign_Hide";
- expression="_this animateSource ['MedSign_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute1
- {
- property="Door_Hide";
- expression="_this animateSource ['Door_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=3;
- };
- };
- class Item107
+ class Item100
{
dataType="Object";
class PositionInfo
@@ -8013,12 +3895,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1052;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item108
+ class Item101
{
dataType="Object";
class PositionInfo
@@ -8030,11 +3913,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1053;
type="Land_HBarrier_Big_F";
};
- class Item109
+ class Item102
{
dataType="Object";
class PositionInfo
@@ -8046,11 +3930,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1054;
type="Land_HBarrier_5_F";
};
- class Item110
+ class Item103
{
dataType="Object";
class PositionInfo
@@ -8062,11 +3947,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1055;
type="Land_HBarrier_Big_F";
};
- class Item111
+ class Item104
{
dataType="Object";
class PositionInfo
@@ -8078,11 +3964,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1056;
type="Land_HBarrier_5_F";
};
- class Item112
+ class Item105
{
dataType="Object";
class PositionInfo
@@ -8094,11 +3981,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1057;
type="Land_HBarrier_Big_F";
};
- class Item113
+ class Item106
{
dataType="Object";
class PositionInfo
@@ -8110,11 +3998,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1058;
type="Land_HBarrier_5_F";
};
- class Item114
+ class Item107
{
dataType="Object";
class PositionInfo
@@ -8126,11 +4015,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1059;
type="Land_HBarrier_3_F";
};
- class Item115
+ class Item108
{
dataType="Object";
class PositionInfo
@@ -8142,12 +4032,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1060;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item116
+ class Item109
{
dataType="Object";
class PositionInfo
@@ -8159,11 +4050,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1061;
type="Land_HBarrier_Big_F";
};
- class Item117
+ class Item110
{
dataType="Object";
class PositionInfo
@@ -8175,12 +4067,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1062;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item118
+ class Item111
{
dataType="Object";
class PositionInfo
@@ -8192,11 +4085,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1063;
type="Land_HBarrier_5_F";
};
- class Item119
+ class Item112
{
dataType="Object";
class PositionInfo
@@ -8208,11 +4102,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1064;
type="Land_HBarrier_Big_F";
};
- class Item120
+ class Item113
{
dataType="Object";
class PositionInfo
@@ -8224,11 +4119,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1065;
type="Land_HBarrier_3_F";
};
- class Item121
+ class Item114
{
dataType="Object";
class PositionInfo
@@ -8240,11 +4136,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1066;
type="Land_HBarrier_5_F";
};
- class Item122
+ class Item115
{
dataType="Object";
class PositionInfo
@@ -8256,11 +4153,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1067;
type="Land_HBarrier_Big_F";
};
- class Item123
+ class Item116
{
dataType="Object";
class PositionInfo
@@ -8272,11 +4170,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1068;
type="Land_HBarrier_3_F";
};
- class Item124
+ class Item117
{
dataType="Object";
class PositionInfo
@@ -8288,11 +4187,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1069;
type="Land_HBarrier_5_F";
};
- class Item125
+ class Item118
{
dataType="Object";
class PositionInfo
@@ -8304,11 +4204,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1070;
type="Land_HBarrier_Big_F";
};
- class Item126
+ class Item119
{
dataType="Object";
class PositionInfo
@@ -8320,11 +4221,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1071;
type="Land_HBarrier_Big_F";
};
- class Item127
+ class Item120
{
dataType="Object";
class PositionInfo
@@ -8336,11 +4238,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1072;
type="Land_HBarrier_5_F";
};
- class Item128
+ class Item121
{
dataType="Object";
class PositionInfo
@@ -8352,12 +4255,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1073;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item129
+ class Item122
{
dataType="Object";
class PositionInfo
@@ -8369,12 +4273,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1074;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item130
+ class Item123
{
dataType="Object";
class PositionInfo
@@ -8386,12 +4291,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1075;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item131
+ class Item124
{
dataType="Object";
class PositionInfo
@@ -8403,11 +4309,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1076;
type="Land_HBarrier_Big_F";
};
- class Item132
+ class Item125
{
dataType="Object";
class PositionInfo
@@ -8419,11 +4326,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1077;
type="Land_HBarrier_5_F";
};
- class Item133
+ class Item126
{
dataType="Object";
class PositionInfo
@@ -8435,11 +4343,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1078;
type="Land_HBarrier_5_F";
};
- class Item134
+ class Item127
{
dataType="Object";
class PositionInfo
@@ -8451,12 +4360,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1079;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item135
+ class Item128
{
dataType="Object";
class PositionInfo
@@ -8468,11 +4378,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1080;
type="Land_HBarrier_Big_F";
};
- class Item136
+ class Item129
{
dataType="Object";
class PositionInfo
@@ -8484,11 +4395,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1081;
type="Land_HBarrier_5_F";
};
- class Item137
+ class Item130
{
dataType="Object";
class PositionInfo
@@ -8500,12 +4412,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1082;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item138
+ class Item131
{
dataType="Object";
class PositionInfo
@@ -8517,12 +4430,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1083;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item139
+ class Item132
{
dataType="Object";
class PositionInfo
@@ -8534,11 +4448,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1084;
type="Land_HBarrier_5_F";
};
- class Item140
+ class Item133
{
dataType="Object";
class PositionInfo
@@ -8550,11 +4465,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1085;
type="Land_HBarrier_Big_F";
};
- class Item141
+ class Item134
{
dataType="Object";
class PositionInfo
@@ -8566,12 +4482,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1086;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item142
+ class Item135
{
dataType="Object";
class PositionInfo
@@ -8583,12 +4500,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1087;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item143
+ class Item136
{
dataType="Object";
class PositionInfo
@@ -8600,11 +4518,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1088;
type="Land_HBarrier_5_F";
};
- class Item144
+ class Item137
{
dataType="Object";
class PositionInfo
@@ -8616,11 +4535,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1089;
type="Land_HBarrier_Big_F";
};
- class Item145
+ class Item138
{
dataType="Object";
class PositionInfo
@@ -8632,11 +4552,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1090;
type="Land_HBarrier_5_F";
};
- class Item146
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -8648,11 +4569,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1091;
type="Land_HBarrier_5_F";
};
- class Item147
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -8664,12 +4586,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1092;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item148
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -8681,11 +4604,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1093;
type="Land_HBarrier_5_F";
};
- class Item149
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -8697,12 +4621,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1094;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item150
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -8714,11 +4639,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1095;
type="Land_HBarrier_5_F";
};
- class Item151
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -8730,12 +4656,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1096;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item152
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -8747,12 +4674,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1097;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item153
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -8764,12 +4692,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1098;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item154
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -8781,11 +4710,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1099;
type="Land_HBarrier_5_F";
};
- class Item155
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -8796,12 +4726,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=1100;
type="Land_HBarrier_1_F";
atlOffset=0.4875946;
};
- class Item156
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -8813,11 +4744,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1101;
type="Land_HBarrier_1_F";
};
- class Item157
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -8829,11 +4761,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1102;
type="Land_HBarrier_5_F";
};
- class Item158
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -8845,12 +4778,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1103;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item159
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -8862,12 +4796,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1104;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item160
+ class Item153
{
dataType="Object";
class PositionInfo
@@ -8879,11 +4814,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1105;
type="Land_HBarrier_Big_F";
};
- class Item161
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -8895,12 +4831,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1106;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item162
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -8912,11 +4849,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1107;
type="Land_HBarrier_Big_F";
};
- class Item163
+ class Item156
{
dataType="Object";
class PositionInfo
@@ -8928,11 +4866,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1108;
type="Land_HBarrier_5_F";
};
- class Item164
+ class Item157
{
dataType="Object";
class PositionInfo
@@ -8944,11 +4883,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1109;
type="Land_HBarrier_3_F";
};
- class Item165
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -8960,11 +4900,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1110;
type="Land_HBarrier_5_F";
};
- class Item166
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -8976,12 +4917,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1111;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item167
+ class Item160
{
dataType="Object";
class PositionInfo
@@ -8993,12 +4935,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1112;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item168
+ class Item161
{
dataType="Object";
class PositionInfo
@@ -9010,11 +4953,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1113;
type="Land_HBarrier_Big_F";
};
- class Item169
+ class Item162
{
dataType="Object";
class PositionInfo
@@ -9026,11 +4970,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1114;
type="Land_HBarrier_5_F";
};
- class Item170
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -9042,12 +4987,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1115;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item171
+ class Item164
{
dataType="Object";
class PositionInfo
@@ -9063,7 +5009,7 @@ class Mission
id=1116;
type="Land_MobileRadar_01_radar_F";
};
- class Item172
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -9080,88 +5026,7 @@ class Mission
type="Land_MobileRadar_01_generator_F";
atlOffset=0.058380127;
};
- class Item173
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1017.463,134.37215,4625.4282};
- angles[]={0,5.9451499,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1118;
- type="Land_Cargo_HQ_V1_F";
- };
- class Item174
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1046.853,136.04626,4710.2808};
- angles[]={0,4.3811255,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1119;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item175
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1038.592,136.98091,4714.313};
- angles[]={0,2.8103292,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1120;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=-1.5258789e-005;
- };
- class Item176
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1067.6801,136.46126,4632.0508};
- angles[]={0,5.9519215,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1121;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item177
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1071.738,135.82742,4640.3452};
- angles[]={0,4.3811255,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1122;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item178
+ class Item166
{
dataType="Object";
class PositionInfo
@@ -9173,12 +5038,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1123;
type="Land_HelipadSquare_F";
atlOffset=0.46276855;
};
- class Item179
+ class Item167
{
dataType="Object";
class PositionInfo
@@ -9190,11 +5056,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1124;
type="Land_HBarrier_5_F";
};
- class Item180
+ class Item168
{
dataType="Object";
class PositionInfo
@@ -9206,11 +5073,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1125;
type="Land_HBarrier_Big_F";
};
- class Item181
+ class Item169
{
dataType="Object";
class PositionInfo
@@ -9222,11 +5090,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1126;
type="Land_HBarrier_5_F";
};
- class Item182
+ class Item170
{
dataType="Object";
class PositionInfo
@@ -9238,11 +5107,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1127;
type="Land_HBarrier_Big_F";
};
- class Item183
+ class Item171
{
dataType="Object";
class PositionInfo
@@ -9254,11 +5124,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1128;
type="Land_HBarrier_5_F";
};
- class Item184
+ class Item172
{
dataType="Object";
class PositionInfo
@@ -9270,12 +5141,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1129;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item185
+ class Item173
{
dataType="Object";
class PositionInfo
@@ -9287,11 +5159,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1130;
type="Land_HBarrier_5_F";
};
- class Item186
+ class Item174
{
dataType="Object";
class PositionInfo
@@ -9303,11 +5176,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1131;
type="Land_HBarrier_Big_F";
};
- class Item187
+ class Item175
{
dataType="Object";
class PositionInfo
@@ -9319,12 +5193,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1132;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item188
+ class Item176
{
dataType="Object";
class PositionInfo
@@ -9336,12 +5211,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1133;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item189
+ class Item177
{
dataType="Object";
class PositionInfo
@@ -9353,11 +5229,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1134;
type="Land_HBarrier_5_F";
};
- class Item190
+ class Item178
{
dataType="Object";
class PositionInfo
@@ -9369,11 +5246,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1135;
type="Land_HBarrier_Big_F";
};
- class Item191
+ class Item179
{
dataType="Object";
class PositionInfo
@@ -9385,11 +5263,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1136;
type="Land_HBarrier_5_F";
};
- class Item192
+ class Item180
{
dataType="Object";
class PositionInfo
@@ -9401,11 +5280,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1137;
type="Land_HBarrier_3_F";
};
- class Item193
+ class Item181
{
dataType="Object";
class PositionInfo
@@ -9417,11 +5297,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1138;
type="Land_HBarrier_5_F";
};
- class Item194
+ class Item182
{
dataType="Object";
class PositionInfo
@@ -9433,12 +5314,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1139;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item195
+ class Item183
{
dataType="Object";
class PositionInfo
@@ -9450,11 +5332,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1140;
type="Land_HBarrier_5_F";
};
- class Item196
+ class Item184
{
dataType="Object";
class PositionInfo
@@ -9466,11 +5349,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1141;
type="Land_HBarrier_Big_F";
};
- class Item197
+ class Item185
{
dataType="Object";
class PositionInfo
@@ -9482,11 +5366,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1142;
type="Land_HBarrier_5_F";
};
- class Item198
+ class Item186
{
dataType="Object";
class PositionInfo
@@ -9498,12 +5383,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1143;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item199
+ class Item187
{
dataType="Object";
class PositionInfo
@@ -9515,11 +5401,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1144;
type="Land_HBarrier_Big_F";
};
- class Item200
+ class Item188
{
dataType="Object";
class PositionInfo
@@ -9531,11 +5418,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1145;
type="Land_HBarrier_5_F";
};
- class Item201
+ class Item189
{
dataType="Object";
class PositionInfo
@@ -9547,11 +5435,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1146;
type="Land_HBarrier_Big_F";
};
- class Item202
+ class Item190
{
dataType="Object";
class PositionInfo
@@ -9563,11 +5452,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1147;
type="Land_HBarrier_5_F";
};
- class Item203
+ class Item191
{
dataType="Object";
class PositionInfo
@@ -9579,11 +5469,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1148;
type="Land_HBarrier_5_F";
};
- class Item204
+ class Item192
{
dataType="Object";
class PositionInfo
@@ -9595,11 +5486,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1149;
type="Land_HBarrier_Big_F";
};
- class Item205
+ class Item193
{
dataType="Object";
class PositionInfo
@@ -9611,11 +5503,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1150;
type="Land_HBarrier_5_F";
};
- class Item206
+ class Item194
{
dataType="Object";
class PositionInfo
@@ -9627,12 +5520,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1151;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item207
+ class Item195
{
dataType="Object";
class PositionInfo
@@ -9644,11 +5538,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1152;
type="Land_HBarrier_3_F";
};
- class Item208
+ class Item196
{
dataType="Object";
class PositionInfo
@@ -9660,11 +5555,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1153;
type="Land_HBarrier_5_F";
};
- class Item209
+ class Item197
{
dataType="Object";
class PositionInfo
@@ -9676,11 +5572,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1154;
type="Land_HBarrier_Big_F";
};
- class Item210
+ class Item198
{
dataType="Object";
class PositionInfo
@@ -9692,11 +5589,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1155;
type="Land_HBarrier_5_F";
};
- class Item211
+ class Item199
{
dataType="Object";
class PositionInfo
@@ -9708,11 +5606,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1156;
type="Land_HBarrier_Big_F";
};
- class Item212
+ class Item200
{
dataType="Object";
class PositionInfo
@@ -9724,11 +5623,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1157;
type="Land_HBarrier_5_F";
};
- class Item213
+ class Item201
{
dataType="Object";
class PositionInfo
@@ -9740,12 +5640,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1158;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item214
+ class Item202
{
dataType="Object";
class PositionInfo
@@ -9757,11 +5658,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1159;
type="Land_HBarrier_5_F";
};
- class Item215
+ class Item203
{
dataType="Object";
class PositionInfo
@@ -9773,12 +5675,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1160;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item216
+ class Item204
{
dataType="Object";
class PositionInfo
@@ -9790,12 +5693,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1161;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item217
+ class Item205
{
dataType="Object";
class PositionInfo
@@ -9807,11 +5711,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1162;
type="Land_HBarrier_3_F";
};
- class Item218
+ class Item206
{
dataType="Object";
class PositionInfo
@@ -9823,11 +5728,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1163;
type="Land_HBarrier_3_F";
};
- class Item219
+ class Item207
{
dataType="Object";
class PositionInfo
@@ -9839,11 +5745,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1164;
type="Land_HBarrier_3_F";
};
- class Item220
+ class Item208
{
dataType="Object";
class PositionInfo
@@ -9855,11 +5762,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1165;
type="Land_HBarrier_1_F";
};
- class Item221
+ class Item209
{
dataType="Object";
class PositionInfo
@@ -9871,12 +5779,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1166;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item222
+ class Item210
{
dataType="Object";
class PositionInfo
@@ -9888,11 +5797,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1167;
type="Land_HBarrier_5_F";
};
- class Item223
+ class Item211
{
dataType="Object";
class PositionInfo
@@ -9904,12 +5814,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1168;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item224
+ class Item212
{
dataType="Object";
class PositionInfo
@@ -9921,11 +5832,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1169;
type="Land_HBarrier_5_F";
};
- class Item225
+ class Item213
{
dataType="Object";
class PositionInfo
@@ -9937,11 +5849,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1170;
type="Land_HBarrier_Big_F";
};
- class Item226
+ class Item214
{
dataType="Object";
class PositionInfo
@@ -9953,12 +5866,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1171;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item227
+ class Item215
{
dataType="Object";
class PositionInfo
@@ -9970,11 +5884,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1172;
type="Land_HBarrier_5_F";
};
- class Item228
+ class Item216
{
dataType="Object";
class PositionInfo
@@ -9986,12 +5901,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1173;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item229
+ class Item217
{
dataType="Object";
class PositionInfo
@@ -10003,11 +5919,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1174;
type="Land_HBarrier_Big_F";
};
- class Item230
+ class Item218
{
dataType="Object";
class PositionInfo
@@ -10019,11 +5936,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1175;
type="Land_HBarrier_5_F";
};
- class Item231
+ class Item219
{
dataType="Object";
class PositionInfo
@@ -10035,11 +5953,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1176;
type="Land_HBarrier_5_F";
};
- class Item232
+ class Item220
{
dataType="Object";
class PositionInfo
@@ -10051,11 +5970,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1177;
type="Land_HBarrier_5_F";
};
- class Item233
+ class Item221
{
dataType="Object";
class PositionInfo
@@ -10067,11 +5987,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1178;
type="Land_HBarrier_Big_F";
};
- class Item234
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -10083,11 +6004,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1179;
type="Land_HBarrier_5_F";
};
- class Item235
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -10099,59 +6021,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1180;
type="Land_HBarrier_Big_F";
};
- class Item236
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={870.38,146.99213,4640.979};
- angles[]={0,4.3570051,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1181;
- type="Land_Cargo_Tower_V1_F";
- };
- class Item237
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={892.763,146.93771,4577.4131};
- angles[]={0,1.1974355,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1182;
- type="Land_Cargo_Tower_V1_F";
- };
- class Item238
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={996.021,141.7713,4687.73};
- angles[]={0,4.3570051,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1183;
- type="Land_Cargo_Tower_V1_F";
- };
- class Item239
+ class Item224
{
dataType="Object";
class PositionInfo
@@ -10163,12 +6038,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1184;
type="Land_HelipadSquare_F";
atlOffset=0.5135498;
};
- class Item240
+ class Item225
{
dataType="Object";
class PositionInfo
@@ -10180,12 +6056,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1185;
type="Land_HelipadSquare_F";
atlOffset=0.4744873;
};
- class Item241
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -10197,12 +6074,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1186;
type="Land_HelipadSquare_F";
atlOffset=0.4243927;
};
- class Item242
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -10218,7 +6096,7 @@ class Mission
id=1187;
type="Land_LampAirport_F";
};
- class Item243
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -10234,134 +6112,7 @@ class Mission
id=1188;
type="Land_LampAirport_F";
};
- class Item244
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={917.49121,132.4529,4629.8291};
- angles[]={0.017997233,4.340723,6.2531958};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1189;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item245
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={917.49121,134.55528,4629.8291};
- angles[]={5.9652162,4.340723,6.1195006};
- };
- side="Empty";
- class Attributes
- {
- };
- id=1190;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.26722717;
- };
- class Item246
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={904.797,133.15245,4624.8809};
- angles[]={0.037981652,4.340723,6.2172809};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1191;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item247
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={904.797,135.26018,4624.8809};
- angles[]={5.9831305,4.340723,6.0850382};
- };
- side="Empty";
- class Attributes
- {
- };
- id=1192;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.27192688;
- };
- class Item248
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={899.25726,132.90315,4618.8491};
- angles[]={0.055941612,3.5553255,6.2132974};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1193;
- type="Land_AirConditioner_04_F";
- };
- class Item249
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -10378,7 +6129,7 @@ class Mission
type="StorageBladder_01_fuel_forest_F";
atlOffset=-1.5258789e-005;
};
- class Item250
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -10394,7 +6145,7 @@ class Mission
id=1195;
type="StorageBladder_01_fuel_forest_F";
};
- class Item251
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -10406,11 +6157,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1196;
type="Land_HBarrier_Big_F";
};
- class Item252
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -10422,11 +6174,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1197;
type="Land_HBarrier_Big_F";
};
- class Item253
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -10438,11 +6191,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1198;
type="Land_HBarrier_Big_F";
};
- class Item254
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -10454,11 +6208,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1199;
type="Land_HBarrier_Big_F";
};
- class Item255
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -10470,11 +6225,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1200;
type="Land_HBarrier_Big_F";
};
- class Item256
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -10490,7 +6246,7 @@ class Mission
id=1201;
type="Land_LampAirport_F";
};
- class Item257
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -10506,7 +6262,7 @@ class Mission
id=1202;
type="Land_LampAirport_F";
};
- class Item258
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -10522,7 +6278,7 @@ class Mission
id=1203;
type="Land_LampSolar_F";
};
- class Item259
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -10534,11 +6290,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1204;
type="Land_HBarrier_Big_F";
};
- class Item260
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -10550,44 +6307,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1205;
type="Land_HBarrier_Big_F";
};
- class Item261
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={880.71503,140.12596,4598.0791};
- angles[]={0,1.2041899,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1206;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item262
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={872.37097,138.91531,4619.894};
- angles[]={0,1.2041899,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1207;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=-1.5258789e-005;
- };
- class Item263
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -10599,12 +6324,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1208;
type="Land_HelipadSquare_F";
atlOffset=0.45439148;
};
- class Item264
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -10616,12 +6342,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1209;
type="Land_HelipadSquare_F";
atlOffset=0.45397949;
};
- class Item265
+ class Item243
{
dataType="Marker";
position[]={10688.864,86.584534,5004.3037};
@@ -10632,7 +6359,7 @@ class Mission
id=1210;
atlOffset=33.583786;
};
- class Item266
+ class Item244
{
dataType="Marker";
position[]={10683.529,150.57507,2139.2688};
@@ -10643,7 +6370,7 @@ class Mission
id=1211;
atlOffset=33.583809;
};
- class Item267
+ class Item245
{
dataType="Marker";
position[]={8998.6348,96.559372,-224.72046};
@@ -10654,7 +6381,7 @@ class Mission
id=1212;
atlOffset=33.583797;
};
- class Item268
+ class Item246
{
dataType="Marker";
position[]={5909.6606,190.36778,-321.87012};
@@ -10665,7 +6392,7 @@ class Mission
id=1213;
atlOffset=33.583801;
};
- class Item269
+ class Item247
{
dataType="Marker";
position[]={2075.4426,211.8815,-332.66479};
@@ -10676,7 +6403,7 @@ class Mission
id=1214;
atlOffset=33.583801;
};
- class Item270
+ class Item248
{
dataType="Marker";
position[]={-300.69156,217.39087,1448.4241};
@@ -10687,7 +6414,7 @@ class Mission
id=1215;
atlOffset=33.583801;
};
- class Item271
+ class Item249
{
dataType="Marker";
position[]={-515.336,183.31531,4880.666};
@@ -10698,7 +6425,7 @@ class Mission
id=1216;
atlOffset=33.583847;
};
- class Item272
+ class Item250
{
dataType="Marker";
position[]={-588.20789,182.28105,8076.2329};
@@ -10709,7 +6436,7 @@ class Mission
id=1217;
atlOffset=33.583801;
};
- class Item273
+ class Item251
{
dataType="Marker";
position[]={2075.4431,189.1348,10645.318};
@@ -10720,7 +6447,7 @@ class Mission
id=1218;
atlOffset=33.583801;
};
- class Item274
+ class Item252
{
dataType="Marker";
position[]={4916.0039,187.65778,10612.936};
@@ -10731,7 +6458,7 @@ class Mission
id=1219;
atlOffset=33.583801;
};
- class Item275
+ class Item253
{
dataType="Marker";
position[]={8145.3857,200.84288,10548.168};
@@ -10742,7 +6469,7 @@ class Mission
id=1220;
atlOffset=33.583801;
};
- class Item276
+ class Item254
{
dataType="Marker";
position[]={10586.324,111.18447,8194.9717};
@@ -10753,7 +6480,7 @@ class Mission
id=1221;
atlOffset=33.583801;
};
- class Item277
+ class Item255
{
dataType="Marker";
position[]={2399.3965,179.49533,-123.15674};
@@ -10762,7 +6489,7 @@ class Mission
id=1222;
atlOffset=2.5770569;
};
- class Item278
+ class Item256
{
dataType="Marker";
position[]={377.32193,156.50502,10260.37};
@@ -10770,7 +6497,7 @@ class Mission
type="flag_UN";
id=1223;
};
- class Item279
+ class Item257
{
dataType="Marker";
position[]={10182.242,144.28058,10193.891};
@@ -10779,7 +6506,7 @@ class Mission
id=1233;
atlOffset=5.4211731;
};
- class Item280
+ class Item258
{
dataType="Group";
side="East";
@@ -10797,7 +6524,7 @@ class Mission
flags=7;
class Attributes
{
- init="groupPlayersCSAT = group this;this setVariable [""pvp"",true]";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
name="pvp_red_1";
isPlayable=1;
};
@@ -10857,7 +6584,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
name="pvp_red_2";
isPlayable=1;
};
@@ -10917,7 +6644,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
name="pvp_red_4";
isPlayable=1;
};
@@ -10977,7 +6704,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
name="pvp_red_6";
isPlayable=1;
};
@@ -11037,7 +6764,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
name="pvp_red_3";
isPlayable=1;
};
@@ -11098,7 +6825,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
name="pvp_red_5";
isPlayable=1;
};
@@ -11153,7 +6880,7 @@ class Mission
};
id=1234;
};
- class Item281
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -11171,7 +6898,7 @@ class Mission
type="Flag_Viper_F";
atlOffset=3.0517578e-005;
};
- class Item282
+ class Item260
{
dataType="Object";
class PositionInfo
@@ -11187,7 +6914,7 @@ class Mission
id=1242;
type="Flag_NATO_F";
};
- class Item283
+ class Item261
{
dataType="Marker";
position[]={10203.88,32.664989,40.245483};
@@ -11196,7 +6923,7 @@ class Mission
id=1243;
atlOffset=4.0481567;
};
- class Item284
+ class Item262
{
dataType="Group";
side="West";
@@ -11215,7 +6942,7 @@ class Mission
class Attributes
{
rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
name="pvp_blue_1";
isPlayable=1;
};
@@ -11277,7 +7004,7 @@ class Mission
{
skill=0.44999999;
rank="CORPORAL";
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
name="pvp_blue_4";
isPlayable=1;
};
@@ -11339,7 +7066,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
name="pvp_blue_2";
isPlayable=1;
};
@@ -11401,7 +7128,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
name="pvp_blue_3";
isPlayable=1;
};
@@ -11462,7 +7189,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
name="pvp_blue_5";
isPlayable=1;
};
@@ -11523,7 +7250,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
name="pvp_blue_6";
isPlayable=1;
};
@@ -11579,7 +7306,7 @@ class Mission
};
id=1244;
};
- class Item285
+ class Item263
{
dataType="Object";
class PositionInfo
@@ -11595,7 +7322,7 @@ class Mission
id=1253;
type="Land_Cargo_Tower_V3_F";
};
- class Item286
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -11611,7 +7338,7 @@ class Mission
id=1254;
type="Land_Cargo_Patrol_V3_F";
};
- class Item287
+ class Item265
{
dataType="Logic";
class PositionInfo
@@ -11666,7 +7393,7 @@ class Mission
nAttributes=2;
};
};
- class Item288
+ class Item266
{
dataType="Logic";
class PositionInfo
@@ -11722,7 +7449,7 @@ class Mission
nAttributes=2;
};
};
- class Item289
+ class Item267
{
dataType="Object";
class PositionInfo
@@ -11738,7 +7465,7 @@ class Mission
id=1257;
type="Land_Cargo_Patrol_V3_F";
};
- class Item290
+ class Item268
{
dataType="Logic";
class PositionInfo
@@ -11793,7 +7520,7 @@ class Mission
nAttributes=2;
};
};
- class Item291
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -11809,7 +7536,7 @@ class Mission
id=1259;
type="Land_Cargo_Patrol_V3_F";
};
- class Item292
+ class Item270
{
dataType="Logic";
class PositionInfo
@@ -11865,7 +7592,7 @@ class Mission
nAttributes=2;
};
};
- class Item293
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -11881,7 +7608,7 @@ class Mission
id=1261;
type="Land_Cargo_Patrol_V3_F";
};
- class Item294
+ class Item272
{
dataType="Logic";
class PositionInfo
@@ -11936,7 +7663,7 @@ class Mission
nAttributes=2;
};
};
- class Item295
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -11952,7 +7679,7 @@ class Mission
id=1263;
type="Land_Cargo_Patrol_V3_F";
};
- class Item296
+ class Item274
{
dataType="Logic";
class PositionInfo
@@ -12008,7 +7735,7 @@ class Mission
nAttributes=2;
};
};
- class Item297
+ class Item275
{
dataType="Logic";
class PositionInfo
@@ -12064,7 +7791,7 @@ class Mission
nAttributes=2;
};
};
- class Item298
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -12076,11 +7803,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1266;
type="Land_HelipadSquare_F";
};
- class Item299
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -12092,11 +7820,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1267;
type="Land_HelipadSquare_F";
};
- class Item300
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -12108,11 +7837,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1268;
type="Land_HelipadSquare_F";
};
- class Item301
+ class Item279
{
dataType="Marker";
position[]={8559.5391,111.54,7591.9707};
@@ -12124,7 +7854,7 @@ class Mission
id=1269;
atlOffset=0.010665894;
};
- class Item302
+ class Item280
{
dataType="Marker";
position[]={8577.7803,109.53027,6442.6914};
@@ -12136,7 +7866,7 @@ class Mission
id=1270;
atlOffset=-2.0097275;
};
- class Item303
+ class Item281
{
dataType="Logic";
class PositionInfo
@@ -12190,7 +7920,7 @@ class Mission
nAttributes=2;
};
};
- class Item304
+ class Item282
{
dataType="Logic";
class PositionInfo
@@ -12244,7 +7974,7 @@ class Mission
nAttributes=2;
};
};
- class Item305
+ class Item283
{
dataType="Logic";
class PositionInfo
@@ -12298,7 +8028,7 @@ class Mission
nAttributes=2;
};
};
- class Item306
+ class Item284
{
dataType="Logic";
class PositionInfo
@@ -12352,7 +8082,7 @@ class Mission
nAttributes=2;
};
};
- class Item307
+ class Item285
{
dataType="Logic";
class PositionInfo
@@ -12406,7 +8136,7 @@ class Mission
nAttributes=2;
};
};
- class Item308
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -12418,11 +8148,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1276;
type="Land_HelipadSquare_F";
};
- class Item309
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -12434,11 +8165,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1277;
type="Land_HelipadSquare_F";
};
- class Item310
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -12450,11 +8182,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1278;
type="Land_HelipadSquare_F";
};
- class Item311
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -12466,11 +8199,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1279;
type="Land_HelipadSquare_F";
};
- class Item312
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -12482,11 +8216,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1280;
type="Land_HelipadSquare_F";
};
- class Item313
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -12501,7 +8236,7 @@ class Mission
id=1287;
type="Land_Cargo_Tower_V3_F";
};
- class Item314
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -12516,7 +8251,7 @@ class Mission
id=1288;
type="Land_Cargo_Patrol_V3_F";
};
- class Item315
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -12532,7 +8267,7 @@ class Mission
id=1289;
type="Land_Cargo_Tower_V3_F";
};
- class Item316
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -12548,7 +8283,7 @@ class Mission
id=1290;
type="Land_Cargo_Tower_V3_F";
};
- class Item317
+ class Item295
{
dataType="Logic";
class PositionInfo
@@ -12602,7 +8337,7 @@ class Mission
nAttributes=2;
};
};
- class Item318
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -12618,7 +8353,7 @@ class Mission
id=1292;
type="Land_Cargo_Patrol_V3_F";
};
- class Item319
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -12634,7 +8369,7 @@ class Mission
id=1293;
type="Land_Cargo_Patrol_V3_F";
};
- class Item320
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -12650,7 +8385,7 @@ class Mission
id=1294;
type="Land_Cargo_Patrol_V3_F";
};
- class Item321
+ class Item299
{
dataType="Logic";
class PositionInfo
@@ -12705,7 +8440,7 @@ class Mission
nAttributes=2;
};
};
- class Item322
+ class Item300
{
dataType="Logic";
class PositionInfo
@@ -12761,7 +8496,7 @@ class Mission
nAttributes=2;
};
};
- class Item323
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -12777,7 +8512,7 @@ class Mission
id=1297;
type="Land_Cargo_Patrol_V3_F";
};
- class Item324
+ class Item302
{
dataType="Logic";
class PositionInfo
@@ -12833,7 +8568,7 @@ class Mission
nAttributes=2;
};
};
- class Item325
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -12850,7 +8585,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=0.026832581;
};
- class Item326
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -12866,7 +8601,7 @@ class Mission
id=1300;
type="Land_Cargo_Patrol_V3_F";
};
- class Item327
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -12882,7 +8617,7 @@ class Mission
id=1301;
type="Land_Cargo_Patrol_V3_F";
};
- class Item328
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -12898,7 +8633,7 @@ class Mission
id=1302;
type="Land_Cargo_Patrol_V3_F";
};
- class Item329
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -12914,7 +8649,7 @@ class Mission
id=1303;
type="Land_Cargo_Patrol_V3_F";
};
- class Item330
+ class Item308
{
dataType="Logic";
class PositionInfo
@@ -12969,7 +8704,7 @@ class Mission
nAttributes=2;
};
};
- class Item331
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -12985,7 +8720,7 @@ class Mission
id=1305;
type="Land_Cargo_Patrol_V3_F";
};
- class Item332
+ class Item310
{
dataType="Logic";
class PositionInfo
@@ -13040,7 +8775,7 @@ class Mission
nAttributes=2;
};
};
- class Item333
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -13056,7 +8791,7 @@ class Mission
id=1307;
type="Land_Cargo_Patrol_V3_F";
};
- class Item334
+ class Item312
{
dataType="Logic";
class PositionInfo
@@ -13111,7 +8846,7 @@ class Mission
nAttributes=2;
};
};
- class Item335
+ class Item313
{
dataType="Logic";
class PositionInfo
@@ -13166,7 +8901,7 @@ class Mission
nAttributes=2;
};
};
- class Item336
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -13178,12 +8913,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1310;
type="Land_HBarrier_5_F";
atlOffset=0.0090103149;
};
- class Item337
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -13195,11 +8931,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1311;
type="Land_HBarrier_5_F";
};
- class Item338
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -13211,11 +8948,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1312;
type="Land_HBarrier_5_F";
};
- class Item339
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -13227,12 +8965,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1313;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item340
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -13244,11 +8983,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1314;
type="Land_HBarrier_5_F";
};
- class Item341
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -13260,12 +9000,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1315;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item342
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -13277,11 +9018,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1316;
type="Land_HBarrier_5_F";
};
- class Item343
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -13293,12 +9035,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1317;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item344
+ class Item322
{
dataType="Object";
class PositionInfo
@@ -13310,12 +9053,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1318;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item345
+ class Item323
{
dataType="Object";
class PositionInfo
@@ -13327,12 +9071,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1319;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item346
+ class Item324
{
dataType="Object";
class PositionInfo
@@ -13344,11 +9089,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1320;
type="Land_HBarrier_5_F";
};
- class Item347
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -13360,12 +9106,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1321;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item348
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -13377,12 +9124,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1322;
type="Land_HBarrier_5_F";
atlOffset=6.1035156e-005;
};
- class Item349
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -13394,12 +9142,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1323;
type="Land_HBarrier_5_F";
atlOffset=0.0090026855;
};
- class Item350
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -13411,12 +9160,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1324;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item351
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -13428,12 +9178,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1325;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-005;
};
- class Item352
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -13445,12 +9196,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1326;
type="Land_HBarrier_5_F";
atlOffset=5.3405762e-005;
};
- class Item353
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -13462,12 +9214,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1327;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item354
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -13479,12 +9232,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1328;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item355
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -13496,12 +9250,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1329;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-005;
};
- class Item356
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -13513,12 +9268,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1330;
type="Land_HBarrier_5_F";
atlOffset=0.008972168;
};
- class Item357
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -13530,12 +9286,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1331;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item358
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -13547,12 +9304,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1332;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item359
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -13564,12 +9322,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1333;
type="Land_HBarrier_5_F";
atlOffset=6.8664551e-005;
};
- class Item360
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -13581,12 +9340,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1334;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item361
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -13598,12 +9358,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1335;
type="Land_HBarrier_5_F";
atlOffset=2.2888184e-005;
};
- class Item362
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -13615,12 +9376,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1336;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-005;
};
- class Item363
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -13632,12 +9394,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1337;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item364
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -13649,11 +9412,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1338;
type="Land_HBarrier_5_F";
};
- class Item365
+ class Item343
{
dataType="Object";
class PositionInfo
@@ -13665,12 +9429,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1339;
type="Land_HBarrier_3_F";
atlOffset=8.392334e-005;
};
- class Item366
+ class Item344
{
dataType="Object";
class PositionInfo
@@ -13682,12 +9447,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1340;
type="Land_HBarrier_3_F";
atlOffset=8.392334e-005;
};
- class Item367
+ class Item345
{
dataType="Object";
class PositionInfo
@@ -13699,12 +9465,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1341;
type="Land_HBarrier_3_F";
atlOffset=9.1552734e-005;
};
- class Item368
+ class Item346
{
dataType="Object";
class PositionInfo
@@ -13716,12 +9483,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1342;
type="Land_HBarrier_5_F";
atlOffset=0.00010681152;
};
- class Item369
+ class Item347
{
dataType="Object";
class PositionInfo
@@ -13737,7 +9505,7 @@ class Mission
id=1343;
type="Land_Mil_WallBig_Corner_F";
};
- class Item370
+ class Item348
{
dataType="Object";
class PositionInfo
@@ -13753,7 +9521,7 @@ class Mission
id=1344;
type="Land_Mil_WallBig_Corner_F";
};
- class Item371
+ class Item349
{
dataType="Object";
class PositionInfo
@@ -13770,7 +9538,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=7.6293945e-006;
};
- class Item372
+ class Item350
{
dataType="Object";
class PositionInfo
@@ -13787,7 +9555,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=-7.6293945e-006;
};
- class Item373
+ class Item351
{
dataType="Object";
class PositionInfo
@@ -13804,7 +9572,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.0517578e-005;
};
- class Item374
+ class Item352
{
dataType="Object";
class PositionInfo
@@ -13820,104 +9588,40 @@ class Mission
id=1348;
type="Land_Mil_WallBig_Corner_F";
};
- class Item375
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6874.0308,105.57157,7192.2427};
- angles[]={0,3.6965418,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1349;
- type="Land_Mil_WallBig_Corner_F";
- };
- class Item376
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6874.2017,105.66837,7189.2676};
- angles[]={0,4.4819398,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1350;
- type="Land_Mil_WallBig_4m_F";
- atlOffset=3.0517578e-005;
- };
- class Item377
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6824.8901,116.30996,7145.5903};
- angles[]={0,1.3538646,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1351;
- type="Land_Cargo_Tower_V1_F";
- };
- class Item378
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6834.6157,104.85357,7146.0933};
- angles[]={0,2.9246607,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1352;
- type="Land_Cargo_House_V1_F";
- };
- class Item379
+ class Item353
{
dataType="Object";
class PositionInfo
{
- position[]={6843.5767,105.31248,7147.8022};
- angles[]={0,2.9246607,0};
+ position[]={6874.0308,105.57157,7192.2427};
+ angles[]={0,3.6965418,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=1353;
- type="Land_Cargo_House_V1_F";
+ id=1349;
+ type="Land_Mil_WallBig_Corner_F";
};
- class Item380
+ class Item354
{
dataType="Object";
class PositionInfo
{
- position[]={6858.7598,109.70748,7149.2754};
- angles[]={0,6.0662537,0};
+ position[]={6874.2017,105.66837,7189.2676};
+ angles[]={0,4.4819398,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=1354;
- type="Land_Cargo_Patrol_V1_F";
+ id=1350;
+ type="Land_Mil_WallBig_4m_F";
+ atlOffset=3.0517578e-005;
};
- class Item381
+ class Item355
{
dataType="Object";
class PositionInfo
@@ -13929,11 +9633,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1355;
type="Land_HBarrier_5_F";
};
- class Item382
+ class Item356
{
dataType="Object";
class PositionInfo
@@ -13945,11 +9650,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1356;
type="Land_HBarrier_5_F";
};
- class Item383
+ class Item357
{
dataType="Object";
class PositionInfo
@@ -13961,11 +9667,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1357;
type="Land_HBarrier_5_F";
};
- class Item384
+ class Item358
{
dataType="Object";
class PositionInfo
@@ -13977,12 +9684,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1358;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item385
+ class Item359
{
dataType="Object";
class PositionInfo
@@ -13994,11 +9702,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1359;
type="Land_HBarrier_5_F";
};
- class Item386
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -14010,60 +9719,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1360;
type="Land_HBarrier_5_F";
};
- class Item387
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6815.0869,108.41675,7174.8335};
- angles[]={0,1.3538646,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1361;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item388
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6869.7754,109.02059,7187.4868};
- angles[]={0,2.9246607,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1362;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=-7.6293945e-006;
- };
- class Item389
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6877.6558,109.47288,7155.0078};
- angles[]={0,6.0662584,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1363;
- type="Land_Cargo_Patrol_V1_F";
- };
- class Item390
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -14075,11 +9736,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1364;
type="Land_HBarrier_5_F";
};
- class Item391
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -14091,12 +9753,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1365;
type="Land_HBarrier_5_F";
atlOffset=2.2888184e-005;
};
- class Item392
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -14108,12 +9771,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1366;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item393
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -14125,44 +9789,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1367;
type="Land_HBarrier_5_F";
atlOffset=-7.6293945e-006;
};
- class Item394
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6847.6445,105.27355,7181.7319};
- angles[]={0,6.0478468,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1368;
- type="Land_Cargo_House_V1_F";
- };
- class Item395
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6856.5728,105.14413,7183.6055};
- angles[]={0,6.0478468,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1369;
- type="Land_Cargo_House_V1_F";
- };
- class Item396
+ class Item365
{
dataType="Logic";
class PositionInfo
@@ -14218,7 +9851,7 @@ class Mission
nAttributes=2;
};
};
- class Item397
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -14230,11 +9863,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1371;
type="Land_HelipadSquare_F";
};
- class Item398
+ class Item367
{
dataType="Logic";
class PositionInfo
@@ -14289,7 +9923,7 @@ class Mission
nAttributes=2;
};
};
- class Item399
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -14305,7 +9939,7 @@ class Mission
id=1373;
type="Land_Cargo_Patrol_V3_F";
};
- class Item400
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -14321,7 +9955,7 @@ class Mission
id=1374;
type="Land_Cargo_Patrol_V3_F";
};
- class Item401
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -14333,12 +9967,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1375;
type="Land_HBarrier_Big_F";
atlOffset=0.014328003;
};
- class Item402
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -14350,12 +9985,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1376;
type="Land_HBarrier_Big_F";
atlOffset=0.014328003;
};
- class Item403
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -14367,12 +10003,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1377;
type="Land_HBarrier_Big_F";
atlOffset=0.014328003;
};
- class Item404
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -14384,11 +10021,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1378;
type="Land_HBarrier_Big_F";
};
- class Item405
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -14400,11 +10038,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1379;
type="Land_HBarrier_Big_F";
};
- class Item406
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -14416,11 +10055,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1380;
type="Land_HBarrier_Big_F";
};
- class Item407
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -14432,11 +10072,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1381;
type="Land_HBarrier_Big_F";
};
- class Item408
+ class Item377
{
dataType="Logic";
class PositionInfo
@@ -14493,7 +10134,7 @@ class Mission
nAttributes=2;
};
};
- class Item409
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -14509,7 +10150,7 @@ class Mission
id=1383;
type="Land_Cargo_Tower_V3_F";
};
- class Item410
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -14525,7 +10166,7 @@ class Mission
id=1384;
type="Land_Cargo_Patrol_V3_F";
};
- class Item411
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -14541,7 +10182,7 @@ class Mission
id=1386;
type="Land_Cargo_Patrol_V3_F";
};
- class Item412
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -14553,11 +10194,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1387;
type="Land_HBarrier_Big_F";
};
- class Item413
+ class Item382
{
dataType="Logic";
class PositionInfo
@@ -14614,7 +10256,7 @@ class Mission
nAttributes=2;
};
};
- class Item414
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -14626,11 +10268,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1392;
type="Land_HelipadSquare_F";
};
- class Item415
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -14646,7 +10289,7 @@ class Mission
id=1393;
type="Land_Cargo_Patrol_V3_F";
};
- class Item416
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -14661,7 +10304,7 @@ class Mission
id=1394;
type="Land_Cargo_Patrol_V3_F";
};
- class Item417
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -14677,7 +10320,7 @@ class Mission
id=1395;
type="Land_Cargo_Patrol_V3_F";
};
- class Item418
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -14689,12 +10332,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1396;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item419
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -14706,12 +10350,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1397;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item420
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -14723,12 +10368,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1398;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item421
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -14740,12 +10386,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1399;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item422
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -14757,12 +10404,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1400;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item423
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -14774,12 +10422,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1401;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item424
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -14791,12 +10440,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1402;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item425
+ class Item394
{
dataType="Object";
class PositionInfo
@@ -14808,12 +10458,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1403;
type="Land_HBarrier_Big_F";
atlOffset=6.1035156e-005;
};
- class Item426
+ class Item395
{
dataType="Object";
class PositionInfo
@@ -14825,12 +10476,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1404;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item427
+ class Item396
{
dataType="Object";
class PositionInfo
@@ -14842,12 +10494,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1405;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item428
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -14859,12 +10512,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1406;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item429
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -14876,12 +10530,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1407;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item430
+ class Item399
{
dataType="Object";
class PositionInfo
@@ -14893,12 +10548,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1408;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item431
+ class Item400
{
dataType="Object";
class PositionInfo
@@ -14910,12 +10566,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1409;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item432
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -14927,12 +10584,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1410;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item433
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -14944,12 +10602,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1411;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item434
+ class Item403
{
dataType="Object";
class PositionInfo
@@ -14961,12 +10620,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1412;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item435
+ class Item404
{
dataType="Object";
class PositionInfo
@@ -14978,12 +10638,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1413;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item436
+ class Item405
{
dataType="Object";
class PositionInfo
@@ -14995,12 +10656,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1414;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item437
+ class Item406
{
dataType="Object";
class PositionInfo
@@ -15012,12 +10674,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1415;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item438
+ class Item407
{
dataType="Object";
class PositionInfo
@@ -15029,12 +10692,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1416;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item439
+ class Item408
{
dataType="Object";
class PositionInfo
@@ -15046,12 +10710,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1417;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item440
+ class Item409
{
dataType="Object";
class PositionInfo
@@ -15063,12 +10728,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1418;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item441
+ class Item410
{
dataType="Object";
class PositionInfo
@@ -15080,12 +10746,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1419;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item442
+ class Item411
{
dataType="Object";
class PositionInfo
@@ -15097,12 +10764,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1420;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item443
+ class Item412
{
dataType="Object";
class PositionInfo
@@ -15114,12 +10782,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1421;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item444
+ class Item413
{
dataType="Object";
class PositionInfo
@@ -15131,11 +10800,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1422;
type="Land_HBarrier_Big_F";
};
- class Item445
+ class Item414
{
dataType="Object";
class PositionInfo
@@ -15151,7 +10821,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25006104;
};
- class Item446
+ class Item415
{
dataType="Object";
class PositionInfo
@@ -15163,12 +10833,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1424;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item447
+ class Item416
{
dataType="Object";
class PositionInfo
@@ -15180,12 +10851,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1425;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item448
+ class Item417
{
dataType="Object";
class PositionInfo
@@ -15197,12 +10869,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1426;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item449
+ class Item418
{
dataType="Object";
class PositionInfo
@@ -15214,12 +10887,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1427;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item450
+ class Item419
{
dataType="Object";
class PositionInfo
@@ -15231,12 +10905,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1428;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item451
+ class Item420
{
dataType="Object";
class PositionInfo
@@ -15248,12 +10923,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1429;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item452
+ class Item421
{
dataType="Object";
class PositionInfo
@@ -15265,12 +10941,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1430;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item453
+ class Item422
{
dataType="Object";
class PositionInfo
@@ -15286,7 +10963,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25003052;
};
- class Item454
+ class Item423
{
dataType="Object";
class PositionInfo
@@ -15303,7 +10980,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=3.0517578e-005;
};
- class Item455
+ class Item424
{
dataType="Object";
class PositionInfo
@@ -15320,7 +10997,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=3.0517578e-005;
};
- class Item456
+ class Item425
{
dataType="Object";
class PositionInfo
@@ -15336,7 +11013,7 @@ class Mission
id=1434;
type="Land_Medevac_house_V1_F";
};
- class Item457
+ class Item426
{
dataType="Object";
class PositionInfo
@@ -15352,7 +11029,7 @@ class Mission
id=1435;
type="Land_Cargo_Patrol_V3_F";
};
- class Item458
+ class Item427
{
dataType="Object";
class PositionInfo
@@ -15368,7 +11045,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-1.5258789e-005;
};
- class Item459
+ class Item428
{
dataType="Object";
class PositionInfo
@@ -15385,7 +11062,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=1.5258789e-005;
};
- class Item460
+ class Item429
{
dataType="Object";
class PositionInfo
@@ -15400,7 +11077,7 @@ class Mission
id=1438;
type="Land_Cargo_House_V3_F";
};
- class Item461
+ class Item430
{
dataType="Object";
class PositionInfo
@@ -15416,7 +11093,7 @@ class Mission
id=1439;
type="Land_Cargo_Patrol_V3_F";
};
- class Item462
+ class Item431
{
dataType="Object";
class PositionInfo
@@ -15433,7 +11110,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=1.5258789e-005;
};
- class Item463
+ class Item432
{
dataType="Object";
class PositionInfo
@@ -15445,12 +11122,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1441;
type="Land_Cargo40_sand_F";
atlOffset=-0.0128479;
};
- class Item464
+ class Item433
{
dataType="Object";
class PositionInfo
@@ -15462,12 +11141,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1442;
type="Land_Cargo40_sand_F";
atlOffset=-0.011413574;
};
- class Item465
+ class Item434
{
dataType="Object";
class PositionInfo
@@ -15478,12 +11159,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1443;
type="Land_Cargo40_sand_F";
atlOffset=2.6040955;
};
- class Item466
+ class Item435
{
dataType="Object";
class PositionInfo
@@ -15495,12 +11178,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1444;
type="Land_HBarrier_5_F";
atlOffset=0.0089874268;
};
- class Item467
+ class Item436
{
dataType="Object";
class PositionInfo
@@ -15512,12 +11196,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1445;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item468
+ class Item437
{
dataType="Object";
class PositionInfo
@@ -15529,12 +11214,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1446;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item469
+ class Item438
{
dataType="Object";
class PositionInfo
@@ -15546,12 +11232,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1447;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item470
+ class Item439
{
dataType="Object";
class PositionInfo
@@ -15563,12 +11250,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1455;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item471
+ class Item440
{
dataType="Object";
class PositionInfo
@@ -15580,12 +11268,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1456;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item472
+ class Item441
{
dataType="Object";
class PositionInfo
@@ -15597,11 +11286,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1457;
type="Land_HBarrier_5_F";
};
- class Item473
+ class Item442
{
dataType="Object";
class PositionInfo
@@ -15613,12 +11303,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1458;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item474
+ class Item443
{
dataType="Object";
class PositionInfo
@@ -15630,11 +11321,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1459;
type="Land_HBarrier_5_F";
};
- class Item475
+ class Item444
{
dataType="Object";
class PositionInfo
@@ -15646,11 +11338,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1462;
type="Land_HBarrier_5_F";
};
- class Item476
+ class Item445
{
dataType="Object";
class PositionInfo
@@ -15662,11 +11355,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1463;
type="Land_HBarrier_5_F";
};
- class Item477
+ class Item446
{
dataType="Object";
class PositionInfo
@@ -15678,11 +11372,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1465;
type="Land_HBarrier_5_F";
};
- class Item478
+ class Item447
{
dataType="Object";
class PositionInfo
@@ -15694,11 +11389,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1466;
type="Land_HBarrier_5_F";
};
- class Item479
+ class Item448
{
dataType="Object";
class PositionInfo
@@ -15710,11 +11406,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1467;
type="Land_HBarrier_5_F";
};
- class Item480
+ class Item449
{
dataType="Object";
class PositionInfo
@@ -15726,11 +11423,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1468;
type="Land_HBarrier_5_F";
};
- class Item481
+ class Item450
{
dataType="Object";
class PositionInfo
@@ -15742,11 +11440,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1469;
type="Land_HBarrier_5_F";
};
- class Item482
+ class Item451
{
dataType="Object";
class PositionInfo
@@ -15758,12 +11457,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1470;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item483
+ class Item452
{
dataType="Object";
class PositionInfo
@@ -15775,12 +11475,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1473;
type="Land_HBarrier_3_F";
atlOffset=6.1035156e-005;
};
- class Item484
+ class Item453
{
dataType="Object";
class PositionInfo
@@ -15792,11 +11493,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1490;
type="Land_HBarrier_5_F";
};
- class Item485
+ class Item454
{
dataType="Object";
class PositionInfo
@@ -15808,11 +11510,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1491;
type="Land_HBarrier_5_F";
};
- class Item486
+ class Item455
{
dataType="Object";
class PositionInfo
@@ -15824,11 +11527,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1494;
type="Land_HBarrier_5_F";
};
- class Item487
+ class Item456
{
dataType="Object";
class PositionInfo
@@ -15840,12 +11544,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1498;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item488
+ class Item457
{
dataType="Object";
class PositionInfo
@@ -15857,12 +11562,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1499;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item489
+ class Item458
{
dataType="Object";
class PositionInfo
@@ -15874,12 +11580,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1500;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item490
+ class Item459
{
dataType="Object";
class PositionInfo
@@ -15891,12 +11598,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1501;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item491
+ class Item460
{
dataType="Object";
class PositionInfo
@@ -15913,7 +11621,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=1.5258789e-005;
};
- class Item492
+ class Item461
{
dataType="Object";
class PositionInfo
@@ -15929,7 +11637,7 @@ class Mission
id=1505;
type="Land_Cargo_House_V3_F";
};
- class Item493
+ class Item462
{
dataType="Object";
class PositionInfo
@@ -15946,7 +11654,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=1.5258789e-005;
};
- class Item494
+ class Item463
{
dataType="Object";
class PositionInfo
@@ -15962,7 +11670,7 @@ class Mission
id=1507;
type="Land_Cargo_Patrol_V3_F";
};
- class Item495
+ class Item464
{
dataType="Object";
class PositionInfo
@@ -15978,7 +11686,7 @@ class Mission
id=1510;
type="Land_Cargo_Patrol_V3_F";
};
- class Item496
+ class Item465
{
dataType="Layer";
name="Camp Audacity";
@@ -15998,6 +11706,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1511;
type="Land_HBarrierBig_F";
@@ -16085,6 +11794,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1516;
type="Land_Cargo20_military_green_F";
@@ -16103,6 +11814,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1517;
type="Land_HBarrierBig_F";
@@ -16121,6 +11833,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1518;
type="Land_HBarrierBig_F";
@@ -16138,6 +11851,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1519;
type="Land_HBarrier_5_F";
@@ -16155,6 +11869,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1520;
type="Land_HBarrier_5_F";
@@ -16173,6 +11888,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1521;
type="Land_HBarrier_5_F";
@@ -16191,6 +11907,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1522;
type="Land_HBarrierBig_F";
@@ -16209,6 +11926,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1523;
type="Land_HBarrierBig_F";
@@ -16226,6 +11944,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1524;
type="Land_HBarrierBig_F";
@@ -16244,6 +11963,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1525;
type="Land_HBarrier_5_F";
@@ -16262,6 +11982,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1526;
type="Land_HBarrierBig_F";
@@ -16280,6 +12001,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1527;
type="Land_HBarrier_5_F";
@@ -16298,6 +12020,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1528;
type="Land_HBarrier_5_F";
@@ -16315,6 +12038,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1529;
type="Land_HBarrierBig_F";
@@ -16367,6 +12091,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1532;
type="Land_HBarrierBig_F";
@@ -16384,6 +12109,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1533;
type="Land_HBarrierBig_F";
@@ -16401,6 +12127,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1534;
type="Land_HBarrier_5_F";
@@ -16419,6 +12146,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1535;
type="Land_HBarrier_5_F";
@@ -16437,6 +12165,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1536;
type="Land_HBarrier_5_F";
@@ -16455,6 +12184,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1537;
type="Land_HBarrierBig_F";
@@ -16473,6 +12203,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1538;
type="Land_HBarrierBig_F";
@@ -16490,6 +12221,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1539;
type="Land_HBarrierBig_F";
@@ -16507,6 +12239,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1540;
type="Land_HBarrier_5_F";
@@ -16524,6 +12257,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1541;
type="Land_HBarrierBig_F";
@@ -16541,6 +12275,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1542;
type="Land_HBarrier_5_F";
@@ -16558,6 +12293,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1543;
type="Land_HBarrier_5_F";
@@ -16575,6 +12311,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1544;
type="Land_Cargo20_military_green_F";
@@ -16593,6 +12331,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1545;
type="Land_Cargo20_military_green_F";
@@ -16611,6 +12351,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1546;
type="Land_HBarrier_5_F";
@@ -16628,6 +12369,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1547;
type="Land_HBarrier_5_F";
@@ -16645,6 +12387,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1548;
type="Land_HBarrier_5_F";
@@ -16662,6 +12405,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1549;
type="Land_HBarrier_5_F";
@@ -16680,6 +12424,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1550;
type="Land_HBarrier_5_F";
@@ -16697,6 +12442,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1551;
type="Land_HBarrier_5_F";
@@ -16784,6 +12530,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1557;
type="Land_Cargo20_military_green_F";
@@ -16923,6 +12671,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1572;
type="Land_HBarrier_5_F";
@@ -16940,6 +12689,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1573;
type="Land_HBarrier_5_F";
@@ -16957,6 +12707,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1574;
type="Land_HBarrier_5_F";
@@ -16975,6 +12726,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1575;
type="Land_HBarrierBig_F";
@@ -17026,6 +12778,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1578;
type="Land_HBarrier_5_F";
@@ -17043,6 +12796,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1579;
type="Land_HBarrier_5_F";
@@ -17060,6 +12814,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1580;
type="Land_HBarrier_5_F";
@@ -17078,6 +12833,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1581;
type="Land_HBarrierBig_F";
@@ -17131,6 +12887,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1677;
type="Land_HBarrier_5_F";
@@ -17149,6 +12906,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1678;
type="Land_HBarrier_5_F";
@@ -17166,6 +12924,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1679;
type="Land_HBarrier_5_F";
@@ -17218,6 +12977,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1683;
type="Land_HBarrier_5_F";
@@ -17236,6 +12996,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1684;
type="Land_HBarrier_5_F";
@@ -17254,6 +13015,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1685;
type="Land_HBarrier_5_F";
@@ -17272,6 +13034,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1686;
type="Land_HBarrierBig_F";
@@ -17341,6 +13104,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1694;
type="Land_HBarrierBig_F";
@@ -17358,6 +13122,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1695;
type="Land_HBarrierBig_F";
@@ -17376,6 +13141,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1754;
type="Land_HBarrierBig_F";
@@ -17428,6 +13194,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1759;
type="Land_Cargo20_military_green_F";
@@ -17446,6 +13214,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1760;
type="Land_HBarrierBig_F";
@@ -17463,6 +13232,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1761;
type="Land_HBarrierBig_F";
@@ -17481,6 +13251,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1762;
type="Land_HBarrier_5_F";
@@ -17498,6 +13269,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1763;
type="Land_HBarrier_5_F";
@@ -17515,6 +13287,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1764;
type="Land_HBarrier_5_F";
@@ -17533,6 +13306,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1765;
type="Land_HBarrierBig_F";
@@ -17551,6 +13325,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1766;
type="Land_HBarrierBig_F";
@@ -17568,6 +13343,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1768;
type="Land_HBarrier_5_F";
@@ -17585,6 +13361,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1770;
type="Land_HBarrier_5_F";
@@ -17602,6 +13379,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1771;
type="Land_HBarrier_5_F";
@@ -17619,6 +13397,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1772;
type="Land_HBarrierBig_F";
@@ -17654,6 +13433,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1775;
type="Land_HBarrierBig_F";
@@ -17670,6 +13450,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1776;
type="Land_HBarrierBig_F";
@@ -17688,6 +13469,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1777;
type="Land_HBarrier_5_F";
@@ -17706,6 +13488,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1778;
type="Land_HBarrier_5_F";
@@ -17723,6 +13506,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1779;
type="Land_HBarrier_5_F";
@@ -17741,6 +13525,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1780;
type="Land_HBarrierBig_F";
@@ -17759,6 +13544,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1781;
type="Land_HBarrierBig_F";
@@ -17776,6 +13562,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1782;
type="Land_HBarrierBig_F";
@@ -17793,6 +13580,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1783;
type="Land_HBarrier_5_F";
@@ -17810,6 +13598,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1784;
type="Land_HBarrierBig_F";
@@ -17827,6 +13616,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1785;
type="Land_HBarrier_5_F";
@@ -17844,6 +13634,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1786;
type="Land_HBarrier_5_F";
@@ -17861,6 +13652,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1787;
type="Land_Cargo20_military_green_F";
@@ -17879,6 +13672,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1788;
type="Land_Cargo20_military_green_F";
@@ -17897,6 +13692,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1789;
type="Land_HBarrier_5_F";
@@ -17914,6 +13710,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1790;
type="Land_HBarrier_5_F";
@@ -17931,6 +13728,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1791;
type="Land_HBarrier_5_F";
@@ -17948,6 +13746,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1792;
type="Land_HBarrier_5_F";
@@ -17965,6 +13764,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1794;
type="Land_HBarrier_5_F";
@@ -18018,6 +13818,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1799;
type="Land_Cargo20_military_green_F";
@@ -18140,6 +13942,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1808;
type="Land_HBarrierBig_F";
@@ -18158,6 +13961,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1809;
type="Land_HBarrierBig_F";
@@ -18175,6 +13979,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1810;
type="Land_HBarrierBig_F";
@@ -18193,6 +13998,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1811;
type="Land_HBarrier_5_F";
@@ -18201,7 +14007,7 @@ class Mission
id=1567;
atlOffset=0.13801575;
};
- class Item497
+ class Item466
{
dataType="Logic";
class PositionInfo
@@ -18255,7 +14061,7 @@ class Mission
nAttributes=2;
};
};
- class Item498
+ class Item467
{
dataType="Logic";
class PositionInfo
@@ -18311,7 +14117,7 @@ class Mission
nAttributes=2;
};
};
- class Item499
+ class Item468
{
dataType="Logic";
class PositionInfo
@@ -18368,7 +14174,7 @@ class Mission
nAttributes=2;
};
};
- class Item500
+ class Item469
{
dataType="Logic";
class PositionInfo
@@ -18424,7 +14230,7 @@ class Mission
nAttributes=2;
};
};
- class Item501
+ class Item470
{
dataType="Object";
class PositionInfo
@@ -18436,11 +14242,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1586;
type="Land_HelipadSquare_F";
};
- class Item502
+ class Item471
{
dataType="Logic";
class PositionInfo
@@ -18496,7 +14303,7 @@ class Mission
nAttributes=2;
};
};
- class Item503
+ class Item472
{
dataType="Logic";
class PositionInfo
@@ -18553,7 +14360,7 @@ class Mission
nAttributes=2;
};
};
- class Item504
+ class Item473
{
dataType="Object";
class PositionInfo
@@ -18569,7 +14376,7 @@ class Mission
id=1589;
type="Land_Cargo_Patrol_V3_F";
};
- class Item505
+ class Item474
{
dataType="Object";
class PositionInfo
@@ -18585,7 +14392,7 @@ class Mission
id=1590;
type="Land_Cargo_Patrol_V3_F";
};
- class Item506
+ class Item475
{
dataType="Object";
class PositionInfo
@@ -18597,12 +14404,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1594;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item507
+ class Item476
{
dataType="Object";
class PositionInfo
@@ -18614,11 +14422,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1598;
type="Land_HBarrier_Big_F";
};
- class Item508
+ class Item477
{
dataType="Object";
class PositionInfo
@@ -18630,12 +14439,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1600;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item509
+ class Item478
{
dataType="Object";
class PositionInfo
@@ -18647,12 +14457,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1601;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item510
+ class Item479
{
dataType="Object";
class PositionInfo
@@ -18664,12 +14475,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1602;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item511
+ class Item480
{
dataType="Object";
class PositionInfo
@@ -18681,12 +14493,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1603;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item512
+ class Item481
{
dataType="Object";
class PositionInfo
@@ -18698,11 +14511,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1604;
type="Land_HBarrier_Big_F";
};
- class Item513
+ class Item482
{
dataType="Object";
class PositionInfo
@@ -18714,12 +14528,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1605;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item514
+ class Item483
{
dataType="Object";
class PositionInfo
@@ -18731,12 +14546,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1606;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item515
+ class Item484
{
dataType="Object";
class PositionInfo
@@ -18748,12 +14564,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1607;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item516
+ class Item485
{
dataType="Object";
class PositionInfo
@@ -18765,12 +14582,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1608;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item517
+ class Item486
{
dataType="Object";
class PositionInfo
@@ -18782,12 +14600,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1609;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item518
+ class Item487
{
dataType="Object";
class PositionInfo
@@ -18799,12 +14618,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1610;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item519
+ class Item488
{
dataType="Object";
class PositionInfo
@@ -18816,12 +14636,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1611;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item520
+ class Item489
{
dataType="Object";
class PositionInfo
@@ -18833,11 +14654,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1612;
type="Land_HBarrier_Big_F";
};
- class Item521
+ class Item490
{
dataType="Object";
class PositionInfo
@@ -18849,12 +14671,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1613;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item522
+ class Item491
{
dataType="Object";
class PositionInfo
@@ -18866,12 +14689,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1614;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item523
+ class Item492
{
dataType="Object";
class PositionInfo
@@ -18883,12 +14707,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1615;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item524
+ class Item493
{
dataType="Object";
class PositionInfo
@@ -18900,11 +14725,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1616;
type="Land_HBarrier_Big_F";
};
- class Item525
+ class Item494
{
dataType="Object";
class PositionInfo
@@ -18916,11 +14742,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1617;
type="Land_HBarrier_Big_F";
};
- class Item526
+ class Item495
{
dataType="Object";
class PositionInfo
@@ -18932,12 +14759,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1618;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item527
+ class Item496
{
dataType="Object";
class PositionInfo
@@ -18949,12 +14777,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1620;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item528
+ class Item497
{
dataType="Object";
class PositionInfo
@@ -18966,12 +14795,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1621;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item529
+ class Item498
{
dataType="Object";
class PositionInfo
@@ -18983,12 +14813,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1622;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item530
+ class Item499
{
dataType="Object";
class PositionInfo
@@ -19000,12 +14831,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1623;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item531
+ class Item500
{
dataType="Object";
class PositionInfo
@@ -19017,12 +14849,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1624;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item532
+ class Item501
{
dataType="Object";
class PositionInfo
@@ -19034,12 +14867,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1625;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item533
+ class Item502
{
dataType="Object";
class PositionInfo
@@ -19051,12 +14885,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1626;
type="Land_HBarrier_Big_F";
atlOffset=2.2888184e-005;
};
- class Item534
+ class Item503
{
dataType="Object";
class PositionInfo
@@ -19072,7 +14907,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25001526;
};
- class Item535
+ class Item504
{
dataType="Object";
class PositionInfo
@@ -19089,7 +14924,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=1.5258789e-005;
};
- class Item536
+ class Item505
{
dataType="Object";
class PositionInfo
@@ -19106,7 +14941,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=7.6293945e-006;
};
- class Item537
+ class Item506
{
dataType="Object";
class PositionInfo
@@ -19122,7 +14957,7 @@ class Mission
id=1630;
type="Land_Medevac_house_V1_F";
};
- class Item538
+ class Item507
{
dataType="Object";
class PositionInfo
@@ -19138,7 +14973,7 @@ class Mission
id=1631;
type="Land_Cargo_Patrol_V3_F";
};
- class Item539
+ class Item508
{
dataType="Object";
class PositionInfo
@@ -19155,7 +14990,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-7.6293945e-006;
};
- class Item540
+ class Item509
{
dataType="Object";
class PositionInfo
@@ -19171,7 +15006,7 @@ class Mission
id=1633;
type="Land_Cargo_House_V3_F";
};
- class Item541
+ class Item510
{
dataType="Object";
class PositionInfo
@@ -19187,7 +15022,7 @@ class Mission
id=1634;
type="Land_Cargo_House_V3_F";
};
- class Item542
+ class Item511
{
dataType="Object";
class PositionInfo
@@ -19204,7 +15039,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=7.6293945e-006;
};
- class Item543
+ class Item512
{
dataType="Object";
class PositionInfo
@@ -19220,7 +15055,7 @@ class Mission
id=1636;
type="Land_Cargo_Patrol_V3_F";
};
- class Item544
+ class Item513
{
dataType="Object";
class PositionInfo
@@ -19232,12 +15067,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1637;
type="Land_Cargo40_sand_F";
atlOffset=-0.0092849731;
};
- class Item545
+ class Item514
{
dataType="Object";
class PositionInfo
@@ -19249,12 +15086,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1638;
type="Land_Cargo40_sand_F";
atlOffset=-0.016242981;
};
- class Item546
+ class Item515
{
dataType="Object";
class PositionInfo
@@ -19265,12 +15104,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1639;
type="Land_Cargo40_sand_F";
atlOffset=2.6031113;
};
- class Item547
+ class Item516
{
dataType="Object";
class PositionInfo
@@ -19282,11 +15123,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1641;
type="Land_HelipadSquare_F";
};
- class Item548
+ class Item517
{
dataType="Object";
class PositionInfo
@@ -19302,7 +15144,7 @@ class Mission
id=1642;
type="Land_Cargo_Tower_V3_F";
};
- class Item549
+ class Item518
{
dataType="Object";
class PositionInfo
@@ -19318,7 +15160,7 @@ class Mission
id=1643;
type="Land_Cargo_Patrol_V3_F";
};
- class Item550
+ class Item519
{
dataType="Object";
class PositionInfo
@@ -19330,11 +15172,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1644;
type="Land_HBarrier_Big_F";
};
- class Item551
+ class Item520
{
dataType="Object";
class PositionInfo
@@ -19346,11 +15189,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1645;
type="Land_HBarrier_Big_F";
};
- class Item552
+ class Item521
{
dataType="Object";
class PositionInfo
@@ -19362,11 +15206,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1646;
type="Land_HBarrier_Big_F";
};
- class Item553
+ class Item522
{
dataType="Object";
class PositionInfo
@@ -19378,12 +15223,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1647;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item554
+ class Item523
{
dataType="Object";
class PositionInfo
@@ -19395,11 +15241,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1648;
type="Land_HBarrier_Big_F";
};
- class Item555
+ class Item524
{
dataType="Object";
class PositionInfo
@@ -19411,11 +15258,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1649;
type="Land_HBarrier_Big_F";
};
- class Item556
+ class Item525
{
dataType="Object";
class PositionInfo
@@ -19431,7 +15279,7 @@ class Mission
id=1650;
type="Land_Medevac_house_V1_F";
};
- class Item557
+ class Item526
{
dataType="Object";
class PositionInfo
@@ -19447,7 +15295,7 @@ class Mission
id=1651;
type="Land_Cargo_Patrol_V3_F";
};
- class Item558
+ class Item527
{
dataType="Object";
class PositionInfo
@@ -19463,7 +15311,7 @@ class Mission
id=1652;
type="Land_Cargo_Patrol_V3_F";
};
- class Item559
+ class Item528
{
dataType="Logic";
class PositionInfo
@@ -19519,7 +15367,7 @@ class Mission
nAttributes=2;
};
};
- class Item560
+ class Item529
{
dataType="Logic";
class PositionInfo
@@ -19575,7 +15423,7 @@ class Mission
nAttributes=2;
};
};
- class Item561
+ class Item530
{
dataType="Object";
class PositionInfo
@@ -19587,11 +15435,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1655;
type="Land_HelipadSquare_F";
};
- class Item562
+ class Item531
{
dataType="Object";
class PositionInfo
@@ -19608,7 +15457,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=-0.026695251;
};
- class Item563
+ class Item532
{
dataType="Logic";
class PositionInfo
@@ -19663,7 +15512,7 @@ class Mission
nAttributes=2;
};
};
- class Item564
+ class Item533
{
dataType="Object";
class PositionInfo
@@ -19679,7 +15528,7 @@ class Mission
id=1658;
type="Land_Cargo_Patrol_V3_F";
};
- class Item565
+ class Item534
{
dataType="Object";
class PositionInfo
@@ -19695,7 +15544,7 @@ class Mission
id=1659;
type="Land_Cargo_Patrol_V3_F";
};
- class Item566
+ class Item535
{
dataType="Object";
class PositionInfo
@@ -19711,7 +15560,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25002289;
};
- class Item567
+ class Item536
{
dataType="Logic";
class PositionInfo
@@ -19765,7 +15614,7 @@ class Mission
nAttributes=2;
};
};
- class Item568
+ class Item537
{
dataType="Logic";
class PositionInfo
@@ -19819,7 +15668,7 @@ class Mission
nAttributes=2;
};
};
- class Item569
+ class Item538
{
dataType="Logic";
class PositionInfo
@@ -19874,7 +15723,7 @@ class Mission
nAttributes=2;
};
};
- class Item570
+ class Item539
{
dataType="Logic";
class PositionInfo
@@ -19928,7 +15777,7 @@ class Mission
nAttributes=2;
};
};
- class Item571
+ class Item540
{
dataType="Logic";
class PositionInfo
@@ -19982,7 +15831,7 @@ class Mission
nAttributes=2;
};
};
- class Item572
+ class Item541
{
dataType="Object";
class PositionInfo
@@ -19999,7 +15848,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=-1.5258789e-005;
};
- class Item573
+ class Item542
{
dataType="Logic";
class PositionInfo
@@ -20054,7 +15903,7 @@ class Mission
nAttributes=2;
};
};
- class Item574
+ class Item543
{
dataType="Object";
class PositionInfo
@@ -20070,7 +15919,7 @@ class Mission
id=1668;
type="Land_Cargo_Tower_V3_F";
};
- class Item575
+ class Item544
{
dataType="Object";
class PositionInfo
@@ -20086,7 +15935,7 @@ class Mission
id=1669;
type="Land_Cargo_Patrol_V3_F";
};
- class Item576
+ class Item545
{
dataType="Object";
class PositionInfo
@@ -20102,7 +15951,7 @@ class Mission
id=1670;
type="Land_Cargo_Patrol_V3_F";
};
- class Item577
+ class Item546
{
dataType="Object";
class PositionInfo
@@ -20118,7 +15967,7 @@ class Mission
id=1671;
type="Land_Cargo_Patrol_V3_F";
};
- class Item578
+ class Item547
{
dataType="Object";
class PositionInfo
@@ -20134,7 +15983,7 @@ class Mission
id=1672;
type="Land_Cargo_Patrol_V3_F";
};
- class Item579
+ class Item548
{
dataType="Object";
class PositionInfo
@@ -20146,11 +15995,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1673;
type="Land_HelipadSquare_F";
};
- class Item580
+ class Item549
{
dataType="Object";
class PositionInfo
@@ -20161,11 +16011,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1674;
type="Land_HelipadSquare_F";
};
- class Item581
+ class Item550
{
dataType="Logic";
class PositionInfo
@@ -20220,7 +16071,7 @@ class Mission
nAttributes=2;
};
};
- class Item582
+ class Item551
{
dataType="Logic";
class PositionInfo
@@ -20277,7 +16128,7 @@ class Mission
nAttributes=2;
};
};
- class Item583
+ class Item552
{
dataType="Object";
class PositionInfo
@@ -20289,12 +16140,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1697;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item584
+ class Item553
{
dataType="Object";
class PositionInfo
@@ -20306,12 +16158,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1698;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item585
+ class Item554
{
dataType="Object";
class PositionInfo
@@ -20323,12 +16176,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1699;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item586
+ class Item555
{
dataType="Object";
class PositionInfo
@@ -20340,12 +16194,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1700;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item587
+ class Item556
{
dataType="Object";
class PositionInfo
@@ -20357,11 +16212,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1701;
type="Land_HBarrier_Big_F";
};
- class Item588
+ class Item557
{
dataType="Object";
class PositionInfo
@@ -20373,12 +16229,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1702;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item589
+ class Item558
{
dataType="Object";
class PositionInfo
@@ -20390,11 +16247,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1703;
type="Land_HBarrier_Big_F";
};
- class Item590
+ class Item559
{
dataType="Object";
class PositionInfo
@@ -20406,12 +16264,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1704;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item591
+ class Item560
{
dataType="Object";
class PositionInfo
@@ -20423,12 +16282,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1705;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item592
+ class Item561
{
dataType="Object";
class PositionInfo
@@ -20440,12 +16300,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1706;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item593
+ class Item562
{
dataType="Object";
class PositionInfo
@@ -20457,11 +16318,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1707;
type="Land_HBarrier_Big_F";
};
- class Item594
+ class Item563
{
dataType="Object";
class PositionInfo
@@ -20473,11 +16335,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1708;
type="Land_HBarrier_Big_F";
};
- class Item595
+ class Item564
{
dataType="Object";
class PositionInfo
@@ -20489,12 +16352,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1709;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item596
+ class Item565
{
dataType="Object";
class PositionInfo
@@ -20506,12 +16370,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1710;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item597
+ class Item566
{
dataType="Object";
class PositionInfo
@@ -20523,12 +16388,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1711;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item598
+ class Item567
{
dataType="Object";
class PositionInfo
@@ -20540,12 +16406,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1712;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item599
+ class Item568
{
dataType="Object";
class PositionInfo
@@ -20557,12 +16424,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1713;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item600
+ class Item569
{
dataType="Object";
class PositionInfo
@@ -20574,12 +16442,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1714;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item601
+ class Item570
{
dataType="Object";
class PositionInfo
@@ -20591,11 +16460,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1715;
type="Land_HBarrier_Big_F";
};
- class Item602
+ class Item571
{
dataType="Object";
class PositionInfo
@@ -20607,12 +16477,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1716;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item603
+ class Item572
{
dataType="Object";
class PositionInfo
@@ -20624,11 +16495,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1717;
type="Land_HBarrier_Big_F";
};
- class Item604
+ class Item573
{
dataType="Object";
class PositionInfo
@@ -20640,12 +16512,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1718;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item605
+ class Item574
{
dataType="Object";
class PositionInfo
@@ -20657,12 +16530,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1719;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item606
+ class Item575
{
dataType="Object";
class PositionInfo
@@ -20674,12 +16548,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1720;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item607
+ class Item576
{
dataType="Object";
class PositionInfo
@@ -20691,12 +16566,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1721;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item608
+ class Item577
{
dataType="Object";
class PositionInfo
@@ -20708,12 +16584,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1722;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item609
+ class Item578
{
dataType="Object";
class PositionInfo
@@ -20725,12 +16602,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1723;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item610
+ class Item579
{
dataType="Object";
class PositionInfo
@@ -20742,12 +16620,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1724;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item611
+ class Item580
{
dataType="Object";
class PositionInfo
@@ -20763,7 +16642,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25001526;
};
- class Item612
+ class Item581
{
dataType="Object";
class PositionInfo
@@ -20780,7 +16659,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=1.5258789e-005;
};
- class Item613
+ class Item582
{
dataType="Object";
class PositionInfo
@@ -20797,7 +16676,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=1.5258789e-005;
};
- class Item614
+ class Item583
{
dataType="Object";
class PositionInfo
@@ -20813,7 +16692,7 @@ class Mission
id=1728;
type="Land_Medevac_house_V1_F";
};
- class Item615
+ class Item584
{
dataType="Object";
class PositionInfo
@@ -20829,7 +16708,7 @@ class Mission
id=1729;
type="Land_Cargo_Patrol_V3_F";
};
- class Item616
+ class Item585
{
dataType="Object";
class PositionInfo
@@ -20846,7 +16725,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=1.5258789e-005;
};
- class Item617
+ class Item586
{
dataType="Object";
class PositionInfo
@@ -20863,7 +16742,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=1.5258789e-005;
};
- class Item618
+ class Item587
{
dataType="Object";
class PositionInfo
@@ -20879,7 +16758,7 @@ class Mission
id=1732;
type="Land_Cargo_House_V3_F";
};
- class Item619
+ class Item588
{
dataType="Object";
class PositionInfo
@@ -20895,7 +16774,7 @@ class Mission
id=1733;
type="Land_Cargo_Patrol_V3_F";
};
- class Item620
+ class Item589
{
dataType="Object";
class PositionInfo
@@ -20911,7 +16790,7 @@ class Mission
id=1734;
type="Land_Cargo_Patrol_V3_F";
};
- class Item621
+ class Item590
{
dataType="Object";
class PositionInfo
@@ -20923,12 +16802,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1735;
type="Land_Cargo40_sand_F";
atlOffset=-0.0090789795;
};
- class Item622
+ class Item591
{
dataType="Object";
class PositionInfo
@@ -20940,12 +16821,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1736;
type="Land_Cargo40_sand_F";
atlOffset=-0.010482788;
};
- class Item623
+ class Item592
{
dataType="Object";
class PositionInfo
@@ -20957,11 +16840,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1738;
type="Land_HelipadSquare_F";
};
- class Item624
+ class Item593
{
dataType="Logic";
class PositionInfo
@@ -21017,7 +16901,7 @@ class Mission
nAttributes=2;
};
};
- class Item625
+ class Item594
{
dataType="Object";
class PositionInfo
@@ -21033,7 +16917,7 @@ class Mission
id=1740;
type="Land_Ind_PowerStation_EP1";
};
- class Item626
+ class Item595
{
dataType="Object";
class PositionInfo
@@ -21049,7 +16933,7 @@ class Mission
id=1741;
type="Land_House_C_2_EP1";
};
- class Item627
+ class Item596
{
dataType="Object";
class PositionInfo
@@ -21065,7 +16949,7 @@ class Mission
id=1742;
type="Land_House_C_12_EP1";
};
- class Item628
+ class Item597
{
dataType="Object";
class PositionInfo
@@ -21081,7 +16965,7 @@ class Mission
id=1743;
type="Land_Shed_M01_EP1";
};
- class Item629
+ class Item598
{
dataType="Object";
class PositionInfo
@@ -21097,7 +16981,7 @@ class Mission
id=1744;
type="Land_Shed_W02_EP1";
};
- class Item630
+ class Item599
{
dataType="Object";
class PositionInfo
@@ -21113,7 +16997,7 @@ class Mission
id=1745;
type="Land_Mil_Guardhouse_EP1";
};
- class Item631
+ class Item600
{
dataType="Object";
class PositionInfo
@@ -21129,7 +17013,7 @@ class Mission
id=1748;
type="Wall_L1_2m5_EP1";
};
- class Item632
+ class Item601
{
dataType="Object";
class PositionInfo
@@ -21145,7 +17029,7 @@ class Mission
id=1752;
type="Wall_L1_2m5_EP1";
};
- class Item633
+ class Item602
{
dataType="Object";
class PositionInfo
@@ -21161,7 +17045,7 @@ class Mission
id=1753;
type="Land_House_C_2_EP1";
};
- class Item634
+ class Item603
{
dataType="Logic";
class PositionInfo
@@ -21216,7 +17100,7 @@ class Mission
nAttributes=2;
};
};
- class Item635
+ class Item604
{
dataType="Object";
class PositionInfo
@@ -21233,7 +17117,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=1.5258789e-005;
};
- class Item636
+ class Item605
{
dataType="Logic";
class PositionInfo
@@ -21290,7 +17174,7 @@ class Mission
nAttributes=2;
};
};
- class Item637
+ class Item606
{
dataType="Logic";
class PositionInfo
@@ -21345,7 +17229,7 @@ class Mission
nAttributes=2;
};
};
- class Item638
+ class Item607
{
dataType="Object";
class PositionInfo
@@ -21357,11 +17241,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1814;
type="Land_HelipadSquare_F";
};
- class Item639
+ class Item608
{
dataType="Object";
class PositionInfo
@@ -21377,7 +17262,7 @@ class Mission
id=1815;
type="Land_Cargo_Tower_V3_F";
};
- class Item640
+ class Item609
{
dataType="Object";
class PositionInfo
@@ -21393,7 +17278,7 @@ class Mission
id=1816;
type="Land_Cargo_Patrol_V3_F";
};
- class Item641
+ class Item610
{
dataType="Object";
class PositionInfo
@@ -21409,7 +17294,7 @@ class Mission
id=1817;
type="Land_Cargo_Patrol_V3_F";
};
- class Item642
+ class Item611
{
dataType="Object";
class PositionInfo
@@ -21425,7 +17310,7 @@ class Mission
id=1818;
type="Land_Cargo_Patrol_V3_F";
};
- class Item643
+ class Item612
{
dataType="Object";
class PositionInfo
@@ -21441,7 +17326,7 @@ class Mission
id=1819;
type="Land_Cargo_House_V3_F";
};
- class Item644
+ class Item613
{
dataType="Object";
class PositionInfo
@@ -21457,7 +17342,7 @@ class Mission
id=1822;
type="Land_Cargo_Patrol_V3_F";
};
- class Item645
+ class Item614
{
dataType="Object";
class PositionInfo
@@ -21473,7 +17358,7 @@ class Mission
id=1823;
type="Land_Medevac_house_V1_F";
};
- class Item646
+ class Item615
{
dataType="Object";
class PositionInfo
@@ -21489,7 +17374,7 @@ class Mission
id=1824;
type="Land_Cargo_Patrol_V3_F";
};
- class Item647
+ class Item616
{
dataType="Object";
class PositionInfo
@@ -21505,7 +17390,7 @@ class Mission
id=1825;
type="Land_Cargo_Patrol_V3_F";
};
- class Item648
+ class Item617
{
dataType="Layer";
name="Roadblock";
@@ -22221,77 +18106,77 @@ class Mission
id=1843;
atlOffset=0.15333557;
};
- class Item649
+ class Item618
{
dataType="Layer";
name="Hasty Roadblock";
id=1851;
atlOffset=-182.61;
};
- class Item650
+ class Item619
{
dataType="Layer";
name="Check Point (Large)";
id=1869;
atlOffset=-182.61;
};
- class Item651
+ class Item620
{
dataType="Layer";
name="Check Point (Medium)";
id=1874;
atlOffset=-182.61;
};
- class Item652
+ class Item621
{
dataType="Layer";
name="Check Point (Small)";
id=1879;
atlOffset=-182.61;
};
- class Item653
+ class Item622
{
dataType="Layer";
name="Camp Fortitude";
id=1930;
atlOffset=-182.61;
};
- class Item654
+ class Item623
{
dataType="Layer";
name="Camp Endurance";
id=1981;
atlOffset=-182.61;
};
- class Item655
+ class Item624
{
dataType="Layer";
name="Camp Defiance";
id=2031;
atlOffset=-182.61;
};
- class Item656
+ class Item625
{
dataType="Layer";
name="Camp Courage";
id=2084;
atlOffset=-182.61;
};
- class Item657
+ class Item626
{
dataType="Layer";
name="Camp Bravery";
id=2134;
atlOffset=-182.61;
};
- class Item658
+ class Item627
{
dataType="Layer";
name="Camp Audacity";
id=2191;
atlOffset=-182.61;
};
- class Item659
+ class Item628
{
dataType="Layer";
name="Camp Endurance";
@@ -22311,6 +18196,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2192;
type="Land_HBarrier_5_F";
@@ -22329,6 +18215,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2193;
type="Land_HBarrier_5_F";
@@ -22346,6 +18233,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2194;
type="Land_HBarrier_5_F";
@@ -22363,6 +18251,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2195;
type="Land_HBarrier_5_F";
@@ -22380,6 +18269,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2196;
type="Land_HBarrier_5_F";
@@ -22397,6 +18287,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2197;
type="Land_HBarrier_5_F";
@@ -22415,6 +18306,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2198;
type="Land_HBarrier_5_F";
@@ -22433,6 +18325,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2199;
type="Land_HBarrier_5_F";
@@ -22450,6 +18343,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2200;
type="Land_HBarrier_5_F";
@@ -22468,6 +18362,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2204;
type="Land_HBarrier_5_F";
@@ -22485,6 +18380,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2205;
type="Land_HBarrier_5_F";
@@ -22503,6 +18399,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2206;
type="Land_HBarrier_5_F";
@@ -22521,6 +18418,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2207;
type="Land_HBarrier_5_F";
@@ -22539,6 +18437,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2208;
type="Land_HBarrier_5_F";
@@ -22664,6 +18563,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2235;
type="Land_HBarrier_1_F";
@@ -22682,6 +18582,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2236;
type="Land_HBarrier_1_F";
@@ -22754,6 +18655,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2243;
type="Land_HBarrier_5_F";
@@ -22772,6 +18674,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2244;
type="Land_HBarrier_5_F";
@@ -22790,6 +18693,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2245;
type="Land_HBarrier_5_F";
@@ -22807,6 +18711,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2246;
type="Land_HBarrier_5_F";
@@ -22825,6 +18730,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2247;
type="Land_HBarrier_5_F";
@@ -22842,6 +18748,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2248;
type="Land_HBarrier_5_F";
@@ -22860,6 +18767,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2249;
type="Land_HBarrier_5_F";
@@ -22878,6 +18786,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2250;
type="Land_HBarrier_5_F";
@@ -22895,6 +18804,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2251;
type="Land_HBarrier_5_F";
@@ -22913,6 +18823,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2257;
type="Land_HBarrier_5_F";
@@ -22931,6 +18842,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2258;
type="Land_HBarrier_5_F";
@@ -22949,6 +18861,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2259;
type="Land_HBarrier_5_F";
@@ -22967,6 +18880,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2271;
type="Land_HBarrier_5_F";
@@ -22984,6 +18898,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2272;
type="Land_HBarrier_5_F";
@@ -23088,6 +19003,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2299;
type="Land_HBarrier_5_F";
@@ -23105,6 +19021,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2300;
type="Land_HBarrier_5_F";
@@ -23123,6 +19040,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2301;
type="Land_HBarrier_5_F";
@@ -23141,6 +19059,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2302;
type="Land_HBarrier_5_F";
@@ -23158,6 +19077,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2303;
type="Land_HBarrier_5_F";
@@ -23175,6 +19095,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2304;
type="Land_HBarrier_5_F";
@@ -23193,6 +19114,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2305;
type="Land_HBarrier_5_F";
@@ -23211,6 +19133,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2306;
type="Land_HBarrier_5_F";
@@ -23228,6 +19151,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2307;
type="Land_HBarrier_5_F";
@@ -23245,6 +19169,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2308;
type="Land_HBarrier_5_F";
@@ -23262,6 +19187,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2309;
type="Land_HBarrier_5_F";
@@ -23279,6 +19205,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2310;
type="Land_HBarrier_5_F";
@@ -23296,6 +19223,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2311;
type="Land_HBarrier_5_F";
@@ -23313,6 +19241,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2312;
type="Land_HBarrier_5_F";
@@ -23434,6 +19363,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2319;
type="Land_HBarrier_1_F";
@@ -23451,6 +19381,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2320;
type="Land_HBarrier_1_F";
@@ -23522,6 +19453,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2324;
type="Land_HBarrier_5_F";
@@ -23539,6 +19471,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2325;
type="Land_HBarrier_5_F";
@@ -23557,6 +19490,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2326;
type="Land_HBarrier_5_F";
@@ -23574,6 +19508,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2327;
type="Land_HBarrier_5_F";
@@ -23591,6 +19526,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2328;
type="Land_HBarrier_5_F";
@@ -23608,6 +19544,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2329;
type="Land_HBarrier_5_F";
@@ -23625,6 +19562,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2330;
type="Land_HBarrier_5_F";
@@ -23642,6 +19580,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2331;
type="Land_HBarrier_5_F";
@@ -23659,6 +19598,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2332;
type="Land_HBarrier_5_F";
@@ -23676,6 +19616,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2333;
type="Land_HBarrier_5_F";
@@ -23693,6 +19634,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2334;
type="Land_HBarrier_5_F";
@@ -23710,6 +19652,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2335;
type="Land_HBarrier_5_F";
@@ -23727,6 +19670,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2336;
type="Land_HBarrier_5_F";
@@ -23744,6 +19688,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2337;
type="Land_HBarrier_5_F";
@@ -23762,129 +19707,417 @@ class Mission
{
skill=0.2;
};
- id=2338;
- type="Land_Cargo_House_V3_F";
- atlOffset=0.030548096;
+ id=2338;
+ type="Land_Cargo_House_V3_F";
+ atlOffset=0.030548096;
+ };
+ class Item84
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1691.7253,131.68066,4116.3984};
+ angles[]={6.2791886,5.9234242,6.1993828};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=2339;
+ type="Land_Cargo_House_V3_F";
+ };
+ class Item85
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1687.4666,136.32469,4108.6763};
+ angles[]={0.031990308,1.2281212,6.2132983};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=2340;
+ type="Land_Cargo_Patrol_V3_F";
+ };
+ class Item86
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1706.34,136.41229,4143.7012};
+ angles[]={0,2.7636068,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=2341;
+ type="Land_Cargo_Patrol_V3_F";
+ };
+ class Item87
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1734.751,134.06857,4051.0129};
+ angles[]={0,5.9884691,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=2342;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-1.5258789e-005;
+ };
+ };
+ id=2242;
+ atlOffset=-0.51138306;
+ };
+ class Item629
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6008.1646,187.23492,3954.0344};
+ angles[]={0.061919641,4.2157087,6.2531939};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=2278;
+ type="Land_HelipadSquare_F";
+ };
+ class Item630
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1711.13,131.46999,4079.2727};
+ angles[]={0.031988446,4.4186234,6.2272449};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=2343;
+ type="Land_HelipadSquare_F";
+ };
+ class Item631
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={601.16974,125.52169,5341.7881};
+ angles[]={0,6.2341757,0};
+ };
+ areaSize[]={15.970406,0,31.309999};
+ areaIsRectangle=1;
+ flags=1;
+ id=2344;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.0046691895;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=11;
+ };
+ };
};
- class Item84
+ class Attribute1
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1691.7253,131.68066,4116.3984};
- angles[]={6.2791886,5.9234242,6.1993828};
- };
- side="Empty";
- flags=4;
- class Attributes
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
{
- skill=0.2;
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
};
- id=2339;
- type="Land_Cargo_House_V3_F";
};
- class Item85
+ nAttributes=2;
+ };
+ };
+ class Item632
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={637.92902,128.63306,5378.4258};
+ angles[]={6.1894612,6.2075253,0.01399754};
+ };
+ areaSize[]={16.249001,0,9.4619999};
+ areaIsRectangle=1;
+ flags=1;
+ id=2345;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=1.5258789e-005;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1687.4666,136.32469,4108.6763};
- angles[]={0.031990308,1.2281212,6.2132983};
- };
- side="Empty";
- flags=4;
- class Attributes
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
{
- skill=0.2;
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
};
- id=2340;
- type="Land_Cargo_Patrol_V3_F";
};
- class Item86
+ class Attribute1
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1706.34,136.41229,4143.7012};
- angles[]={0,2.7636068,0};
- };
- side="Empty";
- flags=4;
- class Attributes
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
{
- skill=0.2;
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
};
- id=2341;
- type="Land_Cargo_Patrol_V3_F";
};
- class Item87
+ nAttributes=2;
+ };
+ };
+ class Item633
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={611.3537,129.19513,5333.0034};
+ angles[]={0,6.2619452,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ };
+ id=2346;
+ type="Land_Ind_PowerStation_EP1";
+ atlOffset=0.77583313;
+ };
+ class Item634
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={602.04669,128.65479,5357.5786};
+ angles[]={0.0039967569,4.7067165,0.0039967569};
+ };
+ side="Empty";
+ class Attributes
+ {
+ };
+ id=2347;
+ type="Land_House_C_2_EP1";
+ atlOffset=0.71500397;
+ };
+ class Item635
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2356.2043,143.92323,8668.9473};
+ };
+ areaSize[]={25.473755,0,15.017578};
+ flags=1;
+ id=2348;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-0.027816772;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
{
- position[]={1734.751,134.06857,4051.0129};
- angles[]={0,5.9884691,0};
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
};
- side="Empty";
- flags=4;
- class Attributes
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
{
- skill=0.2;
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
};
- id=2342;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=-1.5258789e-005;
};
+ nAttributes=2;
};
- id=2242;
- atlOffset=-0.51138306;
};
- class Item660
+ class Item636
{
dataType="Object";
class PositionInfo
{
- position[]={6008.1646,187.23492,3954.0344};
- angles[]={0.061919641,4.2157087,6.2531939};
+ position[]={2344.5586,147.0947,8669.0381};
+ angles[]={6.2671871,0,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=2278;
- type="Land_HelipadSquare_F";
+ id=2349;
+ type="Land_House_C_3_dam_EP1";
+ };
+ class Item637
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2374.5659,144.0793,8650.2598};
+ };
+ areaSize[]={17.262451,0,12.098145};
+ flags=1;
+ id=2350;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.034667969;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
- class Item661
+ class Item638
{
dataType="Object";
class PositionInfo
{
- position[]={1711.13,131.46999,4079.2727};
- angles[]={0.031988446,4.4186234,6.2272449};
+ position[]={2387.7778,145.17418,8663.0742};
+ angles[]={0,0.45482829,0};
};
side="Empty";
- flags=4;
class Attributes
{
};
- id=2343;
- type="Land_HelipadSquare_F";
+ id=2351;
+ type="Land_House_C_1_v2_EP1";
+ atlOffset=0.34170532;
};
- class Item662
+ class Item639
{
dataType="Logic";
class PositionInfo
{
- position[]={601.16974,125.52169,5341.7881};
- angles[]={0,6.2341757,0};
+ position[]={2386.0908,143.36397,8668.2031};
+ angles[]={6.2591896,0,0.033987202};
};
- areaSize[]={15.970406,0,31.309999};
- areaIsRectangle=1;
+ areaSize[]={17.262451,0,12.098145};
flags=1;
- id=2344;
+ id=2352;
type="ModuleHideTerrainObjects_F";
- atlOffset=0.0046691895;
class CustomAttributes
{
class Attribute0
@@ -23902,7 +20135,7 @@ class Mission
"SCALAR"
};
};
- value=11;
+ value=15;
};
};
};
@@ -23928,2374 +20161,3307 @@ class Mission
nAttributes=2;
};
};
+ class Item640
+ {
+ dataType="Marker";
+ position[]={4456.8687,190.47711,3606.6189};
+ name="Synd_HQ";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorPink";
+ a=50;
+ b=50;
+ id=2353;
+ };
+ class Item641
+ {
+ dataType="Marker";
+ position[]={4463.71,2.7037606e+012,3610.7322};
+ name="respawn_guerrila";
+ text="Your Headquarters";
+ type="hd_flag";
+ colorName="ColorGUER";
+ id=2354;
+ atlOffset=2.7037606e+012;
+ };
+ class Item642
+ {
+ dataType="Marker";
+ position[]={5205.9829,154.868,5194.752};
+ name="island_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ fillName="Border";
+ a=5135.3979;
+ b=5166.2832;
+ drawBorder=1;
+ id=2440;
+ atlOffset=-0.71340942;
+ };
+ class Item643
+ {
+ dataType="Marker";
+ position[]={7903.9082,112.85633,6730.4644};
+ name="road";
+ type="hd_arrow";
+ angle=227.508;
+ id=2442;
+ };
+ class Item644
+ {
+ dataType="Marker";
+ position[]={7323.8711,86.567894,6915.7256};
+ name="road_1";
+ type="hd_arrow";
+ angle=227.508;
+ id=2443;
+ };
+ class Item645
+ {
+ dataType="Marker";
+ position[]={6799.0586,100.56138,7111.6851};
+ name="road_2";
+ type="hd_arrow";
+ angle=227.508;
+ id=2444;
+ };
+ class Item646
+ {
+ dataType="Marker";
+ position[]={5934.9629,113.91276,7145.8306};
+ name="road_3";
+ type="hd_arrow";
+ angle=227.508;
+ id=2445;
+ };
+ class Item647
+ {
+ dataType="Marker";
+ position[]={5257.1509,115.4539,7035.2681};
+ name="road_4";
+ type="hd_arrow";
+ angle=227.508;
+ id=2446;
+ };
+ class Item648
+ {
+ dataType="Marker";
+ position[]={4598.3291,136.91579,6981.1094};
+ name="road_5";
+ type="hd_arrow";
+ angle=227.508;
+ id=2447;
+ };
+ class Item649
+ {
+ dataType="Marker";
+ position[]={4050.3445,136.64241,6907.9141};
+ name="road_6";
+ type="hd_arrow";
+ angle=227.508;
+ id=2448;
+ };
+ class Item650
+ {
+ dataType="Marker";
+ position[]={4166.0698,136.03134,6484.4424};
+ name="road_7";
+ type="hd_arrow";
+ angle=227.508;
+ id=2449;
+ };
+ class Item651
+ {
+ dataType="Marker";
+ position[]={4293.9258,137.30052,6021.228};
+ name="road_8";
+ type="hd_arrow";
+ angle=227.508;
+ id=2450;
+ };
+ class Item652
+ {
+ dataType="Marker";
+ position[]={4311.5908,133.75879,5660.5771};
+ name="road_9";
+ type="hd_arrow";
+ angle=227.508;
+ id=2451;
+ };
+ class Item653
+ {
+ dataType="Marker";
+ position[]={3989.1768,127.41193,5219.5762};
+ name="road_10";
+ type="hd_arrow";
+ angle=227.508;
+ id=2452;
+ atlOffset=-7.6293945e-006;
+ };
+ class Item654
+ {
+ dataType="Marker";
+ position[]={3498.0703,156.86731,4549.0088};
+ name="road_11";
+ type="hd_arrow";
+ angle=227.508;
+ id=2453;
+ };
+ class Item655
+ {
+ dataType="Marker";
+ position[]={4105.0332,156.6432,4759.7324};
+ name="road_12";
+ type="hd_arrow";
+ angle=227.508;
+ id=2454;
+ };
+ class Item656
+ {
+ dataType="Marker";
+ position[]={5184.0425,165.94556,5099.5479};
+ name="road_13";
+ type="hd_arrow";
+ angle=227.508;
+ id=2455;
+ };
+ class Item657
+ {
+ dataType="Marker";
+ position[]={6080.3027,192.04518,3845.8979};
+ name="road_14";
+ type="hd_arrow";
+ angle=227.508;
+ id=2456;
+ };
+ class Item658
+ {
+ dataType="Marker";
+ position[]={7111.9653,297.34232,3385.6274};
+ name="road_15";
+ type="hd_arrow";
+ angle=227.508;
+ id=2457;
+ };
+ class Item659
+ {
+ dataType="Marker";
+ position[]={8513.8281,171.41595,3848.6235};
+ name="road_16";
+ type="hd_arrow";
+ angle=227.508;
+ id=2458;
+ };
+ class Item660
+ {
+ dataType="Marker";
+ position[]={8164.748,123.16555,4348.8281};
+ name="road_17";
+ type="hd_arrow";
+ angle=227.508;
+ id=2459;
+ };
+ class Item661
+ {
+ dataType="Marker";
+ position[]={8437.4014,77.830002,5358.4033};
+ name="road_18";
+ type="hd_arrow";
+ angle=227.508;
+ id=2460;
+ };
+ class Item662
+ {
+ dataType="Marker";
+ position[]={6869.1094,119.71,5586.9019};
+ name="road_19";
+ type="hd_arrow";
+ angle=227.508;
+ id=2461;
+ };
class Item663
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={637.92902,128.63306,5378.4258};
- angles[]={6.1894612,6.2075253,0.01399754};
- };
- areaSize[]={16.249001,0,9.4619999};
- areaIsRectangle=1;
- flags=1;
- id=2345;
- type="ModuleHideTerrainObjects_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={7109.1108,103.3672,6243.3799};
+ name="road_20";
+ type="hd_arrow";
+ angle=227.508;
+ id=2462;
+ atlOffset=7.6293945e-006;
};
class Item664
{
- dataType="Object";
- class PositionInfo
- {
- position[]={611.3537,129.19513,5333.0034};
- angles[]={0,6.2619452,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2346;
- type="Land_Ind_PowerStation_EP1";
- atlOffset=0.77583313;
+ dataType="Marker";
+ position[]={7198.2852,84.688133,6676.1284};
+ name="road_21";
+ type="hd_arrow";
+ angle=227.508;
+ id=2463;
};
class Item665
{
- dataType="Object";
- class PositionInfo
- {
- position[]={602.04669,128.65479,5357.5786};
- angles[]={0.0039967569,4.7067165,0.0039967569};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2347;
- type="Land_House_C_2_EP1";
- atlOffset=0.71500397;
+ dataType="Marker";
+ position[]={5471.2114,117.53523,6318.8008};
+ name="road_22";
+ type="hd_arrow";
+ angle=227.508;
+ id=2464;
};
class Item666
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={2356.2043,143.92323,8668.9473};
- };
- areaSize[]={25.473755,0,15.017578};
- flags=1;
- id=2348;
- type="ModuleHideTerrainObjects_F";
- atlOffset=-0.027816772;
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={1387.6671,149.92709,9917.2793};
+ name="road_23";
+ type="hd_arrow";
+ angle=227.508;
+ id=2465;
};
class Item667
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2344.5586,147.0947,8669.0381};
- angles[]={6.2671871,0,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2349;
- type="Land_House_C_3_dam_EP1";
+ dataType="Marker";
+ position[]={1334.3232,148.04881,9595.8418};
+ name="road_24";
+ type="hd_arrow";
+ angle=227.508;
+ id=2466;
};
class Item668
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={2374.5659,144.0793,8650.2598};
- };
- areaSize[]={17.262451,0,12.098145};
- flags=1;
- id=2350;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.034667969;
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={1330.6385,143.92969,9004.543};
+ name="road_25";
+ type="hd_arrow";
+ angle=227.508;
+ id=2467;
};
class Item669
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2387.7778,145.17418,8663.0742};
- angles[]={0,0.45482829,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2351;
- type="Land_House_C_1_v2_EP1";
- atlOffset=0.34170532;
+ dataType="Marker";
+ position[]={1301.5686,139.1483,8400.9688};
+ name="road_26";
+ type="hd_arrow";
+ angle=227.508;
+ id=2468;
};
class Item670
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={2386.0908,143.36397,8668.2031};
- angles[]={6.2591896,0,0.033987202};
- };
- areaSize[]={17.262451,0,12.098145};
- flags=1;
- id=2352;
- type="ModuleHideTerrainObjects_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={1310.5763,142.33211,8129.2568};
+ name="road_27";
+ type="hd_arrow";
+ angle=227.508;
+ id=2469;
};
class Item671
{
dataType="Marker";
- position[]={4456.8687,190.47711,3606.6189};
- name="Synd_HQ";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorPink";
- a=50;
- b=50;
- id=2353;
+ position[]={1249.5706,140.64145,7850.9985};
+ name="road_28";
+ type="hd_arrow";
+ angle=227.508;
+ id=2470;
};
class Item672
{
dataType="Marker";
- position[]={4463.71,2.7037606e+012,3610.7322};
- name="respawn_guerrila";
- text="Your Headquarters";
- type="hd_flag";
- colorName="ColorGUER";
- id=2354;
- atlOffset=2.7037606e+012;
+ position[]={1224.595,138.6162,7469.2114};
+ name="road_29";
+ type="hd_arrow";
+ angle=227.508;
+ id=2471;
};
class Item673
{
dataType="Marker";
- position[]={5205.9829,154.868,5194.752};
- name="island_1";
- markerType="RECTANGLE";
- type="rectangle";
- fillName="Border";
- a=5135.3979;
- b=5166.2832;
- drawBorder=1;
- id=2440;
- atlOffset=-0.71340942;
+ position[]={1366.6693,138.04636,7224.0986};
+ name="road_30";
+ type="hd_arrow";
+ angle=227.508;
+ id=2472;
};
class Item674
{
dataType="Marker";
- position[]={7903.9082,112.85633,6730.4644};
- name="road";
+ position[]={1007.8506,137.33551,7154.0308};
+ name="road_31";
type="hd_arrow";
angle=227.508;
- id=2442;
+ id=2473;
};
class Item675
{
dataType="Marker";
- position[]={7323.8711,86.567894,6915.7256};
- name="road_1";
+ position[]={1032.4167,134.16518,6830.2832};
+ name="road_32";
type="hd_arrow";
angle=227.508;
- id=2443;
+ id=2474;
};
class Item676
{
dataType="Marker";
- position[]={6799.0586,100.56138,7111.6851};
- name="road_2";
+ position[]={1018.4197,133.41061,6320.6797};
+ name="road_33";
type="hd_arrow";
angle=227.508;
- id=2444;
+ id=2475;
};
class Item677
{
dataType="Marker";
- position[]={5934.9629,113.91276,7145.8306};
- name="road_3";
+ position[]={1088.1899,138.78212,7986.2041};
+ name="road_34";
type="hd_arrow";
angle=227.508;
- id=2445;
+ id=2476;
};
class Item678
{
dataType="Marker";
- position[]={5257.1509,115.4539,7035.2681};
- name="road_4";
+ position[]={632.86353,140.09219,7682.8276};
+ name="road_35";
type="hd_arrow";
angle=227.508;
- id=2446;
+ id=2477;
};
class Item679
{
dataType="Marker";
- position[]={4598.3291,136.91579,6981.1094};
- name="road_5";
+ position[]={607.58344,129.61633,5654.9023};
+ name="road_36";
type="hd_arrow";
angle=227.508;
- id=2447;
+ id=2478;
};
class Item680
{
dataType="Marker";
- position[]={4050.3445,136.64241,6907.9141};
- name="road_6";
+ position[]={493.11285,131.63519,5653.5801};
+ name="road_37";
type="hd_arrow";
angle=227.508;
- id=2448;
+ id=2479;
};
class Item681
{
dataType="Marker";
- position[]={4166.0698,136.03134,6484.4424};
- name="road_7";
+ position[]={497.08289,130.13283,6095.3311};
+ name="road_38";
type="hd_arrow";
angle=227.508;
- id=2449;
+ id=2480;
};
class Item682
{
dataType="Marker";
- position[]={4293.9258,137.30052,6021.228};
- name="road_8";
+ position[]={497.08289,134.84021,6626.3579};
+ name="road_39";
type="hd_arrow";
angle=227.508;
- id=2450;
+ id=2481;
};
class Item683
{
dataType="Marker";
- position[]={4311.5908,133.75879,5660.5771};
- name="road_9";
+ position[]={2234.9827,131.32094,6249.5107};
+ name="road_40";
type="hd_arrow";
angle=227.508;
- id=2451;
+ id=2482;
};
class Item684
{
dataType="Marker";
- position[]={3989.1768,127.41193,5219.5762};
- name="road_10";
+ position[]={2001.4194,134.0605,5873.085};
+ name="road_41";
type="hd_arrow";
angle=227.508;
- id=2452;
- atlOffset=-7.6293945e-006;
+ id=2483;
};
class Item685
{
dataType="Marker";
- position[]={3498.0703,156.86731,4549.0088};
- name="road_11";
+ position[]={1667.4977,127.30618,5458.4121};
+ name="road_42";
type="hd_arrow";
angle=227.508;
- id=2453;
+ id=2484;
};
class Item686
{
dataType="Marker";
- position[]={4105.0332,156.6432,4759.7324};
- name="road_12";
+ position[]={1269.6084,128.23842,5377.4717};
+ name="road_43";
type="hd_arrow";
angle=227.508;
- id=2454;
+ id=2485;
};
class Item687
{
dataType="Marker";
- position[]={5184.0425,165.94556,5099.5479};
- name="road_13";
+ position[]={1195.0776,129.06998,5669.5605};
+ name="road_44";
type="hd_arrow";
angle=227.508;
- id=2455;
+ id=2486;
};
class Item688
{
dataType="Marker";
- position[]={6080.3027,192.04518,3845.8979};
- name="road_14";
+ position[]={1296.5265,119.59484,4615.2046};
+ name="road_45";
type="hd_arrow";
angle=227.508;
- id=2456;
+ id=2487;
};
class Item689
{
dataType="Marker";
- position[]={7111.9653,297.34232,3385.6274};
- name="road_15";
+ position[]={670.37024,129.51768,5245.6885};
+ name="road_46";
type="hd_arrow";
angle=227.508;
- id=2457;
+ id=2488;
};
class Item690
{
dataType="Marker";
- position[]={8513.8281,171.41595,3848.6235};
- name="road_16";
+ position[]={718.25586,136.47786,4840.4531};
+ name="road_47";
type="hd_arrow";
angle=227.508;
- id=2458;
+ id=2489;
};
class Item691
{
dataType="Marker";
- position[]={8164.748,123.16555,4348.8281};
- name="road_17";
+ position[]={625.70154,146.29971,4320.8936};
+ name="road_48";
type="hd_arrow";
angle=227.508;
- id=2459;
+ id=2490;
};
class Item692
{
dataType="Marker";
- position[]={8437.4014,77.830002,5358.4033};
- name="road_18";
+ position[]={1003.7279,140.34142,4226.8945};
+ name="road_49";
type="hd_arrow";
angle=227.508;
- id=2460;
+ id=2491;
};
class Item693
{
dataType="Marker";
- position[]={6869.1094,119.71,5586.9019};
- name="road_19";
+ position[]={1690.7842,138.47931,4250.4858};
+ name="road_50";
type="hd_arrow";
angle=227.508;
- id=2461;
+ id=2492;
};
class Item694
{
dataType="Marker";
- position[]={7109.1108,103.3672,6243.3799};
- name="road_20";
+ position[]={1711.3572,140.07838,3499.3176};
+ name="road_51";
type="hd_arrow";
angle=227.508;
- id=2462;
- atlOffset=7.6293945e-006;
+ id=2493;
};
class Item695
{
dataType="Marker";
- position[]={7198.2852,84.688133,6676.1284};
- name="road_21";
+ position[]={2396.4524,150.98032,2909.439};
+ name="road_52";
type="hd_arrow";
angle=227.508;
- id=2463;
+ id=2494;
};
class Item696
{
dataType="Marker";
- position[]={5471.2114,117.53523,6318.8008};
- name="road_22";
+ position[]={2532.7585,147.06201,2408.1714};
+ name="road_53";
type="hd_arrow";
angle=227.508;
- id=2464;
+ id=2495;
};
class Item697
{
dataType="Marker";
- position[]={1387.6671,149.92709,9917.2793};
- name="road_23";
+ position[]={1828.1792,146.1882,2670.2324};
+ name="road_54";
type="hd_arrow";
angle=227.508;
- id=2465;
+ id=2496;
};
class Item698
{
dataType="Marker";
- position[]={1334.3232,148.04881,9595.8418};
- name="road_24";
+ position[]={2023.8654,146.48511,3105.2002};
+ name="road_55";
type="hd_arrow";
angle=227.508;
- id=2466;
+ id=2497;
};
class Item699
{
- dataType="Marker";
- position[]={1330.6385,143.92969,9004.543};
- name="road_25";
+ dataType="Marker";
+ position[]={1815.3469,145.25621,3061.3831};
+ name="road_56";
type="hd_arrow";
angle=227.508;
- id=2467;
+ id=2498;
};
class Item700
{
dataType="Marker";
- position[]={1301.5686,139.1483,8400.9688};
- name="road_26";
+ position[]={1703.0679,147.32896,2496.0315};
+ name="road_57";
type="hd_arrow";
angle=227.508;
- id=2468;
+ id=2499;
};
class Item701
{
dataType="Marker";
- position[]={1310.5763,142.33211,8129.2568};
- name="road_27";
+ position[]={1220.1426,135.45865,2249.2852};
+ name="road_58";
type="hd_arrow";
angle=227.508;
- id=2469;
+ id=2500;
};
class Item702
{
dataType="Marker";
- position[]={1249.5706,140.64145,7850.9985};
- name="road_28";
+ position[]={1980.1057,159.39584,1481.7572};
+ name="road_59";
type="hd_arrow";
angle=227.508;
- id=2470;
+ id=2501;
};
class Item703
{
dataType="Marker";
- position[]={1224.595,138.6162,7469.2114};
- name="road_29";
+ position[]={2259.644,167.59979,975.36682};
+ name="road_60";
type="hd_arrow";
angle=227.508;
- id=2471;
+ id=2502;
};
class Item704
{
dataType="Marker";
- position[]={1366.6693,138.04636,7224.0986};
- name="road_30";
+ position[]={2965.1685,175.48628,944.91028};
+ name="road_61";
type="hd_arrow";
angle=227.508;
- id=2472;
+ id=2503;
};
class Item705
{
dataType="Marker";
- position[]={1007.8506,137.33551,7154.0308};
- name="road_31";
+ position[]={3706.5171,211.99948,678.42163};
+ name="road_62";
type="hd_arrow";
angle=227.508;
- id=2473;
+ id=2504;
};
class Item706
{
dataType="Marker";
- position[]={1032.4167,134.16518,6830.2832};
- name="road_32";
+ position[]={4384.8394,220.06963,1104.856};
+ name="road_63";
type="hd_arrow";
angle=227.508;
- id=2474;
+ id=2505;
};
class Item707
{
dataType="Marker";
- position[]={1018.4197,133.41061,6320.6797};
- name="road_33";
+ position[]={5227.6973,213.57674,1423.5925};
+ name="road_64";
type="hd_arrow";
angle=227.508;
- id=2475;
+ id=2506;
};
class Item708
{
dataType="Marker";
- position[]={1088.1899,138.78212,7986.2041};
- name="road_34";
+ position[]={5238.0396,232.59465,1016.2347};
+ name="road_65";
type="hd_arrow";
angle=227.508;
- id=2476;
+ id=2507;
+ atlOffset=-1.5258789e-005;
};
class Item709
{
dataType="Marker";
- position[]={632.86353,140.09219,7682.8276};
- name="road_35";
+ position[]={5704.7266,255.02541,1012.2681};
+ name="road_66";
type="hd_arrow";
angle=227.508;
- id=2477;
+ id=2508;
+ atlOffset=1.5258789e-005;
};
class Item710
{
dataType="Marker";
- position[]={607.58344,129.61633,5654.9023};
- name="road_36";
+ position[]={5837.0576,199.00586,1784.3237};
+ name="road_67";
type="hd_arrow";
angle=227.508;
- id=2478;
+ id=2509;
};
class Item711
{
dataType="Marker";
- position[]={493.11285,131.63519,5653.5801};
- name="road_37";
+ position[]={6457.5757,213.05002,2384.4951};
+ name="road_68";
type="hd_arrow";
angle=227.508;
- id=2479;
+ id=2510;
};
class Item712
{
dataType="Marker";
- position[]={497.08289,130.13283,6095.3311};
- name="road_38";
+ position[]={6962.1753,214.38515,2260.9766};
+ name="road_69";
type="hd_arrow";
angle=227.508;
- id=2480;
+ id=2511;
};
class Item713
{
dataType="Marker";
- position[]={497.08289,134.84021,6626.3579};
- name="road_39";
+ position[]={7602.582,140.57263,1809.7522};
+ name="road_70";
type="hd_arrow";
angle=227.508;
- id=2481;
+ id=2512;
};
class Item714
{
dataType="Marker";
- position[]={2234.9827,131.32094,6249.5107};
- name="road_40";
+ position[]={8030.5215,107.27513,1645.9631};
+ name="road_71";
type="hd_arrow";
angle=227.508;
- id=2482;
+ id=2513;
};
class Item715
{
dataType="Marker";
- position[]={2001.4194,134.0605,5873.085};
- name="road_41";
+ position[]={8583.9082,102.97036,1955.4364};
+ name="road_72";
type="hd_arrow";
angle=227.508;
- id=2483;
+ id=2514;
};
class Item716
{
dataType="Marker";
- position[]={1667.4977,127.30618,5458.4121};
- name="road_42";
+ position[]={8896.207,79.46431,2107.3359};
+ name="road_73";
type="hd_arrow";
angle=227.508;
- id=2484;
+ id=2515;
};
class Item717
{
dataType="Marker";
- position[]={1269.6084,128.23842,5377.4717};
- name="road_43";
+ position[]={7926.4448,145.50204,3005.2192};
+ name="road_74";
type="hd_arrow";
angle=227.508;
- id=2485;
+ id=2516;
};
class Item718
{
dataType="Marker";
- position[]={1195.0776,129.06998,5669.5605};
- name="road_44";
+ position[]={8723.748,96.189384,2329.0857};
+ name="road_75";
type="hd_arrow";
angle=227.508;
- id=2486;
+ id=2517;
};
class Item719
{
dataType="Marker";
- position[]={1296.5265,119.59484,4615.2046};
- name="road_45";
+ position[]={8637.0049,126.93756,2855.2544};
+ name="road_76";
type="hd_arrow";
angle=227.508;
- id=2487;
+ id=2518;
};
class Item720
{
dataType="Marker";
- position[]={670.37024,129.51768,5245.6885};
- name="road_46";
+ position[]={8585.2715,170.22696,3297.0752};
+ name="road_77";
type="hd_arrow";
angle=227.508;
- id=2488;
+ id=2519;
};
class Item721
{
dataType="Marker";
- position[]={718.25586,136.47786,4840.4531};
- name="road_47";
+ position[]={7989.5586,179.58904,3757.5752};
+ name="road_78";
type="hd_arrow";
angle=227.508;
- id=2489;
+ id=2520;
};
class Item722
{
dataType="Marker";
- position[]={625.70154,146.29971,4320.8936};
- name="road_48";
+ position[]={9511.6738,67.452042,2194.2134};
+ name="road_79";
type="hd_arrow";
angle=227.508;
- id=2490;
+ id=2521;
};
class Item723
{
dataType="Marker";
- position[]={1003.7279,140.34142,4226.8945};
- name="road_49";
+ position[]={9349.1367,93.910873,2729.6411};
+ name="road_80";
type="hd_arrow";
angle=227.508;
- id=2491;
+ id=2522;
};
class Item724
{
dataType="Marker";
- position[]={1690.7842,138.47931,4250.4858};
- name="road_50";
+ position[]={9592.9443,126.63605,3093.0059};
+ name="road_81";
type="hd_arrow";
angle=227.508;
- id=2492;
+ id=2523;
};
class Item725
{
dataType="Marker";
- position[]={1711.3572,140.07838,3499.3176};
- name="road_51";
+ position[]={9085.0156,196.46713,3459.5771};
+ name="road_82";
type="hd_arrow";
angle=227.508;
- id=2493;
+ id=2524;
};
class Item726
{
dataType="Marker";
- position[]={2396.4524,150.98032,2909.439};
- name="road_52";
+ position[]={8997.2793,142.84566,4040.981};
+ name="road_83";
type="hd_arrow";
angle=227.508;
- id=2494;
+ id=2525;
};
class Item727
{
dataType="Marker";
- position[]={2532.7585,147.06201,2408.1714};
- name="road_53";
+ position[]={8866.8213,101.86787,4453.5083};
+ name="road_84";
type="hd_arrow";
angle=227.508;
- id=2495;
+ id=2526;
+ atlOffset=-7.6293945e-006;
};
class Item728
{
dataType="Marker";
- position[]={1828.1792,146.1882,2670.2324};
- name="road_54";
+ position[]={9083.8955,69.852875,4807.2549};
+ name="road_85";
type="hd_arrow";
angle=227.508;
- id=2496;
+ id=2527;
};
class Item729
{
dataType="Marker";
- position[]={2023.8654,146.48511,3105.2002};
- name="road_55";
+ position[]={8444.5234,64.285133,5793.0068};
+ name="road_86";
type="hd_arrow";
angle=227.508;
- id=2497;
+ id=2528;
};
class Item730
{
dataType="Marker";
- position[]={1815.3469,145.25621,3061.3831};
- name="road_56";
+ position[]={8628.7813,58.664654,5953.749};
+ name="road_87";
type="hd_arrow";
angle=227.508;
- id=2498;
+ id=2529;
};
class Item731
{
dataType="Marker";
- position[]={1703.0679,147.32896,2496.0315};
- name="road_57";
+ position[]={8071.8501,54.827595,6183.1582};
+ name="road_88";
type="hd_arrow";
angle=227.508;
- id=2499;
+ id=2530;
};
class Item732
{
dataType="Marker";
- position[]={1220.1426,135.45865,2249.2852};
- name="road_58";
+ position[]={7310.3945,71.54364,6630.9873};
+ name="road_89";
type="hd_arrow";
angle=227.508;
- id=2500;
+ id=2531;
};
class Item733
{
dataType="Marker";
- position[]={1980.1057,159.39584,1481.7572};
- name="road_59";
+ position[]={8470.6318,111.42742,7542.2656};
+ name="road_90";
type="hd_arrow";
angle=227.508;
- id=2501;
+ id=2532;
};
class Item734
{
dataType="Marker";
- position[]={2259.644,167.59979,975.36682};
- name="road_60";
+ position[]={8473.1465,120.76546,8042.9487};
+ name="road_91";
type="hd_arrow";
angle=227.508;
- id=2502;
+ id=2533;
};
class Item735
{
dataType="Marker";
- position[]={2965.1685,175.48628,944.91028};
- name="road_61";
+ position[]={8254.2109,188.7316,8695.6621};
+ name="road_92";
type="hd_arrow";
angle=227.508;
- id=2503;
+ id=2534;
};
class Item736
{
dataType="Marker";
- position[]={3706.5171,211.99948,678.42163};
- name="road_62";
+ position[]={8953.625,142.82301,8649.25};
+ name="road_93";
type="hd_arrow";
angle=227.508;
- id=2504;
+ id=2535;
};
class Item737
{
dataType="Marker";
- position[]={4384.8394,220.06963,1104.856};
- name="road_63";
+ position[]={8958.3223,116.90911,9111.4336};
+ name="road_94";
type="hd_arrow";
angle=227.508;
- id=2505;
+ id=2536;
};
class Item738
{
dataType="Marker";
- position[]={5227.6973,213.57674,1423.5925};
- name="road_64";
+ position[]={6623.98,101.63037,7527.3608};
+ name="road_95";
type="hd_arrow";
angle=227.508;
- id=2506;
+ id=2537;
};
class Item739
{
dataType="Marker";
- position[]={5238.0396,232.59465,1016.2347};
- name="road_65";
+ position[]={6884.6924,118.5795,8236.1416};
+ name="road_96";
type="hd_arrow";
angle=227.508;
- id=2507;
- atlOffset=-1.5258789e-005;
+ id=2538;
};
class Item740
{
dataType="Marker";
- position[]={5704.7266,255.02541,1012.2681};
- name="road_66";
+ position[]={5013.1992,137.68842,7333.9023};
+ name="road_97";
type="hd_arrow";
- angle=227.508;
- id=2508;
- atlOffset=1.5258789e-005;
+ angle=227.508;
+ id=2539;
};
class Item741
{
dataType="Marker";
- position[]={5837.0576,199.00586,1784.3237};
- name="road_67";
+ position[]={4978.1353,140.01778,7744.7402};
+ name="road_98";
type="hd_arrow";
angle=227.508;
- id=2509;
+ id=2540;
};
class Item742
{
dataType="Marker";
- position[]={6457.5757,213.05002,2384.4951};
- name="road_68";
+ position[]={4906.5142,142.00604,8240.5781};
+ name="road_99";
type="hd_arrow";
angle=227.508;
- id=2510;
+ id=2541;
};
class Item743
{
dataType="Marker";
- position[]={6962.1753,214.38515,2260.9766};
- name="road_69";
+ position[]={5284.7588,131.18858,7913.9966};
+ name="road_100";
type="hd_arrow";
angle=227.508;
- id=2511;
+ id=2542;
};
class Item744
{
dataType="Marker";
- position[]={7602.582,140.57263,1809.7522};
- name="road_70";
+ position[]={5248.2036,125.82599,7363.728};
+ name="road_101";
type="hd_arrow";
angle=227.508;
- id=2512;
+ id=2543;
};
class Item745
{
dataType="Marker";
- position[]={8030.5215,107.27513,1645.9631};
- name="road_71";
+ position[]={4310.8301,142.03046,8062.5415};
+ name="road_102";
type="hd_arrow";
angle=227.508;
- id=2513;
+ id=2544;
};
class Item746
{
dataType="Marker";
- position[]={8583.9082,102.97036,1955.4364};
- name="road_72";
+ position[]={3903.2021,141.13139,7914.439};
+ name="road_103";
type="hd_arrow";
angle=227.508;
- id=2514;
+ id=2545;
};
class Item747
{
dataType="Marker";
- position[]={8896.207,79.46431,2107.3359};
- name="road_73";
+ position[]={3265.4355,142.57207,7920.3169};
+ name="road_104";
type="hd_arrow";
angle=227.508;
- id=2515;
+ id=2546;
};
class Item748
{
dataType="Marker";
- position[]={7926.4448,145.50204,3005.2192};
- name="road_74";
+ position[]={2546.9724,145.02423,8245.2363};
+ name="road_105";
type="hd_arrow";
angle=227.508;
- id=2516;
+ id=2547;
};
class Item749
{
dataType="Marker";
- position[]={8723.748,96.189384,2329.0857};
- name="road_75";
+ position[]={1868.6412,141.50815,8167.7617};
+ name="road_106";
type="hd_arrow";
angle=227.508;
- id=2517;
+ id=2548;
};
class Item750
{
dataType="Marker";
- position[]={8637.0049,126.93756,2855.2544};
- name="road_76";
+ position[]={3017.7266,161.14365,2942.4414};
+ name="road_107";
type="hd_arrow";
angle=227.508;
- id=2518;
+ id=2549;
};
class Item751
{
dataType="Marker";
- position[]={8585.2715,170.22696,3297.0752};
- name="road_77";
+ position[]={3491.5525,164.97371,3112.3433};
+ name="road_108";
type="hd_arrow";
angle=227.508;
- id=2519;
+ id=2550;
};
class Item752
{
dataType="Marker";
- position[]={7989.5586,179.58904,3757.5752};
- name="road_78";
+ position[]={3702.5442,166.89229,2797.8438};
+ name="road_109";
type="hd_arrow";
angle=227.508;
- id=2520;
+ id=2551;
};
class Item753
{
dataType="Marker";
- position[]={9511.6738,67.452042,2194.2134};
- name="road_79";
+ position[]={4620.6328,179.69034,2554.7583};
+ name="road_110";
type="hd_arrow";
angle=227.508;
- id=2521;
+ id=2552;
};
class Item754
{
dataType="Marker";
- position[]={9349.1367,93.910873,2729.6411};
- name="road_80";
+ position[]={3570.2244,195.11763,2018.5333};
+ name="road_111";
type="hd_arrow";
angle=227.508;
- id=2522;
+ id=2553;
};
class Item755
{
dataType="Marker";
- position[]={9592.9443,126.63605,3093.0059};
- name="road_81";
+ position[]={2804.0042,172.26936,2197.4866};
+ name="road_112";
type="hd_arrow";
angle=227.508;
- id=2523;
+ id=2554;
};
class Item756
{
dataType="Marker";
- position[]={9085.0156,196.46713,3459.5771};
- name="road_82";
+ position[]={1988.7231,152.67973,2221.4678};
+ name="road_113";
type="hd_arrow";
angle=227.508;
- id=2524;
+ id=2555;
};
class Item757
{
dataType="Marker";
- position[]={8997.2793,142.84566,4040.981};
- name="road_83";
+ position[]={2081.6938,155.96461,1850.1776};
+ name="road_114";
type="hd_arrow";
angle=227.508;
- id=2525;
+ id=2556;
};
class Item758
{
dataType="Marker";
- position[]={8866.8213,101.86787,4453.5083};
- name="road_84";
+ position[]={1442.7388,157.71983,1234.903};
+ name="road_115";
type="hd_arrow";
angle=227.508;
- id=2526;
- atlOffset=-7.6293945e-006;
+ id=2557;
};
class Item759
{
dataType="Marker";
- position[]={9083.8955,69.852875,4807.2549};
- name="road_85";
+ position[]={1082.1212,168.78,1180.0146};
+ name="road_116";
type="hd_arrow";
angle=227.508;
- id=2527;
+ id=2558;
};
class Item760
{
dataType="Marker";
- position[]={8444.5234,64.285133,5793.0068};
- name="road_86";
+ position[]={925.96405,164.96494,1690.5438};
+ name="road_117";
type="hd_arrow";
angle=227.508;
- id=2528;
+ id=2559;
};
class Item761
{
dataType="Marker";
- position[]={8628.7813,58.664654,5953.749};
- name="road_87";
+ position[]={2652.9041,136.63206,6831.5679};
+ name="road_118";
type="hd_arrow";
angle=227.508;
- id=2529;
+ id=2560;
};
class Item762
{
dataType="Marker";
- position[]={8071.8501,54.827595,6183.1582};
- name="road_88";
+ position[]={2915.7888,140.99557,7346.9736};
+ name="road_119";
type="hd_arrow";
angle=227.508;
- id=2530;
+ id=2561;
};
class Item763
{
dataType="Marker";
- position[]={7310.3945,71.54364,6630.9873};
- name="road_89";
+ position[]={2994.5432,140.76611,7860.5781};
+ name="road_120";
type="hd_arrow";
angle=227.508;
- id=2531;
+ id=2562;
};
class Item764
{
dataType="Marker";
- position[]={8470.6318,111.42742,7542.2656};
- name="road_90";
+ position[]={1737.095,144.80362,8864.8223};
+ name="road_121";
type="hd_arrow";
angle=227.508;
- id=2532;
+ id=2563;
};
class Item765
{
dataType="Marker";
- position[]={8473.1465,120.76546,8042.9487};
- name="road_91";
+ position[]={2328.8125,146.04866,9046.1973};
+ name="road_122";
type="hd_arrow";
angle=227.508;
- id=2533;
+ id=2564;
};
class Item766
{
dataType="Marker";
- position[]={8254.2109,188.7316,8695.6621};
- name="road_92";
+ position[]={2926.7905,145.43372,9160.2061};
+ name="road_123";
type="hd_arrow";
angle=227.508;
- id=2534;
+ id=2565;
};
class Item767
{
dataType="Marker";
- position[]={8953.625,142.82301,8649.25};
- name="road_93";
+ position[]={3235.5251,143.73969,8581.6934};
+ name="road_124";
type="hd_arrow";
angle=227.508;
- id=2535;
+ id=2566;
};
class Item768
{
dataType="Marker";
- position[]={8958.3223,116.90911,9111.4336};
- name="road_94";
+ position[]={3783.4998,141.88722,8713.3613};
+ name="road_125";
type="hd_arrow";
angle=227.508;
- id=2536;
+ id=2567;
};
class Item769
{
dataType="Marker";
- position[]={6623.98,101.63037,7527.3608};
- name="road_95";
+ position[]={4362.124,143.29799,8761.4316};
+ name="road_126";
type="hd_arrow";
angle=227.508;
- id=2537;
+ id=2568;
};
class Item770
{
dataType="Marker";
- position[]={6884.6924,118.5795,8236.1416};
- name="road_96";
+ position[]={4895.7207,149.30823,8789.2178};
+ name="road_127";
type="hd_arrow";
angle=227.508;
- id=2538;
+ id=2569;
};
class Item771
{
- dataType="Marker";
- position[]={5013.1992,137.68842,7333.9023};
- name="road_97";
- type="hd_arrow";
- angle=227.508;
- id=2539;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8083.0903,117.04044,1680.6832};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2570;
+ type="Land_dp_smallTank_F";
+ atlOffset=7.6293945e-006;
};
class Item772
{
- dataType="Marker";
- position[]={4978.1353,140.01778,7744.7402};
- name="road_98";
- type="hd_arrow";
- angle=227.508;
- id=2540;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8091.3521,116.76373,1676.355};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2571;
+ type="Land_dp_smallTank_F";
+ atlOffset=7.6293945e-006;
};
class Item773
{
- dataType="Marker";
- position[]={4906.5142,142.00604,8240.5781};
- name="road_99";
- type="hd_arrow";
- angle=227.508;
- id=2541;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8099.6367,116.48664,1672.9004};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2572;
+ type="Land_dp_smallTank_F";
};
class Item774
{
- dataType="Marker";
- position[]={5284.7588,131.18858,7913.9966};
- name="road_100";
- type="hd_arrow";
- angle=227.508;
- id=2542;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8123.0688,113.42136,1663.9749};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2573;
+ type="Land_dp_bigTank_F";
+ atlOffset=-7.6293945e-006;
};
class Item775
{
- dataType="Marker";
- position[]={5248.2036,125.82599,7363.728};
- name="road_101";
- type="hd_arrow";
- angle=227.508;
- id=2543;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8065.561,110.78197,1659.5741};
+ angles[]={6.1147957,0,0.0080084298};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2574;
+ type="Land_Fuel_tank_stairs";
};
class Item776
{
- dataType="Marker";
- position[]={4310.8301,142.03046,8062.5415};
- name="road_102";
- type="hd_arrow";
- angle=227.508;
- id=2544;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8045.1299,108.72034,1632.5604};
+ angles[]={6.2511969,2.9346437,6.247201};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2575;
+ type="Land_FuelStation_Shed_PMC";
};
class Item777
{
- dataType="Marker";
- position[]={3903.2021,141.13139,7914.439};
- name="road_103";
- type="hd_arrow";
- angle=227.508;
- id=2545;
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8044.4014,105.82977,1635.4425};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=2576;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=7.6293945e-006;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
class Item778
{
- dataType="Marker";
- position[]={3265.4355,142.57207,7920.3169};
- name="road_104";
- type="hd_arrow";
- angle=227.508;
- id=2546;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8035.2642,111.36317,1650.1901};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=2577;
+ type="Flag_Fuel_F";
+ atlOffset=-0.046134949;
};
class Item779
{
- dataType="Marker";
- position[]={2546.9724,145.02423,8245.2363};
- name="road_105";
- type="hd_arrow";
- angle=227.508;
- id=2547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8045.1479,106.74127,1632.012};
+ angles[]={6.2511969,4.494411,6.2471814};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2578;
+ type="Land_A_FuelStation_Feed";
+ atlOffset=0.00086212158;
};
class Item780
{
- dataType="Marker";
- position[]={1868.6412,141.50815,8167.7617};
- name="road_106";
- type="hd_arrow";
- angle=227.508;
- id=2548;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8044.7222,106.82484,1634.1448};
+ angles[]={6.2511969,4.494411,6.2471814};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2579;
+ type="Land_A_FuelStation_Feed";
+ atlOffset=0.00085449219;
};
class Item781
{
dataType="Marker";
- position[]={3017.7266,161.14365,2942.4414};
- name="road_107";
+ position[]={2596.3071,118.60456,5233.71};
+ name="road_128";
type="hd_arrow";
angle=227.508;
- id=2549;
+ id=2580;
};
class Item782
{
dataType="Marker";
- position[]={3491.5525,164.97371,3112.3433};
- name="road_108";
+ position[]={2391.7888,125.01167,5041.915};
+ name="road_129";
type="hd_arrow";
angle=227.508;
- id=2550;
+ id=2581;
};
class Item783
{
dataType="Marker";
- position[]={3702.5442,166.89229,2797.8438};
- name="road_109";
+ position[]={2339.4814,133.09361,6072.5952};
+ name="road_130";
type="hd_arrow";
angle=227.508;
- id=2551;
+ id=2582;
};
class Item784
{
dataType="Marker";
- position[]={4620.6328,179.69034,2554.7583};
- name="road_110";
+ position[]={2899.4629,133.35263,6536.3721};
+ name="road_131";
type="hd_arrow";
angle=227.508;
- id=2552;
+ id=2583;
};
class Item785
{
dataType="Marker";
- position[]={3570.2244,195.11763,2018.5333};
- name="road_111";
+ position[]={1751.1658,118.01345,4948.9502};
+ name="road_132";
type="hd_arrow";
angle=227.508;
- id=2553;
+ id=2584;
};
class Item786
{
dataType="Marker";
- position[]={2804.0042,172.26936,2197.4866};
- name="road_112";
+ position[]={5544.3071,174.20535,4510.8086};
+ name="road_133";
type="hd_arrow";
angle=227.508;
- id=2554;
+ id=2585;
};
class Item787
{
dataType="Marker";
- position[]={1988.7231,152.67973,2221.4678};
- name="road_113";
- type="hd_arrow";
- angle=227.508;
- id=2555;
+ position[]={8016.9131,113.62109,6743.106};
+ name="control";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2586;
+ atlOffset=-6.4071274;
};
class Item788
{
dataType="Marker";
- position[]={2081.6938,155.96461,1850.1776};
- name="road_114";
- type="hd_arrow";
- angle=227.508;
- id=2556;
+ position[]={5596.3457,222.30594,3685.8198};
+ name="control_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2587;
+ atlOffset=-6.4071198;
};
class Item789
{
dataType="Marker";
- position[]={1442.7388,157.71983,1234.903};
- name="road_115";
- type="hd_arrow";
- angle=227.508;
- id=2557;
+ position[]={3494.6838,149.24261,3921.4941};
+ name="control_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2588;
+ atlOffset=-6.4071198;
};
class Item790
{
dataType="Marker";
- position[]={1082.1212,168.78,1180.0146};
- name="road_116";
- type="hd_arrow";
- angle=227.508;
- id=2558;
+ position[]={2295.3977,129.82422,4820.3481};
+ name="control_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2589;
+ atlOffset=-6.4325256;
};
class Item791
{
dataType="Marker";
- position[]={925.96405,164.96494,1690.5438};
- name="road_117";
- type="hd_arrow";
- angle=227.508;
- id=2559;
+ position[]={4113.8896,123.80766,5322.4473};
+ name="control_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2590;
+ atlOffset=-6.4071198;
};
class Item792
{
dataType="Marker";
- position[]={2652.9041,136.63206,6831.5679};
- name="road_118";
- type="hd_arrow";
- angle=227.508;
- id=2560;
+ position[]={610.54071,123.32086,5213.7363};
+ name="control_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2591;
+ atlOffset=-6.4071198;
};
class Item793
{
dataType="Marker";
- position[]={2915.7888,140.99557,7346.9736};
- name="road_119";
- type="hd_arrow";
- angle=227.508;
- id=2561;
+ position[]={1270.5529,121.79486,5376.6284};
+ name="control_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2592;
+ atlOffset=-6.4071198;
};
class Item794
{
dataType="Marker";
- position[]={2994.5432,140.76611,7860.5781};
- name="road_120";
- type="hd_arrow";
- angle=227.508;
- id=2562;
+ position[]={2302.6797,130.12689,5492.1904};
+ name="control_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2593;
+ atlOffset=-6.4071198;
};
class Item795
{
dataType="Marker";
- position[]={1737.095,144.80362,8864.8223};
- name="road_121";
- type="hd_arrow";
- angle=227.508;
- id=2563;
+ position[]={4140.019,124.32593,6609.1626};
+ name="control_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2594;
+ atlOffset=-6.4071198;
};
class Item796
{
dataType="Marker";
- position[]={2328.8125,146.04866,9046.1973};
- name="road_122";
- type="hd_arrow";
- angle=227.508;
- id=2564;
+ position[]={3446.3147,129.20721,6391.7681};
+ name="control_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2595;
+ atlOffset=-6.4071198;
};
class Item797
{
dataType="Marker";
- position[]={2926.7905,145.43372,9160.2061};
- name="road_123";
- type="hd_arrow";
- angle=227.508;
- id=2565;
+ position[]={5095.0527,126.3951,6966.5879};
+ name="control_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2596;
+ atlOffset=-6.4071121;
};
class Item798
{
dataType="Marker";
- position[]={3235.5251,143.73969,8581.6934};
- name="road_124";
- type="hd_arrow";
- angle=227.508;
- id=2566;
+ position[]={7982.0088,139.07753,9244.6699};
+ name="control_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2597;
+ atlOffset=-6.4071198;
};
class Item799
{
dataType="Marker";
- position[]={3783.4998,141.88722,8713.3613};
- name="road_125";
- type="hd_arrow";
- angle=227.508;
- id=2567;
+ position[]={9020.9121,111.24505,9524.0615};
+ name="control_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2598;
+ atlOffset=-6.4071198;
};
class Item800
{
dataType="Marker";
- position[]={4362.124,143.29799,8761.4316};
- name="road_126";
- type="hd_arrow";
- angle=227.508;
- id=2568;
+ position[]={8433.0254,71.422882,5355.2437};
+ name="control_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2599;
+ atlOffset=-6.4071198;
};
class Item801
{
dataType="Marker";
- position[]={4895.7207,149.30823,8789.2178};
- name="road_127";
- type="hd_arrow";
- angle=227.508;
- id=2569;
+ position[]={8335.6523,136.16066,4030.9729};
+ name="control_14";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2600;
+ atlOffset=-6.4071198;
};
class Item802
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8083.0903,117.04044,1680.6832};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2570;
- type="Land_dp_smallTank_F";
- atlOffset=7.6293945e-006;
+ dataType="Marker";
+ position[]={6531.3872,208.98811,2419.8816};
+ name="control_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2601;
+ atlOffset=-6.4071198;
};
class Item803
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8091.3521,116.76373,1676.355};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2571;
- type="Land_dp_smallTank_F";
- atlOffset=7.6293945e-006;
+ dataType="Marker";
+ position[]={7734.438,120.4747,1705.9161};
+ name="control_16";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2602;
+ atlOffset=-6.4071198;
};
class Item804
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8099.6367,116.48664,1672.9004};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2572;
- type="Land_dp_smallTank_F";
+ dataType="Marker";
+ position[]={5384.0156,227.12245,989.9408};
+ name="control_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2603;
+ atlOffset=-6.4071198;
};
class Item805
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8123.0688,113.42136,1663.9749};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2573;
- type="Land_dp_bigTank_F";
- atlOffset=-7.6293945e-006;
+ dataType="Marker";
+ position[]={4532.0967,224.2269,911.18103};
+ name="control_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2604;
+ atlOffset=-6.4071198;
};
class Item806
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8065.561,110.78197,1659.5741};
- angles[]={6.1147957,0,0.0080084298};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2574;
- type="Land_Fuel_tank_stairs";
+ dataType="Marker";
+ position[]={2193.5515,158.67892,1119.8474};
+ name="control_19";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2605;
+ atlOffset=-6.4071198;
};
class Item807
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8045.1299,108.72034,1632.5604};
- angles[]={6.2511969,2.9346437,6.247201};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2575;
- type="Land_FuelStation_Shed_PMC";
+ dataType="Marker";
+ position[]={1971.045,144.78444,2251.8958};
+ name="control_20";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2606;
+ atlOffset=-6.4071198;
};
class Item808
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={8044.4014,105.82977,1635.4425};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=2576;
- type="ModuleHideTerrainObjects_F";
- atlOffset=7.6293945e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={1713.1868,133.66725,3497.2058};
+ name="control_21";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2607;
+ atlOffset=-6.4071198;
};
class Item809
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8035.2642,111.36317,1650.1901};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2577;
- type="Flag_Fuel_F";
- atlOffset=-0.046134949;
+ dataType="Marker";
+ position[]={626.62299,139.91359,4320.8452};
+ name="control_22";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2608;
+ atlOffset=-6.4071198;
};
class Item810
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8045.1479,106.74127,1632.012};
- angles[]={6.2511969,4.494411,6.2471814};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2578;
- type="Land_A_FuelStation_Feed";
- atlOffset=0.00086212158;
+ dataType="Marker";
+ position[]={4549.6333,137.57285,8083.3618};
+ name="control_23";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2609;
+ atlOffset=-6.4071198;
};
class Item811
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8044.7222,106.82484,1634.1448};
- angles[]={6.2511969,4.494411,6.2471814};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2579;
- type="Land_A_FuelStation_Feed";
- atlOffset=0.00085449219;
+ dataType="Marker";
+ position[]={3810.8997,141.93123,8562.3975};
+ name="control_24";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2610;
+ atlOffset=-6.4071198;
};
class Item812
{
dataType="Marker";
- position[]={2596.3071,118.60456,5233.71};
- name="road_128";
- type="hd_arrow";
- angle=227.508;
- id=2580;
+ position[]={2517.0425,139.00204,9073.377};
+ name="control_25";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2611;
+ atlOffset=-6.4071198;
};
class Item813
{
dataType="Marker";
- position[]={2391.7888,125.01167,5041.915};
- name="road_129";
- type="hd_arrow";
- angle=227.508;
- id=2581;
+ position[]={1327.5206,141.11029,8749.1475};
+ name="control_26";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2612;
+ atlOffset=-6.4071198;
};
class Item814
{
dataType="Marker";
- position[]={2339.4814,133.09361,6072.5952};
- name="road_130";
- type="hd_arrow";
- angle=227.508;
- id=2582;
+ position[]={1339.541,139.94246,9657.1914};
+ name="control_27";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2613;
+ atlOffset=-6.4071198;
};
class Item815
{
dataType="Marker";
- position[]={2899.4629,133.35263,6536.3721};
- name="road_131";
- type="hd_arrow";
- angle=227.508;
- id=2583;
+ position[]={785.97772,142.39632,9489.5684};
+ name="control_28";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2614;
+ atlOffset=-6.4071198;
};
class Item816
{
dataType="Marker";
- position[]={1751.1658,118.01345,4948.9502};
- name="road_132";
- type="hd_arrow";
- angle=227.508;
- id=2584;
+ position[]={475.00439,137.72285,8850.0166};
+ name="control_29";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2615;
+ atlOffset=-6.4071198;
};
class Item817
{
dataType="Marker";
- position[]={5544.3071,174.20535,4510.8086};
- name="road_133";
- type="hd_arrow";
- angle=227.508;
- id=2585;
+ position[]={255.57129,132.83481,8011.7241};
+ name="control_30";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=2616;
+ atlOffset=-6.4071198;
};
class Item818
{
dataType="Marker";
- position[]={8016.9131,113.62109,6743.106};
- name="control";
+ position[]={281.4068,131.06479,7478.0811};
+ name="control_31";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2586;
- atlOffset=-6.4071274;
+ id=2617;
+ atlOffset=-6.4071198;
};
class Item819
{
dataType="Marker";
- position[]={5596.3457,222.30594,3685.8198};
- name="control_1";
+ position[]={1624.3846,133.25714,7259.5664};
+ name="control_32";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2587;
+ id=2618;
atlOffset=-6.4071198;
};
class Item820
{
dataType="Marker";
- position[]={3494.6838,149.24261,3921.4941};
- name="control_2";
+ position[]={2310.6577,128.34216,6689.7808};
+ name="control_33";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2588;
+ id=2619;
atlOffset=-6.4071198;
};
class Item821
{
dataType="Marker";
- position[]={2295.3977,129.82422,4820.3481};
- name="control_3";
+ position[]={1949.3798,129.72643,5827.3857};
+ name="control_34";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2589;
- atlOffset=-6.4325256;
+ id=2620;
+ atlOffset=-6.4071198;
};
class Item822
{
dataType="Marker";
- position[]={4113.8896,123.80766,5322.4473};
- name="control_4";
+ position[]={2885.8752,130.69649,6852.6719};
+ name="control_35";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2590;
+ id=2621;
atlOffset=-6.4071198;
};
class Item823
{
dataType="Marker";
- position[]={610.54071,123.32086,5213.7363};
- name="control_5";
+ position[]={4514.9604,136.74278,9351.3652};
+ name="control_36";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2591;
+ id=2622;
atlOffset=-6.4071198;
};
class Item824
{
dataType="Marker";
- position[]={1270.5529,121.79486,5376.6284};
- name="control_6";
+ position[]={5156.0737,141.71494,8982.7764};
+ name="control_37";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2592;
+ id=2623;
atlOffset=-6.4071198;
};
class Item825
{
dataType="Marker";
- position[]={2302.6797,130.12689,5492.1904};
- name="control_7";
+ position[]={6348.4966,127.63069,7860.4863};
+ name="control_38";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2593;
+ id=2624;
atlOffset=-6.4071198;
};
class Item826
{
dataType="Marker";
- position[]={4140.019,124.32593,6609.1626};
- name="control_8";
+ position[]={6873.3398,114.06079,8259.9199};
+ name="control_39";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2594;
+ id=2625;
atlOffset=-6.4071198;
};
class Item827
{
dataType="Marker";
- position[]={3446.3147,129.20721,6391.7681};
- name="control_9";
+ position[]={7943.9229,141.41728,3031.7085};
+ name="control_40";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2595;
+ id=2626;
atlOffset=-6.4071198;
};
class Item828
{
dataType="Marker";
- position[]={5095.0527,126.3951,6966.5879};
- name="control_10";
+ position[]={8773.3848,183.80649,3504.0107};
+ name="control_41";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2596;
- atlOffset=-6.4071121;
+ id=2627;
+ atlOffset=-6.4071198;
};
class Item829
{
dataType="Marker";
- position[]={7982.0088,139.07753,9244.6699};
- name="control_11";
+ position[]={7324.2373,117.02272,552.26624};
+ name="control_42";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2597;
+ id=2628;
atlOffset=-6.4071198;
};
class Item830
{
dataType="Marker";
- position[]={9020.9121,111.24505,9524.0615};
- name="control_12";
+ position[]={5590.9092,223.70375,221.37573};
+ name="control_43";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2598;
+ id=2629;
atlOffset=-6.4071198;
};
class Item831
{
dataType="Marker";
- position[]={8433.0254,71.422882,5355.2437};
- name="control_13";
+ position[]={2328.6221,166.40311,283.60901};
+ name="control_44";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2599;
+ id=2630;
atlOffset=-6.4071198;
};
class Item832
{
dataType="Marker";
- position[]={8335.6523,136.16066,4030.9729};
- name="control_14";
+ position[]={880.64941,167.31091,447.01843};
+ name="control_45";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2600;
+ id=2631;
atlOffset=-6.4071198;
};
class Item833
{
dataType="Marker";
- position[]={6531.3872,208.98811,2419.8816};
- name="control_15";
+ position[]={371.89377,176.20584,3180.4692};
+ name="control_46";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2601;
+ id=2632;
atlOffset=-6.4071198;
};
class Item834
{
dataType="Marker";
- position[]={7734.438,120.4747,1705.9161};
- name="control_16";
+ position[]={583.41504,125.17369,6120.7432};
+ name="control_47";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2602;
+ id=2633;
atlOffset=-6.4071198;
};
class Item835
{
dataType="Marker";
- position[]={5384.0156,227.12245,989.9408};
- name="control_17";
+ position[]={2108.5444,141.91605,9579.0801};
+ name="control_48";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2603;
+ id=2634;
atlOffset=-6.4071198;
};
class Item836
{
dataType="Marker";
- position[]={4532.0967,224.2269,911.18103};
- name="control_18";
+ position[]={3409.7593,142.90096,9876.3193};
+ name="control_49";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2604;
+ id=2635;
atlOffset=-6.4071198;
};
class Item837
{
dataType="Marker";
- position[]={2193.5515,158.67892,1119.8474};
- name="control_19";
+ position[]={7140.8271,134.57773,5711.207};
+ name="control_50";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2605;
+ id=2636;
atlOffset=-6.4071198;
};
class Item838
{
dataType="Marker";
- position[]={1971.045,144.78444,2251.8958};
- name="control_20";
+ position[]={7249.7808,176.22713,4233.6602};
+ name="control_51";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=2606;
+ id=2637;
atlOffset=-6.4071198;
};
class Item839
{
- dataType="Marker";
- position[]={1713.1868,133.66725,3497.2058};
- name="control_21";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2607;
- atlOffset=-6.4071198;
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=38;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4454.0747,192.65649,3604.7825};
+ };
+ side="Independent";
+ flags=3;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2639;
+ type="I_G_Soldier_TL_F";
+ atlOffset=2.2093964;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.8696,191.82607,3602.0793};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2640;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.5630188;
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4459.0083,191.83224,3604.3152};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2641;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.4959564;
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.9507,191.83369,3606.6487};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2642;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.405426;
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.7876,191.8157,3608.9622};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2643;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.3078613;
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.7466,191.81754,3611.4163};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2644;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.2042542;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.561,191.82071,3613.7322};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2645;
+ type="I_G_Soldier_F";
+ atlOffset=1.1147766;
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4458.354,191.82779,3615.6277};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2646;
+ type="I_G_Soldier_F";
+ atlOffset=1.0294037;
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4461.229,191.35509,3602.2029};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2647;
+ type="I_G_Soldier_F";
+ atlOffset=1.1350403;
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4461.228,191.35278,3604.5422};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2648;
+ type="I_G_Soldier_F";
+ atlOffset=1.0546265;
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4461.1216,191.34167,3606.9158};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2649;
+ type="I_G_Soldier_F";
+ atlOffset=0.96520996;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4461.063,191.32449,3609.1155};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2650;
+ type="I_G_Soldier_F";
+ atlOffset=0.87738037;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4460.8599,191.31165,3611.5378};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2651;
+ type="I_G_Soldier_F";
+ atlOffset=0.78245544;
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4460.6724,191.29507,3613.8689};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2652;
+ type="I_G_Soldier_F";
+ atlOffset=0.67633057;
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4463.3374,191.18707,3602.239};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2653;
+ type="I_G_Soldier_AR_F";
+ atlOffset=1.0090179;
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4463.4995,191.16605,3604.679};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2654;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.91348267;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4463.0991,191.15504,3607.094};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2655;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.8175354;
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4463.0757,191.09033,3609.2429};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2656;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.70054626;
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4462.8755,191.02826,3611.4841};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2657;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.56147766;
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4462.7886,190.96762,3613.9431};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2658;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.42988586;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4465.4263,191.01218,3602.3186};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2659;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.88264465;
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4465.2964,191.00548,3604.6365};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2660;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.79734802;
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4465.1724,190.92288,3607.3806};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2661;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.64068604;
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4464.9985,190.85086,3609.3894};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2662;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.51522827;
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4464.9292,190.75032,3611.574};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2663;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.35932922;
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4464.8237,190.68732,3614.0647};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2664;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.23213196;
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.9536,190.72488,3602.3962};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2665;
+ type="I_G_medic_F";
+ atlOffset=0.64480591;
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.7778,190.74411,3604.676};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2666;
+ type="I_G_medic_F";
+ atlOffset=0.57946777;
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.7358,190.64731,3607.5476};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2667;
+ type="I_G_medic_F";
+ atlOffset=0.40800476;
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.6479,190.57272,3609.3542};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2668;
+ type="I_G_medic_F";
+ atlOffset=0.28741455;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.4644,190.48819,3611.7136};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2669;
+ type="I_G_medic_F";
+ atlOffset=0.14077759;
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4466.4751,190.41156,3614.1243};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2670;
+ type="I_G_medic_F";
+ atlOffset=0.0065917969;
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4468.7554,190.39514,3602.5613};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2671;
+ type="I_G_engineer_F";
+ atlOffset=0.3659668;
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4468.7788,190.38878,3604.8616};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2672;
+ type="I_G_engineer_F";
+ atlOffset=0.27748108;
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4468.5366,190.31808,3607.6516};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2673;
+ type="I_G_engineer_F";
+ atlOffset=0.13031006;
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4468.2817,190.2645,3609.5994};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2674;
+ type="I_G_engineer_F";
+ atlOffset=0.022338867;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4468.0864,190.18588,3611.8357};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2675;
+ type="I_G_engineer_F";
+ atlOffset=-0.11579895;
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4467.9819,190.11296,3614.3049};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=2676;
+ type="I_G_engineer_F";
+ atlOffset=-0.25114441;
+ };
+ };
+ class Attributes
+ {
+ };
+ id=2638;
+ atlOffset=2.2093964;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
+ };
+ nAttributes=1;
+ };
};
class Item840
{
- dataType="Marker";
- position[]={626.62299,139.91359,4320.8452};
- name="control_22";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2608;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.14166,132.55809,4626.4761};
+ angles[]={0.019999012,5.9639554,6.2392135};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2677;
+ type="CamoNet_OPFOR_open_F";
};
class Item841
{
- dataType="Marker";
- position[]={4549.6333,137.57285,8083.3618};
- name="control_23";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2609;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={994.90662,129.23555,4659.5576};
+ angles[]={0.049958061,5.9639554,6.2232571};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2679;
+ type="CamoNet_OPFOR_open_F";
};
class Item842
{
- dataType="Marker";
- position[]={3810.8997,141.93123,8562.3975};
- name="control_24";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2610;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1046.853,136.04626,4710.2808};
+ angles[]={0,4.3811255,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2681;
+ type="Land_Cargo_Patrol_V3_F";
};
class Item843
{
- dataType="Marker";
- position[]={2517.0425,139.00204,9073.377};
- name="control_25";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2611;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1038.592,136.98091,4714.313};
+ angles[]={0,2.8103292,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2682;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-1.5258789e-005;
};
class Item844
{
- dataType="Marker";
- position[]={1327.5206,141.11029,8749.1475};
- name="control_26";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2612;
- atlOffset=-6.4071198;
- };
- class Item845
- {
- dataType="Marker";
- position[]={1339.541,139.94246,9657.1914};
- name="control_27";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2613;
- atlOffset=-6.4071198;
- };
- class Item846
- {
- dataType="Marker";
- position[]={785.97772,142.39632,9489.5684};
- name="control_28";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2614;
- atlOffset=-6.4071198;
- };
- class Item847
- {
- dataType="Marker";
- position[]={475.00439,137.72285,8850.0166};
- name="control_29";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2615;
- atlOffset=-6.4071198;
- };
- class Item848
- {
- dataType="Marker";
- position[]={255.57129,132.83481,8011.7241};
- name="control_30";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2616;
- atlOffset=-6.4071198;
- };
- class Item849
- {
- dataType="Marker";
- position[]={281.4068,131.06479,7478.0811};
- name="control_31";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2617;
- atlOffset=-6.4071198;
- };
- class Item850
- {
- dataType="Marker";
- position[]={1624.3846,133.25714,7259.5664};
- name="control_32";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2618;
- atlOffset=-6.4071198;
- };
- class Item851
- {
- dataType="Marker";
- position[]={2310.6577,128.34216,6689.7808};
- name="control_33";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2619;
- atlOffset=-6.4071198;
- };
- class Item852
- {
- dataType="Marker";
- position[]={1949.3798,129.72643,5827.3857};
- name="control_34";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2620;
- atlOffset=-6.4071198;
- };
- class Item853
- {
- dataType="Marker";
- position[]={2885.8752,130.69649,6852.6719};
- name="control_35";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2621;
- atlOffset=-6.4071198;
- };
- class Item854
- {
- dataType="Marker";
- position[]={4514.9604,136.74278,9351.3652};
- name="control_36";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2622;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1067.6801,136.46126,4632.0508};
+ angles[]={0,5.9519215,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2683;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item855
+ class Item845
{
- dataType="Marker";
- position[]={5156.0737,141.71494,8982.7764};
- name="control_37";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2623;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1071.738,135.82742,4640.3452};
+ angles[]={0,4.3811255,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2684;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item856
+ class Item846
{
- dataType="Marker";
- position[]={6348.4966,127.63069,7860.4863};
- name="control_38";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2624;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={880.71503,140.12596,4598.0791};
+ angles[]={0,1.2041899,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2685;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item857
+ class Item847
{
- dataType="Marker";
- position[]={6873.3398,114.06079,8259.9199};
- name="control_39";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2625;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={872.37097,138.91531,4619.894};
+ angles[]={0,1.2041899,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2686;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-1.5258789e-005;
};
- class Item858
+ class Item848
{
- dataType="Marker";
- position[]={7943.9229,141.41728,3031.7085};
- name="control_40";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2626;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6858.7598,109.70748,7149.2754};
+ angles[]={0,6.0662537,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2687;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item859
+ class Item849
{
- dataType="Marker";
- position[]={8773.3848,183.80649,3504.0107};
- name="control_41";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2627;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6815.0869,108.41675,7174.8335};
+ angles[]={0,1.3538646,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2688;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item860
+ class Item850
{
- dataType="Marker";
- position[]={7324.2373,117.02272,552.26624};
- name="control_42";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2628;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6869.7754,109.02059,7187.4868};
+ angles[]={0,2.9246607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2689;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-7.6293945e-006;
};
- class Item861
+ class Item851
{
- dataType="Marker";
- position[]={5590.9092,223.70375,221.37573};
- name="control_43";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2629;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6877.6558,109.47288,7155.0078};
+ angles[]={0,6.0662584,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2690;
+ type="Land_Cargo_Patrol_V3_F";
};
- class Item862
+ class Item852
{
- dataType="Marker";
- position[]={2328.6221,166.40311,283.60901};
- name="control_44";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2630;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6834.6157,104.85357,7146.0933};
+ angles[]={0,2.9246607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2691;
+ type="Land_Cargo_House_V3_F";
};
- class Item863
+ class Item853
{
- dataType="Marker";
- position[]={880.64941,167.31091,447.01843};
- name="control_45";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2631;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6843.5767,105.31248,7147.8022};
+ angles[]={0,2.9246607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2692;
+ type="Land_Cargo_House_V3_F";
};
- class Item864
+ class Item854
{
- dataType="Marker";
- position[]={371.89377,176.20584,3180.4692};
- name="control_46";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2632;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6847.6445,105.27355,7181.7319};
+ angles[]={0,6.0478468,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2693;
+ type="Land_Cargo_House_V3_F";
};
- class Item865
+ class Item855
{
- dataType="Marker";
- position[]={583.41504,125.17369,6120.7432};
- name="control_47";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2633;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6856.5728,105.14413,7183.6055};
+ angles[]={0,6.0478468,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2694;
+ type="Land_Cargo_House_V3_F";
};
- class Item866
+ class Item856
{
- dataType="Marker";
- position[]={2108.5444,141.91605,9579.0801};
- name="control_48";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2634;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={870.38,146.99213,4640.979};
+ angles[]={0,4.3570051,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2695;
+ type="Land_Cargo_Tower_V3_F";
};
- class Item867
+ class Item857
{
- dataType="Marker";
- position[]={3409.7593,142.90096,9876.3193};
- name="control_49";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2635;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={892.763,146.93771,4577.4131};
+ angles[]={0,1.1974355,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2696;
+ type="Land_Cargo_Tower_V3_F";
};
- class Item868
+ class Item858
{
- dataType="Marker";
- position[]={7140.8271,134.57773,5711.207};
- name="control_50";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2636;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={996.021,141.7713,4687.73};
+ angles[]={0,4.3570051,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2697;
+ type="Land_Cargo_Tower_V3_F";
};
- class Item869
+ class Item859
{
- dataType="Marker";
- position[]={7249.7808,176.22713,4233.6602};
- name="control_51";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=2637;
- atlOffset=-6.4071198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6824.8901,116.30996,7145.5903};
+ angles[]={0,1.3538646,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2698;
+ type="Land_Cargo_Tower_V3_F";
+ };
+ class Item860
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1017.463,134.37215,4625.4282};
+ angles[]={0,5.9451499,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2699;
+ type="Land_Cargo_HQ_V3_F";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -26309,7 +23475,7 @@ class Mission
class Item1
{
linkID=1;
- item0=705;
+ item0=2639;
item1=698;
class CustomData
{
@@ -26319,7 +23485,7 @@ class Mission
class Item2
{
linkID=2;
- item0=706;
+ item0=2640;
item1=698;
class CustomData
{
@@ -26329,7 +23495,7 @@ class Mission
class Item3
{
linkID=3;
- item0=707;
+ item0=2641;
item1=698;
class CustomData
{
@@ -26339,7 +23505,7 @@ class Mission
class Item4
{
linkID=4;
- item0=713;
+ item0=2642;
item1=698;
class CustomData
{
@@ -26349,7 +23515,7 @@ class Mission
class Item5
{
linkID=5;
- item0=729;
+ item0=2643;
item1=698;
class CustomData
{
@@ -26359,7 +23525,7 @@ class Mission
class Item6
{
linkID=6;
- item0=730;
+ item0=2644;
item1=698;
class CustomData
{
@@ -26369,7 +23535,7 @@ class Mission
class Item7
{
linkID=7;
- item0=736;
+ item0=2645;
item1=698;
class CustomData
{
@@ -26379,7 +23545,7 @@ class Mission
class Item8
{
linkID=8;
- item0=742;
+ item0=2646;
item1=698;
class CustomData
{
@@ -26389,7 +23555,7 @@ class Mission
class Item9
{
linkID=9;
- item0=748;
+ item0=2647;
item1=698;
class CustomData
{
@@ -26399,7 +23565,7 @@ class Mission
class Item10
{
linkID=10;
- item0=754;
+ item0=2648;
item1=698;
class CustomData
{
@@ -26409,7 +23575,7 @@ class Mission
class Item11
{
linkID=11;
- item0=760;
+ item0=2649;
item1=698;
class CustomData
{
@@ -26419,7 +23585,7 @@ class Mission
class Item12
{
linkID=12;
- item0=709;
+ item0=2650;
item1=698;
class CustomData
{
@@ -26429,7 +23595,7 @@ class Mission
class Item13
{
linkID=13;
- item0=715;
+ item0=2651;
item1=698;
class CustomData
{
@@ -26439,7 +23605,7 @@ class Mission
class Item14
{
linkID=14;
- item0=720;
+ item0=2652;
item1=698;
class CustomData
{
@@ -26449,7 +23615,7 @@ class Mission
class Item15
{
linkID=15;
- item0=725;
+ item0=2653;
item1=698;
class CustomData
{
@@ -26459,7 +23625,7 @@ class Mission
class Item16
{
linkID=16;
- item0=732;
+ item0=2654;
item1=698;
class CustomData
{
@@ -26469,7 +23635,7 @@ class Mission
class Item17
{
linkID=17;
- item0=738;
+ item0=2655;
item1=698;
class CustomData
{
@@ -26479,7 +23645,7 @@ class Mission
class Item18
{
linkID=18;
- item0=744;
+ item0=2656;
item1=698;
class CustomData
{
@@ -26489,7 +23655,7 @@ class Mission
class Item19
{
linkID=19;
- item0=750;
+ item0=2657;
item1=698;
class CustomData
{
@@ -26499,7 +23665,7 @@ class Mission
class Item20
{
linkID=20;
- item0=756;
+ item0=2658;
item1=698;
class CustomData
{
@@ -26509,7 +23675,7 @@ class Mission
class Item21
{
linkID=21;
- item0=761;
+ item0=2659;
item1=698;
class CustomData
{
@@ -26519,7 +23685,7 @@ class Mission
class Item22
{
linkID=22;
- item0=710;
+ item0=2660;
item1=698;
class CustomData
{
@@ -26529,7 +23695,7 @@ class Mission
class Item23
{
linkID=23;
- item0=716;
+ item0=2661;
item1=698;
class CustomData
{
@@ -26539,7 +23705,7 @@ class Mission
class Item24
{
linkID=24;
- item0=721;
+ item0=2662;
item1=698;
class CustomData
{
@@ -26549,7 +23715,7 @@ class Mission
class Item25
{
linkID=25;
- item0=726;
+ item0=2663;
item1=698;
class CustomData
{
@@ -26559,7 +23725,7 @@ class Mission
class Item26
{
linkID=26;
- item0=733;
+ item0=2664;
item1=698;
class CustomData
{
@@ -26569,7 +23735,7 @@ class Mission
class Item27
{
linkID=27;
- item0=739;
+ item0=2665;
item1=698;
class CustomData
{
@@ -26579,7 +23745,7 @@ class Mission
class Item28
{
linkID=28;
- item0=745;
+ item0=2666;
item1=698;
class CustomData
{
@@ -26589,7 +23755,7 @@ class Mission
class Item29
{
linkID=29;
- item0=751;
+ item0=2667;
item1=698;
class CustomData
{
@@ -26599,7 +23765,7 @@ class Mission
class Item30
{
linkID=30;
- item0=757;
+ item0=2668;
item1=698;
class CustomData
{
@@ -26609,7 +23775,7 @@ class Mission
class Item31
{
linkID=31;
- item0=762;
+ item0=2669;
item1=698;
class CustomData
{
@@ -26619,7 +23785,7 @@ class Mission
class Item32
{
linkID=32;
- item0=711;
+ item0=2670;
item1=698;
class CustomData
{
@@ -26629,7 +23795,7 @@ class Mission
class Item33
{
linkID=33;
- item0=717;
+ item0=2671;
item1=698;
class CustomData
{
@@ -26639,7 +23805,7 @@ class Mission
class Item34
{
linkID=34;
- item0=722;
+ item0=2672;
item1=698;
class CustomData
{
@@ -26649,7 +23815,7 @@ class Mission
class Item35
{
linkID=35;
- item0=727;
+ item0=2673;
item1=698;
class CustomData
{
@@ -26659,7 +23825,7 @@ class Mission
class Item36
{
linkID=36;
- item0=734;
+ item0=2674;
item1=698;
class CustomData
{
@@ -26669,7 +23835,7 @@ class Mission
class Item37
{
linkID=37;
- item0=740;
+ item0=2675;
item1=698;
class CustomData
{
@@ -26679,227 +23845,7 @@ class Mission
class Item38
{
linkID=38;
- item0=746;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=752;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=758;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=763;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=712;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=718;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=723;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=728;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=735;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=741;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=747;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=753;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=759;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=708;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=714;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=719;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=724;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=731;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=737;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=743;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=749;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=755;
- item1=698;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=764;
+ item0=2676;
item1=698;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm b/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm
index 9a70c94989..91526fb0ae 100644
--- a/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm
+++ b/Map-Templates/Antistasi-Chernarus.chernarus_summer/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1025;
class ItemIDProvider
{
- nextID=887;
+ nextID=926;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=7;
+ nextID=21;
};
class Camera
{
- pos[]={4160.0986,370.77472,8830.498};
- dir[]={0.047367383,-0.47201225,0.88032174};
- up[]={0.02536091,0.88159066,0.47133157};
- aside[]={0.99855709,3.8953658e-009,-0.053729318};
+ pos[]={8402.0654,305.784,5986.9878};
+ dir[]={-0.21361355,-0.96107328,0.17543605};
+ up[]={-0.74268818,0.27635285,0.6099534};
+ aside[]={0.63468939,-1.701992e-007,0.77280718};
};
};
binarizationWanted=0;
@@ -34,8 +34,6 @@ addons[]=
"A3_Modules_F",
"A3_Characters_F",
"A3_Modules_F_Hc",
- "A3_Weapons_F",
- "A3_Characters_F_Tank",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Mil_Flags",
"A3_Modules_F_Curator_Curator",
@@ -44,13 +42,14 @@ addons[]=
"A3_Characters_F_Patrol",
"A3_Characters_F_Exp",
"A3_Structures_F_Exp_Military_Flags",
- "A3_Structures_F_Mil_Helipads"
+ "A3_Structures_F_Mil_Helipads",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
class List
{
- items=13;
+ items=12;
class Item0
{
className="A3_Ui_F";
@@ -80,62 +79,55 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item4
- {
- className="A3_Characters_F_Tank";
- name="Arma 3 Tank - Characters and Clothing";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item5
{
className="A3_Structures_F_EPC";
name="Arma 3 Win Episode - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item6
+ class Item5
{
className="A3_Structures_F_Mil";
name="Arma 3 - Military Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item7
+ class Item6
{
className="A3_Modules_F_Curator";
name="Arma 3 Zeus Update - Scripted Modules";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item8
+ class Item7
{
className="A3_Props_F_Enoch";
name="Arma 3 Enoch - Decorative and Mission Objects";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item9
+ class Item8
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item10
+ class Item9
{
className="A3_Characters_F_Patrol";
name="Arma 3 Patrol - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item11
+ class Item10
{
className="A3_Characters_F_Exp";
name="Arma 3 Apex - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item12
+ class Item11
{
className="A3_Structures_F_Exp";
name="Arma 3 Apex - Buildings and Structures";
@@ -418,29 +410,22 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8400.0264,292.05978,5995.3242};
- angles[]={6.2405434,0,6.2818484};
+ position[]={8391.5244,292.32184,6001.5439};
+ angles[]={6.1703324,2.1016905,0.039985489};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=725;
+ id=727;
type="I_G_officer_F";
class CustomAttributes
{
@@ -459,7 +444,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -482,36 +467,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8403.5596,291.93668,5991.7998};
- angles[]={0,6.2412972,6.2818937};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=729;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -523,117 +482,332 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="";
};
};
};
- class Attribute1
+ nAttributes=3;
+ };
+ };
+ };
+ class Attributes
+ {
+ };
+ id=726;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "STRING"
};
};
+ value="Command";
};
- nAttributes=2;
};
};
- class Item2
+ nAttributes=1;
+ };
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8395.1035,293.27808,6000.7822};
+ angles[]={6.1703324,0,0.0093350215};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=788;
+ type="MapBoard_seismic_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.0186,291.93146,5997.9521};
- angles[]={0,6.2412972,0.0012918708};
- };
- side="Independent";
- flags=4;
- class Attributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
+ class data
{
- map="ItemMap";
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
};
};
- id=730;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ };
+ nAttributes=1;
+ };
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8393.418,297.19052,6009.3501};
+ angles[]={6.2059956,0,0.033321146};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=789;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "BOOL"
};
};
+ value=0;
};
- class Attribute1
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item21
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8393.8418,291.94821,5988.4844};
+ angles[]={0,0,6.2818937};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=790;
+ type="HeadlessClient_F";
+ };
+ class Item22
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8395.6885,291.94577,5987.4902};
+ angles[]={0,0,6.2818937};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=791;
+ type="HeadlessClient_F";
+ };
+ class Item23
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8423.1709,291.94089,5989.8701};
+ angles[]={0,0,0.0012918708};
+ };
+ id=795;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "STRING"
};
};
+ value="#adminLogged";
};
- nAttributes=2;
};
};
- class Item3
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ class Attribute2
+ {
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="";
+ };
+ };
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=3;
+ };
+ };
+ };
+ nAttributes=4;
+ };
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8398.1973,293.69818,6006.7412};
+ angles[]={6.1467061,1.0016968,0.033321146};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=796;
+ type="Land_TentSolar_01_olive_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={-0.74136949,28.374439,1694.4166};
+ angles[]={0,1.7684679,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if (!isMultiplayer) then {deleteVehicle this};";
+ };
+ id=797;
+ type="Flag_NATO_F";
+ };
+ class Item26
+ {
+ dataType="Marker";
+ position[]={-0.40327436,20.631073,1693.8477};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=798;
+ atlOffset=-3.6200981;
+ };
+ class Item27
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8421.0225,291.93945,5997.8389};
- angles[]={0,0,0.0012918708};
+ position[]={-7.9569998,25.3923,1696.2611};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=7;
class Attributes
{
- description="Paramedic";
+ rank="SERGEANT";
+ init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=732;
- type="I_G_medic_F";
+ id=800;
+ type="B_recon_TL_F";
+ atlOffset=1.9073486e-006;
class CustomAttributes
{
class Attribute0
@@ -651,7 +825,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male12ENG";
};
};
};
@@ -670,34 +844,33 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item4
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={8423.9219,291.94333,5998.0176};
- angles[]={0,0,0.0012918708};
+ position[]={-13.842,25.222521,1692.3411};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Engineer";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=733;
- type="I_G_engineer_F";
+ id=801;
+ type="B_recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -715,7 +888,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -734,34 +907,33 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item5
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={8426.9092,291.94733,5998.2373};
- angles[]={0,0,0.0012918708};
+ position[]={-11.878,26.848005,1702.146};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=734;
- type="I_G_Soldier_GL_F";
+ id=802;
+ type="B_recon_medic_F";
+ atlOffset=1.9073486e-006;
class CustomAttributes
{
class Attribute0
@@ -779,7 +951,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03ENG";
};
};
};
@@ -798,34 +970,32 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item6
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={8412.5576,291.93143,5997.8916};
+ position[]={-15.799,28.235004,1708.031};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=735;
- type="I_G_officer_F";
+ id=803;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -843,7 +1013,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -862,34 +1032,33 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item7
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={8414.916,292.0769,6000.7471};
- angles[]={6.0768309,6.2412972,0.0066682254};
+ position[]={-16.409,25.1043,1690.326};
+ angles[]={6.0913739,1.7684722,6.1752715};
};
- side="Independent";
+ side="West";
flags=4;
class Attributes
{
- description="Machinegunner";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=736;
- type="I_G_Soldier_AR_F";
+ id=804;
+ type="B_Patrol_Soldier_MG_F";
class CustomAttributes
{
class Attribute0
@@ -907,7 +1076,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male07ENG";
};
};
};
@@ -926,34 +1095,32 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item8
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={8420.9199,292.06161,6000.6338};
- angles[]={6.0768313,0,0.0013372133};
+ position[]={-17.556,26.291941,1695.889};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=738;
- type="I_G_medic_F";
+ id=805;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -971,7 +1138,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male12ENG";
};
};
};
@@ -990,34 +1157,45 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item9
+ };
+ class Attributes
+ {
+ };
+ id=799;
+ atlOffset=1.9073486e-006;
+ };
+ class Item28
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8423.8193,292.09683,6000.8125};
- angles[]={6.084507,0,0.0013372133};
+ position[]={2220.9399,522.68604,15364.722};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=7;
class Attributes
{
- description="Engineer";
+ init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=739;
- type="I_G_engineer_F";
+ id=807;
+ type="O_T_Recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -1035,7 +1213,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -1054,34 +1232,31 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item10
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={8426.8066,292.14505,6001.0322};
- angles[]={6.084507,0,0.0013372133};
+ position[]={2225.96,523.28003,15369.001};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=740;
- type="I_G_Soldier_GL_F";
+ id=808;
+ type="O_T_Recon_Medic_F";
class CustomAttributes
{
class Attribute0
@@ -1099,7 +1274,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male02CHI";
};
};
};
@@ -1118,35 +1293,31 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=1.01;
};
};
};
nAttributes=2;
};
};
- class Item11
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={8412.4551,292.06058,6000.6865};
- angles[]={6.0832248,0,0};
+ position[]={2216.49,523.28168,15369.298};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=741;
- type="I_G_officer_F";
+ id=809;
+ type="O_T_Recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -1164,7 +1335,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01CHI";
};
};
};
@@ -1183,34 +1354,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item12
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={8420.9199,292.6738,6003.6348};
- angles[]={6.084507,0,6.276526};
+ position[]={2228.719,523.56873,15371.087};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=743;
- type="I_G_medic_F";
+ id=810;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1228,7 +1396,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1247,34 +1415,32 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item13
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={8423.8193,292.70108,6003.8135};
- angles[]={6.084507,0,0.0013372133};
+ position[]={2219.4939,522.47052,15363.198};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Engineer";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=744;
- type="I_G_engineer_F";
+ id=811;
+ type="O_Soldier_AR_F";
+ atlOffset=6.1035156e-005;
class CustomAttributes
{
class Attribute0
@@ -1292,7 +1458,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01PER";
};
};
};
@@ -1311,34 +1477,32 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item14
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={8426.8066,292.73346,6004.0332};
- angles[]={6.1038036,0,6.2645183};
+ position[]={2220.606,523.05017,15367.508};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=745;
- type="I_G_Soldier_GL_F";
+ id=812;
+ type="O_T_Recon_LAT_F";
+ atlOffset=6.1035156e-005;
class CustomAttributes
{
class Attribute0
@@ -1356,7 +1520,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -1375,6515 +1539,3314 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item15
+ };
+ class Attributes
+ {
+ };
+ id=806;
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2221.7444,526.23309,15361.389};
+ angles[]={6.1505861,3.1888621,0.012005239};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=813;
+ type="Flag_Viper_F";
+ };
+ class Item30
+ {
+ dataType="Marker";
+ position[]={2220.9285,541.20178,15364.892};
+ name="respawn_east";
+ type="flag_Viper";
+ id=814;
+ atlOffset=18.488037;
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8401.0586,292.83102,5988.606};
+ angles[]={0,0,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="boxX";
+ };
+ id=825;
+ type="B_supplyCrate_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.4551,292.67599,6003.6875};
- angles[]={6.0768309,0,0.0066682254};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=746;
- type="I_G_officer_F";
- class CustomAttributes
+ property="ammoBox";
+ expression="[_this,_value] call bis_fnc_initAmmoBox;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "STRING"
};
};
+ value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8420.8154,293.19531,6006.2217};
- angles[]={6.084507,0,6.276526};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=748;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8423.7148,293.22043,6006.4004};
- angles[]={6.1038036,0,6.2645183};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=749;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8426.7031,293.20447,6006.6201};
- angles[]={6.1038036,0,6.2645183};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=750;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.3506,293.21692,6006.2744};
- angles[]={6.0768309,0,0.0066682254};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=751;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.0146,292.72977,6003.8633};
- angles[]={6.0768313,6.1574922,0.0013372133};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=752;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.1104,293.27151,6006.4502};
- angles[]={6.0768313,0,0.0013372133};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=753;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.1484,293.80838,6008.8477};
- angles[]={6.0213375,0,6.2765174};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=755;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8424.0479,293.81436,6009.0264};
- angles[]={6.0238295,0,6.2645183};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=756;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8427.0352,293.81689,6009.2461};
- angles[]={6.0238295,0,6.2645183};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=757;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.6836,293.83182,6008.9004};
- angles[]={6.0325699,0,0.0066682254};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=758;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.4424,293.90762,6009.0762};
- angles[]={6.0213375,0,6.2765174};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=759;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.2217,294.62357,6011.9219};
- angles[]={6.0238295,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=761;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8424.1211,294.62872,6012.1006};
- angles[]={6.0238295,0,6.2645183};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=762;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8427.1084,294.60117,6012.3203};
- angles[]={6.038835,0,6.2485313};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=763;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.7568,294.64554,6011.9746};
- angles[]={6.0213375,0,0.018670246};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=764;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.5156,294.73105,6012.1504};
- angles[]={6.0213375,0,6.2765174};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=765;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8418.2549,295.44351,6014.9082};
- angles[]={6.0238295,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=767;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.1543,295.46671,6015.0869};
- angles[]={5.9566455,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=768;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8424.1416,295.47058,6015.3066};
- angles[]={5.9602342,0,6.2485328};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=769;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8409.79,295.39053,6014.9609};
- angles[]={6.0213375,0,0.018670246};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=770;
- type="I_G_officer_F";
- atlOffset=3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.5488,295.49496,6015.1367};
- angles[]={5.9602342,0,0.018667053};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=771;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8418.1064,296.54022,6018.1729};
- angles[]={5.9566455,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=773;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.0059,296.56638,6018.3516};
- angles[]={5.9602346,0,6.2698579};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=774;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8423.9932,296.56824,6018.5713};
- angles[]={5.9602342,0,6.2485328};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=775;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8409.6416,296.47437,6018.2256};
- angles[]={5.9602342,0,0.018667053};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=776;
- type="I_G_officer_F";
- atlOffset=3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.4004,296.58765,6018.4014};
- angles[]={5.9566455,0,0.022662206};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=777;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8416.9199,297.47983,6020.918};
- angles[]={5.9602346,0,6.2698579};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=779;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8419.8193,297.50092,6021.0967};
- angles[]={5.9602346,0,6.2698579};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=780;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8422.8066,297.52811,6021.3164};
- angles[]={5.9602342,0,6.2485328};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=781;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8408.4551,297.37094,6020.9707};
- angles[]={5.9602342,0,0.018667053};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=782;
- type="I_G_officer_F";
- atlOffset=3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8411.2139,297.49045,6021.1465};
- angles[]={5.9566455,0,0.022662206};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=783;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8409.5635,291.93143,5991.6865};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=784;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8412.5879,291.93143,5991.9453};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=785;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.1729,291.93167,5992.3516};
- angles[]={0,0,0.0012918708};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=786;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8418.0928,291.93555,5998.1875};
- angles[]={0,0,0.0012918708};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=815;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8417.9893,292.13071,6000.9824};
- angles[]={6.0768313,0,0.0013372133};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=816;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8417.9893,292.75903,6003.9839};
- angles[]={6.0768352,0,0.0013439035};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=817;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8417.8857,293.28506,6006.5703};
- angles[]={6.084507,0,6.276526};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=818;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8418.2178,293.92126,6009.1963};
- angles[]={6.0213375,0,6.2765174};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=819;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8418.292,294.74335,6012.2705};
- angles[]={6.0238295,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=820;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.3252,295.57861,6015.2568};
- angles[]={5.9566455,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=821;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.1768,296.68567,6018.5215};
- angles[]={5.9566455,0,6.2738504};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=822;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8413.9893,297.59396,6021.2666};
- angles[]={5.9566455,0,0.022662206};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=823;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8406.6328,291.93259,5992.0352};
- angles[]={0,0,6.2818937};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=824;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=724;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Rebels";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item19
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8391.5244,292.32184,6001.5439};
- angles[]={6.1703324,2.1016905,0.039985489};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=727;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=726;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Command";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8395.1035,293.27808,6000.7822};
- angles[]={6.1703324,0,0.0093350215};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=788;
- type="MapBoard_seismic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8393.418,297.19052,6009.3501};
- angles[]={6.2059956,0,0.033321146};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=789;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item22
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8393.8418,291.94821,5988.4844};
- angles[]={0,0,6.2818937};
- };
- name="hc_1";
- isPlayable=1;
- id=790;
- type="HeadlessClient_F";
- };
- class Item23
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8395.6885,291.94577,5987.4902};
- angles[]={0,0,6.2818937};
- };
- name="hc_2";
- isPlayable=1;
- id=791;
- type="HeadlessClient_F";
- };
- class Item24
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8423.1709,291.94089,5989.8701};
- angles[]={0,0,0.0012918708};
- };
- id=795;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8398.1973,293.69818,6006.7412};
- angles[]={6.1467061,1.0016968,0.033321146};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=796;
- type="Land_TentSolar_01_olive_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item26
+ class Item32
{
- dataType="Object";
+ dataType="Logic";
class PositionInfo
{
- position[]={-0.74136949,28.374439,1694.4166};
- angles[]={0,1.7684679,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if (!isMultiplayer) then {deleteVehicle this};";
+ position[]={8405.2891,291.93295,5983.9502};
};
- id=797;
- type="Flag_NATO_F";
- };
- class Item27
- {
- dataType="Marker";
- position[]={-0.40327436,20.631073,1693.8477};
- name="respawn_west";
- type="flag_CTRG";
- id=798;
- atlOffset=-3.6200981;
+ name="pathfinding";
+ id=826;
+ type="Logic";
};
- class Item28
+ class Item33
{
- dataType="Group";
- side="West";
+ dataType="Layer";
+ name="Airports";
class Entities
{
- items=6;
+ items=20;
class Item0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-7.9569998,25.3923,1696.2611};
- angles[]={0,1.7684722,0};
- };
- side="West";
- flags=7;
- class Attributes
- {
- rank="SERGEANT";
- init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
- name="pvp_blue_1";
- isPlayable=1;
- };
- id=800;
- type="B_recon_TL_F";
- atlOffset=1.9073486e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={12102.295,158.89999,12628.667};
+ name="airport";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=390.76028;
+ b=150;
+ angle=19.882999;
+ id=4;
+ atlOffset=-0.053817749;
};
class Item1
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-13.842,25.222521,1692.3411};
- angles[]={0,1.7684722,0};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
- name="pvp_blue_4";
- isPlayable=1;
- };
- id=801;
- type="B_recon_M_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={4720.6362,339,10248.794};
+ name="airport_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=476.16949;
+ b=207.12466;
+ angle=59.539993;
+ id=5;
};
class Item2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-11.878,26.848005,1702.146};
- angles[]={0,1.7684722,0};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
- name="pvp_blue_2";
- isPlayable=1;
- };
- id=802;
- type="B_recon_medic_F";
- atlOffset=1.9073486e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={4854.7817,8.790967,2507.9417};
+ name="airport_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=249.14926;
+ b=109.36142;
+ angle=28.48984;
+ id=6;
+ atlOffset=-0.20903301;
};
class Item3
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-15.799,28.235004,1708.031};
- angles[]={0,1.7684722,0};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
- name="pvp_blue_5";
- isPlayable=1;
- };
- id=803;
- type="B_recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={4747.793,339,10323.246};
+ name="airp_1_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=843;
};
class Item4
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-16.409,25.1043,1690.326};
- angles[]={6.0913739,1.7684722,6.1752715};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
- name="pvp_blue_3";
- isPlayable=1;
- };
- id=804;
- type="B_Patrol_Soldier_MG_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male07ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={4737.9219,339,10324.874};
+ name="airp_1_mortar_4";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=844;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={4748.1094,339,10340.307};
+ name="airp_1_mortar_5";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=845;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4814.894,8.8579998,2536.582};
+ name="airp_2_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=870;
+ atlOffset=0.00019359589;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={4805.021,8.8710003,2538.21};
+ name="airp_2_mortar_4";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=871;
+ atlOffset=-0.00059700012;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={4811.2568,8.7320004,2541.2839};
+ name="airp_2_mortar_5";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=872;
+ atlOffset=-0.00042152405;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={12140.338,158.939,12612.063};
+ name="airp_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=868;
+ atlOffset=-0.00015258789;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={12146.573,158.89999,12615.138};
+ name="airp_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=869;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={12150.21,158.89999,12610.436};
+ name="airp_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=867;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4596.8301,339,10405.223};
+ name="airp_1_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=43.498734;
+ b=23.140686;
+ angle=237.01163;
+ id=860;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={4752.5908,339,10154.53};
+ name="airp_1_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=44.02475;
+ b=23.856892;
+ angle=236.65265;
+ id=861;
};
- class Item5
+ class Item14
{
- dataType="Object";
- class PositionInfo
- {
- position[]={-17.556,26.291941,1695.889};
- angles[]={0,1.7684722,0};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
- name="pvp_blue_6";
- isPlayable=1;
- };
- id=805;
- type="B_recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={4752.0508,9,2535.6799};
+ name="airp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=32.455002;
+ b=20.924999;
+ angle=207.52596;
+ id=874;
};
- };
- class Attributes
- {
- };
- id=799;
- atlOffset=1.9073486e-006;
- };
- class Item29
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
+ class Item15
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2220.9399,522.68604,15364.722};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=7;
- class Attributes
- {
- init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
- name="pvp_red_1";
- isPlayable=1;
- };
- id=807;
- type="O_T_Recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={12186.542,158.98723,12641.169};
+ name="airp_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=43.499001;
+ b=23.141001;
+ angle=200.52629;
+ id=866;
};
- class Item1
+ class Item16
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2225.96,523.28003,15369.001};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
- name="pvp_red_2";
- isPlayable=1;
- };
- id=808;
- type="O_T_Recon_Medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={12038.437,159,12695.702};
+ name="airp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=32.455002;
+ b=20.924999;
+ angle=195.99695;
+ id=873;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={4655.0957,339,10285.574};
+ name="detectPlayer";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=739.97546;
+ b=253.8351;
+ angle=59.967659;
+ id=834;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={4967.9453,8.9077148,2442.2239};
+ name="detectPlayer_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=379.85837;
+ b=130.2925;
+ angle=29.909319;
+ id=835;
+ atlOffset=0.03082943;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={12111.572,158.22559,12628.975};
+ name="detectPlayer_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=467.86603;
+ b=197.88884;
+ angle=19.95442;
+ id=836;
+ atlOffset=-0.67440796;
+ };
+ };
+ id=827;
+ atlOffset=-156.77542;
+ };
+ class Item34
+ {
+ dataType="Layer";
+ name="Outposts";
+ class Entities
+ {
+ items=32;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={5146.8965,8.7180004,2345.7275};
+ name="outpost";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=89.797859;
+ b=108.29008;
+ angle=210.03189;
+ id=10;
+ atlOffset=-0.28199959;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={4541.6143,44.214844,3155.5417};
+ name="outpost_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=122.74355;
+ b=128.60263;
+ angle=155.90392;
+ id=11;
+ atlOffset=-14.062813;
};
class Item2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2216.49,523.28168,15369.298};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
- name="pvp_red_4";
- isPlayable=1;
- };
- id=809;
- type="O_T_Recon_M_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={11226.278,190.0475,12185.473};
+ name="outpost_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=64.31974;
+ b=68.95639;
+ angle=297.99689;
+ id=27;
};
class Item3
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2228.719,523.56873,15371.087};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=810;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={12923.339,213.45667,12766.218};
+ name="outpost_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=63.164063;
+ b=63.14502;
+ id=28;
+ atlOffset=3.7282562;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={12940.608,27.022924,6770.3062};
+ name="outpost_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=59.300125;
+ b=58.015564;
+ angle=170.78795;
+ id=32;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={13415.1,6.442688,6196.1709};
+ name="outpost_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=79.427887;
+ b=60.68631;
+ angle=270.85022;
+ id=34;
+ atlOffset=1.2123933;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={13467.147,83.838745,3342.0027};
+ name="outpost_14";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=89.13623;
+ b=85.462082;
+ angle=141.42493;
+ id=35;
+ atlOffset=12.189415;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={4404.1821,215.7998,4668.0483};
+ name="outpost_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=73.771751;
+ b=104.24509;
+ angle=99.916;
+ id=36;
+ atlOffset=-19.800491;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={7561.6045,210.63184,5171.1587};
+ name="outpost_16";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=55.869678;
+ b=48.883904;
+ angle=179.87862;
+ id=39;
+ atlOffset=-3.3840942;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={6291.4487,301.02283,7718.4253};
+ name="outpost_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=97.076508;
+ b=53.799522;
+ angle=213.73801;
+ id=40;
};
- class Item4
+ class Item10
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2219.4939,522.47052,15363.198};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=811;
- type="O_Soldier_AR_F";
- atlOffset=6.1035156e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01PER";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={8843.5234,214,11654.893};
+ name="outpost_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=62.089123;
+ b=66.317612;
+ angle=100.45999;
+ id=42;
};
- class Item5
+ class Item11
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2220.606,523.05017,15367.508};
- angles[]={0,3.1888561,0};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=812;
- type="O_T_Recon_LAT_F";
- atlOffset=6.1035156e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
+ dataType="Marker";
+ position[]={12207.529,25.302977,9414.1025};
+ name="outpost_19";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=70;
+ b=50;
+ angle=318.96811;
+ id=52;
};
- };
- class Attributes
- {
- };
- id=806;
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2221.7444,526.23309,15361.389};
- angles[]={6.1505861,3.1888621,0.012005239};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- init="if !(isMultiplayer) then {deleteVehicle this}";
- };
- id=813;
- type="Flag_Viper_F";
- };
- class Item31
- {
- dataType="Marker";
- position[]={2220.9285,541.20178,15364.892};
- name="respawn_east";
- type="flag_Viper";
- id=814;
- atlOffset=18.488037;
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8401.0586,292.83102,5988.606};
- angles[]={0,0,6.2818937};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="boxX";
- };
- id=825;
- type="B_supplyCrate_F";
- class CustomAttributes
- {
- class Attribute0
+ class Item12
{
- property="ammoBox";
- expression="[_this,_value] call bis_fnc_initAmmoBox;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
- };
- };
+ dataType="Marker";
+ position[]={3701.5046,402,5978.062};
+ name="outpost_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=96.04599;
+ b=86.994995;
+ angle=47.747215;
+ id=12;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={4958.8213,338.98999,9856.377};
+ name="outpost_20";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=171.24644;
+ b=198.93745;
+ angle=239.93896;
+ id=251;
+ atlOffset=-0.010009766;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={2732.8411,267.20313,9905.9258};
+ name="outpost_21";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=55.818733;
+ b=57.456215;
+ angle=121.37389;
+ id=295;
+ atlOffset=-6.7468872;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={4411.21,339,10796.395};
+ name="outpost_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=156.02531;
+ b=203.82967;
+ angle=239.93896;
+ id=14;
};
- class Attribute1
+ class Item16
{
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={6895.8628,394.51886,11440.411};
+ name="outpost_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=113.01675;
+ b=82.41481;
+ angle=235.19092;
+ id=15;
};
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8405.2891,291.93295,5983.9502};
- };
- name="pathfinding";
- id=826;
- type="Logic";
- };
- class Item34
- {
- dataType="Layer";
- name="Airports";
- class Entities
- {
- items=20;
- class Item0
+ class Item17
{
dataType="Marker";
- position[]={12102.295,158.89999,12628.667};
- name="airport";
+ position[]={6434.1392,384.95474,6548.1943};
+ name="outpost_5";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=390.76028;
- b=150;
- angle=19.882999;
- id=4;
- atlOffset=-0.053817749;
+ colorName="ColorGreen";
+ a=45.783302;
+ b=46.773125;
+ angle=130.869;
+ id=16;
};
- class Item1
+ class Item18
{
dataType="Marker";
- position[]={4720.6362,339,10248.794};
- name="airport_1";
+ position[]={4732.7896,282.24829,6759.6099};
+ name="outpost_6";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=476.16949;
- b=207.12466;
- angle=59.539993;
- id=5;
+ colorName="ColorGreen";
+ a=89.587685;
+ b=75.625938;
+ angle=48.989975;
+ id=17;
+ atlOffset=12.033936;
};
- class Item2
+ class Item19
{
dataType="Marker";
- position[]={4854.7817,8.790967,2507.9417};
- name="airport_2";
+ position[]={6583.1733,91.995636,3424.0298};
+ name="outpost_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=249.14926;
- b=109.36142;
- angle=28.489843;
- id=6;
- atlOffset=-0.20903301;
+ colorName="ColorGreen";
+ a=163.08447;
+ b=153.32703;
+ id=18;
+ atlOffset=11.036263;
};
- class Item3
+ class Item20
{
dataType="Marker";
- position[]={4747.793,339,10323.246};
- name="airp_1_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=843;
+ position[]={10256.854,357.54529,12042.293};
+ name="outpost_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=142.01855;
+ b=94.024902;
+ id=19;
+ atlOffset=-3.0738525;
};
- class Item4
+ class Item21
{
dataType="Marker";
- position[]={4737.9219,339,10324.874};
- name="airp_1_mortar_4";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=844;
+ position[]={11250.48,292.00342,4294.0674};
+ name="outpost_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=78.738342;
+ b=83.958069;
+ angle=225.59978;
+ id=22;
+ atlOffset=1.309967;
};
- class Item5
+ class Item22
{
dataType="Marker";
- position[]={4748.1094,339,10340.307};
- name="airp_1_mortar_5";
+ position[]={12211.771,24.93,9422.0146};
+ name="outp_19_mortar_1";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=14.473;
b=13.825;
- id=845;
+ id=841;
+ atlOffset=-0.00021934509;
};
- class Item6
+ class Item23
{
dataType="Marker";
- position[]={4814.894,8.8579998,2536.582};
- name="airp_2_mortar_3";
+ position[]={3701.6641,402,5965.916};
+ name="outp_2_mortar_6";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=14.473;
b=13.825;
- id=870;
- atlOffset=0.00019359589;
+ id=846;
};
- class Item7
+ class Item24
{
dataType="Marker";
- position[]={4805.021,8.8710003,2538.21};
- name="airp_2_mortar_4";
+ position[]={10289.712,362.75101,12053.699};
+ name="outp_8_mortar_2";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=14.473;
b=13.825;
- id=871;
- atlOffset=-0.00059700012;
+ id=842;
+ atlOffset=0.0002746582;
};
- class Item8
+ class Item25
{
dataType="Marker";
- position[]={4811.2568,8.7320004,2541.2839};
- name="airp_2_mortar_5";
+ position[]={11264.744,289.746,4292.293};
+ name="outp_9_mortar_7";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=14.473;
b=13.825;
- id=872;
- atlOffset=-0.00042152405;
+ id=847;
+ atlOffset=3.0517578e-005;
};
- class Item9
+ class Item26
{
dataType="Marker";
- position[]={12140.338,158.939,12612.063};
- name="airp_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=868;
- atlOffset=-0.00015258789;
+ position[]={11250.149,189.44099,12165.023};
+ name="outp_10_vehicle_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=19.791;
+ b=14.319;
+ angle=297.01099;
+ id=884;
+ atlOffset=0.0038299561;
};
- class Item10
+ class Item27
{
dataType="Marker";
- position[]={12146.573,158.89999,12615.138};
- name="airp_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=869;
+ position[]={12949.378,27.011999,6745.0771};
+ name="outp_12_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=16.625;
+ b=5.0040002;
+ angle=257.76401;
+ id=882;
+ atlOffset=-0.01247406;
};
- class Item11
+ class Item28
{
dataType="Marker";
- position[]={12150.21,158.89999,12610.436};
- name="airp_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=867;
+ position[]={13418.469,5.75,6166.9551};
+ name="outp_13_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=9.691;
+ b=18.506001;
+ angle=180.35095;
+ id=881;
+ atlOffset=0.45897436;
};
- class Item12
+ class Item29
+ {
+ dataType="Marker";
+ position[]={4420.085,235.808,4663.5952};
+ name="outp_15_vehicle_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=12.183;
+ b=5.744;
+ angle=207.52596;
+ id=878;
+ atlOffset=0.072692871;
+ };
+ class Item30
{
dataType="Marker";
- position[]={4596.8301,339,10405.223};
- name="airp_1_vehicle_1";
+ position[]={12167.877,28.309,9392.2578};
+ name="outp_19_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=43.498734;
- b=23.140686;
- angle=237.01164;
- id=860;
+ a=12.214;
+ b=20.924999;
+ angle=225.60695;
+ id=883;
+ atlOffset=-0.138937;
};
- class Item13
+ class Item31
{
dataType="Marker";
- position[]={4752.5908,339,10154.53};
- name="airp_1_vehicle_2";
+ position[]={5168.876,8.8999996,2279.875};
+ name="outp_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=44.02475;
- b=23.856892;
- angle=236.65271;
- id=861;
+ a=32.455002;
+ b=20.924999;
+ angle=207.52596;
+ id=876;
};
- class Item14
+ };
+ id=828;
+ atlOffset=-140.3578;
+ };
+ class Item35
+ {
+ dataType="Layer";
+ name="Seaports";
+ class Entities
+ {
+ items=7;
+ class Item0
{
dataType="Marker";
- position[]={4752.0508,9,2535.6799};
- name="airp_2_vehicle";
+ position[]={3615.9265,6.5879998,2177.1638};
+ name="seaport";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=207.52599;
- id=874;
+ colorName="ColorWEST";
+ a=134.67267;
+ b=91.436241;
+ angle=106.133;
+ id=46;
+ atlOffset=0.58799982;
};
- class Item15
+ class Item1
{
dataType="Marker";
- position[]={12186.542,158.98723,12641.169};
- name="airp_vehicle";
+ position[]={6953.5557,6.0109863,2348.8506};
+ name="seaport_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=43.499001;
- b=23.141001;
- angle=200.52629;
- id=866;
+ colorName="ColorWEST";
+ a=108.34799;
+ b=77.135849;
+ angle=138.239;
+ id=47;
};
- class Item16
+ class Item2
{
dataType="Marker";
- position[]={12038.437,159,12695.702};
- name="airp_vehicle_1";
+ position[]={10393.712,3.0197072,1855.9868};
+ name="seaport_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=195.99698;
- id=873;
+ colorName="ColorWEST";
+ a=67.480957;
+ b=65.192261;
+ id=48;
};
- class Item17
+ class Item3
{
dataType="Marker";
- position[]={4655.0957,339,10285.574};
- name="detectPlayer";
+ position[]={13521.632,4.4954515,6320.7788};
+ name="seaport_3";
markerType="RECTANGLE";
type="rectangle";
- a=739.97546;
- b=253.8351;
- angle=59.967663;
- id=834;
+ colorName="ColorWEST";
+ a=70;
+ b=65.142693;
+ angle=96.268379;
+ id=49;
+ atlOffset=1.1780939;
};
- class Item18
+ class Item4
{
dataType="Marker";
- position[]={4967.9453,8.9077148,2442.2239};
- name="detectPlayer_1";
+ position[]={13049.766,6,10046.398};
+ name="seaport_4";
markerType="RECTANGLE";
type="rectangle";
- a=379.85837;
- b=130.2925;
- angle=29.909325;
- id=835;
- atlOffset=0.03082943;
+ colorName="ColorWEST";
+ a=70;
+ b=59.038822;
+ angle=110.88124;
+ id=51;
};
- class Item19
+ class Item5
{
dataType="Marker";
- position[]={12111.572,158.22559,12628.975};
- name="detectPlayer_2";
+ position[]={6926.167,6.013,2333.9231};
+ name="seap_1_vehicle";
markerType="RECTANGLE";
type="rectangle";
- a=467.86603;
- b=197.88884;
- angle=19.954424;
- id=836;
- atlOffset=-0.67440796;
+ colorName="ColorGreen";
+ a=27.023001;
+ b=10.466;
+ angle=142.308;
+ id=877;
+ atlOffset=0.00021314621;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={10402.839,6.046,1889.443};
+ name="seap_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=32.455002;
+ b=12.286;
+ angle=179.12996;
+ id=879;
+ atlOffset=0.24533272;
};
};
- id=827;
- atlOffset=-156.77542;
+ id=829;
+ atlOffset=-108.53817;
};
- class Item35
+ class Item36
{
dataType="Layer";
- name="Outposts";
+ name="Factories";
class Entities
{
- items=32;
+ items=6;
class Item0
{
dataType="Marker";
- position[]={5146.8965,8.7180004,2345.7275};
- name="outpost";
+ position[]={4167.8696,323.37891,8939.7422};
+ name="factory";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=89.797859;
- b=108.29008;
- angle=210.03189;
- id=10;
- atlOffset=-0.28199959;
+ colorName="ColorOrange";
+ a=108.2471;
+ b=107.57551;
+ angle=188.34593;
+ id=13;
+ atlOffset=-0.63394165;
};
class Item1
{
dataType="Marker";
- position[]={4541.6143,44.214844,3155.5417};
- name="outpost_1";
+ position[]={10427.643,6,2581.9363};
+ name="factory_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=122.74355;
- b=128.60263;
- angle=155.90392;
- id=11;
- atlOffset=-14.062813;
+ colorName="ColorOrange";
+ a=68.609634;
+ b=66.307854;
+ angle=205.30093;
+ id=20;
};
class Item2
{
dataType="Marker";
- position[]={11226.278,190.0475,12185.473};
- name="outpost_10";
+ position[]={12863.338,6.013,9952.0381};
+ name="factory_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=64.31974;
- b=68.95639;
- angle=297.99689;
- id=27;
+ colorName="ColorOrange";
+ a=84.660927;
+ b=51.169899;
+ angle=100.412;
+ id=30;
+ atlOffset=0.00021314621;
};
class Item3
{
dataType="Marker";
- position[]={12923.339,213.45667,12766.218};
- name="outpost_11";
+ position[]={13078.55,6,7089.2612};
+ name="factory_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=63.164063;
- b=63.14502;
- id=28;
- atlOffset=3.7282562;
+ colorName="ColorOrange";
+ a=102.92614;
+ b=57.434551;
+ angle=73.819817;
+ id=31;
};
class Item4
{
dataType="Marker";
- position[]={12940.608,27.022924,6770.3062};
- name="outpost_12";
+ position[]={6498.6138,6,2617.9641};
+ name="factory_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=120;
+ b=90;
+ angle=130.13901;
+ id=37;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={4195.167,324.00299,8953.9102};
+ name="fact_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=59.300125;
- b=58.015564;
- angle=170.78795;
- id=32;
+ a=13.231;
+ b=9.4980001;
+ angle=281.59299;
+ id=885;
+ atlOffset=-0.0034484863;
+ };
+ };
+ id=830;
+ atlOffset=-167.34557;
+ };
+ class Item37
+ {
+ dataType="Layer";
+ name="Resources";
+ class Entities
+ {
+ items=11;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={10063.688,6,1839.64};
+ name="resource";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=90;
+ b=50;
+ id=21;
};
- class Item5
+ class Item1
{
dataType="Marker";
- position[]={13415.1,6.442688,6196.1709};
- name="outpost_13";
+ position[]={11470.222,221,7510.728};
+ name="resource_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=79.427887;
- b=60.68631;
- angle=270.85022;
- id=34;
- atlOffset=1.2123933;
+ colorName="ColorBrown";
+ a=80;
+ b=50;
+ angle=97.399902;
+ id=23;
};
- class Item6
+ class Item2
{
dataType="Marker";
- position[]={13467.147,83.838745,3342.0027};
- name="outpost_14";
+ position[]={9700.9033,298.99799,8918.7803};
+ name="resource_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=89.13623;
- b=85.462082;
- angle=141.42493;
- id=35;
- atlOffset=12.189415;
+ colorName="ColorBrown";
+ a=70;
+ b=50;
+ angle=104.40878;
+ id=24;
+ atlOffset=-0.00030517578;
};
- class Item7
+ class Item3
{
dataType="Marker";
- position[]={4404.1821,215.7998,4668.0483};
- name="outpost_15";
+ position[]={10266.166,168.32201,9522.1777};
+ name="resource_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=73.771751;
- b=104.24509;
- angle=99.916;
- id=36;
- atlOffset=-19.800491;
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ angle=184.80492;
+ id=25;
+ atlOffset=0.00010681152;
};
- class Item8
+ class Item4
{
dataType="Marker";
- position[]={7561.6045,210.63184,5171.1587};
- name="outpost_16";
+ position[]={11845.592,148.39,12407.44};
+ name="resource_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=55.869678;
- b=48.883904;
- angle=179.87865;
- id=39;
- atlOffset=-3.3840942;
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ angle=200.38896;
+ id=26;
+ atlOffset=-0.00032043457;
};
- class Item9
+ class Item5
{
dataType="Marker";
- position[]={6291.4487,301.02283,7718.4253};
- name="outpost_17";
+ position[]={12761.23,6,9655.4131};
+ name="resource_5";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=97.076508;
- b=53.799522;
- angle=213.73801;
- id=40;
+ colorName="ColorBrown";
+ a=110;
+ b=70;
+ angle=191.55794;
+ id=29;
};
- class Item10
+ class Item6
{
dataType="Marker";
- position[]={8843.5234,214,11654.893};
- name="outpost_18";
+ position[]={13273.817,10.119,6095.9707};
+ name="resource_6";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=62.089123;
- b=66.317612;
- angle=100.45999;
- id=42;
+ colorName="ColorBrown";
+ a=68.961441;
+ b=65.203957;
+ angle=58.644993;
+ id=33;
+ atlOffset=2.1734037;
};
- class Item11
+ class Item7
{
dataType="Marker";
- position[]={12207.529,25.302977,9414.1025};
- name="outpost_19";
+ position[]={6240.0112,5.4920001,2208.729};
+ name="resource_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=70;
+ colorName="ColorBrown";
+ a=50;
b=50;
- angle=318.96817;
- id=52;
+ angle=149.799;
+ id=38;
+ atlOffset=0.00037527084;
};
- class Item12
+ class Item8
{
dataType="Marker";
- position[]={3701.5046,402,5978.062};
- name="outpost_2";
+ position[]={9673.1572,46.938477,13557.481};
+ name="resource_8";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=96.04599;
- b=86.994995;
- angle=47.747215;
- id=12;
+ colorName="ColorBrown";
+ a=133.86571;
+ b=128.34068;
+ angle=147.22701;
+ id=41;
+ atlOffset=-36.718025;
};
- class Item13
+ class Item9
{
dataType="Marker";
- position[]={4958.8213,338.98999,9856.377};
- name="outpost_20";
+ position[]={13141.395,6.0570397,10301.52};
+ name="resource_9";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=171.24644;
- b=198.93745;
- angle=239.93896;
- id=251;
- atlOffset=-0.010009766;
+ colorName="ColorBrown";
+ a=80;
+ b=47.947792;
+ angle=289.01877;
+ id=50;
+ atlOffset=-0.045758247;
};
- class Item14
+ class Item10
{
dataType="Marker";
- position[]={2732.8411,267.20313,9905.9258};
- name="outpost_21";
+ position[]={9996.3281,6,1843.3051};
+ name="reso_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=55.818733;
- b=57.456215;
- angle=121.37392;
- id=295;
- atlOffset=-6.7468872;
+ a=13.939;
+ b=12.332;
+ angle=180.841;
+ id=880;
};
- class Item15
+ };
+ id=831;
+ atlOffset=-278.84216;
+ };
+ class Item38
+ {
+ dataType="Layer";
+ name="Roadblocks";
+ class Entities
+ {
+ items=41;
+ class Item0
{
dataType="Marker";
- position[]={4411.21,339,10796.395};
- name="outpost_3";
+ position[]={12851.474,5.7764149,8706.6035};
+ name="control";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=156.02531;
- b=203.82967;
- angle=239.93896;
- id=14;
+ a=99.020477;
+ b=118.70475;
+ angle=159.709;
+ id=53;
};
- class Item16
+ class Item1
{
dataType="Marker";
- position[]={6895.8628,394.51886,11440.411};
- name="outpost_4";
+ position[]={11891.186,31.970703,9017.7803};
+ name="control_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=113.01675;
- b=82.41481;
- angle=235.19092;
- id=15;
+ a=169.17923;
+ b=179.54099;
+ angle=159.709;
+ id=54;
+ atlOffset=-27.432232;
};
- class Item17
+ class Item2
{
dataType="Marker";
- position[]={6434.1392,384.95474,6548.1943};
- name="outpost_5";
+ position[]={3643.8086,8.4753141,2523.8491};
+ name="control_10";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=45.783302;
- b=46.773125;
- angle=130.869;
- id=16;
+ a=108.25488;
+ b=100.38329;
+ angle=159.709;
+ id=63;
};
- class Item18
+ class Item3
{
dataType="Marker";
- position[]={4732.7896,282.24829,6759.6099};
- name="outpost_6";
+ position[]={2661.8247,221.79205,5583.6392};
+ name="control_11";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=89.587685;
- b=75.625938;
- angle=48.989975;
- id=17;
- atlOffset=12.033936;
+ a=20;
+ b=20;
+ angle=159.709;
+ id=64;
+ atlOffset=-3.0517578e-005;
};
- class Item19
+ class Item4
{
dataType="Marker";
- position[]={6583.1733,91.995636,3424.0298};
- name="outpost_7";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=163.08447;
- b=153.32703;
- id=18;
- atlOffset=11.036263;
+ position[]={3130.9856,298.29498,8072.5195};
+ name="control_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=157.0043;
+ b=161.89716;
+ angle=159.709;
+ id=65;
};
- class Item20
+ class Item5
{
dataType="Marker";
- position[]={10256.854,357.54529,12042.293};
- name="outpost_8";
+ position[]={5058.7593,341.6015,8636.0986};
+ name="control_13";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=142.01855;
- b=94.024902;
- id=19;
- atlOffset=-3.0738525;
+ a=135.16505;
+ b=145.20442;
+ angle=159.709;
+ id=66;
};
- class Item21
+ class Item6
{
dataType="Marker";
- position[]={11250.48,292.00342,4294.0674};
- name="outpost_9";
+ position[]={4806.2607,276.80078,7174.6528};
+ name="control_14";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=78.738342;
- b=83.958069;
- angle=225.59978;
- id=22;
- atlOffset=1.309967;
+ a=188.29962;
+ b=158.81369;
+ angle=159.709;
+ id=67;
+ atlOffset=-25.2211;
};
- class Item22
+ class Item7
{
dataType="Marker";
- position[]={12211.771,24.93,9422.0146};
- name="outp_19_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=841;
- atlOffset=-0.00021934509;
+ position[]={9467.0781,195.077,4417.0298};
+ name="control_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=69;
+ atlOffset=-0.52865601;
};
- class Item23
+ class Item8
{
dataType="Marker";
- position[]={3701.6641,402,5965.916};
- name="outp_2_mortar_6";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=846;
+ position[]={8477.1055,133.16751,4911.9985};
+ name="control_16";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=70;
};
- class Item24
+ class Item9
{
dataType="Marker";
- position[]={10289.712,362.75101,12053.699};
- name="outp_8_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=842;
- atlOffset=0.0002746582;
+ position[]={10919.603,223.7363,3935.2534};
+ name="control_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=71;
+ atlOffset=-0.52865601;
};
- class Item25
+ class Item10
{
dataType="Marker";
- position[]={11264.744,289.746,4292.293};
- name="outp_9_mortar_7";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=847;
- atlOffset=3.0517578e-005;
+ position[]={12501.461,-79.317383,3547.23};
+ name="control_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=72;
+ atlOffset=-85.433502;
};
- class Item26
+ class Item11
{
dataType="Marker";
- position[]={11250.149,189.44099,12165.023};
- name="outp_10_vehicle_9";
+ position[]={13005.596,129.54488,4887.0337};
+ name="control_19";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=19.791;
- b=14.319;
- angle=297.01099;
- id=884;
- atlOffset=0.0038299561;
+ a=300;
+ b=300;
+ id=73;
+ atlOffset=-0.52865601;
};
- class Item27
+ class Item12
{
dataType="Marker";
- position[]={12949.378,27.011999,6745.0771};
- name="outp_12_vehicle";
+ position[]={10899.459,233.37083,11626.339};
+ name="control_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=16.625;
- b=5.0040002;
- angle=257.76401;
- id=882;
- atlOffset=-0.01247406;
+ a=20;
+ b=20;
+ angle=159.709;
+ id=55;
+ atlOffset=-3.0517578e-005;
};
- class Item28
+ class Item13
{
dataType="Marker";
- position[]={13418.469,5.75,6166.9551};
- name="outp_13_vehicle";
+ position[]={11972.051,105.46842,5060.0024};
+ name="control_20";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=9.691;
- b=18.506001;
- angle=180.35098;
- id=881;
- atlOffset=0.45897436;
+ a=300;
+ b=300;
+ id=74;
+ atlOffset=-0.52865601;
};
- class Item29
+ class Item14
{
dataType="Marker";
- position[]={4420.085,235.808,4663.5952};
- name="outp_15_vehicle_3";
+ position[]={7139.8784,262.06378,7218.9258};
+ name="control_21";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=12.183;
- b=5.744;
- angle=207.52599;
- id=878;
- atlOffset=0.072692871;
+ a=300;
+ b=300;
+ id=75;
};
- class Item30
+ class Item15
{
dataType="Marker";
- position[]={12167.877,28.309,9392.2578};
- name="outp_19_vehicle";
+ position[]={10985.485,207.30542,6140.5288};
+ name="control_22";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=12.214;
- b=20.924999;
- angle=225.60698;
- id=883;
- atlOffset=-0.138937;
+ a=300;
+ b=300;
+ id=76;
+ atlOffset=-0.52865601;
};
- class Item31
+ class Item16
{
dataType="Marker";
- position[]={5168.876,8.8999996,2279.875};
- name="outp_vehicle_1";
+ position[]={5835.1284,277.32715,10067.057};
+ name="control_23";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=207.52599;
- id=876;
+ a=300;
+ b=300;
+ id=77;
+ atlOffset=-1.5084839;
};
- };
- id=828;
- atlOffset=-140.3578;
- };
- class Item36
- {
- dataType="Layer";
- name="Seaports";
- class Entities
- {
- items=7;
- class Item0
+ class Item17
{
dataType="Marker";
- position[]={3615.9265,6.5879998,2177.1638};
- name="seaport";
+ position[]={9101.5146,252.49112,6775.3618};
+ name="control_24";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorWEST";
- a=134.67267;
- b=91.436241;
- angle=106.133;
- id=46;
- atlOffset=0.58799982;
+ a=300;
+ b=300;
+ id=78;
+ atlOffset=-0.52865601;
};
- class Item1
+ class Item18
{
dataType="Marker";
- position[]={6953.5557,6.0109863,2348.8506};
- name="seaport_1";
+ position[]={10052.591,227.49121,8855.5938};
+ name="control_25";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorWEST";
- a=108.34799;
- b=77.135849;
- angle=138.239;
- id=47;
+ a=300;
+ b=300;
+ id=79;
+ atlOffset=-32.876678;
};
- class Item2
+ class Item19
{
dataType="Marker";
- position[]={10393.712,3.0197072,1855.9868};
- name="seaport_2";
+ position[]={8065.522,441.07968,7813.2495};
+ name="control_26";
markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=67.480957;
- b=65.192261;
- id=48;
+ type="rectangle";
+ a=300;
+ b=300;
+ id=80;
+ atlOffset=-0.52865601;
};
- class Item3
+ class Item20
{
dataType="Marker";
- position[]={13521.632,4.4954515,6320.7788};
- name="seaport_3";
+ position[]={5347.1377,250.2849,4647.0244};
+ name="control_27";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorWEST";
- a=70;
- b=65.142693;
- angle=96.268379;
- id=49;
- atlOffset=1.1780939;
+ a=300;
+ b=300;
+ id=81;
+ atlOffset=-0.52865601;
};
- class Item4
+ class Item21
{
dataType="Marker";
- position[]={13049.766,6,10046.398};
- name="seaport_4";
+ position[]={4520.4932,317.61523,9705.875};
+ name="control_28";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorWEST";
- a=70;
- b=59.038822;
- angle=110.88124;
- id=51;
+ a=300;
+ b=300;
+ id=82;
+ atlOffset=-18.172058;
};
- class Item5
+ class Item22
{
dataType="Marker";
- position[]={6926.167,6.013,2333.9231};
- name="seap_1_vehicle";
+ position[]={4533.4355,285.88184,6429.5732};
+ name="control_29";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=27.023001;
- b=10.466;
- angle=142.308;
- id=877;
- atlOffset=0.00021314621;
+ a=300;
+ b=300;
+ id=83;
+ atlOffset=-3.6246033;
};
- class Item6
+ class Item23
{
dataType="Marker";
- position[]={10402.839,6.046,1889.443};
- name="seap_2_vehicle";
+ position[]={10425.649,173.87366,9168.1826};
+ name="control_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=12.286;
- angle=179.12999;
- id=879;
- atlOffset=0.24533272;
+ a=20;
+ b=20;
+ angle=159.709;
+ id=56;
+ atlOffset=-3.0517578e-005;
};
- };
- id=829;
- atlOffset=-108.53817;
- };
- class Item37
- {
- dataType="Layer";
- name="Factories";
- class Entities
- {
- items=6;
- class Item0
+ class Item24
{
dataType="Marker";
- position[]={4167.8696,323.37891,8939.7422};
- name="factory";
+ position[]={2778.6279,260.37402,9456.1797};
+ name="control_30";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=108.2471;
- b=107.57551;
- angle=188.34593;
- id=13;
- atlOffset=-0.63394165;
+ a=300;
+ b=300;
+ id=84;
+ atlOffset=-1.6228638;
};
- class Item1
+ class Item25
{
dataType="Marker";
- position[]={10427.643,6,2581.9363};
- name="factory_1";
+ position[]={1760.2065,200.40744,6939.624};
+ name="control_31";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=68.609634;
- b=66.307854;
- angle=205.30093;
- id=20;
+ a=300;
+ b=300;
+ id=85;
+ atlOffset=-0.52865601;
};
- class Item2
+ class Item26
{
dataType="Marker";
- position[]={12863.338,6.013,9952.0381};
- name="factory_2";
+ position[]={3076.2637,244.12482,5511.9478};
+ name="control_32";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=84.660927;
- b=51.169899;
- angle=100.412;
- id=30;
- atlOffset=0.00021314621;
+ a=300;
+ b=300;
+ id=86;
};
- class Item3
+ class Item27
{
dataType="Marker";
- position[]={13078.55,6,7089.2612};
- name="factory_3";
+ position[]={8881.3301,101.77972,3229.3672};
+ name="control_33";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=102.92614;
- b=57.434551;
- angle=73.819817;
- id=31;
+ a=300;
+ b=300;
+ id=87;
+ atlOffset=-0.52866364;
};
- class Item4
+ class Item28
{
dataType="Marker";
- position[]={6498.6138,6,2617.9641};
- name="factory_4";
+ position[]={11758.557,201.75879,7391.0483};
+ name="control_34";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=120;
- b=90;
- angle=130.13901;
- id=37;
+ a=300;
+ b=300;
+ id=88;
+ atlOffset=-1.7794189;
};
- class Item5
+ class Item29
{
dataType="Marker";
- position[]={4195.167,324.00299,8953.9102};
- name="fact_vehicle";
+ position[]={10170.797,193.02316,11180.602};
+ name="control_35";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=13.231;
- b=9.4980001;
- angle=281.59299;
- id=885;
- atlOffset=-0.0034484863;
+ a=300;
+ b=300;
+ id=89;
+ atlOffset=-0.52865601;
};
- };
- id=830;
- atlOffset=-167.34557;
- };
- class Item38
- {
- dataType="Layer";
- name="Resources";
- class Entities
- {
- items=11;
- class Item0
+ class Item30
{
dataType="Marker";
- position[]={10063.688,6,1839.64};
- name="resource";
+ position[]={11275.662,195.52876,10898.277};
+ name="control_36";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=90;
- b=50;
- id=21;
+ a=300;
+ b=300;
+ id=90;
+ atlOffset=-0.52865601;
};
- class Item1
+ class Item31
{
dataType="Marker";
- position[]={11470.222,221,7510.728};
- name="resource_1";
+ position[]={12190.503,124.89822,11606.804};
+ name="control_37";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=80;
- b=50;
- angle=97.399902;
- id=23;
+ a=300;
+ b=300;
+ id=91;
+ atlOffset=-0.52865601;
};
- class Item2
+ class Item32
{
dataType="Marker";
- position[]={9700.9033,298.99799,8918.7803};
- name="resource_2";
+ position[]={10650.565,255.55664,12415.6};
+ name="control_38";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=70;
- b=50;
- angle=104.40878;
- id=24;
- atlOffset=-0.00030517578;
+ a=300;
+ b=300;
+ id=92;
+ atlOffset=-6.5578613;
};
- class Item3
+ class Item33
{
dataType="Marker";
- position[]={10266.166,168.32201,9522.1777};
- name="resource_3";
+ position[]={13463.68,26.996731,11533.509};
+ name="control_39";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=184.80492;
- id=25;
- atlOffset=0.00010681152;
+ a=300;
+ b=300;
+ id=93;
+ atlOffset=-0.52865601;
};
- class Item4
+ class Item34
{
dataType="Marker";
- position[]={11845.592,148.39,12407.44};
- name="resource_4";
+ position[]={13120.273,6.1183958,7321.2026};
+ name="control_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=200.38896;
- id=26;
- atlOffset=-0.00032043457;
+ a=124.43841;
+ b=120.9002;
+ angle=159.709;
+ id=57;
};
- class Item5
+ class Item35
{
dataType="Marker";
- position[]={12761.23,6,9655.4131};
- name="resource_5";
+ position[]={6576.9614,264.66397,4408.6304};
+ name="control_40";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=110;
- b=70;
- angle=191.55794;
- id=29;
+ a=300;
+ b=300;
+ id=94;
+ atlOffset=-0.52865601;
};
- class Item6
+ class Item36
{
dataType="Marker";
- position[]={13273.817,10.119,6095.9707};
- name="resource_6";
+ position[]={13387.276,5.6766515,5494.439};
+ name="control_5";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=68.961441;
- b=65.203957;
- angle=58.644993;
- id=33;
- atlOffset=2.1734037;
+ a=170.06819;
+ b=156.81378;
+ angle=159.709;
+ id=58;
};
- class Item7
+ class Item37
{
dataType="Marker";
- position[]={6240.0112,5.4920001,2208.729};
- name="resource_7";
+ position[]={11680.59,6.2993064,3413.7866};
+ name="control_6";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=149.799;
- id=38;
- atlOffset=0.00037527084;
+ a=155.98209;
+ b=137.75055;
+ angle=159.709;
+ id=59;
+ atlOffset=0.65731668;
};
- class Item8
+ class Item38
{
dataType="Marker";
- position[]={9673.1572,46.938477,13557.481};
- name="resource_8";
+ position[]={10212.019,48.182617,4034.1069};
+ name="control_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=133.86571;
- b=128.34068;
- angle=147.22701;
- id=41;
- atlOffset=-36.718025;
+ a=122.87683;
+ b=111.55153;
+ angle=159.709;
+ id=60;
+ atlOffset=-9.7690239;
};
- class Item9
+ class Item39
{
dataType="Marker";
- position[]={13141.395,6.0570397,10301.52};
- name="resource_9";
+ position[]={9435.4189,5.8964725,2048.6206};
+ name="control_8";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=80;
- b=47.947792;
- angle=289.01877;
- id=50;
- atlOffset=-0.045758247;
+ a=20;
+ b=20;
+ angle=159.709;
+ id=61;
+ atlOffset=-2.9563904e-005;
};
- class Item10
+ class Item40
{
dataType="Marker";
- position[]={9996.3281,6,1843.3051};
- name="reso_vehicle";
+ position[]={6295.6372,13.885742,3370.6223};
+ name="control_9";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=13.939;
- b=12.332;
- angle=180.841;
- id=880;
+ a=108.98723;
+ b=105.96222;
+ angle=159.709;
+ id=62;
+ atlOffset=-13.916445;
+ };
+ };
+ id=832;
+ atlOffset=7.5841923;
+ };
+ class Item39
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2732.4866,273.95001,9906.6455};
+ };
+ areaSize[]={8.9569092,0,7.2392578};
+ flags=1;
+ id=833;
+ type="ModuleHideTerrainObjects_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
+ nAttributes=2;
+ };
+ };
+ class Item40
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9618.377,86.686676,13544.433};
+ angles[]={0.020939622,6.093493,6.2411475};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=848;
+ type="Land_HelipadSquare_F";
+ };
+ class Item41
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12191.556,27.420124,9409.2344};
+ angles[]={0.077445425,4.1988201,6.1876712};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=849;
+ type="Land_HelipadSquare_F";
+ };
+ class Item42
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6599.4321,81.452545,3414.2485};
+ angles[]={0.027993103,3.1187696,6.2805109};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=850;
+ type="Land_HelipadSquare_F";
+ };
+ class Item43
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5099.7905,9,2336.02};
+ angles[]={0,2.0886309,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=851;
+ type="Land_HelipadSquare_F";
+ };
+ class Item44
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4702.9102,8.999423,2572.5432};
+ angles[]={0.013327583,3.6829305,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=852;
+ type="Land_HelipadSquare_F";
+ };
+ class Item45
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4795.1753,9,2522.0068};
+ angles[]={0,3.6794586,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=853;
+ type="Land_HelipadSquare_F";
+ };
+ class Item46
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6251.6211,301.19858,7739.9458};
+ angles[]={6.256525,5.3228745,0};
};
- id=831;
- atlOffset=-278.84216;
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=855;
+ type="Land_HelipadSquare_F";
};
- class Item39
+ class Item47
{
- dataType="Layer";
- name="Roadblocks";
- class Entities
+ dataType="Object";
+ class PositionInfo
{
- items=41;
- class Item0
- {
- dataType="Marker";
- position[]={12851.474,5.7764149,8706.6035};
- name="control";
- markerType="RECTANGLE";
- type="rectangle";
- a=99.020477;
- b=118.70475;
- angle=159.709;
- id=53;
- };
- class Item1
- {
- dataType="Marker";
- position[]={11891.186,31.970703,9017.7803};
- name="control_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=169.17923;
- b=179.54099;
- angle=159.709;
- id=54;
- atlOffset=-27.432232;
- };
- class Item2
- {
- dataType="Marker";
- position[]={3643.8086,8.4753141,2523.8491};
- name="control_10";
- markerType="RECTANGLE";
- type="rectangle";
- a=108.25488;
- b=100.38329;
- angle=159.709;
- id=63;
- };
- class Item3
- {
- dataType="Marker";
- position[]={2661.8247,221.79205,5583.6392};
- name="control_11";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=64;
- atlOffset=-3.0517578e-005;
- };
- class Item4
- {
- dataType="Marker";
- position[]={3130.9856,298.29498,8072.5195};
- name="control_12";
- markerType="RECTANGLE";
- type="rectangle";
- a=157.0043;
- b=161.89716;
- angle=159.709;
- id=65;
- };
- class Item5
- {
- dataType="Marker";
- position[]={5058.7593,341.6015,8636.0986};
- name="control_13";
- markerType="RECTANGLE";
- type="rectangle";
- a=135.16505;
- b=145.20442;
- angle=159.709;
- id=66;
- };
- class Item6
- {
- dataType="Marker";
- position[]={4806.2607,276.80078,7174.6528};
- name="control_14";
- markerType="RECTANGLE";
- type="rectangle";
- a=188.29962;
- b=158.81369;
- angle=159.709;
- id=67;
- atlOffset=-25.2211;
- };
- class Item7
- {
- dataType="Marker";
- position[]={9467.0781,195.077,4417.0298};
- name="control_15";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=69;
- atlOffset=-0.52865601;
- };
- class Item8
+ position[]={6882.5283,393.91858,11436.774};
+ angles[]={6.2791886,1.4099587,0.051951028};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=857;
+ type="Land_HelipadSquare_F";
+ };
+ class Item48
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6880.5,394.10928,11446.472};
+ angles[]={6.1058249,0,6.2439637};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=858;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.27334595;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={8477.1055,133.16751,4911.9985};
- name="control_16";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=70;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item9
+ class Attribute1
{
- dataType="Marker";
- position[]={10919.603,223.7363,3935.2534};
- name="control_17";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=71;
- atlOffset=-0.52865601;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item10
+ nAttributes=2;
+ };
+ };
+ class Item49
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6886.6343,394.33795,11426.603};
+ angles[]={6.1058249,0,6.2439637};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=859;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.27334595;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={12501.461,-79.317383,3547.23};
- name="control_18";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=72;
- atlOffset=-85.433502;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item11
+ class Attribute1
{
- dataType="Marker";
- position[]={13005.596,129.54488,4887.0337};
- name="control_19";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=73;
- atlOffset=-0.52865601;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item12
+ nAttributes=2;
+ };
+ };
+ class Item50
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4773.082,339,10120.783};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=862;
+ type="Land_HelipadSquare_F";
+ };
+ class Item51
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4793.561,339,10085.981};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=863;
+ type="Land_HelipadSquare_F";
+ };
+ class Item52
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4816.0903,339,10048.161};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=864;
+ type="Land_HelipadSquare_F";
+ };
+ class Item53
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4841.4712,339,10004.922};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=865;
+ type="Land_HelipadSquare_F";
+ };
+ class Item54
+ {
+ dataType="Layer";
+ name="Roads";
+ class Entities
+ {
+ items=39;
+ class Item0
{
dataType="Marker";
- position[]={10899.459,233.37083,11626.339};
- name="control_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=55;
- atlOffset=-3.0517578e-005;
+ position[]={258.70099,5.3889999,1621.2531};
+ name="road";
+ type="hd_arrow";
+ angle=88.853943;
+ id=256;
+ atlOffset=-0.00031852722;
};
- class Item13
+ class Item1
{
dataType="Marker";
- position[]={11972.051,105.46842,5060.0024};
- name="control_20";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=74;
- atlOffset=-0.52865601;
+ position[]={939.92346,5.7131801,2027.6239};
+ name="road_1";
+ type="hd_arrow";
+ angle=30.963726;
+ id=257;
+ atlOffset=-0.00031852722;
};
- class Item14
+ class Item2
{
dataType="Marker";
- position[]={7139.8784,262.06378,7218.9258};
- name="control_21";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=75;
+ position[]={3195.0691,290.06183,8138.4082};
+ name="road_10";
+ type="hd_arrow";
+ angle=37.844521;
+ id=266;
+ atlOffset=-0.00030517578;
};
- class Item15
+ class Item3
{
dataType="Marker";
- position[]={10985.485,207.30542,6140.5288};
- name="control_22";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=76;
- atlOffset=-0.52865601;
+ position[]={2198.103,483.35318,15009.752};
+ name="road_11";
+ type="hd_arrow";
+ angle=181.73544;
+ id=267;
+ atlOffset=-0.00030517578;
};
- class Item16
+ class Item4
{
dataType="Marker";
- position[]={5835.1284,277.32715,10067.057};
- name="control_23";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=77;
- atlOffset=-1.5084839;
+ position[]={1401.7804,410.37631,14147.957};
+ name="road_12";
+ type="hd_arrow";
+ angle=240.74304;
+ id=268;
+ atlOffset=-0.00030517578;
};
- class Item17
+ class Item5
{
dataType="Marker";
- position[]={9101.5146,252.49112,6775.3618};
- name="control_24";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=78;
- atlOffset=-0.52865601;
+ position[]={608.33936,374.29495,13812.72};
+ name="road_13";
+ type="hd_arrow";
+ angle=143.13023;
+ id=269;
+ atlOffset=-0.00030517578;
};
- class Item18
+ class Item6
{
dataType="Marker";
- position[]={10052.591,227.49121,8855.5938};
- name="control_25";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=79;
- atlOffset=-32.876678;
+ position[]={1703.2456,280.41479,12664.974};
+ name="road_14";
+ type="hd_arrow";
+ angle=153.32985;
+ id=270;
+ atlOffset=-5.0085754;
};
- class Item19
+ class Item7
{
dataType="Marker";
- position[]={8065.522,441.07968,7813.2495};
- name="control_26";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=80;
- atlOffset=-0.52865601;
+ position[]={2122.0762,252.93306,11368.781};
+ name="road_15";
+ type="hd_arrow";
+ angle=152.50713;
+ id=271;
};
- class Item20
+ class Item8
{
dataType="Marker";
- position[]={5347.1377,250.2849,4647.0244};
- name="control_27";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=81;
- atlOffset=-0.52865601;
+ position[]={2394.7847,273.40186,10390.532};
+ name="road_16";
+ type="hd_arrow";
+ angle=138.85368;
+ id=272;
+ atlOffset=-0.00030517578;
};
- class Item21
+ class Item9
{
dataType="Marker";
- position[]={4520.4932,317.61523,9705.875};
- name="control_28";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=82;
- atlOffset=-18.172058;
+ position[]={4460.8945,323.60547,8903.4063};
+ name="road_17";
+ type="hd_arrow";
+ angle=173.95586;
+ id=273;
+ atlOffset=-0.00030517578;
};
- class Item22
+ class Item10
{
dataType="Marker";
- position[]={4533.4355,285.88184,6429.5732};
- name="control_29";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=83;
- atlOffset=-3.6246033;
+ position[]={5525.1362,335.08444,8358.3604};
+ name="road_18";
+ type="hd_arrow";
+ angle=130.01761;
+ id=274;
+ atlOffset=-0.00030517578;
};
- class Item23
+ class Item11
{
dataType="Marker";
- position[]={10425.649,173.87366,9168.1826};
- name="control_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=56;
- atlOffset=-3.0517578e-005;
+ position[]={6894.6445,289.19427,7629.083};
+ name="road_19";
+ type="hd_arrow";
+ angle=64.816978;
+ id=275;
+ atlOffset=-0.00030517578;
};
- class Item24
+ class Item12
{
dataType="Marker";
- position[]={2778.6279,260.37402,9456.1797};
- name="control_30";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=84;
- atlOffset=-1.6228638;
+ position[]={1598.9821,5.891304,2241.0452};
+ name="road_2";
+ type="hd_arrow";
+ angle=103.3924;
+ id=258;
+ atlOffset=-1.4724927;
};
- class Item25
+ class Item13
{
dataType="Marker";
- position[]={1760.2065,200.40744,6939.624};
- name="control_31";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=85;
- atlOffset=-0.52865601;
+ position[]={5533.5454,5.7996817,2071.8228};
+ name="road_20";
+ type="hd_arrow";
+ angle=66.925438;
+ id=276;
+ atlOffset=-0.00031852722;
};
- class Item26
+ class Item14
{
dataType="Marker";
- position[]={3076.2637,244.12482,5511.9478};
- name="control_32";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=86;
+ position[]={6643.0728,6.0210361,2931.645};
+ name="road_21";
+ type="hd_arrow";
+ angle=60.499027;
+ id=277;
+ atlOffset=-0.00031852722;
};
- class Item27
+ class Item15
{
dataType="Marker";
- position[]={8881.3301,101.77972,3229.3672};
- name="control_33";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=87;
- atlOffset=-0.52866364;
+ position[]={8412.9277,5.9941444,2937.2261};
+ name="road_22";
+ type="hd_arrow";
+ angle=150.56462;
+ id=278;
+ atlOffset=-0.00031852722;
};
- class Item28
+ class Item16
{
dataType="Marker";
- position[]={11758.557,201.75879,7391.0483};
- name="control_34";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=88;
- atlOffset=-1.7794189;
+ position[]={9978.6836,5.9995394,2060.1489};
+ name="road_23";
+ type="hd_arrow";
+ angle=62.230412;
+ id=279;
+ atlOffset=-0.00031852722;
};
- class Item29
+ class Item17
{
dataType="Marker";
- position[]={10170.797,193.02316,11180.602};
- name="control_35";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=89;
- atlOffset=-0.52865601;
+ position[]={7092.5332,255.47208,6494.1597};
+ name="road_24";
+ type="hd_arrow";
+ angle=162.60255;
+ id=280;
+ atlOffset=-0.00032043457;
};
- class Item30
+ class Item18
{
dataType="Marker";
- position[]={11275.662,195.52876,10898.277};
- name="control_36";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=90;
- atlOffset=-0.52865601;
+ position[]={7521.0562,210.89975,5020.7319};
+ name="road_25";
+ type="hd_arrow";
+ angle=144.19211;
+ id=281;
+ atlOffset=-0.00032043457;
};
- class Item31
+ class Item19
{
dataType="Marker";
- position[]={12190.503,124.89822,11606.804};
- name="control_37";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=91;
- atlOffset=-0.52865601;
+ position[]={9039.4492,114.40299,4929.6533};
+ name="road_26";
+ type="hd_arrow";
+ angle=88.853943;
+ id=282;
+ atlOffset=-0.00032043457;
};
- class Item32
+ class Item20
{
dataType="Marker";
- position[]={10650.565,255.55664,12415.6};
- name="control_38";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=92;
- atlOffset=-6.5578613;
+ position[]={10161.726,69.612511,4084.5254};
+ name="road_27";
+ type="hd_arrow";
+ angle=139.01399;
+ id=283;
+ atlOffset=-0.00032043457;
};
- class Item33
+ class Item21
{
dataType="Marker";
- position[]={13463.68,26.996731,11533.509};
- name="control_39";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=93;
- atlOffset=-0.52865601;
+ position[]={11236.721,5.5773349,3253.1726};
+ name="road_28";
+ type="hd_arrow";
+ angle=63.165874;
+ id=284;
+ atlOffset=-0.00031852722;
};
- class Item34
+ class Item22
{
dataType="Marker";
- position[]={13120.273,6.1183958,7321.2026};
- name="control_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=124.43841;
- b=120.9002;
- angle=159.709;
- id=57;
+ position[]={13271.227,5.4616613,4017.5564};
+ name="road_29";
+ type="hd_arrow";
+ angle=33.934391;
+ id=285;
+ atlOffset=-0.00031852722;
};
- class Item35
+ class Item23
{
dataType="Marker";
- position[]={6576.9614,264.66397,4408.6304};
- name="control_40";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=94;
- atlOffset=-0.52865601;
+ position[]={3345.2864,5.6333976,2305.1523};
+ name="road_3";
+ type="hd_arrow";
+ angle=43.965599;
+ id=259;
+ atlOffset=-0.00031852722;
};
- class Item36
+ class Item24
{
dataType="Marker";
- position[]={13387.276,5.6766515,5494.439};
- name="control_5";
- markerType="RECTANGLE";
- type="rectangle";
- a=170.06819;
- b=156.81378;
- angle=159.709;
- id=58;
+ position[]={13415.135,5.6989894,5928.4902};
+ name="road_30";
+ type="hd_arrow";
+ angle=8.5305576;
+ id=286;
+ atlOffset=-0.00031852722;
};
- class Item37
+ class Item25
{
dataType="Marker";
- position[]={11680.59,6.2993064,3413.7866};
- name="control_6";
- markerType="RECTANGLE";
- type="rectangle";
- a=155.98209;
- b=137.75055;
- angle=159.709;
- id=59;
- atlOffset=0.65731668;
+ position[]={13045.818,5.7396812,7838.7095};
+ name="road_31";
+ type="hd_arrow";
+ angle=357.37994;
+ id=287;
+ atlOffset=-0.00031852722;
};
- class Item38
+ class Item26
{
dataType="Marker";
- position[]={10212.019,48.182617,4034.1069};
- name="control_7";
- markerType="RECTANGLE";
- type="rectangle";
- a=122.87683;
- b=111.55153;
- angle=159.709;
- id=60;
- atlOffset=-9.7690239;
+ position[]={11176.414,197.88971,12129.997};
+ name="road_32";
+ type="hd_arrow";
+ angle=210.06854;
+ id=288;
+ atlOffset=-0.00032043457;
};
- class Item39
+ class Item27
{
dataType="Marker";
- position[]={9435.4189,5.8964725,2048.6206};
- name="control_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=61;
- atlOffset=-2.9563904e-005;
+ position[]={10815.897,169.952,11012.247};
+ name="road_33";
+ type="hd_arrow";
+ angle=196.04909;
+ id=289;
+ atlOffset=-0.00032043457;
};
- class Item40
+ class Item28
{
dataType="Marker";
- position[]={6295.6372,13.885742,3370.6223};
- name="control_9";
- markerType="RECTANGLE";
- type="rectangle";
- a=108.98723;
- b=105.96222;
- angle=159.709;
- id=62;
- atlOffset=-13.916445;
+ position[]={10475.061,114.88372,10000.765};
+ name="road_34";
+ type="hd_arrow";
+ angle=182.63902;
+ id=290;
+ atlOffset=-0.00032043457;
};
- };
- id=832;
- atlOffset=7.5841923;
- };
- class Item40
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={2732.4866,273.95001,9906.6455};
- };
- areaSize[]={8.9569092,0,7.2392578};
- flags=1;
- id=833;
- type="ModuleHideTerrainObjects_F";
- class CustomAttributes
- {
- class Attribute0
+ class Item29
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
+ dataType="Marker";
+ position[]={10389.865,164.69736,9223.4395};
+ name="road_35";
+ type="hd_arrow";
+ angle=152.52263;
+ id=291;
};
- class Attribute1
+ class Item30
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={9664.209,294.83313,8796.6426};
+ name="road_36";
+ type="hd_arrow";
+ angle=279.66013;
+ id=292;
+ atlOffset=-0.00030517578;
};
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9618.377,86.686676,13544.433};
- angles[]={0.020939622,6.093493,6.2411475};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=848;
- type="Land_HelipadSquare_F";
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12191.556,27.420124,9409.2344};
- angles[]={0.077445425,4.1988201,6.1876712};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=849;
- type="Land_HelipadSquare_F";
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6599.4321,81.452545,3414.2485};
- angles[]={0.027993103,3.1187696,6.2805109};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=850;
- type="Land_HelipadSquare_F";
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5099.7905,9,2336.02};
- angles[]={-0,2.0886309,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=851;
- type="Land_HelipadSquare_F";
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4702.9102,8.999423,2572.5432};
- angles[]={0.013327583,3.6829305,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=852;
- type="Land_HelipadSquare_F";
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4795.1753,9,2522.0068};
- angles[]={-0,3.6794586,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=853;
- type="Land_HelipadSquare_F";
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6251.6211,301.19858,7739.9458};
- angles[]={6.256525,5.3228745,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=855;
- type="Land_HelipadSquare_F";
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6882.5283,393.91858,11436.774};
- angles[]={6.2791886,1.4099587,0.051951028};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=857;
- type="Land_HelipadSquare_F";
- };
- class Item49
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={6880.5,394.10928,11446.472};
- angles[]={6.1058249,0,6.2439637};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=858;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.27334595;
- class CustomAttributes
- {
- class Attribute0
+ class Item31
+ {
+ dataType="Marker";
+ position[]={11262.418,101.19296,9363.6436};
+ name="road_37";
+ type="hd_arrow";
+ angle=75.367722;
+ id=293;
+ atlOffset=-0.00032043457;
+ };
+ class Item32
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
+ dataType="Marker";
+ position[]={12241.645,18.431227,9482.9922};
+ name="road_38";
+ type="hd_arrow";
+ angle=45.44635;
+ id=294;
+ atlOffset=0.07661438;
};
- class Attribute1
+ class Item33
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={4090.6475,6.0570912,2612.2219};
+ name="road_4";
+ type="hd_arrow";
+ angle=101.1778;
+ id=260;
+ atlOffset=-0.00031852722;
+ };
+ class Item34
+ {
+ dataType="Marker";
+ position[]={2662.3796,121.82533,2974.5503};
+ name="road_5";
+ type="hd_arrow";
+ angle=4.8738437;
+ id=261;
+ atlOffset=-0.00032043457;
+ };
+ class Item35
+ {
+ dataType="Marker";
+ position[]={1957.3148,140.93176,3838.4729};
+ name="road_6";
+ type="hd_arrow";
+ angle=292.26508;
+ id=262;
+ atlOffset=-0.00032043457;
+ };
+ class Item36
+ {
+ dataType="Marker";
+ position[]={2059.2329,200.65611,4674.1206};
+ name="road_7";
+ type="hd_arrow";
+ angle=43.505791;
+ id=263;
+ atlOffset=-0.00032043457;
+ };
+ class Item37
+ {
+ dataType="Marker";
+ position[]={2683.6555,231.61018,5758.2173};
+ name="road_8";
+ type="hd_arrow";
+ angle=9.0245171;
+ id=264;
+ atlOffset=-0.00032043457;
+ };
+ class Item38
+ {
+ dataType="Marker";
+ position[]={2721.6721,362.37604,6704.5928};
+ name="road_9";
+ type="hd_arrow";
+ angle=355.36441;
+ id=265;
+ atlOffset=-0.00030517578;
};
- nAttributes=2;
};
+ id=886;
+ atlOffset=29.723694;
};
- class Item50
+ class Item55
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={6886.6343,394.33795,11426.603};
- angles[]={6.1058249,0,6.2439637};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=859;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.27334595;
- class CustomAttributes
+ dataType="Group";
+ side="Independent";
+ class Entities
{
- class Attribute0
+ items=38;
+ class Item0
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={8399.4902,292.33167,6000.6846};
+ };
+ side="Independent";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
+ map="ItemMap";
};
};
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ id=888;
+ type="I_G_Soldier_TL_F";
+ class CustomAttributes
{
- class data
+ class Attribute0
{
- class type
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
{
- type[]=
+ class data
{
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4773.082,339,10120.783};
- angles[]={-0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=862;
- type="Land_HelipadSquare_F";
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4793.561,339,10085.981};
- angles[]={-0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=863;
- type="Land_HelipadSquare_F";
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4816.0903,339,10048.161};
- angles[]={-0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=864;
- type="Land_HelipadSquare_F";
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4841.4712,339,10004.922};
- angles[]={-0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=865;
- type="Land_HelipadSquare_F";
- };
- class Item55
- {
- dataType="Layer";
- name="Roads";
- class Entities
- {
- items=39;
- class Item0
- {
- dataType="Marker";
- position[]={258.70099,5.3889999,1621.2531};
- name="road";
- type="hd_arrow";
- angle=88.853943;
- id=256;
- atlOffset=-0.00031852722;
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
class Item1
{
- dataType="Marker";
- position[]={939.92346,5.7131801,2027.6239};
- name="road_1";
- type="hd_arrow";
- angle=30.963726;
- id=257;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8404.2852,292.07288,5997.9814};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=889;
+ type="I_G_Soldier_TL_F";
};
class Item2
{
- dataType="Marker";
- position[]={3195.0691,290.06183,8138.4082};
- name="road_10";
- type="hd_arrow";
- angle=37.844521;
- id=266;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8404.4238,292.08984,6000.2173};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=890;
+ type="I_G_Soldier_TL_F";
};
class Item3
{
- dataType="Marker";
- position[]={2198.103,483.35318,15009.752};
- name="road_11";
- type="hd_arrow";
- angle=181.73544;
- id=267;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8404.3662,292.41278,6002.5508};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=891;
+ type="I_G_Soldier_TL_F";
};
class Item4
{
- dataType="Marker";
- position[]={1401.7804,410.37631,14147.957};
- name="road_12";
- type="hd_arrow";
- angle=240.74304;
- id=268;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8404.2031,292.83685,6004.8643};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=892;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-3.0517578e-005;
};
class Item5
{
- dataType="Marker";
- position[]={608.33936,374.29495,13812.72};
- name="road_13";
- type="hd_arrow";
- angle=143.13023;
- id=269;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8404.1621,293.33337,6007.3184};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=893;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-3.0517578e-005;
};
class Item6
{
- dataType="Marker";
- position[]={1703.2456,280.41479,12664.974};
- name="road_14";
- type="hd_arrow";
- angle=153.32985;
- id=270;
- atlOffset=-5.0085754;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.9766,293.86826,6009.6343};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=894;
+ type="I_G_Soldier_F";
};
class Item7
{
- dataType="Marker";
- position[]={2122.0762,252.93306,11368.781};
- name="road_15";
- type="hd_arrow";
- angle=152.50713;
- id=271;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.7695,294.31622,6011.5298};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=895;
+ type="I_G_Soldier_F";
};
class Item8
{
- dataType="Marker";
- position[]={2394.7847,273.40186,10390.532};
- name="road_16";
- type="hd_arrow";
- angle=138.85368;
- id=272;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.6445,291.96906,5998.105};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=896;
+ type="I_G_Soldier_F";
};
class Item9
{
- dataType="Marker";
- position[]={4460.8945,323.60547,8903.4063};
- name="road_17";
- type="hd_arrow";
- angle=173.95586;
- id=273;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.6436,292.02335,6000.4443};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=897;
+ type="I_G_Soldier_F";
};
class Item10
{
- dataType="Marker";
- position[]={5525.1362,335.08444,8358.3604};
- name="road_18";
- type="hd_arrow";
- angle=130.01761;
- id=274;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.5371,292.47195,6002.8179};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=898;
+ type="I_G_Soldier_F";
+ atlOffset=-3.0517578e-005;
};
class Item11
{
- dataType="Marker";
- position[]={6894.6445,289.19427,7629.083};
- name="road_19";
- type="hd_arrow";
- angle=64.816978;
- id=275;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.4785,292.9165,6005.0176};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=899;
+ type="I_G_Soldier_F";
+ atlOffset=-3.0517578e-005;
};
class Item12
{
- dataType="Marker";
- position[]={1598.9821,5.891304,2241.0452};
- name="road_2";
- type="hd_arrow";
- angle=103.3924;
- id=258;
- atlOffset=-1.4724927;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.2754,293.40311,6007.4399};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=900;
+ type="I_G_Soldier_F";
+ atlOffset=-3.0517578e-005;
};
class Item13
{
- dataType="Marker";
- position[]={5533.5454,5.7996817,2071.8228};
- name="road_20";
- type="hd_arrow";
- angle=66.925438;
- id=276;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.0879,293.96179,6009.771};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=901;
+ type="I_G_Soldier_F";
};
class Item14
{
- dataType="Marker";
- position[]={6643.0728,6.0210361,2931.645};
- name="road_21";
- type="hd_arrow";
- angle=60.499027;
- id=277;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.7529,291.93143,5998.1411};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=902;
+ type="I_G_Soldier_AR_F";
};
class Item15
{
- dataType="Marker";
- position[]={8412.9277,5.9941444,2937.2261};
- name="road_22";
- type="hd_arrow";
- angle=150.56462;
- id=278;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.915,292.03912,6000.5811};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=903;
+ type="I_G_Soldier_AR_F";
};
class Item16
{
- dataType="Marker";
- position[]={9978.6836,5.9995394,2060.1489};
- name="road_23";
- type="hd_arrow";
- angle=62.230412;
- id=279;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.5146,292.52863,6002.9961};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=904;
+ type="I_G_Soldier_AR_F";
};
class Item17
{
- dataType="Marker";
- position[]={7092.5332,255.47208,6494.1597};
- name="road_24";
- type="hd_arrow";
- angle=162.60255;
- id=280;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.4912,292.96411,6005.145};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=905;
+ type="I_G_Soldier_AR_F";
};
class Item18
{
- dataType="Marker";
- position[]={7521.0562,210.89975,5020.7319};
- name="road_25";
- type="hd_arrow";
- angle=144.19211;
- id=281;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.291,293.42252,6007.3862};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=906;
+ type="I_G_Soldier_AR_F";
};
class Item19
{
- dataType="Marker";
- position[]={9039.4492,114.40299,4929.6533};
- name="road_26";
- type="hd_arrow";
- angle=88.853943;
- id=282;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.2041,294.04382,6009.8452};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=907;
+ type="I_G_Soldier_AR_F";
};
class Item20
{
- dataType="Marker";
- position[]={10161.726,69.612511,4084.5254};
- name="road_27";
- type="hd_arrow";
- angle=139.01399;
- id=283;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.8418,291.93143,5998.2207};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=908;
+ type="I_G_Soldier_GL_F";
};
class Item21
{
- dataType="Marker";
- position[]={11236.721,5.5773349,3253.1726};
- name="road_28";
- type="hd_arrow";
- angle=63.165874;
- id=284;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.7119,292.03052,6000.5386};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=909;
+ type="I_G_Soldier_GL_F";
};
class Item22
{
- dataType="Marker";
- position[]={13271.227,5.4616613,4017.5564};
- name="road_29";
- type="hd_arrow";
- angle=33.934391;
- id=285;
- atlOffset=-0.00031852722;
- };
- class Item23
- {
- dataType="Marker";
- position[]={3345.2864,5.6333976,2305.1523};
- name="road_3";
- type="hd_arrow";
- angle=43.965599;
- id=259;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.5879,292.5867,6003.2827};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=910;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.4141,292.99814,6005.2915};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=911;
+ type="I_G_Soldier_GL_F";
};
class Item24
{
- dataType="Marker";
- position[]={13415.135,5.6989894,5928.4902};
- name="road_30";
- type="hd_arrow";
- angle=8.5305576;
- id=286;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.3447,293.45508,6007.4761};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=912;
+ type="I_G_Soldier_GL_F";
};
class Item25
{
- dataType="Marker";
- position[]={13045.818,5.7396812,7838.7095};
- name="road_31";
- type="hd_arrow";
- angle=357.37994;
- id=287;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.2393,294.08856,6009.9668};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=913;
+ type="I_G_Soldier_GL_F";
};
class Item26
{
- dataType="Marker";
- position[]={11176.414,197.88971,12129.997};
- name="road_32";
- type="hd_arrow";
- angle=210.06854;
- id=288;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8412.3691,291.93143,5998.2983};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=914;
+ type="I_G_medic_F";
};
class Item27
{
- dataType="Marker";
- position[]={10815.897,169.952,11012.247};
- name="road_33";
- type="hd_arrow";
- angle=196.04909;
- id=289;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8412.1934,292.03857,6000.5781};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=915;
+ type="I_G_medic_F";
};
class Item28
{
- dataType="Marker";
- position[]={10475.061,114.88372,10000.765};
- name="road_34";
- type="hd_arrow";
- angle=182.63902;
- id=290;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8412.1514,292.62424,6003.4497};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=916;
+ type="I_G_medic_F";
};
class Item29
{
- dataType="Marker";
- position[]={10389.865,164.69736,9223.4395};
- name="road_35";
- type="hd_arrow";
- angle=152.52263;
- id=291;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8412.0635,293.00189,6005.2563};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=917;
+ type="I_G_medic_F";
};
class Item30
{
- dataType="Marker";
- position[]={9664.209,294.83313,8796.6426};
- name="road_36";
- type="hd_arrow";
- angle=279.66013;
- id=292;
- atlOffset=-0.00030517578;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.8799,293.49765,6007.6157};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=918;
+ type="I_G_medic_F";
};
class Item31
{
- dataType="Marker";
- position[]={11262.418,101.19296,9363.6436};
- name="road_37";
- type="hd_arrow";
- angle=75.367722;
- id=293;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.8906,294.11481,6010.0264};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=919;
+ type="I_G_medic_F";
};
class Item32
{
- dataType="Marker";
- position[]={12241.645,18.431227,9482.9922};
- name="road_38";
- type="hd_arrow";
- angle=45.44635;
- id=294;
- atlOffset=0.07661438;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8414.1709,291.93143,5998.4634};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=920;
+ type="I_G_engineer_F";
};
class Item33
{
- dataType="Marker";
- position[]={4090.6475,6.0570912,2612.2219};
- name="road_4";
- type="hd_arrow";
- angle=101.1778;
- id=260;
- atlOffset=-0.00031852722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8414.1943,292.07614,6000.7637};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=921;
+ type="I_G_engineer_F";
};
class Item34
{
- dataType="Marker";
- position[]={2662.3796,121.82533,2974.5503};
- name="road_5";
- type="hd_arrow";
- angle=4.8738437;
- id=261;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.9521,292.65799,6003.5537};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=922;
+ type="I_G_engineer_F";
};
class Item35
{
- dataType="Marker";
- position[]={1957.3148,140.93176,3838.4729};
- name="road_6";
- type="hd_arrow";
- angle=292.26508;
- id=262;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.6973,293.06406,6005.5015};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=923;
+ type="I_G_engineer_F";
};
class Item36
{
- dataType="Marker";
- position[]={2059.2329,200.65611,4674.1206};
- name="road_7";
- type="hd_arrow";
- angle=43.505791;
- id=263;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.502,293.53961,6007.7378};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=924;
+ type="I_G_engineer_F";
};
class Item37
{
- dataType="Marker";
- position[]={2683.6555,231.61018,5758.2173};
- name="road_8";
- type="hd_arrow";
- angle=9.0245171;
- id=264;
- atlOffset=-0.00032043457;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.3975,294.18369,6010.207};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=925;
+ type="I_G_engineer_F";
};
- class Item38
+ };
+ class Attributes
+ {
+ };
+ id=887;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={2721.6721,362.37604,6704.5928};
- name="road_9";
- type="hd_arrow";
- angle=355.36441;
- id=265;
- atlOffset=-0.00030517578;
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
};
+ nAttributes=1;
};
- id=886;
- atlOffset=29.723694;
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -7897,7 +4860,7 @@ class Mission
class Item1
{
linkID=1;
- item0=725;
+ item0=888;
item1=718;
class CustomData
{
@@ -7907,7 +4870,7 @@ class Mission
class Item2
{
linkID=2;
- item0=729;
+ item0=889;
item1=718;
class CustomData
{
@@ -7917,7 +4880,7 @@ class Mission
class Item3
{
linkID=3;
- item0=730;
+ item0=890;
item1=718;
class CustomData
{
@@ -7927,7 +4890,7 @@ class Mission
class Item4
{
linkID=4;
- item0=732;
+ item0=891;
item1=718;
class CustomData
{
@@ -7937,7 +4900,7 @@ class Mission
class Item5
{
linkID=5;
- item0=733;
+ item0=892;
item1=718;
class CustomData
{
@@ -7947,7 +4910,7 @@ class Mission
class Item6
{
linkID=6;
- item0=734;
+ item0=893;
item1=718;
class CustomData
{
@@ -7957,7 +4920,7 @@ class Mission
class Item7
{
linkID=7;
- item0=735;
+ item0=894;
item1=718;
class CustomData
{
@@ -7967,7 +4930,7 @@ class Mission
class Item8
{
linkID=8;
- item0=736;
+ item0=895;
item1=718;
class CustomData
{
@@ -7977,7 +4940,7 @@ class Mission
class Item9
{
linkID=9;
- item0=738;
+ item0=896;
item1=718;
class CustomData
{
@@ -7987,7 +4950,7 @@ class Mission
class Item10
{
linkID=10;
- item0=739;
+ item0=897;
item1=718;
class CustomData
{
@@ -7997,7 +4960,7 @@ class Mission
class Item11
{
linkID=11;
- item0=740;
+ item0=898;
item1=718;
class CustomData
{
@@ -8007,7 +4970,7 @@ class Mission
class Item12
{
linkID=12;
- item0=741;
+ item0=899;
item1=718;
class CustomData
{
@@ -8017,7 +4980,7 @@ class Mission
class Item13
{
linkID=13;
- item0=743;
+ item0=900;
item1=718;
class CustomData
{
@@ -8027,7 +4990,7 @@ class Mission
class Item14
{
linkID=14;
- item0=744;
+ item0=901;
item1=718;
class CustomData
{
@@ -8037,7 +5000,7 @@ class Mission
class Item15
{
linkID=15;
- item0=745;
+ item0=902;
item1=718;
class CustomData
{
@@ -8047,7 +5010,7 @@ class Mission
class Item16
{
linkID=16;
- item0=746;
+ item0=903;
item1=718;
class CustomData
{
@@ -8057,7 +5020,7 @@ class Mission
class Item17
{
linkID=17;
- item0=748;
+ item0=904;
item1=718;
class CustomData
{
@@ -8067,7 +5030,7 @@ class Mission
class Item18
{
linkID=18;
- item0=749;
+ item0=905;
item1=718;
class CustomData
{
@@ -8077,7 +5040,7 @@ class Mission
class Item19
{
linkID=19;
- item0=750;
+ item0=906;
item1=718;
class CustomData
{
@@ -8087,7 +5050,7 @@ class Mission
class Item20
{
linkID=20;
- item0=751;
+ item0=907;
item1=718;
class CustomData
{
@@ -8097,7 +5060,7 @@ class Mission
class Item21
{
linkID=21;
- item0=752;
+ item0=908;
item1=718;
class CustomData
{
@@ -8107,7 +5070,7 @@ class Mission
class Item22
{
linkID=22;
- item0=753;
+ item0=909;
item1=718;
class CustomData
{
@@ -8117,7 +5080,7 @@ class Mission
class Item23
{
linkID=23;
- item0=755;
+ item0=910;
item1=718;
class CustomData
{
@@ -8127,7 +5090,7 @@ class Mission
class Item24
{
linkID=24;
- item0=756;
+ item0=911;
item1=718;
class CustomData
{
@@ -8137,7 +5100,7 @@ class Mission
class Item25
{
linkID=25;
- item0=757;
+ item0=912;
item1=718;
class CustomData
{
@@ -8147,7 +5110,7 @@ class Mission
class Item26
{
linkID=26;
- item0=758;
+ item0=913;
item1=718;
class CustomData
{
@@ -8157,7 +5120,7 @@ class Mission
class Item27
{
linkID=27;
- item0=759;
+ item0=914;
item1=718;
class CustomData
{
@@ -8167,7 +5130,7 @@ class Mission
class Item28
{
linkID=28;
- item0=761;
+ item0=915;
item1=718;
class CustomData
{
@@ -8177,7 +5140,7 @@ class Mission
class Item29
{
linkID=29;
- item0=762;
+ item0=916;
item1=718;
class CustomData
{
@@ -8187,7 +5150,7 @@ class Mission
class Item30
{
linkID=30;
- item0=763;
+ item0=917;
item1=718;
class CustomData
{
@@ -8197,7 +5160,7 @@ class Mission
class Item31
{
linkID=31;
- item0=764;
+ item0=918;
item1=718;
class CustomData
{
@@ -8207,7 +5170,7 @@ class Mission
class Item32
{
linkID=32;
- item0=765;
+ item0=919;
item1=718;
class CustomData
{
@@ -8217,7 +5180,7 @@ class Mission
class Item33
{
linkID=33;
- item0=767;
+ item0=920;
item1=718;
class CustomData
{
@@ -8227,7 +5190,7 @@ class Mission
class Item34
{
linkID=34;
- item0=768;
+ item0=921;
item1=718;
class CustomData
{
@@ -8237,7 +5200,7 @@ class Mission
class Item35
{
linkID=35;
- item0=769;
+ item0=922;
item1=718;
class CustomData
{
@@ -8247,7 +5210,7 @@ class Mission
class Item36
{
linkID=36;
- item0=770;
+ item0=923;
item1=718;
class CustomData
{
@@ -8257,7 +5220,7 @@ class Mission
class Item37
{
linkID=37;
- item0=771;
+ item0=924;
item1=718;
class CustomData
{
@@ -8267,227 +5230,7 @@ class Mission
class Item38
{
linkID=38;
- item0=773;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=774;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=775;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=776;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=777;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=779;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=780;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=781;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=782;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=783;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=784;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=785;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=786;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=815;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=816;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=817;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=818;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=819;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=820;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=821;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=822;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=823;
- item1=718;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=824;
+ item0=925;
item1=718;
class CustomData
{
diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf
index 1412c6b79a..9d9357abd0 100644
--- a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf
+++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/AL_snowstorm/al_trembling.sqf
@@ -1,6 +1,6 @@
// by ALIAS
-if ((!hasInterface)or(pos_p!="open")) exitWith {};
+if ((!hasInterface)or{pos_p!="open"}) exitWith {};
params ["_pozitie_x","_pozitie_y"];
drop [["\A3\data_f\cl_basic",1,0,1],"","Billboard",0.5,(snow_gust#1)/2,[_pozitie_x,_pozitie_y,0],[vit_x,vit_y,0],13,1.3,1,0.1,[1,10,15],[[1,1,1,0],[1,1,1,.1],[1,1,1,0]],[1],1,0,"AL_snowstorm\rotocol_drop.sqf","",hunt_alias,0,true,0.1];
diff --git a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm
index eb39b4d5fe..17fb18f8ce 100644
--- a/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm
+++ b/Map-Templates/Antistasi-ChernarusWinter.chernarus_winter/mission.sqm
@@ -1,25 +1,25 @@
version=53;
class EditorData
{
- moveGridStep=1;
+ moveGridStep=2;
angleGridStep=0.2617994;
scaleGridStep=1;
autoGroupingDist=10;
- toggles=1;
+ toggles=1025;
class ItemIDProvider
{
- nextID=302;
+ nextID=2150;
};
class LayerIndexProvider
{
- nextID=42;
+ nextID=65;
};
class Camera
{
- pos[]={8397.6348,364.55566,5928.7485};
- dir[]={0.10471021,-0.71442097,0.69185412};
- up[]={0.10690976,0.69970715,0.70638883};
- aside[]={0.9887526,-3.772584e-008,-0.1496447};
+ pos[]={5523.1616,3319.8442,3353.0732};
+ dir[]={0.4025259,-0.69473934,0.59609598};
+ up[]={0.38879687,0.71925664,0.57576478};
+ aside[]={0.82875377,3.0422234e-007,-0.55963284};
};
};
binarizationWanted=0;
@@ -28,8 +28,6 @@ addons[]=
"A3_Ui_F",
"A3_Modules_F",
"A3_Characters_F",
- "A3_Weapons_F",
- "A3_Characters_F_Tank",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Mil_Flags",
"A3_Props_F_Enoch_Military_Camps",
@@ -40,13 +38,24 @@ addons[]=
"A3_Structures_F_Mil_Helipads",
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F_Curator_Curator",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F",
+ "CUP_Buildings_Config",
+ "CUP_Misc3_Config",
+ "CUP_CAStructures_Mil",
+ "CUP_WarfareBuildings",
+ "CUP_Terrains_Winter_Objects",
+ "CUP_Ind_Tank",
+ "CUP_Terrains_Winter_Plants",
+ "CUP_CAMisc_E_WF",
+ "CUP_CAMisc",
+ "CUP_CAMisc_ACR_Sign_Mines"
};
class AddonsMetaData
{
class List
{
- items=13;
+ items=22;
class Item0
{
className="A3_Ui_F";
@@ -69,75 +78,119 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item3
- {
- className="A3_Weapons_F";
- name="Arma 3 Alpha - Weapons and Accessories";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item4
- {
- className="A3_Characters_F_Tank";
- name="Arma 3 Tank - Characters and Clothing";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item5
{
className="A3_Structures_F_EPC";
name="Arma 3 Win Episode - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item6
+ class Item4
{
className="A3_Structures_F_Mil";
name="Arma 3 - Military Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item7
+ class Item5
{
className="A3_Props_F_Enoch";
name="Arma 3 Enoch - Decorative and Mission Objects";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item8
+ class Item6
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item9
+ class Item7
{
className="A3_Characters_F_Patrol";
name="Arma 3 Patrol - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item10
+ class Item8
{
className="A3_Characters_F_Exp";
name="Arma 3 Apex - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item11
+ class Item9
{
className="A3_Structures_F_Exp";
name="Arma 3 Apex - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item12
+ class Item10
+ {
+ className="A3_Weapons_F";
+ name="Arma 3 Alpha - Weapons and Accessories";
+ author="Bohemia Interactive";
+ url="https://www.arma3.com";
+ };
+ class Item11
{
className="A3_Modules_F_Curator";
name="Arma 3 Zeus Update - Scripted Modules";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
+ class Item12
+ {
+ className="CUP_Buildings_Config";
+ name="CUP_Buildings_Config";
+ };
+ class Item13
+ {
+ className="CUP_Misc3_Config";
+ name="CUP_Misc3_Config";
+ };
+ class Item14
+ {
+ className="CUP_CAStructures_Mil";
+ name="CUP_CAStructures_Mil";
+ };
+ class Item15
+ {
+ className="CUP_WarfareBuildings";
+ name="CUP_WarfareBuildings";
+ };
+ class Item16
+ {
+ className="CUP_Terrains_Winter_Objects";
+ name="CUP_Terrains_Winter_Objects";
+ author="CUP Terrains - Community Upgrade Project";
+ };
+ class Item17
+ {
+ className="CUP_Ind_Tank";
+ name="CUP_Ind_Tank";
+ };
+ class Item18
+ {
+ className="CUP_Terrains_Winter_Plants";
+ name="CUP_Terrains_Winter_Plants";
+ };
+ class Item19
+ {
+ className="CUP_CAMisc_E_WF";
+ name="CUP_CAMisc_E_WF";
+ };
+ class Item20
+ {
+ className="CUP_CAMisc";
+ name="CUP_CAMisc";
+ };
+ class Item21
+ {
+ className="CUP_CAMisc_ACR_Sign_Mines";
+ name="CUP_CAMisc_ACR_Sign_Mines";
+ };
};
};
randomSeed=5703879;
@@ -147,25 +200,15 @@ class Mission
{
briefingName=$STR_antistasi_mission_info_chernawinter_mapname_text;
resistanceWest=0;
- timeOfChanges=1800.0002;
- startWeather=0.25;
- startWind=0.1;
- startWaves=0.1;
- forecastWeather=0.25;
- forecastWind=0.1;
- forecastWaves=0.1;
- forecastLightnings=0.1;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
- startFogDecay=0.014;
- forecastFogDecay=0.014;
};
class Entities
{
- items=56;
+ items=76;
class Item0
{
dataType="Marker";
@@ -339,29 +382,22 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8400.083,292.07764,5995.7441};
- angles[]={6.2405434,0,6.2818484};
+ position[]={8391.5811,292.37164,6001.9639};
+ angles[]={6.1703324,2.1016905,0.039982136};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=19;
+ id=80;
type="I_G_officer_F";
class CustomAttributes
{
@@ -380,7 +416,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -403,36 +439,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8403.6162,291.93661,5992.2197};
- angles[]={0,6.2412972,6.2818937};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=20;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -444,181 +454,218 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ value="";
};
};
};
- nAttributes=2;
+ nAttributes=3;
};
};
- class Item2
+ };
+ class Attributes
+ {
+ };
+ id=79;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8395.1602,293.3262,6001.2017};
+ angles[]={6.1703324,0,0.0093350215};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=81;
+ type="MapBoard_seismic_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.0752,291.93152,5998.3721};
- angles[]={0,6.2412972,0.0012918708};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=21;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "BOOL"
};
};
+ value=0;
};
- class Attribute1
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8393.4746,297.22485,6009.7695};
+ angles[]={6.206007,0,0.033321146};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=82;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8421.0791,291.93954,5998.2588};
- angles[]={0,0,0.0012918708};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=22;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
+ nAttributes=1;
+ };
+ };
+ class Item18
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8393.8984,291.94815,5988.9043};
+ angles[]={0,0,6.2818937};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=83;
+ type="HeadlessClient_F";
+ };
+ class Item19
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8395.7451,291.94568,5987.9102};
+ angles[]={0,0,6.2818937};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=84;
+ type="HeadlessClient_F";
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8398.2539,293.75775,6007.1611};
+ angles[]={6.1467061,1.0016968,0.033321146};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=86;
+ type="Land_TentSolar_01_olive_F";
+ atlOffset=3.0517578e-005;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item4
+ nAttributes=1;
+ };
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={-0.68359375,28.454832,1694.8362};
+ angles[]={0,1.7684679,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if (!isMultiplayer) then {deleteVehicle this};";
+ };
+ id=87;
+ type="Flag_NATO_F";
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={-0.34570313,24.331726,1694.2678};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=88;
+ };
+ class Item23
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8426.9658,291.94739,5998.6572};
- angles[]={0,0,0.0012918708};
+ position[]={-7.9003906,25.464722,1696.6812};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=7;
class Attributes
{
- description="Grenadier";
+ rank="SERGEANT";
+ init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=24;
- type="I_G_Soldier_GL_F";
+ id=90;
+ type="B_recon_TL_F";
+ atlOffset=1.9073486e-006;
class CustomAttributes
{
class Attribute0
@@ -636,7 +683,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -655,34 +702,33 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item5
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={8412.6143,291.93143,5998.3115};
+ position[]={-13.785156,25.298214,1692.7612};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=25;
- type="I_G_officer_F";
+ id=91;
+ type="B_recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -700,7 +746,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -719,34 +765,32 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item6
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={8414.9727,292.16516,6001.167};
- angles[]={6.0768309,6.2412972,0.0066682254};
+ position[]={-11.820313,26.920073,1702.5659};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=26;
- type="I_G_Soldier_AR_F";
+ id=92;
+ type="B_recon_medic_F";
class CustomAttributes
{
class Attribute0
@@ -764,7 +808,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03ENG";
};
};
};
@@ -783,34 +827,32 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item7
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={8420.9766,292.14963,6001.0537};
- angles[]={6.0768313,0,0.0013372133};
+ position[]={-15.742188,28.301579,1708.4507};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=27;
- type="I_G_medic_F";
+ id=93;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -828,7 +870,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male12ENG";
};
};
};
@@ -847,34 +889,33 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item8
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={8426.8633,292.22964,6001.4521};
- angles[]={6.084507,0,0.0013372133};
+ position[]={-16.351563,25.179548,1690.7456};
+ angles[]={6.0913806,1.7684722,6.1752687};
};
- side="Independent";
+ side="West";
flags=4;
class Attributes
{
- description="Grenadier";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=29;
- type="I_G_Soldier_GL_F";
+ id=94;
+ type="B_Patrol_Soldier_MG_F";
class CustomAttributes
{
class Attribute0
@@ -892,7 +933,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male07ENG";
};
};
};
@@ -911,35 +952,32 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item9
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={8412.5117,292.14563,6001.1064};
- angles[]={6.0832248,0,0};
+ position[]={-17.499023,26.358706,1696.3081};
+ angles[]={0,1.7684722,0};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ skill=0.40000001;
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=30;
- type="I_G_officer_F";
+ id=95;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -957,7 +995,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -976,98 +1014,45 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8420.9766,292.75793,6004.0547};
- angles[]={6.084507,0,6.276526};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=31;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item11
+ };
+ class Attributes
+ {
+ };
+ id=89;
+ atlOffset=1.9073486e-006;
+ };
+ class Item24
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8426.8633,292.80853,6004.4531};
- angles[]={6.1038036,0,6.2645183};
+ position[]={2220.9971,522.74261,15365.142};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=7;
class Attributes
{
- description="Grenadier";
+ init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=33;
- type="I_G_Soldier_GL_F";
+ id=97;
+ type="O_T_Recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -1085,7 +1070,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -1111,28 +1096,24 @@ class Mission
nAttributes=2;
};
};
- class Item12
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={8412.5117,292.76434,6004.1074};
- angles[]={6.0768309,0,0.0066682254};
+ position[]={2226.0171,523.33417,15369.421};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=34;
- type="I_G_officer_F";
+ id=98;
+ type="O_T_Recon_Medic_F";
class CustomAttributes
{
class Attribute0
@@ -1150,7 +1131,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male02CHI";
};
};
};
@@ -1169,34 +1150,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=1.01;
};
};
};
nAttributes=2;
};
};
- class Item13
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={8420.8721,293.27954,6006.6416};
- angles[]={6.084507,0,6.276526};
+ position[]={2216.5469,523.33881,15369.718};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=35;
- type="I_G_medic_F";
+ id=99;
+ type="O_T_Recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -1214,7 +1192,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1233,34 +1211,31 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item14
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={8426.7598,293.27954,6007.04};
- angles[]={6.1038036,0,6.2645183};
+ position[]={2228.7764,523.62366,15371.507};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=37;
- type="I_G_Soldier_GL_F";
+ id=100;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1278,7 +1253,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01CHI";
};
};
};
@@ -1297,35 +1272,32 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item15
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={8412.4072,293.30515,6006.6943};
- angles[]={6.0768309,0,0.0066682254};
+ position[]={2219.5508,522.52655,15363.618};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=38;
- type="I_G_officer_F";
+ id=101;
+ type="O_Soldier_AR_F";
+ atlOffset=6.1035156e-005;
class CustomAttributes
{
class Attribute0
@@ -1343,7 +1315,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01PER";
};
};
};
@@ -1362,34 +1334,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item16
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={8415.0713,292.81781,6004.2832};
- angles[]={6.0768313,6.1574922,0.0013372133};
+ position[]={2220.6631,523.10614,15367.927};
+ angles[]={0,3.1888561,0};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=39;
- type="I_G_Soldier_AR_F";
+ id=102;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1407,7 +1376,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -1433,32 +1402,2551 @@ class Mission
nAttributes=2;
};
};
- class Item17
+ };
+ class Attributes
+ {
+ };
+ id=96;
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2221.8018,526.28967,15361.809};
+ angles[]={6.1505861,3.1888621,0.012005239};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=103;
+ type="Flag_Viper_F";
+ };
+ class Item26
+ {
+ dataType="Marker";
+ position[]={2220.9854,541.18561,15365.311};
+ name="respawn_east";
+ type="flag_Viper";
+ id=104;
+ atlOffset=18.415283;
+ };
+ class Item27
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8405.3457,291.93286,5984.3701};
+ angles[]={0,0,6.2818937};
+ };
+ name="pathfinding";
+ id=106;
+ type="Logic";
+ };
+ class Item28
+ {
+ dataType="Layer";
+ name="Airports";
+ class Entities
+ {
+ items=20;
+ class Item0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8415.167,293.35944,6006.8701};
- angles[]={6.0768313,0,0.0013372133};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=40;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
+ dataType="Marker";
+ position[]={12102.352,158.94748,12629.086};
+ name="airport";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=390.76028;
+ b=150;
+ angle=19.882999;
+ id=108;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={4706.3428,339,10240.773};
+ name="airport_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=476.16949;
+ b=223.77307;
+ angle=59.539993;
+ id=109;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4854.8389,9,2508.3616};
+ name="airport_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=249.14926;
+ b=109.36142;
+ angle=28.48983;
+ id=110;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={4747.8501,339,10323.666};
+ name="airp_1_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=111;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={4737.979,339,10325.293};
+ name="airp_1_mortar_4";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=112;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={4748.1665,339,10340.727};
+ name="airp_1_mortar_5";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=113;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4814.9512,8.8466053,2537.0022};
+ name="airp_2_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=114;
+ atlOffset=-9.5367432e-007;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={4805.0781,8.854826,2538.6292};
+ name="airp_2_mortar_4";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=115;
+ atlOffset=9.5367432e-007;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={4811.314,8.7212391,2541.7034};
+ name="airp_2_mortar_5";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=116;
+ atlOffset=-9.5367432e-007;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={12140.395,158.93355,12612.482};
+ name="airp_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=117;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={12146.631,158.89999,12615.557};
+ name="airp_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=118;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={12150.268,158.89999,12610.855};
+ name="airp_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=119;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4596.8872,339,10405.643};
+ name="airp_1_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=43.498734;
+ b=23.140686;
+ angle=237.01163;
+ id=120;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={4752.6479,339,10154.949};
+ name="airp_1_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=44.02475;
+ b=23.856892;
+ angle=236.65263;
+ id=121;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={4752.1079,9,2536.0999};
+ name="airp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=32.455002;
+ b=20.924999;
+ angle=207.52591;
+ id=122;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={12186.6,158.98801,12641.588};
+ name="airp_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=43.499001;
+ b=23.141001;
+ angle=200.52629;
+ id=123;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={12038.494,159,12696.121};
+ name="airp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=32.455002;
+ b=20.924999;
+ angle=195.99693;
+ id=124;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={4623.5347,339,10267.716};
+ name="detectPlayer";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=739.97546;
+ b=267.9863;
+ angle=59.967659;
+ id=125;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={4968.0024,8.8774185,2442.6428};
+ name="detectPlayer_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=379.85837;
+ b=130.2925;
+ angle=29.909319;
+ id=126;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={12111.629,158.89999,12629.395};
+ name="detectPlayer_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=467.86603;
+ b=197.88884;
+ angle=19.954416;
+ id=127;
+ };
+ };
+ id=107;
+ atlOffset=-157.0293;
+ };
+ class Item29
+ {
+ dataType="Layer";
+ name="Outposts";
+ class Entities
+ {
+ items=33;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={5146.9536,9,2346.1467};
+ name="outpost";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=89.797859;
+ b=108.29008;
+ angle=210.03189;
+ id=129;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={4541.6714,58.302071,3155.9612};
+ name="outpost_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=122.74355;
+ b=128.60263;
+ angle=155.90392;
+ id=130;
+ atlOffset=3.8146973e-006;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={11248.358,190.01878,12174.185};
+ name="outpost_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=64.31974;
+ b=44.014603;
+ angle=297.99689;
+ id=131;
+ atlOffset=0.8690033;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={12923.396,213.40721,12766.637};
+ name="outpost_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=63.164063;
+ b=63.14502;
+ id=132;
+ atlOffset=3.6555481;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={12940.665,27.022367,6770.7256};
+ name="outpost_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=59.300125;
+ b=58.015564;
+ angle=170.78795;
+ id=133;
+ atlOffset=1.9073486e-006;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={13414.777,6.3729405,6171.1348};
+ name="outpost_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=53.969193;
+ b=60.68631;
+ angle=270.85022;
+ id=134;
+ atlOffset=0.84438324;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4408.9414,235.15474,4650.5894};
+ name="outpost_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=40.861679;
+ b=42.381943;
+ angle=99.916;
+ id=136;
+ atlOffset=1.1570282;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={7603.9111,215.381,5220.3057};
+ name="outpost_16";
+ markerType="ELLIPSE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=49.968491;
+ b=30.215363;
+ angle=179.879;
+ id=137;
+ atlOffset=-1.5761108;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={6287.7295,301.03229,7723.1577};
+ name="outpost_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=81.286041;
+ b=37.238995;
+ angle=213.73801;
+ id=138;
+ atlOffset=-0.10348511;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={8843.5801,213.99959,11655.313};
+ name="outpost_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=62.089123;
+ b=66.317612;
+ angle=100.45999;
+ id=139;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={12207.205,25.273645,9413.8887};
+ name="outpost_19";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=41.922543;
+ b=33.248329;
+ angle=318.96811;
+ id=140;
+ atlOffset=-0.0747509;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={3701.5615,402,5978.4814};
+ name="outpost_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=96.04599;
+ b=86.994995;
+ angle=47.747215;
+ id=141;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4938.9873,339,9845.2842};
+ name="outpost_20";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=171.24644;
+ b=221.91978;
+ angle=239.93896;
+ id=142;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={2732.8984,273.95001,9906.3457};
+ name="outpost_21";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=55.818733;
+ b=57.456215;
+ angle=121.37388;
+ id=143;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={4393.4561,339,10786.506};
+ name="outpost_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=156.02531;
+ b=224.40887;
+ angle=239.93896;
+ id=144;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={6895.9199,394.51971,11440.83};
+ name="outpost_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=113.01675;
+ b=82.41481;
+ angle=235.19092;
+ id=145;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={6434.1963,384.97241,6548.6143};
+ name="outpost_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=45.783302;
+ b=46.773125;
+ angle=130.869;
+ id=146;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={4715.833,282.39337,6767.1548};
+ name="outpost_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=39.604908;
+ b=35.822056;
+ angle=55.747601;
+ id=147;
+ atlOffset=11.283264;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={6585.1113,91.891808,3415.2842};
+ name="outpost_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=81.775635;
+ b=50.163574;
+ id=148;
+ atlOffset=10.463181;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={10256.91,360.57376,12042.713};
+ name="outpost_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=142.01855;
+ b=94.024902;
+ id=149;
+ };
+ class Item20
+ {
+ dataType="Marker";
+ position[]={11250.537,291.85916,4294.4863};
+ name="outpost_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=78.738342;
+ b=83.958069;
+ angle=225.59978;
+ id=150;
+ atlOffset=1.2372742;
+ };
+ class Item21
+ {
+ dataType="Marker";
+ position[]={12221.382,23.404297,9425.1133};
+ name="outp_19_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=4.7610855;
+ b=5.5515623;
+ id=151;
+ atlOffset=-0.82167625;
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={3701.7212,402,5966.3359};
+ name="outp_2_mortar_6";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=152;
+ };
+ class Item23
+ {
+ dataType="Marker";
+ position[]={10289.77,362.7421,12054.119};
+ name="outp_8_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=153;
+ atlOffset=3.0517578e-005;
+ };
+ class Item24
+ {
+ dataType="Marker";
+ position[]={11264.801,289.78238,4292.7129};
+ name="outp_9_mortar_7";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=154;
+ };
+ class Item25
+ {
+ dataType="Marker";
+ position[]={11239.685,190.202,12151.26};
+ name="outp_10_vehicle_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=5.9650002;
+ b=12.702;
+ angle=313.64197;
+ id=155;
+ atlOffset=-1.1008759;
+ };
+ class Item26
+ {
+ dataType="Marker";
+ position[]={12949.435,27.026077,6745.4971};
+ name="outp_12_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=16.625;
+ b=5.0040002;
+ angle=257.76401;
+ id=156;
+ };
+ class Item27
+ {
+ dataType="Marker";
+ position[]={13422.982,5.7119999,6195.1221};
+ name="outp_13_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.529;
+ b=4.3730001;
+ angle=181.38899;
+ id=157;
+ atlOffset=0.21218729;
+ };
+ class Item28
+ {
+ dataType="Marker";
+ position[]={4390.4473,235.002,4669.0498};
+ name="outp_15_vehicle_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=9.6932468;
+ b=4.7401009;
+ angle=214.35869;
+ id=158;
+ atlOffset=0.062484741;
+ };
+ class Item29
+ {
+ dataType="Marker";
+ position[]={12194.918,26.704102,9400.2705};
+ name="outp_19_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=10.144073;
+ b=4.9241195;
+ angle=225.60681;
+ id=159;
+ atlOffset=-0.73698235;
+ };
+ class Item30
+ {
+ dataType="Marker";
+ position[]={5139.3667,8.8999996,2308.7612};
+ name="outp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.929466;
+ b=10.325369;
+ angle=207.52591;
+ id=160;
+ atlOffset=-0.0083742142;
+ };
+ class Item31
+ {
+ dataType="Marker";
+ position[]={6270.0098,300.98999,7714.4878};
+ name="outp_17_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=9.7226839;
+ b=3.892961;
+ angle=215.93298;
+ id=1752;
+ };
+ class Item32
+ {
+ dataType="Marker";
+ position[]={8136.6182,471.54758,9144.6543};
+ name="outpost_14";
+ markerType="ELLIPSE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=58.541508;
+ b=55.237442;
+ angle=270.84998;
+ id=2108;
+ atlOffset=0.85836792;
+ };
+ };
+ id=128;
+ atlOffset=15.118835;
+ };
+ class Item30
+ {
+ dataType="Layer";
+ name="Seaports";
+ class Entities
+ {
+ items=7;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={3615.9834,6.5153069,2177.5842};
+ name="seaport";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=134.67267;
+ b=91.436241;
+ angle=106.133;
+ id=162;
+ atlOffset=0.51530695;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={6955.2349,6.0085158,2346.9265};
+ name="seaport_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=108.34799;
+ b=64.266464;
+ angle=142.3931;
+ id=163;
+ atlOffset=0.0021624565;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={10396.824,3,1834.8567};
+ name="seaport_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=59.725586;
+ b=73.112488;
+ id=164;
+ atlOffset=0.0035243034;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={13522.021,4.4208422,6321.1929};
+ name="seaport_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=70;
+ b=53.636196;
+ angle=90.898598;
+ id=165;
+ atlOffset=1.1250031;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={13047.837,6,10052.013};
+ name="seaport_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=65.45134;
+ b=62.235653;
+ angle=104.19093;
+ id=166;
+ atlOffset=0.19595575;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={6926.2241,6.0100002,2334.342};
+ name="seap_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=27.023001;
+ b=10.466;
+ angle=142.308;
+ id=167;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={10373.114,3,1863.77};
+ name="seap_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=6.4219999;
+ b=14.05;
+ angle=179.12999;
+ id=168;
+ atlOffset=-2.3885889;
+ };
+ };
+ id=161;
+ atlOffset=-114.7718;
+ };
+ class Item31
+ {
+ dataType="Layer";
+ name="Factories";
+ class Entities
+ {
+ items=6;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={4167.9268,324.01276,8940.1621};
+ name="factory";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=108.2471;
+ b=107.57551;
+ angle=188.34593;
+ id=170;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={10427.699,6,2582.3557};
+ name="factory_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=68.609634;
+ b=66.307854;
+ angle=205.30093;
+ id=171;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={12746.416,6,9658.4424};
+ name="factory_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=101.94748;
+ b=69.702164;
+ angle=9.8703775;
+ id=172;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={13079.193,6,7083.5225};
+ name="factory_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=96.847954;
+ b=67.568123;
+ angle=73.819817;
+ id=173;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={6498.6709,6,2618.3831};
+ name="factory_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=120;
+ b=90;
+ angle=130.13901;
+ id=174;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={4195.2241,324.00638,8954.3301};
+ name="fact_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.231;
+ b=9.4980001;
+ angle=281.59299;
+ id=175;
+ };
+ };
+ id=169;
+ atlOffset=-167.31834;
+ };
+ class Item32
+ {
+ dataType="Layer";
+ name="Resources";
+ class Entities
+ {
+ items=10;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={10121.459,6,1832.8086};
+ name="resource";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=80.489746;
+ b=49.380615;
+ id=177;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={11470.279,221,7511.1475};
+ name="resource_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=80;
+ b=50;
+ angle=97.399902;
+ id=178;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={9705.4619,298.99796,8913.3877};
+ name="resource_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=74.327621;
+ b=50;
+ angle=104.40878;
+ id=179;
+ atlOffset=0.0028381348;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={10266.223,168.30716,9522.5977};
+ name="resource_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ angle=184.80492;
+ id=180;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={11845.648,148.39217,12407.859};
+ name="resource_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ angle=200.38896;
+ id=181;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={13273.874,10.050711,6096.3906};
+ name="resource_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=68.961441;
+ b=65.203957;
+ angle=58.644993;
+ id=183;
+ atlOffset=2.1007109;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={6239.0503,5.4899998,2205.0771};
+ name="resource_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=52.927944;
+ b=53.00666;
+ angle=149.799;
+ id=184;
+ atlOffset=-0.0050544739;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={9673.2148,83.649841,13557.9};
+ name="resource_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=133.86571;
+ b=128.34068;
+ angle=147.22701;
+ id=185;
+ atlOffset=-7.6293945e-006;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={13126.445,6.099978,10283.849};
+ name="resource_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=70.481003;
+ b=39.657848;
+ angle=289.01877;
+ id=186;
+ atlOffset=0.019593239;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={9996.3848,6,1843.7249};
+ name="reso_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.939;
+ b=12.332;
+ angle=180.841;
+ id=187;
+ };
+ };
+ id=176;
+ atlOffset=-275.49384;
+ };
+ class Item33
+ {
+ dataType="Layer";
+ name="Roadblocks";
+ class Entities
+ {
+ items=41;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={12851.53,5.7780962,8707.0234};
+ name="control";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=99.020477;
+ b=118.70475;
+ angle=159.709;
+ id=189;
+ atlOffset=4.7683716e-007;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={11891.242,59.393539,9018.1992};
+ name="control_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=169.17923;
+ b=179.54099;
+ angle=159.709;
+ id=190;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={3643.8657,8.4812126,2524.2688};
+ name="control_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=108.25488;
+ b=100.38329;
+ angle=159.709;
+ id=191;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={2661.8818,221.81776,5584.0586};
+ name="control_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=20;
+ b=20;
+ angle=159.709;
+ id=192;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={3131.043,298.27231,8072.9395};
+ name="control_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=157.0043;
+ b=161.89716;
+ angle=159.709;
+ id=193;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={5058.8164,341.59491,8636.5176};
+ name="control_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=135.16505;
+ b=145.20442;
+ angle=159.709;
+ id=194;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4806.3179,302.03329,7175.0723};
+ name="control_14";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=188.29962;
+ b=158.81369;
+ angle=159.709;
+ id=195;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={9467.1348,195.4184,4417.4492};
+ name="control_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=196;
+ atlOffset=1.5258789e-005;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={8477.1621,133.17473,4912.418};
+ name="control_16";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=197;
+ atlOffset=1.5258789e-005;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={10919.66,224.47362,3935.6731};
+ name="control_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=198;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={12501.518,6.1132569,3547.6497};
+ name="control_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=199;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={13005.651,129.98528,4887.4531};
+ name="control_19";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=200;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={10899.516,233.37639,11626.758};
+ name="control_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=20;
+ b=20;
+ angle=159.709;
+ id=201;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={11972.107,105.97029,5060.4219};
+ name="control_20";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=202;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={7139.9355,262.07141,7219.3457};
+ name="control_21";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=203;
+ atlOffset=3.0517578e-005;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={10985.543,207.72282,6140.9482};
+ name="control_22";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=204;
+ atlOffset=1.5258789e-005;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={5835.1855,278.83075,10067.477};
+ name="control_23";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=205;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={9101.5723,253.17198,6775.7813};
+ name="control_24";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=206;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={10052.648,260.34589,8856.0137};
+ name="control_25";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=207;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={8065.5791,441.66965,7813.6689};
+ name="control_26";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=208;
+ atlOffset=-3.0517578e-005;
+ };
+ class Item20
+ {
+ dataType="Marker";
+ position[]={5347.1948,250.92462,4647.4434};
+ name="control_27";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=209;
+ };
+ class Item21
+ {
+ dataType="Marker";
+ position[]={4520.5503,335.79895,9706.2949};
+ name="control_28";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=210;
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={4533.4927,289.48022,6429.9932};
+ name="control_29";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=211;
+ };
+ class Item23
+ {
+ dataType="Marker";
+ position[]={10425.707,173.82129,9168.6016};
+ name="control_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=20;
+ b=20;
+ angle=159.709;
+ id=212;
+ };
+ class Item24
+ {
+ dataType="Marker";
+ position[]={2778.6851,261.99036,9456.5996};
+ name="control_30";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=213;
+ };
+ class Item25
+ {
+ dataType="Marker";
+ position[]={1760.2637,200.965,6940.0439};
+ name="control_31";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=214;
+ };
+ class Item26
+ {
+ dataType="Marker";
+ position[]={3076.3208,244.13062,5512.3672};
+ name="control_32";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=215;
+ };
+ class Item27
+ {
+ dataType="Marker";
+ position[]={8881.3867,102.41238,3229.7874};
+ name="control_33";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=216;
+ };
+ class Item28
+ {
+ dataType="Marker";
+ position[]={11758.613,203.53822,7391.4678};
+ name="control_34";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=217;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item29
+ {
+ dataType="Marker";
+ position[]={10170.854,193.59335,11181.021};
+ name="control_35";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=218;
+ };
+ class Item30
+ {
+ dataType="Marker";
+ position[]={11275.719,196.14674,10898.697};
+ name="control_36";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=219;
+ };
+ class Item31
+ {
+ dataType="Marker";
+ position[]={12190.561,125.33263,11607.223};
+ name="control_37";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=220;
+ atlOffset=-7.6293945e-006;
+ };
+ class Item32
+ {
+ dataType="Marker";
+ position[]={10650.623,262.1048,12416.02};
+ name="control_38";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=221;
+ };
+ class Item33
+ {
+ dataType="Marker";
+ position[]={13159.024,39.446892,11406.334};
+ name="control_39";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=222;
+ };
+ class Item34
+ {
+ dataType="Marker";
+ position[]={13120.329,6.117837,7321.6221};
+ name="control_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=124.43841;
+ b=120.9002;
+ angle=159.709;
+ id=223;
+ };
+ class Item35
+ {
+ dataType="Marker";
+ position[]={6577.0186,265.08475,4409.0498};
+ name="control_40";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=300;
+ b=300;
+ id=224;
+ atlOffset=3.0517578e-005;
+ };
+ class Item36
+ {
+ dataType="Marker";
+ position[]={13387.333,5.6839952,5494.8584};
+ name="control_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=170.06819;
+ b=156.81378;
+ angle=159.709;
+ id=225;
+ };
+ class Item37
+ {
+ dataType="Marker";
+ position[]={11680.646,6.2326393,3414.2063};
+ name="control_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=155.98209;
+ b=137.75055;
+ angle=159.709;
+ id=226;
+ atlOffset=0.58462381;
+ };
+ class Item38
+ {
+ dataType="Marker";
+ position[]={10212.076,58.016323,4034.5266};
+ name="control_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=122.87683;
+ b=111.55153;
+ angle=159.709;
+ id=227;
+ };
+ class Item39
+ {
+ dataType="Marker";
+ position[]={9435.4766,5.9109788,2049.0403};
+ name="control_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=20;
+ b=20;
+ angle=159.709;
+ id=228;
+ };
+ class Item40
+ {
+ dataType="Marker";
+ position[]={6295.6943,27.816875,3371.0422};
+ name="control_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=108.98723;
+ b=105.96222;
+ angle=159.709;
+ id=229;
+ };
+ };
+ id=188;
+ atlOffset=15.966028;
+ };
+ class Item34
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2732.5439,279.27542,9904.4805};
+ };
+ areaSize[]={8.9569092,0,9.8232422};
+ flags=1;
+ id=230;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=5.3254089;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9618.4336,86.676628,13544.852};
+ angles[]={0.021331646,6.093493,6.2405448};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=231;
+ type="Land_HelipadSquare_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12207.725,25.16188,9424.6514};
+ angles[]={6.2778587,5.7341928,6.2405448};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=232;
+ type="Land_HelipadSquare_F";
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6599.4893,81.440643,3414.6682};
+ angles[]={0.027993103,3.1187696,6.2805109};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=233;
+ type="Land_HelipadSquare_F";
+ };
+ class Item38
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5099.8477,9,2336.4397};
+ angles[]={0,2.0886309,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=234;
+ type="Land_HelipadSquare_F";
+ };
+ class Item39
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4702.9673,8.9938231,2572.9631};
+ angles[]={0.013327583,3.6829305,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=235;
+ type="Land_HelipadSquare_F";
+ };
+ class Item40
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4795.2324,9,2522.426};
+ angles[]={0,3.6794586,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=236;
+ type="Land_HelipadSquare_F";
+ };
+ class Item41
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6251.6782,301.20001,7740.3652};
+ angles[]={0,5.3228745,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=237;
+ type="Land_HelipadSquare_F";
+ };
+ class Item42
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6882.5854,393.92322,11437.193};
+ angles[]={6.2791886,1.4099587,0.051951028};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=238;
+ type="Land_HelipadSquare_F";
+ };
+ class Item43
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6880.5571,396.70984,11446.891};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=239;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=2.8699036;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item44
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6886.6914,394.27179,11427.021};
+ angles[]={6.2738566,0,0.046629332};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=240;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.20065308;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item45
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4773.1392,339,10121.203};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=241;
+ type="Land_HelipadSquare_F";
+ };
+ class Item46
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4793.6182,339,10086.4};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=242;
+ type="Land_HelipadSquare_F";
+ };
+ class Item47
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4816.1475,339,10048.58};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=243;
+ type="Land_HelipadSquare_F";
+ };
+ class Item48
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4841.5283,339,10005.342};
+ angles[]={0,1.0440426,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=244;
+ type="Land_HelipadSquare_F";
+ };
+ class Item49
+ {
+ dataType="Layer";
+ name="Roads";
+ class Entities
+ {
+ items=40;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={258.75781,5.3926063,1621.6721};
+ name="road";
+ type="hd_arrow";
+ angle=88.853943;
+ id=246;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={939.98047,5.7140574,2028.0432};
+ name="road_1";
+ type="hd_arrow";
+ angle=30.963726;
+ id=247;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={3195.126,290.02942,8138.8281};
+ name="road_10";
+ type="hd_arrow";
+ angle=37.844521;
+ id=248;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={2198.1602,483.38065,15010.172};
+ name="road_11";
+ type="hd_arrow";
+ angle=181.73544;
+ id=249;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={1401.8379,410.38309,14148.377};
+ name="road_12";
+ type="hd_arrow";
+ angle=240.74304;
+ id=250;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={608.39648,374.31506,13813.139};
+ name="road_13";
+ type="hd_arrow";
+ angle=143.13023;
+ id=251;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={1703.3027,285.4559,12665.393};
+ name="road_14";
+ type="hd_arrow";
+ angle=153.32985;
+ id=252;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={2122.1333,252.91904,11369.201};
+ name="road_15";
+ type="hd_arrow";
+ angle=152.50713;
+ id=253;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={2394.8418,273.40381,10390.951};
+ name="road_16";
+ type="hd_arrow";
+ angle=138.85368;
+ id=254;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={4460.9517,323.60736,8903.8262};
+ name="road_17";
+ type="hd_arrow";
+ angle=173.95586;
+ id=255;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={5525.1934,335.09396,8358.7793};
+ name="road_18";
+ type="hd_arrow";
+ angle=130.01761;
+ id=256;
+ atlOffset=-3.0517578e-005;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={6894.7017,289.23312,7629.5029};
+ name="road_19";
+ type="hd_arrow";
+ angle=64.816978;
+ id=257;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={1599.0391,7.3636932,2241.4651};
+ name="road_2";
+ type="hd_arrow";
+ angle=103.3924;
+ id=258;
+ atlOffset=4.7683716e-007;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={5533.6025,5.8000002,2072.2424};
+ name="road_20";
+ type="hd_arrow";
+ angle=66.925438;
+ id=259;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={6643.1299,6.0199733,2932.0647};
+ name="road_21";
+ type="hd_arrow";
+ angle=60.499027;
+ id=260;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={8412.9844,5.9926867,2937.6458};
+ name="road_22";
+ type="hd_arrow";
+ angle=150.56462;
+ id=261;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={9978.7402,6,2060.5686};
+ name="road_23";
+ type="hd_arrow";
+ angle=62.230412;
+ id=262;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={7092.5903,255.46463,6494.5791};
+ name="road_24";
+ type="hd_arrow";
+ angle=162.60255;
+ id=263;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={7521.1133,210.95322,5021.1514};
+ name="road_25";
+ type="hd_arrow";
+ angle=144.19211;
+ id=264;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={9039.5059,114.36784,4930.0723};
+ name="road_26";
+ type="hd_arrow";
+ angle=88.853943;
+ id=265;
+ };
+ class Item20
+ {
+ dataType="Marker";
+ position[]={10161.783,69.648354,4084.9456};
+ name="road_27";
+ type="hd_arrow";
+ angle=139.01399;
+ id=266;
+ atlOffset=7.6293945e-006;
+ };
+ class Item21
+ {
+ dataType="Marker";
+ position[]={11236.777,5.5819979,3253.592};
+ name="road_28";
+ type="hd_arrow";
+ angle=63.165874;
+ id=267;
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={13271.282,5.4664192,4017.9758};
+ name="road_29";
+ type="hd_arrow";
+ angle=33.934391;
+ id=268;
+ };
+ class Item23
+ {
+ dataType="Marker";
+ position[]={3345.3438,5.6424031,2305.5725};
+ name="road_3";
+ type="hd_arrow";
+ angle=43.965599;
+ id=269;
+ };
+ class Item24
+ {
+ dataType="Marker";
+ position[]={13415.19,5.700428,5928.9102};
+ name="road_30";
+ type="hd_arrow";
+ angle=8.5305576;
+ id=270;
+ atlOffset=-4.7683716e-007;
+ };
+ class Item25
+ {
+ dataType="Marker";
+ position[]={13045.874,5.7399998,7839.1289};
+ name="road_31";
+ type="hd_arrow";
+ angle=357.37994;
+ id=271;
+ };
+ class Item26
+ {
+ dataType="Marker";
+ position[]={11176.471,197.8457,12130.416};
+ name="road_32";
+ type="hd_arrow";
+ angle=210.06854;
+ id=272;
+ };
+ class Item27
+ {
+ dataType="Marker";
+ position[]={10815.955,169.99748,11012.666};
+ name="road_33";
+ type="hd_arrow";
+ angle=196.04909;
+ id=273;
+ };
+ class Item28
+ {
+ dataType="Marker";
+ position[]={10475.117,114.87349,10001.184};
+ name="road_34";
+ type="hd_arrow";
+ angle=182.63902;
+ id=274;
+ atlOffset=-7.6293945e-006;
+ };
+ class Item29
+ {
+ dataType="Marker";
+ position[]={10389.922,164.66653,9223.8594};
+ name="road_35";
+ type="hd_arrow";
+ angle=152.52263;
+ id=275;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item30
+ {
+ dataType="Marker";
+ position[]={9664.2656,294.87292,8797.0625};
+ name="road_36";
+ type="hd_arrow";
+ angle=279.66013;
+ id=276;
+ atlOffset=3.0517578e-005;
+ };
+ class Item31
+ {
+ dataType="Marker";
+ position[]={11262.475,101.16262,9364.0625};
+ name="road_37";
+ type="hd_arrow";
+ angle=75.367722;
+ id=277;
+ };
+ class Item32
+ {
+ dataType="Marker";
+ position[]={12241.701,18.434669,9483.4121};
+ name="road_38";
+ type="hd_arrow";
+ angle=45.44635;
+ id=278;
+ atlOffset=0.0031681061;
+ };
+ class Item33
+ {
+ dataType="Marker";
+ position[]={4090.7046,6.0571809,2612.6409};
+ name="road_4";
+ type="hd_arrow";
+ angle=101.1778;
+ id=279;
+ };
+ class Item34
+ {
+ dataType="Marker";
+ position[]={2662.4365,121.88425,2974.97};
+ name="road_5";
+ type="hd_arrow";
+ angle=4.8738437;
+ id=280;
+ atlOffset=-7.6293945e-006;
+ };
+ class Item35
+ {
+ dataType="Marker";
+ position[]={1957.3721,140.92625,3838.8928};
+ name="road_6";
+ type="hd_arrow";
+ angle=292.26508;
+ id=281;
+ atlOffset=1.5258789e-005;
+ };
+ class Item36
+ {
+ dataType="Marker";
+ position[]={2059.29,200.68654,4674.54};
+ name="road_7";
+ type="hd_arrow";
+ angle=43.505791;
+ id=282;
+ };
+ class Item37
+ {
+ dataType="Marker";
+ position[]={2683.7129,231.66516,5758.6367};
+ name="road_8";
+ type="hd_arrow";
+ angle=9.0245171;
+ id=283;
+ atlOffset=-1.5258789e-005;
+ };
+ class Item38
+ {
+ dataType="Marker";
+ position[]={2721.7295,362.41428,6705.0127};
+ name="road_9";
+ type="hd_arrow";
+ angle=355.36441;
+ id=284;
+ };
+ class Item39
+ {
+ dataType="Marker";
+ position[]={12280.987,29.137899,9299.7549};
+ name="road_39";
+ type="hd_arrow";
+ angle=210.06854;
+ id=1208;
+ };
+ };
+ id=245;
+ atlOffset=-167.34874;
+ };
+ class Item50
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8393.4121,293.78738,6006.0942};
+ angles[]={6.1703324,0,0.0093375118};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="boxX";
+ };
+ id=297;
+ type="B_supplyCrate_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="ammoBox";
+ expression="[_this,_value] call bis_fnc_initAmmoBox;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item51
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8393.2393,292.79132,5994.1274};
+ angles[]={6.251193,0,6.2818413};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="vehicleBox";
+ };
+ id=298;
+ type="Box_East_AmmoVeh_F";
+ };
+ class Item52
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8397.085,293.97952,6012.793};
+ };
+ id=299;
+ type="ModuleCurator_F";
+ atlOffset=3.0517578e-005;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="#adminLogged";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ class Attribute2
+ {
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="";
+ };
+ };
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=3;
+ };
+ };
+ };
+ nAttributes=4;
+ };
+ };
+ class Item53
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8392.6963,293.96817,6016.8472};
+ };
+ name="HC_commanderX";
+ id=300;
+ type="HighCommand";
+ };
+ class Item54
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8393.5986,293.52765,6013.332};
+ };
+ id=301;
+ type="HighCommandSubordinate";
+ };
+ class Item55
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=38;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8399.0459,292.43259,6001.5273};
+ };
+ side="Independent";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=303;
+ type="I_G_Soldier_TL_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
expression="_this setspeaker _value;";
class Value
{
@@ -1468,17 +3956,3930 @@ class Mission
{
type[]=
{
- "STRING"
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.8408,292.09241,5998.8242};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=304;
+ type="I_G_Soldier_TL_F";
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.9795,292.22513,6001.0601};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=305;
+ type="I_G_Soldier_TL_F";
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.9219,292.5481,6003.3936};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=306;
+ type="I_G_Soldier_TL_F";
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.7588,292.9982,6005.707};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=307;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.7178,293.51508,6008.1611};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=308;
+ type="I_G_Soldier_TL_F";
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.5322,294.05768,6010.4771};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=309;
+ type="I_G_Soldier_F";
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8403.3252,294.51358,6012.3726};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=310;
+ type="I_G_Soldier_F";
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.2002,291.98859,5998.9478};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=311;
+ type="I_G_Soldier_F";
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.1992,292.1586,6001.2871};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=312;
+ type="I_G_Soldier_F";
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.0928,292.63327,6003.6606};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=313;
+ type="I_G_Soldier_F";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8406.0342,293.07779,6005.8604};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=314;
+ type="I_G_Soldier_F";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8405.8311,293.58893,6008.2827};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=315;
+ type="I_G_Soldier_F";
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8405.6436,294.15921,6010.6138};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=316;
+ type="I_G_Soldier_F";
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.3086,291.93143,5998.9839};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=317;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.4707,292.20993,6001.4238};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=318;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.0703,292.6994,6003.8389};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=319;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8408.0469,293.13489,6005.9878};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=320;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8407.8467,293.62769,6008.229};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=321;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8407.7598,294.25662,6010.688};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=322;
+ type="I_G_Soldier_AR_F";
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.3975,291.93143,5999.0635};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=323;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.2676,292.20129,6001.3813};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=324;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8410.1436,292.75751,6004.1255};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=325;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8409.9697,293.1716,6006.1343};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=326;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8409.9004,293.66443,6008.3188};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=327;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8409.7949,294.30133,6010.8096};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=328;
+ type="I_G_Soldier_GL_F";
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.9248,291.93143,5999.1411};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=329;
+ type="I_G_medic_F";
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.749,292.20938,6001.4209};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=330;
+ type="I_G_medic_F";
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.707,292.7977,6004.2925};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=331;
+ type="I_G_medic_F";
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.6191,293.17532,6006.0991};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=332;
+ type="I_G_medic_F";
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.4355,293.71042,6008.4585};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=333;
+ type="I_G_medic_F";
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8411.4463,294.32758,6010.8691};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=334;
+ type="I_G_medic_F";
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.7266,291.93143,5999.3062};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=335;
+ type="I_G_engineer_F";
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.75,292.24899,6001.6064};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=336;
+ type="I_G_engineer_F";
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.5078,292.83145,6004.3965};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=337;
+ type="I_G_engineer_F";
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.2529,293.23746,6006.3442};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=338;
+ type="I_G_engineer_F";
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8413.0576,293.75241,6008.5806};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=339;
+ type="I_G_engineer_F";
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8412.9531,294.40137,6011.0498};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=340;
+ type="I_G_engineer_F";
+ };
+ };
+ class Attributes
+ {
+ };
+ id=302;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item56
+ {
+ dataType="Layer";
+ name="Assets Outpost";
+ class Entities
+ {
+ items=566;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4553.8018,58.961926,3114.009};
+ angles[]={0,3.2086656,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=471;
+ type="Land_Hlaska";
+ atlOffset=0.048999786;
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4517.3779,57.979889,3190.6072};
+ angles[]={0.045302324,1.8152478,0.14823791};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=472;
+ type="Land_fortified_nest_small";
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4517.1685,57.713264,3195.9968};
+ angles[]={6.0101767,4.8943043,0.15475304};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=473;
+ type="Land_HBarrier5";
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4512.5723,57.262905,3181.0579};
+ angles[]={0.042640556,5.038569,0.15735549};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=474;
+ type="Land_HBarrier3";
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4553.9204,56.081642,3109.78};
+ angles[]={6.107677,0,0.15605427};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=475;
+ type="Land_HBarrier_large";
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4562.6499,57.792374,3111.2246};
+ angles[]={6.0973544,2.7701542,0.16514902};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=476;
+ type="Land_HBarrier_large";
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4545.0234,55.040161,3112.1187};
+ angles[]={6.1167397,3.6604841,0.15475304};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=477;
+ type="Land_HBarrier_large";
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4413.6543,236.8425,4672.8574};
+ angles[]={6.2618566,3.5944157,0.0080009829};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=502;
+ type="Land_fortified_nest_small";
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4420.6567,236.38594,4666.7813};
+ angles[]={6.2645216,2.063791,0.0093350215};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=506;
+ type="Land_HBarrier3";
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4422.646,236.43256,4668.6567};
+ angles[]={6.2698579,3.6852789,0.0039967569};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=507;
+ type="Land_HBarrier3";
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4425.7056,236.4222,4666.8208};
+ angles[]={6.2698579,3.6786377,0.0066682254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=508;
+ type="Land_HBarrier3";
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4428.7012,236.41594,4664.9185};
+ angles[]={6.2591896,3.7297716,0.0066682254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=509;
+ type="Land_HBarrier3";
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4431.6362,236.38699,4662.897};
+ angles[]={6.2591896,3.7383778,0.0066682254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=510;
+ type="Land_HBarrier3";
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4434.5845,236.3716,4660.8574};
+ angles[]={6.259192,3.7022936,0.013332055};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=511;
+ type="Land_HBarrier3";
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4432.335,236.24519,4656.001};
+ angles[]={6.2245855,5.3601518,0.015998369};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=512;
+ type="Land_HBarrier5";
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4409.0532,236.52531,4674.8228};
+ angles[]={6.2618566,3.5295234,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=513;
+ type="Land_HBarrier5";
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4405.6992,236.40327,4672.1475};
+ angles[]={6.256525,1.9915472,0.0146689};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=514;
+ type="Land_HBarrier5";
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4403.1831,236.16043,4666.8887};
+ angles[]={6.2432065,2.0266192,0.027993103};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=515;
+ type="Land_HBarrier5";
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4400.2598,235.64951,4661.9277};
+ angles[]={6.1888008,2.1795752,0.055940546};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=516;
+ type="Land_HBarrier5";
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4396.9028,234.75677,4657.3091};
+ angles[]={6.1180367,2.1795752,0.10098731};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=517;
+ type="Land_HBarrier5";
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4393.3848,233.67387,4652.6807};
+ angles[]={6.129734,2.2709339,0.10890165};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=518;
+ type="Land_HBarrier5";
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4391.6797,232.90004,4645.4014};
+ angles[]={6.253859,0.72296512,0.021331646};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=519;
+ type="Land_HBarrier5";
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4413.6431,232.63576,4630.0698};
+ angles[]={-0,0.20009947,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=520;
+ type="Land_HBarrier5";
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4414.3657,235.13635,4634.1104};
+ angles[]={-0,3.3483984,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=521;
+ type="Land_Hlaska";
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3720.1741,405.13635,5996.3906};
+ angles[]={-0,0.86934483,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=545;
+ type="Land_Hlaska";
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4730.8638,272.25735,6766.5625};
+ angles[]={0,0.94408345,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ };
+ id=554;
+ type="Land_Mil_Guardhouse";
+ atlOffset=0.27716064;
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4726.8525,270.83932,6779.6587};
+ angles[]={6.2405448,4.1469746,6.2498641};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=570;
+ type="Land_fortified_nest_small";
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4722.8862,271.26166,6785.0605};
+ angles[]={6.2418756,1.0963244,6.253861};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=572;
+ type="Land_HBarrier_large";
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4718.1807,271.7562,6792.6826};
+ angles[]={6.2338929,1.0045708,6.253859};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=573;
+ type="Land_HBarrier_large";
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4734.1338,269.94226,6771.8975};
+ angles[]={6.2551947,0.84569645,6.2485313};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=574;
+ type="Land_HBarrier5";
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4738.2212,269.68427,6767.7456};
+ angles[]={6.2551947,0.7582432,6.2485313};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=575;
+ type="Land_HBarrier5";
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4742.6519,269.4115,6763.9731};
+ angles[]={6.259192,0.64232188,6.2418756};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=576;
+ type="Land_HBarrier5";
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4741.6001,269.80276,6760.209};
+ angles[]={0.11285231,2.4332409,6.1063848};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=577;
+ type="Land_HBarrier5";
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4737.1172,270.59354,6756.6895};
+ angles[]={6.2711854,2.5047431,6.2113128};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=578;
+ type="Land_HBarrier5";
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4732.6392,271.01239,6752.9414};
+ angles[]={0.020001993,5.6151118,6.1795578};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=579;
+ type="Land_HBarrier5";
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4727.9653,271.12085,6749.4761};
+ angles[]={0.0093286335,5.6868892,6.276526};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=580;
+ type="Land_HBarrier5";
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4722.707,271.84396,6746.5698};
+ angles[]={0.11416633,5.8387661,6.1467061};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=581;
+ type="Land_HBarrier5";
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4717.311,272.69244,6744.3574};
+ angles[]={0.089098312,5.9548392,6.1637573};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=582;
+ type="Land_HBarrier5";
+ };
+ class Item38
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4711.2056,273.44962,6743.7026};
+ angles[]={0.082477875,0.069673248,6.1703372};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=583;
+ type="Land_HBarrier5";
+ };
+ class Item39
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4700.249,274.71664,6754.0508};
+ angles[]={0.062584557,1.1898332,6.1141477};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=584;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item40
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4695.2749,274.54501,6769.1235};
+ angles[]={0.021331646,1.3003659,6.1624417};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=585;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item41
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4696.0078,274.27405,6781.2251};
+ angles[]={6.1901207,2.1961358,6.183517};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=586;
+ type="Land_HBarrier_large";
+ };
+ class Item42
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4701.1816,273.16632,6785.7656};
+ angles[]={0.037314966,4.0645189,6.0564823};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=587;
+ type="Land_HBarrier1";
+ };
+ class Item43
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4703.5791,272.66904,6787.8291};
+ angles[]={0.031988446,4.0645189,6.174284};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=588;
+ type="Land_HBarrier1";
+ };
+ class Item44
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4706.7378,272.24023,6790.438};
+ angles[]={0.031988446,4.0645189,6.174284};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=589;
+ type="Land_HBarrier1";
+ };
+ class Item45
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4709.4111,271.82352,6792.6255};
+ angles[]={0.043970551,4.0645189,6.1624417};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=590;
+ type="Land_HBarrier1";
+ };
+ class Item46
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4698.4722,276.00909,6776.855};
+ angles[]={0,4.7391973,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=591;
+ type="Land_Hlaska";
+ };
+ class Item47
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6444.1528,387.5722,6565.5381};
+ angles[]={0,0.41208968,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=615;
+ type="Land_Posed";
+ };
+ class Item48
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6459.501,386.51389,6537.686};
+ angles[]={0,1.9391305,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=616;
+ type="Land_Posed";
+ };
+ class Item49
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6433.2148,387.25015,6536.3452};
+ angles[]={0,3.9690881,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=617;
+ type="Land_Posed";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item50
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6431.9009,384.21683,6535.1455};
+ angles[]={6.187479,3.9315274,0.067896426};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=618;
+ type="Land_fort_bagfence_round";
+ };
+ class Item51
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6461.1685,383.38611,6537.0518};
+ angles[]={6.2778587,1.9601699,6.120635};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=619;
+ type="Land_fort_bagfence_round";
+ };
+ class Item52
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6444.9277,384.54276,6567.1333};
+ angles[]={0.059925474,0.52972841,6.183517};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=620;
+ type="Land_fort_bagfence_round";
+ };
+ class Item53
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6428.6621,384.54788,6543.3467};
+ angles[]={6.2073293,4.0138664,0.054613575};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=621;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item54
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6441.2012,384.38837,6534.377};
+ angles[]={6.2179422,3.3774309,0.018667053};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=622;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item55
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6450.4546,384.26169,6534.1924};
+ angles[]={6.239212,2.8869324,6.2113123};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=623;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item56
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6457.8564,383.75626,6545.2832};
+ angles[]={0.0066682254,1.2088012,6.120635};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=624;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item57
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6451.4121,384.24216,6557.0156};
+ angles[]={0.049297221,0.85094273,6.1506338};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=625;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item58
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2730.4661,277.07211,9924.1855};
+ angles[]={6.2805109,5.756073,0.0026744273};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=648;
+ type="Land_Hlaska";
+ };
+ class Item59
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2738.6248,277.14487,9889.7314};
+ angles[]={-0,2.8317549,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=649;
+ type="Land_Hlaska";
+ };
+ class Item60
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2752.5396,274.56323,9915.5947};
+ angles[]={-0,3.5137212,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=650;
+ type="Land_HBarrier3";
+ };
+ class Item61
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2755.991,274.54935,9901.0918};
+ angles[]={6.2818484,5.1231909,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=651;
+ type="Land_HBarrier3";
+ };
+ class Item62
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2749.7844,274.51324,9892.4824};
+ angles[]={-0,2.8317549,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=652;
+ type="Land_HBarrier3";
+ };
+ class Item63
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2743.4412,274.56531,9884.5703};
+ angles[]={-0,5.2493858,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=653;
+ type="Land_HBarrier3";
+ };
+ class Item64
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2723.8625,274.56573,9921.5};
+ angles[]={-0,2.0986178,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=654;
+ type="Land_HBarrier5";
+ };
+ class Item65
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4384.832,339.28848,10901.286};
+ angles[]={0.0012918708,5.6006455,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=707;
+ type="Land_fort_bagfence_round";
+ };
+ class Item66
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4386.1484,342.13364,10899.539};
+ angles[]={0.0012918708,5.6006455,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=708;
+ type="Land_Hlaska";
+ };
+ class Item67
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4646.9912,339.29355,10687.182};
+ angles[]={-0,0.27404332,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=709;
+ type="Land_fort_bagfence_round";
+ };
+ class Item68
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4646.3218,342.13635,10685.099};
+ angles[]={-0,0.27404332,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=710;
+ type="Land_Hlaska";
+ };
+ class Item69
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5098.0776,339.28635,9777.9014};
+ angles[]={0.0012918708,1.7765114,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=711;
+ type="Land_fort_bagfence_round";
+ };
+ class Item70
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5095.9541,342.12845,9778.4268};
+ angles[]={0.0012918708,1.7765114,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=712;
+ type="Land_Hlaska";
+ };
+ class Item71
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4233.3706,339.55426,10887.895};
+ angles[]={-0,2.6423378,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=713;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item72
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4263.3491,339.55426,10904.901};
+ angles[]={-0,2.6423378,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=714;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item73
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4305.3276,339.55426,10930.178};
+ angles[]={-0,2.6423378,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=715;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item74
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4153.2471,339.55426,10842.461};
+ angles[]={-0,2.6423378,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=716;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item75
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4115.1748,339.55426,10819.773};
+ angles[]={-0,2.6423378,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=717;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item76
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4762.7095,339.61734,10358.486};
+ angles[]={6.2818484,3.8128753,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=718;
+ type="Land_HBarrier5";
+ };
+ class Item77
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4784.7598,339.62891,10325.113};
+ angles[]={0.0012918708,5.7575297,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=719;
+ type="Land_HBarrier5";
+ };
+ class Item78
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4731.9253,339.63498,10347.718};
+ angles[]={-0,2.5874271,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=720;
+ type="Land_HBarrier5";
+ };
+ class Item79
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4554.0728,340.09637,10772.153};
+ angles[]={-0,4.1696587,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=721;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item80
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4561.7871,340.09637,10758.423};
+ angles[]={-0,4.2332377,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=722;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item81
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4588.3662,340.09637,10712.274};
+ angles[]={-0,4.1799488,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=723;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item82
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4585.9673,340.09348,10656.196};
+ angles[]={0.0013372133,4.2620945,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=724;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item83
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4592.8857,340.09616,10639.789};
+ angles[]={0.0013372133,4.3563161,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=725;
+ type="Base_WarfareBBarrier10xTall";
+ };
+ class Item84
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4383.4082,339.96564,10812.559};
+ angles[]={-0,2.5928171,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=728;
+ type="Land_fortified_nest_small";
+ };
+ class Item85
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4406.4136,339.96564,10762.316};
+ angles[]={-0,5.798686,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=729;
+ type="Land_fortified_nest_small";
+ };
+ class Item86
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4375.4546,339.96564,10779.928};
+ angles[]={-0,1.0585605,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=730;
+ type="Land_fortified_nest_small";
+ };
+ class Item87
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4380.8789,339.63574,10807.41};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=747;
+ type="Land_HBarrier5";
+ };
+ class Item88
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4379.7593,339.63574,10803.052};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=748;
+ type="Land_HBarrier5";
+ };
+ class Item89
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4378.626,339.63574,10798.686};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=749;
+ type="Land_HBarrier5";
+ };
+ class Item90
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4377.5273,339.63574,10794.303};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=750;
+ type="Land_HBarrier5";
+ };
+ class Item91
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4376.4019,339.63574,10789.903};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=751;
+ type="Land_HBarrier5";
+ };
+ class Item92
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4375.3032,339.63574,10785.521};
+ angles[]={-0,1.8262607,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=752;
+ type="Land_HBarrier5";
+ };
+ class Item93
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4379.731,339.63574,10776.529};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=753;
+ type="Land_HBarrier5";
+ };
+ class Item94
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4383.6221,339.63574,10774.269};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=754;
+ type="Land_HBarrier5";
+ };
+ class Item95
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4387.5166,339.63574,10771.993};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=755;
+ type="Land_HBarrier5";
+ };
+ class Item96
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4393.5303,339.63574,10768.085};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=756;
+ type="Land_HBarrier5";
+ };
+ class Item97
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4397.4595,339.63574,10765.808};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=757;
+ type="Land_HBarrier5";
+ };
+ class Item98
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4401.3794,339.63574,10763.561};
+ angles[]={-0,0.53032643,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=758;
+ type="Land_HBarrier5";
+ };
+ class Item99
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4409.7783,339.63574,10766.668};
+ angles[]={-0,5.176549,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=759;
+ type="Land_HBarrier5";
+ };
+ class Item100
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4412.957,339.63574,10773.162};
+ angles[]={-0,5.176549,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=760;
+ type="Land_HBarrier5";
+ };
+ class Item101
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4414.9702,339.63574,10777.198};
+ angles[]={-0,5.176549,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=761;
+ type="Land_HBarrier5";
+ };
+ class Item102
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4418.4722,339.63574,10783.457};
+ angles[]={-0,5.176549,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=762;
+ type="Land_HBarrier5";
+ };
+ class Item103
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4400.623,339.63574,10814.181};
+ angles[]={-0,3.0570424,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=766;
+ type="Land_HBarrier5";
+ };
+ class Item104
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4396.1294,339.63574,10813.793};
+ angles[]={-0,3.0570424,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=767;
+ type="Land_HBarrier5";
+ };
+ class Item105
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4388.9629,339.63574,10813.517};
+ angles[]={-0,3.0570424,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=768;
+ type="Land_HBarrier5";
+ };
+ class Item106
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4940.1782,339.96564,9816.3438};
+ angles[]={-0,6.2360015,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=797;
+ type="Land_fortified_nest_small";
+ };
+ class Item107
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4944.1641,339.96564,9871.458};
+ angles[]={-0,3.1586845,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=798;
+ type="Land_fortified_nest_small";
+ };
+ class Item108
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4962.8418,339.96564,9841.1299};
+ angles[]={-0,4.701745,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=799;
+ type="Land_fortified_nest_small";
+ };
+ class Item109
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4944.8716,339.63574,9819.6406};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=800;
+ type="Land_HBarrier5";
+ };
+ class Item110
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4947.9492,339.63574,9822.9248};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=801;
+ type="Land_HBarrier5";
+ };
+ class Item111
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4951.0415,339.63574,9826.208};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=802;
+ type="Land_HBarrier5";
+ };
+ class Item112
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4954.1128,339.63574,9829.5225};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=803;
+ type="Land_HBarrier5";
+ };
+ class Item113
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4957.2148,339.63574,9832.8389};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=804;
+ type="Land_HBarrier5";
+ };
+ class Item114
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4960.2852,339.63574,9836.1533};
+ angles[]={-0,5.4694448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=805;
+ type="Land_HBarrier5";
+ };
+ class Item115
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4960.7256,339.63574,9846.166};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=806;
+ type="Land_HBarrier5";
+ };
+ class Item116
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4958.4014,339.63574,9850.0195};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=807;
+ type="Land_HBarrier5";
+ };
+ class Item117
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4956.0806,339.63574,9853.8877};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=808;
+ type="Land_HBarrier5";
+ };
+ class Item118
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4952.6865,339.63574,9860.2051};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=809;
+ type="Land_HBarrier5";
+ };
+ class Item119
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4950.3369,339.63574,9864.0918};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=810;
+ type="Land_HBarrier5";
+ };
+ class Item120
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4947.98,339.63574,9867.9473};
+ angles[]={-0,4.1735106,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=811;
+ type="Land_HBarrier5";
+ };
+ class Item121
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4939.1211,339.63574,9869.2607};
+ angles[]={-0,2.5365477,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=812;
+ type="Land_HBarrier5";
+ };
+ class Item122
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4933.2114,339.63574,9865.0947};
+ angles[]={-0,2.5365477,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=813;
+ type="Land_HBarrier5";
+ };
+ class Item123
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4929.5059,339.63574,9862.5234};
+ angles[]={-0,2.5365477,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=814;
+ type="Land_HBarrier5";
+ };
+ class Item124
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4923.4258,339.63574,9858.7197};
+ angles[]={-0,2.5365477,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=815;
+ type="Land_HBarrier5";
+ };
+ class Item125
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4924.3042,339.63574,9823.1982};
+ angles[]={-0,0.41704112,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=816;
+ type="Land_HBarrier5";
+ };
+ class Item126
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4928.4307,339.63574,9821.3779};
+ angles[]={-0,0.41704112,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=817;
+ type="Land_HBarrier5";
+ };
+ class Item127
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4934.8467,339.63574,9818.1748};
+ angles[]={-0,0.41704112,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=818;
+ type="Land_HBarrier5";
+ };
+ class Item128
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4689.7539,339.29355,9908.1162};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=819;
+ type="Land_fort_bagfence_round";
+ };
+ class Item129
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4691.6758,342.13635,9909.1611};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=820;
+ type="Land_Hlaska";
+ };
+ class Item130
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4512.8926,339.29355,10202.282};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=821;
+ type="Land_fort_bagfence_round";
+ };
+ class Item131
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4514.8145,342.13635,10203.327};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=822;
+ type="Land_Hlaska";
+ };
+ class Item132
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4330.6265,339.29355,10508.775};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=823;
+ type="Land_fort_bagfence_round";
+ };
+ class Item133
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4332.5483,342.13635,10509.82};
+ angles[]={-0,4.1774974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=824;
+ type="Land_Hlaska";
+ };
+ class Item134
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4158.4463,339.29355,10794.531};
+ angles[]={-0,4.6905484,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=825;
+ type="Land_fort_bagfence_round";
+ };
+ class Item135
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4160.6338,342.13635,10794.498};
+ angles[]={-0,4.6905484,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=826;
+ type="Land_Hlaska";
+ };
+ class Item136
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4829.3213,339.29355,9634.0947};
+ angles[]={-0,3.2316043,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=827;
+ type="Land_fort_bagfence_round";
+ };
+ class Item137
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4829.5981,342.13635,9636.2646};
+ angles[]={-0,3.2316043,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=828;
+ type="Land_Hlaska";
+ };
+ class Item138
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6862.8774,393.29056,11396.245};
+ angles[]={6.2378831,0.87963605,0.039977662};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=855;
+ type="Land_fortified_nest_small";
+ };
+ class Item139
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6942.2378,391.2468,11433.233};
+ angles[]={6.2192712,4.6211081,6.2671871};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=856;
+ type="Land_fortified_nest_small";
+ };
+ class Item140
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6945.3091,390.43222,11425.195};
+ angles[]={0.065239623,1.1221336,6.1180363};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=858;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item141
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6941.7129,390.86603,11441.604};
+ angles[]={0.0732048,1.4709349,6.1271286};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=859;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item142
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6940.1821,390.03586,11451.193};
+ angles[]={0.12217305,1.4113779,5.876524};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=860;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item143
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6858.3862,392.44711,11401.776};
+ angles[]={6.2631893,4.0347605,0.050624419};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=862;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item144
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6867.6641,392.65735,11390.399};
+ angles[]={0.0811534,4.1021252,0.039977662};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=863;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item145
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8793.1768,217.1207,11639.923};
+ angles[]={0.0013372133,4.775836,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=890;
+ type="Land_Hlaska";
+ };
+ class Item146
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8801.3154,214.65508,11681.122};
+ angles[]={6.2778587,0.058210667,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=891;
+ type="Land_HBarrier5";
+ };
+ class Item147
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8818.1846,214.64252,11680.749};
+ angles[]={6.2818484,0.058210667,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=892;
+ type="Land_HBarrier5";
+ };
+ class Item148
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8810.7822,214.6478,11681.152};
+ angles[]={6.2805333,0.058210667,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=893;
+ type="Land_HBarrier5";
+ };
+ class Item149
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8895.0322,214.28397,11647.81};
+ angles[]={6.2818937,1.4159513,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=894;
+ type="Land_fort_bagfence_round";
+ };
+ class Item150
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8892.8604,217.12643,11647.552};
+ angles[]={6.2818937,1.4159513,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=895;
+ type="Land_Hlaska";
+ };
+ class Item151
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8853.6377,215.94891,11603.368};
+ angles[]={0.11285285,3.1357956,0.09966857};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=896;
+ type="Land_fort_bagfence_round";
+ };
+ class Item152
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8853.7051,218.55061,11605.555};
+ angles[]={0.11285285,3.1357956,0.09966857};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=897;
+ type="Land_Hlaska";
+ };
+ class Item153
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10296.152,361.0871,12084.59};
+ angles[]={0.1338627,5.6843939,0.18454216};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=927;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item154
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10286.912,360.85056,12078.155};
+ angles[]={0.19097878,5.6726875,0.12861934};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=928;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item155
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10313.462,360.84091,12044.045};
+ angles[]={6.2405434,2.4483395,6.1506343};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=929;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item156
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10288.377,364.8959,12028.418};
+ angles[]={6.2711854,2.6820338,6.1940913};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=930;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item157
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10325.505,363.83737,12087.808};
+ angles[]={0,0.81452769,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=932;
+ type="Land_Hlaska";
+ };
+ class Item158
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10245.77,361.11984,12024.131};
+ angles[]={0.13517575,0.7779631,0.17453292};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=933;
+ type="Land_fortified_nest_small";
+ };
+ class Item159
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10249.186,362.32996,12017.52};
+ angles[]={0.11416999,3.9472139,0.22163208};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=934;
+ type="Land_HBarrier5";
+ };
+ class Item160
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10241.152,358.94873,12027.359};
+ angles[]={0.13516936,4.023633,0.28655571};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=935;
+ type="Land_HBarrier3";
+ };
+ class Item161
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10237.478,357.32956,12031.187};
+ angles[]={0.14824155,3.9343438,0.28164026};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=936;
+ type="Land_HBarrier3";
+ };
+ class Item162
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11254.926,193.50757,12125.934};
+ angles[]={0.12992966,2.2719023,6.2299037};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=963;
+ type="Land_HBarrier5";
+ };
+ class Item163
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11258.52,192.74707,12130.432};
+ angles[]={0.11811411,2.2114458,6.2139621};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=964;
+ type="Land_HBarrier5";
+ };
+ class Item164
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11261.904,191.93513,12135.053};
+ angles[]={0.11021814,2.1964998,6.2073326};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=965;
+ type="Land_HBarrier5";
+ };
+ class Item165
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11264.973,191.18843,12139.929};
+ angles[]={0.1049474,2.0687151,6.2126365};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=966;
+ type="Land_HBarrier5";
+ };
+ class Item166
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11267.807,190.46951,12145.041};
+ angles[]={0.081154868,2.0561273,6.1980586};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=967;
+ type="Land_HBarrier5";
+ };
+ class Item167
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11274.351,189.16641,12158.133};
+ angles[]={0.0066682254,2.1009612,6.183517};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=968;
+ type="Land_HBarrier5";
+ };
+ class Item168
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11271.452,189.62575,12153.004};
+ angles[]={0.042639159,2.0966973,6.2086577};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=969;
+ type="Land_HBarrier5";
+ };
+ class Item169
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11276.841,188.98608,12172.362};
+ angles[]={6.253859,1.3769263,6.2020307};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=970;
+ type="Land_HBarrier3";
+ };
+ class Item170
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11276.393,189.39305,12185.732};
+ angles[]={6.2458706,0.6214053,6.253861};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=971;
+ type="Land_HBarrier3";
+ };
+ class Item171
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11204.428,194.68692,12160.596};
+ angles[]={0.097027354,2.1876307,6.2086577};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=972;
+ type="Land_fortified_nest_small";
+ };
+ class Item172
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11211.396,193.08119,12171.612};
+ angles[]={0.098349214,2.1876307,6.212636};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=973;
+ type="Land_fortified_nest_small";
+ };
+ class Item173
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11215.085,192.12531,12175.242};
+ angles[]={0.09966857,2.2590134,6.2113104};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=974;
+ type="Land_HBarrier5";
+ };
+ class Item174
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11218.806,191.48018,12179.74};
+ angles[]={0.087774232,2.2590134,6.2232571};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=975;
+ type="Land_HBarrier5";
+ };
+ class Item175
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11222.438,190.92662,12184.287};
+ angles[]={0.075855985,2.2590134,6.2285719};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=976;
+ type="Land_HBarrier5";
+ };
+ class Item176
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11226.146,190.48578,12188.823};
+ angles[]={0.057269081,2.2590134,6.2418756};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=977;
+ type="Land_HBarrier5";
+ };
+ class Item177
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11229.03,189.96942,12192.41};
+ angles[]={0.071874976,2.1895461,6.2113104};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=978;
+ type="Land_HBarrier3";
+ };
+ class Item178
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11236.551,189.96576,12200.88};
+ angles[]={-0,2.5438859,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=979;
+ type="Land_HBarrier5";
+ };
+ class Item179
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11241.91,189.96576,12200.521};
+ angles[]={-0,3.569155,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=980;
+ type="Land_HBarrier5";
+ };
+ class Item180
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11246.043,189.89322,12200.556};
+ angles[]={-0,2.0220394,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=981;
+ type="Land_HBarrier3";
+ };
+ class Item181
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11260.85,189.89322,12225.813};
+ angles[]={-0,2.0220394,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=984;
+ type="Land_HBarrier3";
+ };
+ class Item182
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11225.892,194.16966,12141.973};
+ angles[]={0.045302324,0.83238548,6.2086568};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=992;
+ type="Land_HBarrier5";
+ };
+ class Item183
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11221.923,194.11678,12146.436};
+ angles[]={0.082478598,0.83238548,6.2086577};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=993;
+ type="Land_HBarrier5";
+ };
+ class Item184
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11206.485,194.66534,12155.51};
+ angles[]={0.086451322,0.78151441,6.2007046};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=994;
+ type="Land_HBarrier5";
+ };
+ class Item185
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11211.292,194.59247,12151.784};
+ angles[]={0.083801404,0.50453085,6.2033577};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=995;
+ type="Land_HBarrier5";
+ };
+ class Item186
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11216.84,194.30307,12149.384};
+ angles[]={0.082477875,0.31056535,6.1927671};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=996;
+ type="Land_HBarrier5";
+ };
+ class Item187
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11281.521,192.11638,12217.849};
+ angles[]={-0,0.87657905,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1000;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
+ };
+ class Item188
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11916.212,161.5081,12713.433};
+ angles[]={6.2698507,3.4413702,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1035;
+ type="Land_Garaz_s_tankem";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="DoorStates";
+ expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "ARRAY"
+ };
+ };
+ class value
+ {
+ items=3;
+ class Item0
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=170;
+ };
+ };
+ class Item1
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ class Item2
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
};
};
- value="Male03FRE";
};
};
};
- class Attribute1
+ nAttributes=1;
+ };
+ };
+ class Item189
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11900.013,161.57489,12718.44};
+ angles[]={6.2698579,3.4413702,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1036;
+ type="Land_Garaz_s_tankem";
+ class CustomAttributes
+ {
+ class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="DoorStates";
+ expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;";
class Value
{
class data
@@ -1487,5687 +7888,6971 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "ARRAY"
+ };
+ };
+ class value
+ {
+ items=3;
+ class Item0
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=170;
+ };
+ };
+ class Item1
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ class Item2
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
};
};
- value=0.97000003;
};
};
};
- nAttributes=2;
+ nAttributes=1;
+ };
+ };
+ class Item190
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12392.072,162.03635,12645.427};
+ angles[]={0,0.32384583,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1038;
+ type="Land_Hlaska";
+ };
+ class Item191
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12478.676,159.96564,12530.037};
+ angles[]={-0,5.0012369,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1041;
+ type="Land_fortified_nest_small";
+ };
+ class Item192
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12478.837,159.62025,12535.471};
+ angles[]={-0,4.5574627,0.013327583};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1042;
+ type="Land_HBarrier5";
+ };
+ class Item193
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12475.593,159.577,12540.239};
+ angles[]={-0,3.6592658,0.013327583};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1043;
+ type="Land_HBarrier5";
+ };
+ class Item194
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12393.13,159.94046,12650.248};
+ angles[]={-0,0.38442048,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1044;
+ type="Land_HBarrier_large";
+ };
+ class Item195
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12384.554,159.94504,12650.102};
+ angles[]={0.013332055,5.9663186,6.2698536};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1045;
+ type="Land_HBarrier_large";
+ };
+ class Item196
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12399.7,159.94046,12644.729};
+ angles[]={-0,4.176064,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1046;
+ type="Land_HBarrier_large";
+ };
+ class Item197
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11883.652,162.13635,12726.522};
+ angles[]={-0,4.2624302,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1047;
+ type="Land_Hlaska";
+ };
+ class Item198
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11879.465,160.04047,12723.909};
+ angles[]={-0,4.3230047,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1048;
+ type="Land_HBarrier_large";
+ };
+ class Item199
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11885.563,160.01216,12717.877};
+ angles[]={6.2698579,3.6217172,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1049;
+ type="Land_HBarrier_large";
+ };
+ class Item200
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11878.82,160.04047,12732.466};
+ angles[]={-0,1.8314624,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1050;
+ type="Land_HBarrier_large";
+ };
+ class Item201
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11991.384,159.76564,12664.789};
+ angles[]={-0,1.046629,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1051;
+ type="Land_fortified_nest_small";
+ };
+ class Item202
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11993.902,159.36322,12661.096};
+ angles[]={-0,0.96907109,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1052;
+ type="Land_HBarrier3";
+ };
+ class Item203
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11996.91,159.36325,12657.214};
+ angles[]={-0,0.80387658,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1053;
+ type="Land_HBarrier3";
+ atlOffset=3.0517578e-005;
+ };
+ class Item204
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11979.673,159.51387,12680.857};
+ angles[]={6.2698579,0.91849428,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1054;
+ type="Land_HBarrier5";
+ };
+ class Item205
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11973.961,159.53575,12687.908};
+ angles[]={-0,0.91849428,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1055;
+ type="Land_HBarrier5";
+ };
+ class Item206
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11967.665,159.61491,12695.936};
+ angles[]={6.2698579,0.91849428,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1056;
+ type="Land_HBarrier5";
+ };
+ class Item207
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11959.422,159.63576,12702.166};
+ angles[]={-0,0.24417454,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1057;
+ type="Land_HBarrier5";
+ };
+ class Item208
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11948.27,159.54602,12704.741};
+ angles[]={-0,0.24417454,0.013327583};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1059;
+ type="Land_HBarrier5";
+ };
+ class Item209
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11937.466,159.53575,12707.28};
+ angles[]={-0,0.24417454,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1060;
+ type="Land_HBarrier5";
+ };
+ class Item210
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11928.246,159.53575,12709.736};
+ angles[]={-0,0.24417454,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1061;
+ type="Land_HBarrier5";
+ };
+ class Item211
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12030.622,159.43576,12603.983};
+ angles[]={-0,0.34596953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1062;
+ type="Land_HBarrier5";
+ };
+ class Item212
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12025.091,159.43576,12605.961};
+ angles[]={-0,0.34596953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1063;
+ type="Land_HBarrier5";
+ };
+ class Item213
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12019.577,159.43576,12607.906};
+ angles[]={-0,0.34596953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1064;
+ type="Land_HBarrier5";
+ };
+ class Item214
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12111.366,167.64949,12560.432};
+ angles[]={6.256525,3.1051457,0.027993103};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1065;
+ type="Land_Hlaska";
+ };
+ class Item215
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12112.076,165.44321,12555.547};
+ angles[]={6.256525,3.1657205,0.027993103};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1066;
+ type="Land_HBarrier_large";
+ atlOffset=-1.5258789e-005;
+ };
+ class Item216
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12120.05,165.43668,12558.708};
+ angles[]={6.256525,2.4644332,6.2299018};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1067;
+ type="Land_HBarrier_large";
+ atlOffset=-1.5258789e-005;
+ };
+ class Item217
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12103.982,165.332,12558.395};
+ angles[]={6.2618566,0.6741786,0.010664274};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1068;
+ type="Land_HBarrier_large";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item218
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12945.995,213.08315,12761.961};
+ angles[]={0,1.5849859,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1095;
+ type="Land_Posed";
+ };
+ class Item219
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12931.272,213.45921,12776.158};
+ angles[]={0,0.25998425,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1096;
+ type="Land_Posed";
+ };
+ class Item220
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12939.467,211.31015,12743.297};
+ angles[]={0,3.0292807,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1097;
+ type="Land_Posed";
+ };
+ class Item221
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12899.01,209.04926,12750.02};
+ angles[]={6.2259164,4.7195606,6.2685208};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1098;
+ type="Land_fort_bagfence_round";
+ atlOffset=3.0517578e-005;
+ };
+ class Item222
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12901.196,211.85864,12749.923};
+ angles[]={0,4.7195625,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1099;
+ type="Land_Hlaska";
+ atlOffset=1.5258789e-005;
+ };
+ class Item223
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12945.056,208.21495,12742.413};
+ angles[]={6.1141477,2.8955271,6.2778478};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1100;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item224
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12934.963,207.92288,12740.804};
+ angles[]={6.1232295,3.0593648,0.0053377044};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1101;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item225
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12945.708,210.99358,12769.357};
+ angles[]={6.2325621,0.69542474,0.02399601};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1102;
+ type="Land_HBarrier5";
+ };
+ class Item226
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12937.507,211.07709,12776.668};
+ angles[]={6.256525,0.52567977,0.022662206};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1103;
+ type="Land_HBarrier5";
+ };
+ class Item227
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12903.67,208.92349,12745.119};
+ angles[]={6.1967335,0.54293489,6.2751846};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1104;
+ type="Land_HBarrier5";
+ };
+ class Item228
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12911.094,208.6436,12742.406};
+ angles[]={6.1493244,0.249911,6.2805109};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1105;
+ type="Land_HBarrier5";
+ };
+ class Item229
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12922.171,208.35837,12740.466};
+ angles[]={6.1427827,0.21013626,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1106;
+ type="Land_HBarrier5";
+ };
+ class Item230
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12902.087,211.67055,12767.999};
+ angles[]={6.2445378,4.6692567,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1107;
+ type="Land_Mil_Guardhouse";
+ };
+ class Item231
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12909.411,210.63213,12775.54};
+ angles[]={6.2565231,2.6758797,0.0080009829};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1108;
+ type="Land_HBarrier5";
+ };
+ class Item232
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12917.638,210.81918,12778.694};
+ angles[]={6.2511969,2.9100289,0.013332055};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1109;
+ type="Land_HBarrier5";
+ };
+ class Item233
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12926.051,210.95932,12779.396};
+ angles[]={6.2525291,3.1804483,0.0146689};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1110;
+ type="Land_HBarrier5";
+ };
+ class Item234
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12900.95,29.311558,6759.2827};
+ angles[]={6.2631865,1.4703752,6.1993818};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1137;
+ type="Land_HBarrier5";
+ atlOffset=4.5776367e-005;
+ };
+ class Item235
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12904.937,28.589872,6765.3706};
+ angles[]={0.073202357,2.6731558,6.1050925};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1138;
+ type="Land_HBarrier5";
+ atlOffset=4.5776367e-005;
+ };
+ class Item236
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12914.616,29.662987,6736.0781};
+ angles[]={0.11811411,6.0775547,6.0640931};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1139;
+ type="Land_HBarrier5";
+ };
+ class Item237
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12954.905,27.629789,6712.9136};
+ angles[]={0.0066682254,6.1481247,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1140;
+ type="Land_HBarrier5";
+ };
+ class Item238
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12974.483,25.631554,6769.0591};
+ angles[]={0.0080009829,0.85293567,6.2285728};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1141;
+ type="Land_HBarrier5";
+ atlOffset=4.5776367e-005;
+ };
+ class Item239
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12980.659,25.896227,6742.3584};
+ angles[]={0.025330193,5.0023899,6.1232305};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1142;
+ type="Land_HBarrier5";
+ };
+ class Item240
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12966.794,25.584908,6782.042};
+ angles[]={0.16774182,3.266129,6.2192721};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1143;
+ type="Land_fortified_nest_small";
+ atlOffset=3.0517578e-005;
+ };
+ class Item241
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12969.636,25.427483,6778.9351};
+ angles[]={0.057271164,4.2737956,6.2285728};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1144;
+ type="Land_HBarrier3";
+ atlOffset=3.0517578e-005;
+ };
+ class Item242
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12970.941,25.547804,6775.5908};
+ angles[]={0.057271164,4.3454432,6.2285728};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1145;
+ type="Land_HBarrier3";
+ };
+ class Item243
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12953.687,21.42922,6803.5942};
+ angles[]={0.15475266,2.850986,0.016002094};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1146;
+ type="Hhedgehog_concrete";
+ };
+ class Item244
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12969.489,21.274305,6806.7637};
+ angles[]={0.09834861,3.0823147,6.2751846};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1147;
+ type="Hhedgehog_concrete";
+ atlOffset=-1.5258789e-005;
+ };
+ class Item245
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12977.612,20.990257,6802.9336};
+ angles[]={0.045302324,0.85293567,6.0426035};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1148;
+ type="Hhedgehog_concrete";
+ };
+ class Item246
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13441.196,6.9841371,6179.0088};
+ angles[]={6.2698536,1.6998786,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1175;
+ type="Land_HBarrier5";
+ };
+ class Item247
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13438.816,6.6714902,6160.2979};
+ angles[]={6.272521,1.6998786,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1177;
+ type="Land_HBarrier3";
+ };
+ class Item248
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13390.497,6.6357555,6138.5059};
+ angles[]={-0,4.7197218,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1178;
+ type="Land_HBarrier5";
+ };
+ class Item249
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13394.359,6.6357555,6135.7988};
+ angles[]={-0,3.1801803,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1179;
+ type="Land_HBarrier5";
+ };
+ class Item250
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13434.028,9.1366501,6148.5317};
+ angles[]={6.2751846,2.40258,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1180;
+ type="Land_Hlaska";
+ };
+ class Item251
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13393.328,9.1364536,6185.106};
+ angles[]={-0,5.3386474,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1181;
+ type="Land_Hlaska";
+ atlOffset=9.8705292e-005;
+ };
+ class Item252
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12198.349,27.77216,9386.8877};
+ angles[]={0.013332055,2.9127271,6.1716504};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1209;
+ type="Land_HBarrier5";
+ };
+ class Item253
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12203.941,27.109859,9388.4258};
+ angles[]={0.013332055,2.8522706,6.161129};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1210;
+ type="Land_HBarrier5";
+ };
+ class Item254
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12209.494,26.263309,9390.1787};
+ angles[]={0.025327841,2.8373246,6.1414752};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1211;
+ type="Land_HBarrier5";
+ };
+ class Item255
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12214.918,25.6859,9392.2646};
+ angles[]={0.025327841,2.7095399,6.1914439};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1212;
+ type="Land_HBarrier5";
+ };
+ class Item256
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12220.155,25.171171,9394.7275};
+ angles[]={0.021331646,2.6969521,6.1954107};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1213;
+ type="Land_HBarrier5";
+ };
+ class Item257
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12174,28.771631,9414};
+ angles[]={0.05461248,2.3822489,0.051953323};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1218;
+ type="Land_fortified_nest_small";
+ };
+ class Item258
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12185.157,27.572346,9423.459};
+ angles[]={0.077179179,2.3822489,6.2259145};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1219;
+ type="Land_fortified_nest_small";
+ };
+ class Item259
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12189.479,26.764357,9426.3066};
+ angles[]={0.059927464,2.4536316,6.2312322};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1220;
+ type="Land_HBarrier5";
+ };
+ class Item260
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12194,26.359732,9430};
+ angles[]={0.038647637,2.4536316,6.2325621};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1221;
+ type="Land_HBarrier5";
+ };
+ class Item261
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12198.442,26.002665,9433.7588};
+ angles[]={0.034652505,2.4536316,6.2378845};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1222;
+ type="Land_HBarrier5";
+ };
+ class Item262
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12202.959,25.653976,9437.4922};
+ angles[]={0.039977662,2.4536316,6.2352223};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1223;
+ type="Land_HBarrier5";
+ };
+ class Item263
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12191.509,28.41201,9391.8145};
+ angles[]={6.2631893,1.0270038,6.2060056};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1229;
+ type="Land_HBarrier5";
+ };
+ class Item264
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12188.427,28.744879,9396.7236};
+ angles[]={0.0040116427,1.0270038,6.1821971};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1230;
+ type="Land_HBarrier5";
+ };
+ class Item265
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12175.036,28.647943,9408.6113};
+ angles[]={0.051953323,0.97613263,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1231;
+ type="Land_HBarrier5";
+ };
+ class Item266
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12179.031,28.835756,9404.0273};
+ angles[]={-0,0.69914913,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1232;
+ type="Land_HBarrier5";
+ };
+ class Item267
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12184.01,28.835756,9400.5986};
+ angles[]={-0,0.50518358,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1233;
+ type="Land_HBarrier5";
+ };
+ class Item268
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12208.354,25.260267,9440.0635};
+ angles[]={0.049293593,5.9627481,6.2259154};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1245;
+ type="Land_HBarrier5";
+ };
+ class Item269
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12215.748,24.855505,9439.6016};
+ angles[]={0.058599081,3.4957616,6.2206011};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1246;
+ type="Land_HBarrier5";
+ };
+ class Item270
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12194.151,28.101444,9388.001};
+ angles[]={0.0013372133,4.0819445,6.2060056};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1247;
+ type="Land_HBarrier3";
+ };
+ class Item271
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12225.347,24.670835,9397.3447};
+ angles[]={0.021331646,5.7494397,6.2020311};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1250;
+ type="Land_HBarrier5";
+ };
+ class Item272
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12229.295,24.254585,9399.9063};
+ angles[]={0.0080009829,5.6983948,6.2020311};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1251;
+ type="Land_HBarrier3";
+ };
+ class Item273
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12232.369,26.495266,9410.5527};
+ angles[]={0.0039967569,1.5759323,6.1980586};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1252;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
+ };
+ class Item274
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11273.471,290.10223,4311.5972};
+ angles[]={0.17292584,1.1366618,5.8878255};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1268;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item275
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11276.522,288.7818,4281.2822};
+ angles[]={6.1219311,2.2093329,6.1914434};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1269;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item276
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11243.345,293.96527,4251.0815};
+ angles[]={6.207334,2.8641093,6.0768309};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1270;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item277
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11286.084,291.91653,4300.2358};
+ angles[]={0,1.1526852,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1271;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
+ };
+ class Item278
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11225.786,294.15103,4264.6729};
+ angles[]={0.093065575,4.463501,0.15995374};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1273;
+ type="Land_fort_bagfence_round";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item279
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11227.926,297.23972,4265.1338};
+ angles[]={0.093065575,4.463501,0.029324362};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1274;
+ type="Land_Hlaska";
+ };
+ class Item280
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11226.016,293.8418,4270.0825};
+ angles[]={0.11811209,4.3713942,0.18969178};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1275;
+ type="Land_HBarrier3";
+ };
+ class Item281
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11228.706,295.16092,4260.0825};
+ angles[]={0.093065575,1.3482007,0.029324362};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1276;
+ type="Land_HBarrier3";
+ };
+ class Item282
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13006.691,6.965631,9999.7041};
+ angles[]={-0,0.20238741,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1303;
+ type="Land_fortified_nest_small";
+ };
+ class Item283
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12990.159,6.8722181,10063.338};
+ angles[]={0.015994642,1.7642878,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1304;
+ type="Land_fortified_nest_small";
+ };
+ class Item284
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13016.785,7.0756311,10123.535};
+ angles[]={-0,3.4105144,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1305;
+ type="Land_fortified_nest_small";
+ };
+ class Item285
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13011.376,6.7457557,10122.614};
+ angles[]={-0,5.8542485,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1309;
+ type="Land_HBarrier5";
+ };
+ class Item286
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13006.298,6.7457557,10119.646};
+ angles[]={-0,5.6488662,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1310;
+ type="Land_HBarrier5";
+ };
+ class Item287
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13001.506,6.7178063,10115.854};
+ angles[]={-0,2.3721087,0.0079935296};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1311;
+ type="Land_HBarrier5";
+ };
+ class Item288
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12997.294,6.6843886,10111.497};
+ angles[]={-0,2.352622,0.0066592805};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1312;
+ type="Land_HBarrier5";
+ };
+ class Item289
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13051.159,6.6357555,10164.441};
+ angles[]={-0,3.3167107,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1313;
+ type="Land_HBarrier5";
+ };
+ class Item290
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13117.44,9.1264467,10354.468};
+ angles[]={-0,5.968225,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1314;
+ type="Land_Hlaska";
+ atlOffset=9.1552734e-005;
+ };
+ class Item291
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13090.577,7.0404701,10237.416};
+ angles[]={-0,3.5078275,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1315;
+ type="Land_HBarrier_large";
+ };
+ class Item292
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13099.047,7.0404701,10234.114};
+ angles[]={-0,3.5078275,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1316;
+ type="Land_HBarrier_large";
+ };
+ class Item293
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13135.425,7.048727,10222.592};
+ angles[]={0,4.1056499,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1317;
+ type="Land_HBarrier_large";
+ };
+ class Item294
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13128.013,7.0404701,10228.868};
+ angles[]={-0,3.4694688,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1318;
+ type="Land_HBarrier_large";
+ };
+ class Item295
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13103.417,6.965631,10220.587};
+ angles[]={-0,1.9187505,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1319;
+ type="Land_fortified_nest_small";
+ };
+ class Item296
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12800.474,6.5342493,9574.9609};
+ angles[]={-0,0.23141971,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1321;
+ type="Base_WarfareBBarrier10x";
+ };
+ class Item297
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12674.775,6.5403919,9600.3857};
+ angles[]={6.2711854,3.3351326,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1323;
+ type="Land_HBarrier5";
+ };
+ class Item298
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12644.222,6.6357555,9645.9834};
+ angles[]={-0,1.7507336,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1324;
+ type="Land_HBarrier5";
+ };
+ class Item299
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12762.322,6.5632186,9727.0078};
+ angles[]={-0,0.11480956,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1325;
+ type="Land_HBarrier3";
+ };
+ class Item300
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12765.925,6.5632186,9726.6387};
+ angles[]={-0,0.12292561,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1326;
+ type="Land_HBarrier3";
+ };
+ class Item301
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12849.695,6.5618477,9662.8418};
+ angles[]={0.0039967569,1.820626,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1327;
+ type="Land_HBarrier3";
+ };
+ class Item302
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12653.881,9.1363554,9686.6455};
+ angles[]={-0,4.9397187,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1328;
+ type="Land_Hlaska";
+ };
+ class Item303
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12827.609,9.1359148,9712.9844};
+ angles[]={-0,0.22517528,6.2791886};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1329;
+ type="Land_Hlaska";
+ };
+ class Item304
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12782.677,9.1363554,9582.2197};
+ angles[]={-0,3.4189594,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1330;
+ type="Land_Hlaska";
+ };
+ class Item305
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13530.19,8.6946583,6277.6807};
+ angles[]={-0,0.12588793,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1357;
+ type="Land_Mil_House";
+ };
+ class Item306
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13493.27,9.0336943,6292.4487};
+ angles[]={-0,4.4674559,6.1506343};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1358;
+ type="Land_Hlaska";
+ };
+ class Item307
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13503.88,6.1363554,6377.8618};
+ angles[]={-0,5.6306953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1359;
+ type="Land_Hlaska";
+ };
+ class Item308
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13476.714,8.0649557,6353.0796};
+ angles[]={0.0013372133,4.6961374,6.272521};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1360;
+ type="Land_Mil_Guardhouse";
+ };
+ class Item309
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13304.285,9.6029129,6123.0381};
+ angles[]={0.12468291,4.2555876,6.1193342};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1361;
+ type="Land_fortified_nest_small";
+ };
+ class Item310
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10460.446,8.4863548,2634.1726};
+ angles[]={-0,1.4767467,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1388;
+ type="Land_Hlaska";
+ };
+ class Item311
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10446.388,9.20191,2541.5396};
+ angles[]={-0,2.7452779,0.0039967569};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1389;
+ type="Land_Hlaska";
+ };
+ class Item312
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10393.354,9.0063553,2589.0273};
+ angles[]={-0,5.2313347,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1390;
+ type="Land_Hlaska";
+ };
+ class Item313
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10386.963,6.91047,2579.5181};
+ angles[]={-0,3.7799101,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1391;
+ type="Land_HBarrier_large";
+ };
+ class Item314
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10384.018,6.91047,2585.3889};
+ angles[]={-0,2.1052296,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1392;
+ type="Land_HBarrier_large";
+ };
+ class Item315
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10397.8,6.9249005,2610.6011};
+ angles[]={6.259192,2.0350883,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1393;
+ type="Land_HBarrier_large";
+ };
+ class Item316
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10402.792,6.4158607,2622.7539};
+ angles[]={0,2.0273221,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1394;
+ type="Land_HBarrier_large";
+ };
+ class Item317
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10430.945,6.39047,2641.0076};
+ angles[]={-0,2.0883663,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1395;
+ type="Land_HBarrier_large";
+ };
+ class Item318
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10419.586,6.39047,2642.8804};
+ angles[]={-0,3.6173251,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1396;
+ type="Land_HBarrier_large";
+ };
+ class Item319
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10412.723,6.7102027,2642.3979};
+ angles[]={0,5.2758861,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1397;
+ type="Land_HBarrier_large";
+ };
+ class Item320
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10349.975,6.965631,1902.8138};
+ angles[]={-0,3.1331103,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1399;
+ type="Land_fortified_nest_small";
+ };
+ class Item321
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10333.042,6.965631,1786.2886};
+ angles[]={-0,1.5927134,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1400;
+ type="Land_fortified_nest_small";
+ };
+ class Item322
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10370.083,6.5389771,1885.5475};
+ angles[]={-0,3.4537771,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1401;
+ type="Land_HBarrier5";
+ };
+ class Item323
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10377.723,6.4730787,1882.847};
+ angles[]={-0,3.5310128,6.2711854};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1402;
+ type="Land_HBarrier5";
+ };
+ class Item324
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10385.489,6.0116668,1879.3286};
+ angles[]={6.2179461,3.5827336,6.2418756};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1403;
+ type="Land_HBarrier5";
+ };
+ class Item325
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10392.818,5.0641017,1875.8671};
+ angles[]={6.2179451,3.5901191,6.1637559};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1404;
+ type="Land_HBarrier5";
+ };
+ class Item326
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10400.636,4.4204078,1872.8016};
+ angles[]={6.1362524,3.5367169,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1405;
+ type="Land_HBarrier5";
+ };
+ class Item327
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10056.928,6.965631,1855.0023};
+ angles[]={-0,2.397985,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1406;
+ type="Land_fortified_nest_small";
+ };
+ class Item328
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10055.177,6.6357555,1849.6603};
+ angles[]={-0,1.5567026,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1407;
+ type="Land_HBarrier5";
+ };
+ class Item329
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10062.517,6.6357555,1856.7489};
+ angles[]={-0,3.1173828,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1408;
+ type="Land_HBarrier5";
+ };
+ class Item330
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10166.964,6.965631,1876.8816};
+ angles[]={-0,3.4571645,0};
};
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1409;
+ type="Land_fortified_nest_small";
};
- class Item18
+ class Item331
{
dataType="Object";
class PositionInfo
{
- position[]={8421.2051,293.91937,6009.2676};
- angles[]={6.0238295,0,6.2738504};
+ position[]={10162.563,6.5632186,1876.7102};
+ angles[]={-0,3.2809694,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=41;
- type="I_G_medic_F";
- class CustomAttributes
+ id=1413;
+ type="Land_HBarrier3";
+ };
+ class Item332
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10176.947,6.6357555,1872.5134};
+ angles[]={-0,1.9411101,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1414;
+ type="Land_HBarrier5";
+ };
+ class Item333
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10175.324,6.6357555,1866.298};
+ angles[]={-0,1.6757051,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1415;
+ type="Land_HBarrier5";
+ };
+ class Item334
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10176.779,6.5632186,1861.6661};
+ angles[]={-0,4.1670456,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1416;
+ type="Land_HBarrier3";
+ };
+ class Item335
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10182.559,6.6357555,1852.8857};
+ angles[]={-0,4.7336645,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1417;
+ type="Land_HBarrier5";
+ };
+ class Item336
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10182.485,6.6357555,1839.9272};
+ angles[]={-0,4.6998258,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1418;
+ type="Land_HBarrier5";
+ };
+ class Item337
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10182.501,6.6357555,1846.5479};
+ angles[]={-0,4.6998258,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1419;
+ type="Land_HBarrier5";
+ };
+ class Item338
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10182.392,6.6357555,1831.2266};
+ angles[]={-0,4.6998258,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1420;
+ type="Land_HBarrier5";
+ };
+ class Item339
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10179.064,6.5632186,1821.0322};
+ angles[]={-0,5.6265006,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1421;
+ type="Land_HBarrier3";
+ };
+ class Item340
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10051.719,6.5632186,1797.2087};
+ angles[]={-0,4.6937981,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1423;
+ type="Land_HBarrier3";
+ };
+ class Item341
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10054.499,6.9830604,1787.1776};
+ angles[]={-0,1.5628401,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1425;
+ type="Land_fortified_nest_small";
+ };
+ class Item342
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10175.384,6.5632186,1797.9404};
+ angles[]={-0,4.6937981,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1426;
+ type="Land_HBarrier3";
+ };
+ class Item343
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10173.996,6.9852786,1786.9265};
+ angles[]={-0,4.7213931,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1427;
+ type="Land_fortified_nest_small";
+ };
+ class Item344
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6994.7822,9.1463556,2443.7568};
+ angles[]={-0,6.0705156,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1480;
+ type="Land_Hlaska";
+ };
+ class Item345
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6891.7378,9.1463556,2364.8965};
+ angles[]={-0,4.8557758,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1481;
+ type="Land_Hlaska";
+ };
+ class Item346
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7005.8823,6.6445789,2461.4226};
+ angles[]={-0,4.0544181,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1483;
+ type="Land_HBarrier5";
+ };
+ class Item347
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7029.4312,6.5632186,2436.5667};
+ angles[]={-0,0.86812711,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1484;
+ type="Land_HBarrier3";
+ };
+ class Item348
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7031.1006,6.6075935,2434.4675};
+ angles[]={-0,0.86812711,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1485;
+ type="Land_HBarrier1";
+ };
+ class Item349
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7009.5596,6.6396761,2456.6389};
+ angles[]={-0,4.0544181,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1486;
+ type="Land_HBarrier5";
+ };
+ class Item350
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7015.6143,6.6357555,2446.4167};
+ angles[]={-0,4.0544181,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1487;
+ type="Land_HBarrier5";
+ };
+ class Item351
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7019.6865,6.6357555,2441.1089};
+ angles[]={-0,4.0696974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1488;
+ type="Land_HBarrier5";
+ };
+ class Item352
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7023.854,6.6357555,2435.7456};
+ angles[]={-0,4.0696974,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1489;
+ type="Land_HBarrier5";
};
- class Item19
+ class Item353
{
dataType="Object";
class PositionInfo
{
- position[]={8427.0918,293.92734,6009.666};
- angles[]={6.0238295,0,6.2645183};
+ position[]={7027.3501,6.6357555,2430.9912};
+ angles[]={-0,4.0696974,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=43;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1490;
+ type="Land_HBarrier5";
};
- class Item20
+ class Item354
{
dataType="Object";
class PositionInfo
{
- position[]={8412.7402,293.93967,6009.3203};
- angles[]={6.0325699,0,0.0066682254};
+ position[]={6882.3423,6.5732188,2339.0088};
+ angles[]={-0,0.86812711,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=44;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1491;
+ type="Land_HBarrier3";
};
- class Item21
+ class Item355
{
dataType="Object";
class PositionInfo
{
- position[]={8415.499,294.01974,6009.4961};
- angles[]={6.0213375,0,6.2765174};
+ position[]={6884.0117,6.6175938,2336.9097};
+ angles[]={-0,0.86812711,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=45;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1492;
+ type="Land_HBarrier1";
};
- class Item22
+ class Item356
{
dataType="Object";
class PositionInfo
{
- position[]={8421.2783,294.73441,6012.3418};
- angles[]={6.0238295,0,6.2738504};
+ position[]={6880.2612,6.6457558,2333.4333};
+ angles[]={-0,4.0696974,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=46;
- type="I_G_medic_F";
- class CustomAttributes
+ id=1493;
+ type="Land_HBarrier5";
+ };
+ class Item357
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6899.6929,6.6457558,2343.6226};
+ angles[]={-0,5.0169864,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1494;
+ type="Land_HBarrier5";
};
- class Item23
+ class Item358
{
dataType="Object";
class PositionInfo
{
- position[]={8427.165,294.70389,6012.7402};
- angles[]={6.038835,0,6.2485313};
+ position[]={6897.8413,6.6430078,2337.9387};
+ angles[]={6.2818937,5.0169864,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=48;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
+ id=1495;
+ type="Land_HBarrier5";
+ };
+ class Item359
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6896.0747,6.6409888,2332.1594};
+ angles[]={-0,5.0169864,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1496;
+ type="Land_HBarrier5";
};
- class Item24
+ class Item360
{
dataType="Object";
class PositionInfo
{
- position[]={8412.8135,294.75909,6012.3945};
- angles[]={6.0213375,0,0.018670246};
+ position[]={6894.311,6.6433406,2326.3721};
+ angles[]={-0,5.0169864,6.2818937};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=49;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1497;
+ type="Land_HBarrier5";
};
- class Item25
+ class Item361
{
dataType="Object";
class PositionInfo
{
- position[]={8415.5723,294.8432,6012.5703};
- angles[]={6.0213375,0,6.2765174};
+ position[]={6889.6055,6.6357555,2281.8379};
+ angles[]={-0,4.015131,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=50;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1498;
+ type="Land_HBarrier5";
};
- class Item26
+ class Item362
{
dataType="Object";
class PositionInfo
{
- position[]={8418.3115,295.57495,6015.3281};
- angles[]={5.9566455,0,6.2738504};
+ position[]={6893.3965,6.6357555,2277.2158};
+ angles[]={0.051510688,4.015131,0.040249653};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=51;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1499;
+ type="Land_HBarrier5";
};
- class Item27
+ class Item363
{
dataType="Object";
class PositionInfo
{
- position[]={8424.1982,295.60916,6015.7266};
- angles[]={5.9602342,0,6.2485328};
+ position[]={6897.3135,6.6357555,2272.614};
+ angles[]={-0,4.015131,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=53;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
+ id=1500;
+ type="Land_HBarrier5";
+ };
+ class Item364
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6885.4067,6.6357555,2286.667};
+ angles[]={-0,4.015131,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1503;
+ type="Land_HBarrier5";
};
- class Item28
+ class Item365
{
dataType="Object";
class PositionInfo
{
- position[]={8409.8467,295.52615,6015.3809};
- angles[]={5.9602342,0,0.018667053};
+ position[]={6406.7646,6.2884912,2546.209};
+ angles[]={6.2818937,4.2945347,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=54;
- type="I_G_officer_F";
- class CustomAttributes
+ id=1530;
+ type="Land_fort_bagfence_round";
+ };
+ class Item366
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6408.7954,9.1312943,2547.0225};
+ angles[]={-0,4.2945347,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1531;
+ type="Land_Hlaska";
};
- class Item29
+ class Item367
{
dataType="Object";
class PositionInfo
{
- position[]={8412.6055,295.63647,6015.5566};
- angles[]={5.9602342,0,0.018667053};
+ position[]={6483.479,9.1463556,2722.8745};
+ angles[]={-0,5.4043713,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=55;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1533;
+ type="Land_Hlaska";
};
- class Item30
+ class Item368
{
dataType="Object";
class PositionInfo
{
- position[]={8418.1631,296.68182,6018.5928};
- angles[]={5.9566455,0,6.2738504};
+ position[]={6608.8809,6.2935462,2676.3364};
+ angles[]={-0,0.53801244,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=56;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1534;
+ type="Land_fort_bagfence_round";
};
- class Item31
+ class Item369
{
dataType="Object";
class PositionInfo
{
- position[]={8424.0498,296.70688,6018.9912};
- angles[]={5.9602342,0,6.2485328};
+ position[]={6607.6914,9.1363554,2674.5005};
+ angles[]={-0,0.53801244,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=58;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1535;
+ type="Land_Hlaska";
};
- class Item32
+ class Item370
{
dataType="Object";
class PositionInfo
{
- position[]={8409.6982,296.616,6018.6455};
- angles[]={5.9602342,0,0.018667053};
+ position[]={6569.0645,6.965631,2607.6155};
+ angles[]={-0,5.9177327,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=59;
- type="I_G_officer_F";
- class CustomAttributes
+ id=1536;
+ type="Land_fortified_nest_small";
+ };
+ class Item371
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6479.6621,7.0491209,2725.5427};
+ angles[]={-0,2.2856052,0.0039967569};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1537;
+ type="Land_HBarrier_large";
};
- class Item33
+ class Item372
{
dataType="Object";
class PositionInfo
{
- position[]={8412.457,296.73126,6018.8213};
- angles[]={5.9566455,0,0.022662206};
+ position[]={6547.0728,7.0504704,2771.5374};
+ angles[]={-0,2.2856052,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=60;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ id=1538;
+ type="Land_HBarrier_large";
+ };
+ class Item373
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6541.5264,7.0504704,2764.7385};
+ angles[]={-0,2.2856052,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1539;
+ type="Land_HBarrier_large";
};
- class Item34
+ class Item374
{
dataType="Object";
class PositionInfo
{
- position[]={8416.9766,297.61957,6021.3379};
- angles[]={5.9602346,0,6.2698579};
+ position[]={6706.8018,7.0404701,2700.2002};
+ angles[]={-0,0.78806382,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=61;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1540;
+ type="Land_HBarrier_large";
};
- class Item35
+ class Item375
{
dataType="Object";
class PositionInfo
{
- position[]={8422.8633,297.66675,6021.7363};
- angles[]={5.9602342,0,6.2485328};
+ position[]={6377.1035,7.0329728,2632.2732};
+ angles[]={6.2818484,2.2265601,0.0013372133};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=63;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1541;
+ type="Land_HBarrier_large";
};
- class Item36
+ class Item376
{
dataType="Object";
class PositionInfo
{
- position[]={8408.5117,297.51242,6021.3906};
- angles[]={5.9602342,0,0.018667053};
+ position[]={6576.5356,79.368668,3438.3232};
+ angles[]={0.16774182,0.046375513,0.033321146};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=64;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1571;
+ type="Land_fort_bagfence_round";
+ atlOffset=7.6293945e-006;
};
- class Item37
+ class Item377
{
dataType="Object";
class PositionInfo
{
- position[]={8411.2705,297.63391,6021.5664};
- angles[]={5.9566455,0,0.022662206};
+ position[]={6541.2417,79.818306,3411.6523};
+ angles[]={6.2738566,4.7000847,0.08247932};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=65;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ id=1572;
+ type="Land_fort_bagfence_round";
+ };
+ class Item378
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
+ position[]={6593.3281,79.062454,3384.0728};
+ angles[]={6.0960674,2.927762,0.0013372133};
};
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1573;
+ type="Land_fort_bagfence_round";
};
- class Item38
+ class Item379
{
dataType="Object";
class PositionInfo
{
- position[]={8409.6201,291.93143,5992.1064};
+ position[]={6584.4712,79.994675,3434.479};
+ angles[]={0.12205668,0.12871456,0.017332481};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=66;
- type="I_G_medic_F";
- class CustomAttributes
+ id=1574;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item380
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6569.1699,79.867851,3432.5935};
+ angles[]={0.12993059,5.7754645,0.043970551};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
};
+ id=1575;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Item39
+ class Item381
{
dataType="Object";
class PositionInfo
{
- position[]={8415.2295,291.93173,5992.7715};
- angles[]={0,0,0.0012918708};
+ position[]={6544.0562,79.50602,3420.5867};
+ angles[]={0.095706634,4.9523048,0.089097641};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=68;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1576;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Item40
+ class Item382
{
dataType="Object";
class PositionInfo
{
- position[]={8418.1494,291.93564,5998.6074};
- angles[]={0,0,0.0012918708};
+ position[]={6546.7729,80.047569,3404.698};
+ angles[]={6.2232571,4.0717373,0.074528553};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=69;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1577;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Item41
+ class Item383
{
dataType="Object";
class PositionInfo
{
- position[]={8418.0459,292.21866,6001.4023};
- angles[]={6.0768313,0,0.0013372133};
+ position[]={6584.6426,79.249146,3386.0264};
+ angles[]={6.0973544,3.2489762,0.010664274};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=70;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1578;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Item42
+ class Item384
{
dataType="Object";
class PositionInfo
{
- position[]={8418.0459,292.84689,6004.4033};
- angles[]={6.0768313,0,0.0013372133};
+ position[]={6601.2466,79.722008,3388.3206};
+ angles[]={6.0960674,2.9379671,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=71;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
+ id=1579;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item385
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6543.0244,82.809143,3411.7205};
+ angles[]={6.2738566,4.6790419,0.08247932};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1580;
+ type="Land_Hlaska";
};
- class Item43
+ class Item386
{
dataType="Object";
class PositionInfo
{
- position[]={8417.9424,293.3692,6006.9902};
- angles[]={6.084507,0,6.276526};
+ position[]={6576.2441,82.596817,3435.9961};
+ angles[]={0,0.083932884,0};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=72;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
+ id=1581;
+ type="Land_Hlaska";
+ };
+ class Item387
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6592.563,82.37706,3386.5701};
+ angles[]={0,2.8101196,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1582;
+ type="Land_Hlaska";
};
- class Item44
+ class Item388
{
dataType="Object";
class PositionInfo
{
- position[]={8418.2744,294.03351,6009.6162};
- angles[]={6.0213375,0,6.2765174};
+ position[]={6621.9316,81.166779,3429.2903};
+ angles[]={0.06656827,1.0521393,0.030656165};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=73;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1583;
+ type="Land_fort_bagfence_round";
+ atlOffset=1.5258789e-005;
};
- class Item45
+ class Item389
{
dataType="Object";
class PositionInfo
{
- position[]={8418.3486,294.85431,6012.6904};
- angles[]={6.0238295,0,6.2738504};
+ position[]={6622.9341,81.380562,3420.5298};
+ angles[]={0.033319358,1.1344783,6.2791886};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=74;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1584;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ atlOffset=7.6293945e-006;
};
- class Item46
+ class Item390
{
dataType="Object";
class PositionInfo
{
- position[]={8415.3818,295.72028,6015.6768};
- angles[]={5.9566455,0,6.2738504};
+ position[]={6613.1484,80.584373,3432.4434};
+ angles[]={0.08247932,0.49804258,0.025327841};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=75;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
+ id=1585;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ atlOffset=-7.6293945e-006;
+ };
+ class Item391
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6619.8101,84.054985,3428.291};
+ angles[]={0,1.0896963,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1587;
+ type="Land_Posed";
};
- class Item47
+ class Item392
{
dataType="Object";
class PositionInfo
{
- position[]={8415.2334,296.82733,6018.9414};
- angles[]={5.9566455,0,6.2738504};
+ position[]={4644.8911,9.7412405,2613.5171};
+ angles[]={0.015998369,1.544353,0.013332055};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=76;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
+ id=1614;
+ type="Land_fortified_nest_small";
+ };
+ class Item393
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4785.667,9.3357553,2604.53};
+ angles[]={-0,3.7044473,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
};
+ id=1615;
+ type="Land_HBarrier5";
};
- class Item48
+ class Item394
{
dataType="Object";
class PositionInfo
{
- position[]={8414.0459,297.73758,6021.6865};
- angles[]={5.9566455,0,0.022662206};
+ position[]={4666.6313,9.5632191,2594.3672};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=77;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ id=1616;
+ type="Land_HBarrier3";
+ };
+ class Item395
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4669.311,9.6075935,2594.2852};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
};
+ id=1617;
+ type="Land_HBarrier1";
};
- class Item49
+ class Item396
{
dataType="Object";
class PositionInfo
{
- position[]={8406.6895,291.9325,5992.4551};
- angles[]={0,0,6.2818937};
+ position[]={4646.6255,9.302927,2618.0911};
+ angles[]={0.010664274,5.1585889,0.015998369};
};
- side="Independent";
+ side="Empty";
flags=4;
class Attributes
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=78;
- type="I_G_Soldier_LAT2_F";
- class CustomAttributes
+ id=1618;
+ type="Land_HBarrier3";
+ };
+ class Item397
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
+ position[]={5165.8975,9.2935457,2302.6433};
+ angles[]={-0,2.3816562,0};
};
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1619;
+ type="Land_fort_bagfence_round";
};
- class Item50
+ class Item398
{
dataType="Object";
class PositionInfo
{
- position[]={8420.123,297.57895,6021.3428};
+ position[]={5164.4497,12.136355,2304.2834};
+ angles[]={-0,2.3816562,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=286;
- type="I_G_engineer_F";
- atlOffset=-0.00033569336;
+ id=1620;
+ type="Land_Hlaska";
};
- class Item51
+ class Item399
{
dataType="Object";
class PositionInfo
{
- position[]={8421.2002,296.67068,6018.6714};
+ position[]={4601.2227,9.8470583,2525.2415};
+ angles[]={-0,0.4908185,6.1795583};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=287;
- type="I_G_engineer_F";
- atlOffset=-0.00015258789;
+ id=1621;
+ type="Base_WarfareBBarrier10x";
};
- class Item52
+ class Item400
{
dataType="Object";
class PositionInfo
{
- position[]={8421.4307,295.64651,6015.626};
+ position[]={4627.623,9.5245161,2510.2698};
+ angles[]={6.2698579,0.4908185,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=288;
- type="I_G_engineer_F";
- atlOffset=-9.1552734e-005;
+ id=1622;
+ type="Base_WarfareBBarrier10x";
};
- class Item53
+ class Item401
{
dataType="Object";
class PositionInfo
{
- position[]={8424.2168,294.74435,6012.5439};
+ position[]={4653.7803,9.5354872,2496.0928};
+ angles[]={6.2698579,0.4908185,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=289;
- type="I_G_engineer_F";
- atlOffset=-0.0002746582;
+ id=1623;
+ type="Base_WarfareBBarrier10x";
};
- class Item54
+ class Item402
{
dataType="Object";
class PositionInfo
{
- position[]={8424.2646,293.94699,6009.5425};
+ position[]={4678.7744,9.5301132,2481.915};
+ angles[]={6.2698536,0.4908185,0.013332055};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=290;
- type="I_G_engineer_F";
- atlOffset=-0.00033569336;
+ id=1624;
+ type="Base_WarfareBBarrier10x";
};
- class Item55
+ class Item403
{
dataType="Object";
class PositionInfo
{
- position[]={8424.2559,293.32309,6007.0225};
+ position[]={5056.417,9.5542498,2278.7788};
+ angles[]={-0,0.4908185,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=291;
- type="I_G_engineer_F";
- atlOffset=-3.0517578e-005;
+ id=1625;
+ type="Base_WarfareBBarrier10x";
};
- class Item56
+ class Item404
{
dataType="Object";
class PositionInfo
{
- position[]={8424.2754,292.81985,6004.4004};
+ position[]={5095.8276,9.5542498,2254.4844};
+ angles[]={-0,0.4908185,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=292;
- type="I_G_engineer_F";
- atlOffset=3.0517578e-005;
+ id=1626;
+ type="Base_WarfareBBarrier10x";
};
- class Item57
+ class Item405
{
dataType="Object";
class PositionInfo
{
- position[]={8423.9922,292.1257,6000.9546};
+ position[]={5159.5156,9.5542498,2217.311};
+ angles[]={-0,0.4908185,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=293;
- type="I_G_engineer_F";
- atlOffset=6.1035156e-005;
+ id=1627;
+ type="Base_WarfareBBarrier10x";
};
- class Item58
+ class Item406
{
dataType="Object";
class PositionInfo
{
- position[]={8424.2373,291.94376,5998.2524};
+ position[]={4825.3857,11.951803,2558.1238};
+ angles[]={-0,0.77371669,0.039977662};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=294;
- type="I_G_engineer_F";
+ id=1628;
+ type="Land_Hlaska";
};
- class Item59
+ class Item407
{
dataType="Object";
class PositionInfo
{
- position[]={8412.1709,291.93143,5992.6846};
+ position[]={4812.7354,9.3357553,2572.1313};
+ angles[]={-0,3.7044473,0};
};
- side="Independent";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=296;
- type="I_G_engineer_F";
+ id=1629;
+ type="Land_HBarrier5";
};
- };
- class Attributes
- {
- };
- id=18;
- };
- class Item16
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
+ class Item408
{
dataType="Object";
class PositionInfo
{
- position[]={8391.5811,292.37164,6001.9639};
- angles[]={6.1703324,2.1016905,0.039982136};
+ position[]={4597.249,10.203493,2535.1716};
+ angles[]={6.2698536,4.7498384,0.0093286335};
};
- side="Independent";
- flags=6;
+ side="Empty";
+ flags=4;
class Attributes
{
- name="petros";
};
- id=80;
- type="I_G_officer_F";
- class CustomAttributes
+ id=1630;
+ type="Land_fort_bagfence_round";
+ };
+ class Item409
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4599.4307,12.812204,2535.0093};
+ angles[]={6.2698488,4.7498384,6.1624427};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1631;
+ type="Land_Hlaska";
+ };
+ class Item410
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5094.6533,12.136355,2259};
+ angles[]={-0,3.5375443,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
};
+ id=1633;
+ type="Land_Hlaska";
};
- };
- class Attributes
- {
- };
- id=79;
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8395.1602,293.3262,6001.2017};
- angles[]={6.1703324,0,0.0093350215};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=81;
- type="MapBoard_seismic_F";
- class CustomAttributes
- {
- class Attribute0
+ class Item411
{
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3633.1121,7.1652455,2251.374};
+ angles[]={0.0080009829,3.4677734,6.2352223};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=1634;
+ type="Land_fortified_nest_small";
};
- nAttributes=1;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8393.4746,297.22485,6009.7695};
- angles[]={6.206007,0,0.033321146};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=82;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
+ class Item412
{
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3627.2148,6.9879184,2251.7791};
+ angles[]={0.010664274,0,6.2791886};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=1635;
+ type="Land_HBarrier5";
};
- nAttributes=1;
- };
- };
- class Item19
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8393.8984,291.94815,5988.9043};
- angles[]={0,0,6.2818937};
- };
- name="hc_1";
- isPlayable=1;
- id=83;
- type="HeadlessClient_F";
- };
- class Item20
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8395.7451,291.94568,5987.9102};
- angles[]={0,0,6.2818937};
- };
- name="hc_2";
- isPlayable=1;
- id=84;
- type="HeadlessClient_F";
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8398.2539,293.75775,6007.1611};
- angles[]={6.1467061,1.0016968,0.033321146};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=86;
- type="Land_TentSolar_01_olive_F";
- atlOffset=3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
+ class Item413
{
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3621.1638,7.024642,2250.2412};
+ angles[]={0.012000273,2.5979474,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=1638;
+ type="Land_HBarrier5";
};
- nAttributes=1;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={-0.68359375,28.454832,1694.8362};
- angles[]={0,1.7684679,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if (!isMultiplayer) then {deleteVehicle this};";
- };
- id=87;
- type="Flag_NATO_F";
- };
- class Item23
- {
- dataType="Marker";
- position[]={-0.34570313,24.331726,1694.2678};
- name="respawn_west";
- type="flag_CTRG";
- id=88;
- };
- class Item24
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=6;
- class Item0
+ class Item414
{
dataType="Object";
class PositionInfo
{
- position[]={-7.9003906,25.464722,1696.6812};
- angles[]={0,1.7684722,0};
+ position[]={3617.4204,7.084559,2245.395};
+ angles[]={0.012000273,1.9319509,6.2805333};
};
- side="West";
- flags=7;
+ side="Empty";
+ flags=4;
class Attributes
{
- rank="SERGEANT";
- init="call{groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
- name="pvp_blue_1";
- isPlayable=1;
};
- id=90;
- type="B_recon_TL_F";
- atlOffset=1.9073486e-006;
- class CustomAttributes
+ id=1639;
+ type="Land_HBarrier5";
+ };
+ class Item415
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3568.0027,9.7463636,2188.949};
+ angles[]={6.2698536,5.1063776,0.0079935296};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
};
+ id=1640;
+ type="Land_Hlaska";
};
- class Item1
+ class Item416
{
dataType="Object";
class PositionInfo
{
- position[]={-13.785156,25.298214,1692.7612};
- angles[]={0,1.7684722,0};
+ position[]={3601.5325,7.0333071,2248.99};
+ angles[]={0.013332055,3.4923332,0.0026520467};
};
- side="West";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- skill=0.44999999;
- rank="CORPORAL";
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
- name="pvp_blue_4";
- isPlayable=1;
};
- id=91;
- type="B_recon_M_F";
- class CustomAttributes
+ id=1641;
+ type="Land_HBarrier5";
+ };
+ class Item417
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3574.4448,7.2620497,2222.188};
+ angles[]={0.010664274,1.931195,0.0066682254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1642;
+ type="Land_HBarrier5";
};
- class Item2
+ class Item418
{
dataType="Object";
class PositionInfo
{
- position[]={-11.820313,26.920073,1702.5659};
- angles[]={0,1.7684722,0};
+ position[]={3561.0325,6.9805651,2176.2124};
+ angles[]={6.2645216,1.5902679,0.0053377044};
};
- side="West";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
- name="pvp_blue_2";
- isPlayable=1;
};
- id=92;
- type="B_recon_medic_F";
- class CustomAttributes
+ id=1643;
+ type="Land_HBarrier5";
+ };
+ class Item419
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3563.4409,2.7925756,2122.1934};
+ angles[]={6.1193342,1.6322811,6.2805109};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
};
+ id=1644;
+ type="Land_HBarrier5";
};
- class Item3
+ class Item420
{
dataType="Object";
class PositionInfo
{
- position[]={-15.742188,28.301579,1708.4507};
- angles[]={0,1.7684722,0};
+ position[]={3563.0811,1.7970893,2116.0239};
+ angles[]={6.1232305,1.6023639,6.2765174};
};
- side="West";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
- name="pvp_blue_5";
- isPlayable=1;
};
- id=93;
- type="B_recon_LAT_F";
- class CustomAttributes
+ id=1645;
+ type="Land_HBarrier5";
+ };
+ class Item421
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3562.7529,0.75506699,2109.019};
+ angles[]={6.1467061,1.7665528,6.2711854};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1646;
+ type="Fort_RazorWire";
+ atlOffset=-0.17558379;
};
- class Item4
+ class Item422
{
dataType="Object";
class PositionInfo
{
- position[]={-16.351563,25.179548,1690.7456};
- angles[]={6.0913806,1.7684722,6.1752687};
+ position[]={3662.6543,6.3130093,2170.8389};
+ angles[]={6.2711854,4.9448643,6.2219291};
};
- side="West";
+ side="Empty";
flags=4;
class Attributes
{
- skill=0.44999999;
- rank="CORPORAL";
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
- name="pvp_blue_3";
- isPlayable=1;
};
- id=94;
- type="B_Patrol_Soldier_MG_F";
- class CustomAttributes
+ id=1647;
+ type="Land_HBarrier5";
+ };
+ class Item423
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male07ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
+ position[]={3628.0591,5.0830278,2133.6843};
+ angles[]={6.1624417,1.5902679,6.2418756};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1648;
+ type="Land_HBarrier5";
+ };
+ class Item424
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3628.1516,4.8413887,2127.5852};
+ angles[]={-0,1.5902679,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1649;
+ type="Land_HBarrier5";
+ };
+ class Item425
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3666.1826,6.5629473,2223.6965};
+ angles[]={6.2711854,0.29231444,6.2658563};
};
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1650;
+ type="Land_HBarrier5";
};
- class Item5
+ class Item426
{
dataType="Object";
class PositionInfo
{
- position[]={-17.499023,26.358706,1696.3081};
- angles[]={0,1.7684722,0};
+ position[]={7600.9521,217.80128,5194.7241};
+ angles[]={0,3.2333272,0};
};
- side="West";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- skill=0.40000001;
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
- name="pvp_blue_6";
- isPlayable=1;
};
- id=95;
- type="B_recon_LAT_F";
- class CustomAttributes
+ id=1677;
+ type="Land_Hlaska";
+ };
+ class Item427
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7609.2803,221.94597,5247.2959};
+ angles[]={6.2206001,0,0.065241449};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1678;
+ type="Land_HBarrier5";
};
- };
- class Attributes
- {
- };
- id=89;
- atlOffset=1.9073486e-006;
- };
- class Item25
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
+ class Item428
{
dataType="Object";
class PositionInfo
{
- position[]={2220.9971,522.74261,15365.142};
- angles[]={0,3.1888561,0};
+ position[]={7615.7666,222.33621,5247.1802};
+ angles[]={6.2113104,3.2059209,0.065239623};
};
- side="East";
- flags=7;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{groupPlayersCSAT = group this;this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];}";
- name="pvp_red_1";
- isPlayable=1;
};
- id=97;
- type="O_T_Recon_TL_F";
- class CustomAttributes
+ id=1679;
+ type="Land_HBarrier5";
+ };
+ class Item429
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7624.2842,223.03078,5246.9146};
+ angles[]={6.2658563,3.2621758,0.062584557};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
};
+ id=1680;
+ type="Land_HBarrier5";
};
- class Item1
+ class Item430
{
dataType="Object";
class PositionInfo
{
- position[]={2226.0171,523.33417,15369.421};
- angles[]={0,3.1888561,0};
+ position[]={7631.8872,223.46922,5245.396};
+ angles[]={6.2658563,3.2792654,0.059928458};
};
- side="East";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];}";
- name="pvp_red_2";
- isPlayable=1;
};
- id=98;
- type="O_T_Recon_Medic_F";
- class CustomAttributes
+ id=1681;
+ type="Land_HBarrier5";
+ };
+ class Item431
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
+ position[]={7639.6992,223.92654,5244.5791};
+ angles[]={6.2645216,3.3157179,0.059927464};
};
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1682;
+ type="Land_HBarrier5";
};
- class Item2
+ class Item432
{
dataType="Object";
class PositionInfo
{
- position[]={2216.5469,523.33881,15369.718};
- angles[]={0,3.1888561,0};
+ position[]={7646.104,224.30731,5243.2681};
+ angles[]={6.2685208,3.3418009,0.06656827};
};
- side="East";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];}";
- name="pvp_red_4";
- isPlayable=1;
};
- id=99;
- type="O_T_Recon_M_F";
- class CustomAttributes
+ id=1683;
+ type="Land_HBarrier5";
+ };
+ class Item433
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7648.106,223.92473,5237.9385};
+ angles[]={6.172967,1.7621804,0.066567369};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
};
+ id=1684;
+ type="Land_HBarrier5";
};
- class Item3
+ class Item434
{
dataType="Object";
class PositionInfo
{
- position[]={2228.7764,523.62366,15371.507};
- angles[]={0,3.1888561,0};
+ position[]={7646.7114,222.23505,5231.0293};
+ angles[]={6.037581,1.7635682,0.14954059};
};
- side="East";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];}";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=100;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
};
+ id=1685;
+ type="Land_HBarrier5";
};
- class Item4
+ class Item435
{
dataType="Object";
class PositionInfo
{
- position[]={2219.5508,522.52655,15363.618};
- angles[]={0,3.1888561,0};
+ position[]={7645.5493,220.55199,5224.6958};
+ angles[]={6.0463781,1.7501872,0.1377887};
};
- side="East";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];}";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=101;
- type="O_Soldier_AR_F";
- atlOffset=6.1035156e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01PER";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
};
+ id=1686;
+ type="Land_HBarrier5";
};
- class Item5
+ class Item436
{
dataType="Object";
class PositionInfo
{
- position[]={2220.6631,523.10614,15367.927};
- angles[]={0,3.1888561,0};
+ position[]={7644.2451,219.22148,5218.4888};
+ angles[]={6.0870738,1.7744951,0.089096971};
};
- side="East";
- flags=5;
+ side="Empty";
+ flags=4;
class Attributes
{
- init="call{this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];}";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=102;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
};
+ id=1687;
+ type="Land_HBarrier5";
};
- };
- class Attributes
- {
- };
- id=96;
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2221.8018,526.28967,15361.809};
- angles[]={6.1505861,3.1888621,0.012005239};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- init="if !(isMultiplayer) then {deleteVehicle this}";
- };
- id=103;
- type="Flag_Viper_F";
- };
- class Item27
- {
- dataType="Marker";
- position[]={2220.9854,541.18561,15365.311};
- name="respawn_east";
- type="flag_Viper";
- id=104;
- atlOffset=18.415283;
- };
- class Item28
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8405.3457,291.93286,5984.3701};
- angles[]={0,0,6.2818937};
- };
- name="pathfinding";
- id=106;
- type="Logic";
- };
- class Item29
- {
- dataType="Layer";
- name="Airports";
- class Entities
- {
- items=20;
- class Item0
- {
- dataType="Marker";
- position[]={12102.352,158.94748,12629.086};
- name="airport";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorEAST";
- a=390.76028;
- b=150;
- angle=19.882999;
- id=108;
- };
- class Item1
+ class Item437
{
- dataType="Marker";
- position[]={4720.6934,339,10249.213};
- name="airport_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorEAST";
- a=476.16949;
- b=207.12466;
- angle=59.539993;
- id=109;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7643.0176,218.16988,5212.8066};
+ angles[]={6.1141472,1.789067,0.061257254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1688;
+ type="Land_HBarrier5";
};
- class Item2
+ class Item438
{
- dataType="Marker";
- position[]={4854.8389,9,2508.3616};
- name="airport_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorEAST";
- a=249.14926;
- b=109.36142;
- angle=28.48983;
- id=110;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7640.4946,216.35217,5200.5698};
+ angles[]={6.161129,1.753653,0.039980642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1689;
+ type="Land_HBarrier5";
};
- class Item3
+ class Item439
{
- dataType="Marker";
- position[]={4747.8501,339,10323.666};
- name="airp_1_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=111;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7641.7217,217.19031,5206.7085};
+ angles[]={6.1362519,1.7908283,0.049292382};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1690;
+ type="Land_HBarrier5";
};
- class Item4
+ class Item440
{
- dataType="Marker";
- position[]={4737.979,339,10325.293};
- name="airp_1_mortar_4";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=112;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7554.6689,217.23006,5218.1069};
+ angles[]={6.0755548,1.6775827,0.061257254};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1691;
+ type="Land_HBarrier5";
};
- class Item5
+ class Item441
{
- dataType="Marker";
- position[]={4748.1665,339,10340.727};
- name="airp_1_mortar_5";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=113;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7554.5762,215.84195,5211.1235};
+ angles[]={6.0819468,1.6138502,0.046633169};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1692;
+ type="Land_HBarrier5";
};
- class Item6
+ class Item442
{
- dataType="Marker";
- position[]={4814.9512,8.8466053,2537.0022};
- name="airp_2_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=114;
- atlOffset=-9.5367432e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7562.1104,219.40152,5235.564};
+ angles[]={6.2658529,2.3414145,0.035985984};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1693;
+ type="Land_HBarrier5";
};
- class Item7
+ class Item443
{
- dataType="Marker";
- position[]={4805.0781,8.854826,2538.6292};
- name="airp_2_mortar_4";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=115;
- atlOffset=9.5367432e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7567.6221,219.66837,5238.8843};
+ angles[]={6.2631865,2.8028333,0.039980642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1694;
+ type="Land_HBarrier5";
};
- class Item8
+ class Item444
{
- dataType="Marker";
- position[]={4811.314,8.7212391,2541.7034};
- name="airp_2_mortar_5";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=116;
- atlOffset=-9.5367432e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7573.5225,219.95966,5241.04};
+ angles[]={6.2605205,2.8028333,0.042639159};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1695;
+ type="Land_HBarrier5";
};
- class Item9
+ class Item445
{
- dataType="Marker";
- position[]={12140.395,158.93355,12612.482};
- name="airp_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=117;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7579.2813,220.25616,5242.9629};
+ angles[]={6.2818484,2.8028333,0.046633169};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1696;
+ type="Land_HBarrier5";
};
- class Item10
+ class Item446
{
- dataType="Marker";
- position[]={12146.631,158.89999,12615.557};
- name="airp_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=118;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7585.8076,220.6176,5244.916};
+ angles[]={6.2685165,2.8872757,0.053282689};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1697;
+ type="Land_HBarrier5";
};
- class Item11
+ class Item447
{
- dataType="Marker";
- position[]={12150.268,158.89999,12610.855};
- name="airp_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=119;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7592.0259,220.97481,5246.4736};
+ angles[]={6.2685208,2.9661283,0.054613575};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1698;
+ type="Land_HBarrier5";
};
- class Item12
+ class Item448
{
- dataType="Marker";
- position[]={4596.8872,339,10405.643};
- name="airp_1_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=43.498734;
- b=23.140686;
- angle=237.01163;
- id=120;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7601.1411,215.23384,5190.397};
+ angles[]={6.2565274,6.2707663,0.15995561};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1700;
+ type="Land_HBarrier5";
};
- class Item13
+ class Item449
{
- dataType="Marker";
- position[]={4752.6479,339,10154.949};
- name="airp_1_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=44.02475;
- b=23.856892;
- angle=236.65263;
- id=121;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7643.2358,225.48645,5236.4341};
+ angles[]={0,0.921848,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1701;
+ type="Land_Hlaska";
};
- class Item14
+ class Item450
{
- dataType="Marker";
- position[]={4752.1079,9,2536.0999};
- name="airp_2_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=207.52591;
- id=122;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7558.3301,219.29143,5214.9561};
+ angles[]={0,4.6466947,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1702;
+ type="Land_Hlaska";
};
- class Item15
+ class Item451
{
- dataType="Marker";
- position[]={12186.6,158.98801,12641.588};
- name="airp_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=43.499001;
- b=23.141001;
- angle=200.52629;
- id=123;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6325.2705,302.03738,7667.313};
+ angles[]={0.0012918708,0,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1729;
+ type="Land_HBarrier_large";
};
- class Item16
- {
- dataType="Marker";
- position[]={12038.494,159,12696.121};
- name="airp_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=195.99693;
- id=124;
+ class Item452
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6316.3823,302.03754,7667.2012};
+ angles[]={0.0012918708,0,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1730;
+ type="Land_HBarrier_large";
};
- class Item17
+ class Item453
{
- dataType="Marker";
- position[]={4655.1528,339,10285.994};
- name="detectPlayer";
- markerType="RECTANGLE";
- type="rectangle";
- a=739.97546;
- b=253.8351;
- angle=59.967659;
- id=125;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6307.5894,302.05493,7666.98};
+ angles[]={0.0026520467,0,6.2805333};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1731;
+ type="Land_HBarrier_large";
};
- class Item18
+ class Item454
{
- dataType="Marker";
- position[]={4968.0024,8.8774185,2442.6428};
- name="detectPlayer_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=379.85837;
- b=130.2925;
- angle=29.909319;
- id=126;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6298.8311,302.0546,7667.7837};
+ angles[]={0.0026520467,3.4281583,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1732;
+ type="Land_HBarrier_large";
};
- class Item19
+ class Item455
{
- dataType="Marker";
- position[]={12111.629,158.89999,12629.395};
- name="detectPlayer_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=467.86603;
- b=197.88884;
- angle=19.954416;
- id=127;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6290.981,302.05161,7671.6533};
+ angles[]={0.0012918708,3.8127716,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1733;
+ type="Land_HBarrier_large";
};
- };
- id=107;
- atlOffset=-156.33533;
- };
- class Item30
- {
- dataType="Layer";
- name="Outposts";
- class Entities
- {
- items=32;
- class Item0
+ class Item456
{
- dataType="Marker";
- position[]={5146.9536,9,2346.1467};
- name="outpost";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=89.797859;
- b=108.29008;
- angle=210.03189;
- id=129;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6283.8457,302.04459,7676.9038};
+ angles[]={0.0012918708,3.8127716,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1734;
+ type="Land_HBarrier_large";
};
- class Item1
+ class Item457
{
- dataType="Marker";
- position[]={4541.6714,58.302071,3155.9612};
- name="outpost_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=122.74355;
- b=128.60263;
- angle=155.90392;
- id=130;
- atlOffset=3.8146973e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6276.7734,302.04047,7682.2119};
+ angles[]={-0,3.8127716,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1735;
+ type="Land_HBarrier_large";
};
- class Item2
+ class Item458
{
- dataType="Marker";
- position[]={11226.336,190.01878,12185.893};
- name="outpost_10";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=64.31974;
- b=68.95639;
- angle=297.99689;
- id=131;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6269.6865,302.03979,7687.5342};
+ angles[]={6.2791886,3.8127716,0.0026520467};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1736;
+ type="Land_HBarrier_large";
};
- class Item3
+ class Item459
{
- dataType="Marker";
- position[]={12923.396,213.40721,12766.637};
- name="outpost_11";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=63.164063;
- b=63.14502;
- id=132;
- atlOffset=3.6555481;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6262.4053,302.04034,7692.4966};
+ angles[]={6.2791886,3.8127716,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1737;
+ type="Land_HBarrier_large";
};
- class Item4
+ class Item460
{
- dataType="Marker";
- position[]={12940.665,27.022367,6770.7256};
- name="outpost_12";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=59.300125;
- b=58.015564;
- angle=170.78795;
- id=133;
- atlOffset=1.9073486e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6301.4111,304.13641,7672.4868};
+ angles[]={0,3.2215986,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1738;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
};
- class Item5
+ class Item461
{
- dataType="Marker";
- position[]={13415.155,6.3729405,6196.5908};
- name="outpost_13";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=79.427887;
- b=60.68631;
- angle=270.85022;
- id=134;
- atlOffset=1.1397004;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6232.3838,302.14276,7762.5703};
+ angles[]={0.0013372133,2.194829,0.023993526};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1739;
+ type="Land_fortified_nest_small";
};
- class Item6
+ class Item462
{
- dataType="Marker";
- position[]={13467.204,83.76133,3342.4221};
- name="outpost_14";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=89.13623;
- b=85.462082;
- angle=141.42493;
- id=135;
- atlOffset=12.116722;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6235.4375,301.74323,7765.7642};
+ angles[]={-0,2.1982358,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1740;
+ type="Land_HBarrier3";
};
- class Item7
+ class Item463
{
- dataType="Marker";
- position[]={4404.2393,235.61742,4668.4678};
- name="outpost_15";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=73.771751;
- b=104.24509;
- angle=99.916;
- id=136;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6219.1445,301.62573,7745.9185};
+ angles[]={-0,2.2133141,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1741;
+ type="Land_HBarrier5";
};
- class Item8
+ class Item464
{
- dataType="Marker";
- position[]={7561.6616,214.01544,5171.5781};
- name="outpost_16";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=55.869678;
- b=48.883904;
- angle=179.87862;
- id=137;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6220.1416,301.55322,7742.6313};
+ angles[]={-0,0.66869605,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1742;
+ type="Land_HBarrier3";
};
- class Item9
+ class Item465
{
- dataType="Marker";
- position[]={6291.5059,301.03229,7718.8447};
- name="outpost_17";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=97.076508;
- b=53.799522;
- angle=213.73801;
- id=138;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6222.6318,301.62994,7750.6455};
+ angles[]={6.2818937,2.2133141,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1743;
+ type="Land_HBarrier5";
};
- class Item10
+ class Item466
{
- dataType="Marker";
- position[]={8843.5801,213.99959,11655.313};
- name="outpost_18";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=62.089123;
- b=66.317612;
- angle=100.45999;
- id=139;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6245.2612,301.58926,7707.7876};
+ angles[]={6.2805333,0.75621825,6.2778587};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1744;
+ type="Land_HBarrier3";
};
- class Item11
+ class Item467
{
- dataType="Marker";
- position[]={12207.586,25.273645,9414.5215};
- name="outpost_19";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=70;
- b=50;
- angle=318.96811;
- id=140;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6305.4629,301.65451,7731.314};
+ angles[]={0.0053265258,3.386754,6.2525311};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1745;
+ type="Land_HBarrier5";
};
- class Item12
+ class Item468
{
- dataType="Marker";
- position[]={3701.5615,402,5978.4814};
- name="outpost_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=96.04599;
- b=86.994995;
- angle=47.747215;
- id=141;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6312.0405,301.59909,7729.5889};
+ angles[]={0.0066592805,3.386754,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1746;
+ type="Land_HBarrier5";
};
- class Item13
+ class Item469
{
- dataType="Marker";
- position[]={4958.8784,339,9856.7969};
- name="outpost_20";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=171.24644;
- b=198.93745;
- angle=239.93896;
- id=142;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6318.5068,301.58429,7727.7095};
+ angles[]={0.0066592805,3.4366643,6.276526};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1747;
+ type="Land_HBarrier5";
};
- class Item14
+ class Item470
{
- dataType="Marker";
- position[]={2732.8984,273.95001,9906.3457};
- name="outpost_21";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=55.818733;
- b=57.456215;
- angle=121.37388;
- id=143;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6325.0566,301.57312,7725.5825};
+ angles[]={6.2818484,3.4425719,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1748;
+ type="Land_HBarrier5";
};
- class Item15
+ class Item471
{
- dataType="Marker";
- position[]={4411.2671,339,10796.814};
- name="outpost_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=156.02531;
- b=203.82967;
- angle=239.93896;
- id=144;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6332.3706,301.57123,7723.2646};
+ angles[]={0.0013372133,3.4655578,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1749;
+ type="Land_HBarrier5";
};
- class Item16
+ class Item472
{
- dataType="Marker";
- position[]={6895.9199,394.51971,11440.83};
- name="outpost_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=113.01675;
- b=82.41481;
- angle=235.19092;
- id=145;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6340.3091,301.57849,7720.1353};
+ angles[]={0.0013372133,3.5604322,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1750;
+ type="Land_HBarrier5";
};
- class Item17
+ class Item473
{
- dataType="Marker";
- position[]={6434.1963,384.97241,6548.6143};
- name="outpost_5";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=45.783302;
- b=46.773125;
- angle=130.869;
- id=146;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6322.2275,304.10556,7721.0195};
+ angles[]={0.0066592805,0.69761407,6.276526};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1751;
+ type="Land_Hlaska";
+ atlOffset=0.00088500977;
};
- class Item18
+ class Item474
{
- dataType="Marker";
- position[]={4732.8467,282.15866,6760.0293};
- name="outpost_6";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=89.587685;
- b=75.625938;
- angle=48.989975;
- id=147;
- atlOffset=11.961243;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9714.75,85.749168,13556.692};
+ angles[]={0.093063653,5.8881645,0.037316564};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1804;
+ type="Land_fortified_nest_small";
+ atlOffset=0.00088500977;
};
- class Item19
+ class Item475
{
- dataType="Marker";
- position[]={6583.2305,91.891808,3424.4495};
- name="outpost_7";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=163.08447;
- b=153.32703;
- id=148;
- atlOffset=10.96357;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9702.4014,86.135902,13551.238};
+ angles[]={0.25686437,5.8668275,0.042640556};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1805;
+ type="Land_fortified_nest_small";
};
- class Item20
+ class Item476
{
- dataType="Marker";
- position[]={10256.91,360.57376,12042.713};
- name="outpost_8";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=142.01855;
- b=94.024902;
- id=149;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9613.3691,87.590599,13537.822};
+ angles[]={0.095706634,6.103961,6.2378817};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1806;
+ type="Land_fort_bagfence_corner";
};
- class Item21
+ class Item477
{
- dataType="Marker";
- position[]={11250.537,291.85916,4294.4863};
- name="outpost_9";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=78.738342;
- b=83.958069;
- angle=225.59978;
- id=150;
- atlOffset=1.2372742;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9625.6045,86.749161,13540.353};
+ angles[]={0.021328852,4.5612917,6.2099833};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1807;
+ type="Land_fort_bagfence_corner";
};
- class Item22
+ class Item478
{
- dataType="Marker";
- position[]={12211.828,24.928659,9422.4336};
- name="outp_19_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=151;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9623.3262,86.902534,13551.913};
+ angles[]={0.065241449,2.9780519,6.1349473};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1808;
+ type="Land_fort_bagfence_corner";
};
- class Item23
+ class Item479
{
- dataType="Marker";
- position[]={3701.7212,402,5966.3359};
- name="outp_2_mortar_6";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=152;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9611.5146,86.522697,13549.531};
+ angles[]={6.2578578,1.3842306,0.222901};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1809;
+ type="Land_fort_bagfence_corner";
};
- class Item24
+ class Item480
{
- dataType="Marker";
- position[]={10289.77,362.7421,12054.119};
- name="outp_8_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=153;
- atlOffset=3.0517578e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9718.5068,84.959656,13558.857};
+ angles[]={0.15865593,5.8642468,6.253859};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1824;
+ type="Land_HBarrier3";
};
- class Item25
+ class Item481
{
- dataType="Marker";
- position[]={11264.801,289.78238,4292.7129};
- name="outp_9_mortar_7";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=154;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9698.5889,86.038185,13549.498};
+ angles[]={0.26184687,5.8560553,0.037316564};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1825;
+ type="Land_HBarrier3";
};
- class Item26
+ class Item482
{
- dataType="Marker";
- position[]={11250.207,189.42242,12165.443};
- name="outp_10_vehicle_9";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=19.791;
- b=14.319;
- angle=297.01099;
- id=155;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11840.729,148.20552,12380.434};
+ angles[]={6.2352223,0.34573877,6.2498641};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1877;
+ type="Land_fortified_nest_small";
};
- class Item27
+ class Item483
{
- dataType="Marker";
- position[]={12949.435,27.026077,6745.4971};
- name="outp_12_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=16.625;
- b=5.0040002;
- angle=257.76401;
- id=156;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11814.589,149.3956,12408.646};
+ angles[]={6.2551947,1.9800146,6.272521};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1878;
+ type="Land_HBarrier5";
};
- class Item28
+ class Item484
{
- dataType="Marker";
- position[]={13418.524,5.6790943,6167.375};
- name="outp_13_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=9.691;
- b=18.506001;
- angle=180.35094;
- id=157;
- atlOffset=0.38628149;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11869.638,149.11595,12437.343};
+ angles[]={6.2751846,3.5675318,6.2791886};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1879;
+ type="Land_HBarrier5";
};
- class Item29
+ class Item485
{
- dataType="Marker";
- position[]={4420.1421,235.75182,4664.0146};
- name="outp_15_vehicle_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=12.183;
- b=5.744;
- angle=207.52591;
- id=158;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11464.142,225.63585,7583.0439};
+ angles[]={6.1784654,2.4707928,0.041311946};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1906;
+ type="Land_fortified_nest_small";
};
- class Item30
+ class Item486
{
- dataType="Marker";
- position[]={12167.934,28.432972,9392.6777};
- name="outp_19_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=12.214;
- b=20.924999;
- angle=225.60686;
- id=159;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11502.553,224.13635,7517.1865};
+ angles[]={-0,1.164358,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1907;
+ type="Land_Hlaska";
};
- class Item31
+ class Item487
{
- dataType="Marker";
- position[]={5168.9331,8.8999996,2280.2952};
- name="outp_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=20.924999;
- angle=207.52591;
- id=160;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11440.501,224.13635,7436.8486};
+ angles[]={-0,3.2725818,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1908;
+ type="Land_Hlaska";
};
- };
- id=128;
- atlOffset=-140.4162;
- };
- class Item31
- {
- dataType="Layer";
- name="Seaports";
- class Entities
- {
- items=7;
- class Item0
+ class Item488
{
- dataType="Marker";
- position[]={3615.9834,6.5153069,2177.5842};
- name="seaport";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=134.67267;
- b=91.436241;
- angle=106.133;
- id=162;
- atlOffset=0.51530695;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10265.48,168.79648,9481.7637};
+ angles[]={-0,3.2580297,6.025075};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1935;
+ type="Land_fort_bagfence_round";
+ atlOffset=-1.5258789e-005;
};
- class Item1
+ class Item489
{
- dataType="Marker";
- position[]={6953.6128,6.0085158,2349.2698};
- name="seaport_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=108.34799;
- b=77.135849;
- angle=138.239;
- id=163;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10265.813,171.5518,9483.9258};
+ angles[]={-0,3.2580297,6.025075};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1936;
+ type="Land_Hlaska";
};
- class Item2
+ class Item490
{
- dataType="Marker";
- position[]={10393.77,3.0180333,1856.4065};
- name="seaport_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=67.480957;
- b=65.192261;
- id=164;
- atlOffset=-2.3841858e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10291.307,168.30397,9542.2598};
+ angles[]={0.089099057,3.3852408,6.1959186};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1937;
+ type="Land_fortified_nest_small";
};
- class Item3
+ class Item491
{
- dataType="Marker";
- position[]={13521.688,4.4208422,6321.1982};
- name="seaport_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=70;
- b=65.142693;
- angle=96.268379;
- id=165;
- atlOffset=1.105401;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10296.357,167.20685,9537.6621};
+ angles[]={0.014664836,4.7162771,6.0870719};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1938;
+ type="Land_HBarrier5";
};
- class Item4
+ class Item492
{
- dataType="Marker";
- position[]={13049.821,6,10046.818};
- name="seaport_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=70;
- b=59.038822;
- angle=110.88124;
- id=166;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10296.318,167.28893,9531.7998};
+ angles[]={0.022662206,1.6095492,6.1012201};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1939;
+ type="Land_HBarrier5";
};
- class Item5
+ class Item493
{
- dataType="Marker";
- position[]={6926.2241,6.0100002,2334.342};
- name="seap_1_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=27.023001;
- b=10.466;
- angle=142.308;
- id=167;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10288.541,168.29051,9529.8555};
+ angles[]={6.2432079,3.2358336,6.2605233};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1941;
+ type="Land_HBarrier3";
};
- class Item6
+ class Item494
{
- dataType="Marker";
- position[]={10402.896,6.0287113,1889.8625};
- name="seap_2_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=32.455002;
- b=12.286;
- angle=179.12996;
- id=168;
- atlOffset=0.17263985;
- };
- };
- id=161;
- atlOffset=-108.57768;
- };
- class Item32
- {
- dataType="Layer";
- name="Factories";
- class Entities
- {
- items=6;
- class Item0
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10293.149,167.83969,9530.0234};
+ angles[]={0.022662206,3.1874845,6.1012201};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1942;
+ type="Land_HBarrier3";
+ };
+ class Item495
{
- dataType="Marker";
- position[]={4167.9268,324.01276,8940.1621};
- name="factory";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorOrange";
- a=108.2471;
- b=107.57551;
- angle=188.34593;
- id=170;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10243.113,170.92178,9526.3779};
+ angles[]={6.2219281,1.2874576,6.1506338};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1943;
+ type="Land_HBarrier5";
};
- class Item1
+ class Item496
{
- dataType="Marker";
- position[]={10427.699,6,2582.3557};
- name="factory_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorOrange";
- a=68.609634;
- b=66.307854;
- angle=205.30093;
- id=171;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={10263.846,168.92891,9549.4648};
+ angles[]={0.058599081,2.1469412,6.1637573};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1944;
+ type="Land_HBarrier5";
};
- class Item2
+ class Item497
{
- dataType="Marker";
- position[]={12863.394,6.0100002,9952.457};
- name="factory_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorOrange";
- a=84.660927;
- b=51.169899;
- angle=100.412;
- id=172;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9669.8359,299.63272,8852.8994};
+ angles[]={6.2818484,0.7778427,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1971;
+ type="Land_HBarrier5";
};
- class Item3
+ class Item498
{
- dataType="Marker";
- position[]={13078.606,6,7089.6807};
- name="factory_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorOrange";
- a=102.92614;
- b=57.434551;
- angle=73.819817;
- id=173;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9673.1162,299.96313,8848.7197};
+ angles[]={-0,0.73517907,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1972;
+ type="Land_fortified_nest_small";
};
- class Item4
+ class Item499
{
- dataType="Marker";
- position[]={6498.6709,6,2618.3831};
- name="factory_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorOrange";
- a=120;
- b=90;
- angle=130.13901;
- id=174;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9676.8711,299.57321,8846.208};
+ angles[]={-0,0.76314491,0.0053265258};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1973;
+ type="Land_HBarrier3";
};
- class Item5
+ class Item500
{
- dataType="Marker";
- position[]={4195.2241,324.00638,8954.3301};
- name="fact_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=13.231;
- b=9.4980001;
- angle=281.59299;
- id=175;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9681.2871,299.57306,8835.1299};
+ angles[]={0.0012918708,0.76314491,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1974;
+ type="Land_HBarrier3";
};
- };
- id=169;
- atlOffset=-167.30002;
- };
- class Item33
- {
- dataType="Layer";
- name="Resources";
- class Entities
- {
- items=11;
- class Item0
+ class Item501
{
- dataType="Marker";
- position[]={10063.746,6,1840.0598};
- name="resource";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=90;
- b=50;
- id=177;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9721.8809,299.63559,8857.6016};
+ angles[]={0.0013372133,2.4065683,6.2778587};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1975;
+ type="Land_HBarrier5";
};
- class Item1
+ class Item502
{
- dataType="Marker";
- position[]={11470.279,221,7511.1475};
- name="resource_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=80;
- b=50;
- angle=97.399902;
- id=178;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9717.3174,299.59998,8852.9766};
+ angles[]={6.2738504,5.493669,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1976;
+ type="Land_HBarrier5";
};
- class Item2
+ class Item503
{
- dataType="Marker";
- position[]={9700.9609,298.99774,8919.1992};
- name="resource_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=70;
- b=50;
- angle=104.40878;
- id=179;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9712.5361,299.61734,8848.6494};
+ angles[]={6.2631836,2.4065683,6.2445393};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1977;
+ type="Land_HBarrier5";
};
- class Item3
+ class Item504
{
- dataType="Marker";
- position[]={10266.223,168.30716,9522.5977};
- name="resource_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=184.80492;
- id=180;
- atlOffset=-1.5258789e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9707.8271,299.56445,8844.3955};
+ angles[]={6.276526,2.4065683,6.2711854};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1978;
+ type="Land_HBarrier5";
};
- class Item4
+ class Item505
{
- dataType="Marker";
- position[]={11845.648,148.39217,12407.859};
- name="resource_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=200.38896;
- id=181;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9704.2002,299.44894,8840.8428};
+ angles[]={6.2405448,2.4065683,6.2751846};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1979;
+ type="Land_HBarrier3";
};
- class Item5
+ class Item506
{
- dataType="Marker";
- position[]={12761.286,6,9655.832};
- name="resource_5";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=110;
- b=70;
- angle=191.55794;
- id=182;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9669.0889,299.6163,8884.7236};
+ angles[]={6.2818484,4.673667,0.0026520467};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1980;
+ type="Land_HBarrier5";
};
- class Item6
+ class Item507
{
- dataType="Marker";
- position[]={13273.874,10.050711,6096.3906};
- name="resource_6";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=68.961441;
- b=65.203957;
- angle=58.644993;
- id=183;
- atlOffset=2.1007109;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9668.4668,299.62195,8891.1904};
+ angles[]={6.2818484,1.4775822,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1981;
+ type="Land_HBarrier5";
};
- class Item7
+ class Item508
{
- dataType="Marker";
- position[]={6240.0684,5.4899998,2209.1487};
- name="resource_7";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=149.799;
- id=184;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9668.2139,299.63721,8897.6338};
+ angles[]={6.2791886,4.673667,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1982;
+ type="Land_HBarrier5";
};
- class Item8
+ class Item509
{
- dataType="Marker";
- position[]={9673.2148,83.649841,13557.9};
- name="resource_8";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=133.86571;
- b=128.34068;
- angle=147.22701;
- id=185;
- atlOffset=-7.6293945e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9667.9697,299.6637,8903.9756};
+ angles[]={6.2765174,4.673667,6.2791886};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1983;
+ type="Land_HBarrier5";
};
- class Item9
+ class Item510
{
- dataType="Marker";
- position[]={13141.45,6.099978,10301.939};
- name="resource_9";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=80;
- b=47.947792;
- angle=289.01877;
- id=186;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9667.6816,299.70892,8910.6719};
+ angles[]={6.2751918,4.673667,6.2711902};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1984;
+ type="Land_HBarrier5";
};
- class Item10
+ class Item511
{
- dataType="Marker";
- position[]={9996.3848,6,1843.7249};
- name="reso_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=13.939;
- b=12.332;
- angle=180.841;
- id=187;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9757.1211,299.65765,8896.9316};
+ angles[]={6.2751918,4.7919397,0.0093350215};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1985;
+ type="Land_HBarrier5";
};
- };
- id=176;
- atlOffset=-274.14001;
- };
- class Item34
- {
- dataType="Layer";
- name="Roadblocks";
- class Entities
- {
- items=41;
- class Item0
+ class Item512
{
- dataType="Marker";
- position[]={12851.53,5.7780962,8707.0234};
- name="control";
- markerType="RECTANGLE";
- type="rectangle";
- a=99.020477;
- b=118.70475;
- angle=159.709;
- id=189;
- atlOffset=4.7683716e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9756.4502,299.69623,8902.708};
+ angles[]={6.2818484,4.4814515,0.0093350215};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1986;
+ type="Land_HBarrier5";
};
- class Item1
+ class Item513
{
- dataType="Marker";
- position[]={11891.242,59.393539,9018.1992};
- name="control_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=169.17923;
- b=179.54099;
- angle=159.709;
- id=190;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9756.5918,299.40906,8925.3271};
+ angles[]={-0,1.0213208,0.015994642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1987;
+ type="Land_fort_bagfence_round";
+ atlOffset=3.0517578e-005;
};
- class Item2
+ class Item514
{
- dataType="Marker";
- position[]={3643.8657,8.4812126,2524.2688};
- name="control_10";
- markerType="RECTANGLE";
- type="rectangle";
- a=108.25488;
- b=100.38329;
- angle=159.709;
- id=191;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9754.6875,302.22141,8924.2529};
+ angles[]={-0,1.0213208,0.015994642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1988;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
};
- class Item3
+ class Item515
{
- dataType="Marker";
- position[]={2661.8818,221.81776,5584.0586};
- name="control_11";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=192;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9707.5186,299.29019,8952.0947};
+ angles[]={-0,0.023568129,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1989;
+ type="Land_fort_bagfence_round";
};
- class Item4
+ class Item516
{
- dataType="Marker";
- position[]={3131.043,298.27231,8072.9395};
- name="control_12";
- markerType="RECTANGLE";
- type="rectangle";
- a=157.0043;
- b=161.89716;
- angle=159.709;
- id=193;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9707.3887,302.13315,8949.9121};
+ angles[]={-0,0.023568129,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1990;
+ type="Land_Hlaska";
};
- class Item5
+ class Item517
{
- dataType="Marker";
- position[]={5058.8164,341.59491,8636.5176};
- name="control_13";
- markerType="RECTANGLE";
- type="rectangle";
- a=135.16505;
- b=145.20442;
- angle=159.709;
- id=194;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9717.6143,299.63574,8951.4531};
+ angles[]={-0,3.175863,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1992;
+ type="Land_HBarrier5";
};
- class Item6
+ class Item518
{
- dataType="Marker";
- position[]={4806.3179,302.03329,7175.0723};
- name="control_14";
- markerType="RECTANGLE";
- type="rectangle";
- a=188.29962;
- b=158.81369;
- angle=159.709;
- id=195;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9712.5371,299.55853,8951.4238};
+ angles[]={6.2818484,3.175863,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1993;
+ type="Land_HBarrier3";
};
- class Item7
+ class Item519
{
- dataType="Marker";
- position[]={9467.1348,195.4184,4417.4492};
- name="control_15";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=196;
- atlOffset=1.5258789e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9701.3086,299.63574,8951.4717};
+ angles[]={-0,6.275496,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1994;
+ type="Land_HBarrier5";
};
- class Item8
+ class Item520
{
- dataType="Marker";
- position[]={8477.1621,133.17473,4912.418};
- name="control_16";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=197;
- atlOffset=1.5258789e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9695.582,299.63318,8950.0332};
+ angles[]={-0,2.721462,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1995;
+ type="Land_HBarrier5";
};
- class Item9
+ class Item521
{
- dataType="Marker";
- position[]={10919.66,224.47362,3935.6731};
- name="control_17";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=198;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9750.7432,299.65768,8929.5586};
+ angles[]={-0,3.8380558,0.015994642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1997;
+ type="Land_HBarrier5";
+ atlOffset=3.0517578e-005;
+ };
+ class Item522
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9745.5293,299.63507,8933.4355};
+ angles[]={6.2818484,0.64197111,0.0026744273};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1998;
+ type="Land_HBarrier5";
};
- class Item10
+ class Item523
{
- dataType="Marker";
- position[]={12501.518,6.1132569,3547.6497};
- name="control_18";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=199;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9740.5801,299.63254,8937.5693};
+ angles[]={6.2818937,3.8380558,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1999;
+ type="Land_HBarrier5";
+ atlOffset=3.0517578e-005;
};
- class Item11
+ class Item524
{
- dataType="Marker";
- position[]={13005.651,129.98528,4887.4531};
- name="control_19";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=200;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9735.7139,299.63577,8941.6416};
+ angles[]={-0,3.8380558,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2000;
+ type="Land_HBarrier5";
+ atlOffset=3.0517578e-005;
};
- class Item12
+ class Item525
{
- dataType="Marker";
- position[]={10899.516,233.37639,11626.758};
- name="control_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=201;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9731.6914,299.56326,8944.7402};
+ angles[]={-0,3.8380558,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2001;
+ type="Land_HBarrier3";
+ atlOffset=3.0517578e-005;
};
- class Item13
+ class Item526
{
- dataType="Marker";
- position[]={11972.107,105.97029,5060.4219};
- name="control_20";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=202;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9758.2354,299.67264,8920.1563};
+ angles[]={-0,4.5595479,6.2551966};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2002;
+ type="Land_HBarrier3";
};
- class Item14
+ class Item527
{
- dataType="Marker";
- position[]={7139.9355,262.07141,7219.3457};
- name="control_21";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=203;
- atlOffset=3.0517578e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4182.8755,325.03763,8900.1504};
+ angles[]={-0,3.1698303,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2029;
+ type="Land_HBarrier_large";
};
- class Item15
+ class Item528
{
- dataType="Marker";
- position[]={10985.543,207.72282,6140.9482};
- name="control_22";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=204;
- atlOffset=1.5258789e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4195.0903,325.04047,8900.0469};
+ angles[]={-0,3.0951686,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2030;
+ type="Land_HBarrier_large";
};
- class Item16
+ class Item529
{
- dataType="Marker";
- position[]={5835.1855,278.83075,10067.477};
- name="control_23";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=205;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4186.4263,324.56323,8897.1191};
+ angles[]={-0,1.5487305,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2031;
+ type="Land_HBarrier3";
};
- class Item17
+ class Item530
{
- dataType="Marker";
- position[]={9101.5723,253.17198,6775.7813};
- name="control_24";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=206;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4191.6504,324.56323,8896.7295};
+ angles[]={-0,1.5487305,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2032;
+ type="Land_HBarrier3";
};
- class Item18
+ class Item531
{
- dataType="Marker";
- position[]={10052.648,260.34589,8856.0137};
- name="control_25";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=207;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4182.9829,327.13367,8904.1211};
+ angles[]={-0,3.1293139,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2033;
+ type="Land_Hlaska";
};
- class Item19
+ class Item532
{
- dataType="Marker";
- position[]={8065.5791,441.66965,7813.6689};
- name="control_26";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=208;
- atlOffset=-3.0517578e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4131.5068,327.14761,8952.4033};
+ angles[]={0.0066682254,4.8520918,6.2791886};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2034;
+ type="Land_Hlaska";
};
- class Item20
+ class Item533
{
- dataType="Marker";
- position[]={5347.1948,250.92462,4647.4434};
- name="control_27";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=209;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4219.2192,327.25815,8981.9072};
+ angles[]={6.2671871,0.76421714,6.2645183};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2035;
+ type="Land_Hlaska";
+ atlOffset=3.0517578e-005;
};
- class Item21
+ class Item534
{
- dataType="Marker";
- position[]={4520.5503,335.79895,9706.2949};
- name="control_28";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=210;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4227.2944,325.23914,8987.9199};
+ angles[]={6.2445412,0.37734652,6.2551904};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2036;
+ type="Land_HBarrier_large";
};
- class Item22
+ class Item535
{
- dataType="Marker";
- position[]={4533.4927,289.48022,6429.9932};
- name="control_29";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=211;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4219.0039,325.62195,8990.8682};
+ angles[]={6.2298994,0.30447334,6.2378845};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2037;
+ type="Land_HBarrier_large";
};
- class Item23
+ class Item536
{
- dataType="Marker";
- position[]={10425.707,173.82129,9168.6016};
- name="control_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=212;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4155.0493,329.40549,8999.4355};
+ angles[]={6.0999293,0.012774208,6.2738566};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2038;
+ type="Land_HBarrier_large";
};
- class Item24
+ class Item537
{
- dataType="Marker";
- position[]={2778.6851,261.99036,9456.5996};
- name="control_30";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=213;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4215.1025,324.62726,8938.7568};
+ angles[]={0.0013372133,1.6566722,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2039;
+ type="Land_HBarrier5";
};
- class Item25
+ class Item538
{
- dataType="Marker";
- position[]={1760.2637,200.965,6940.0439};
- name="control_31";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=214;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13146.057,9.1363554,7009.8984};
+ angles[]={-0,2.8677561,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2066;
+ type="Land_Hlaska";
};
- class Item26
+ class Item539
{
- dataType="Marker";
- position[]={3076.3208,244.13062,5512.3672};
- name="control_32";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=215;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13127.543,6.5975933,7001.3457};
+ angles[]={-0,1.2837533,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2067;
+ type="Land_HBarrier1";
};
- class Item27
+ class Item540
{
- dataType="Marker";
- position[]={8881.3867,102.41238,3229.7874};
- name="control_33";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=216;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13048.788,6.6209102,7045.5161};
+ angles[]={-0,4.4762754,0.0039967569};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2068;
+ type="Land_HBarrier5";
};
- class Item28
+ class Item541
{
- dataType="Marker";
- position[]={11758.613,203.53822,7391.4678};
- name="control_34";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=217;
- atlOffset=-1.5258789e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13051.59,6.6206141,7037.0532};
+ angles[]={6.2818484,4.466022,0.0013372133};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2069;
+ type="Land_HBarrier5";
};
- class Item29
+ class Item542
{
- dataType="Marker";
- position[]={10170.854,193.59335,11181.021};
- name="control_35";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=218;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13035.175,6.6357555,7097.9385};
+ angles[]={-0,5.4002666,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2070;
+ type="Land_HBarrier5";
};
- class Item30
+ class Item543
{
- dataType="Marker";
- position[]={11275.719,196.14674,10898.697};
- name="control_36";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=219;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13063.634,6.633934,7023.7559};
+ angles[]={-0,2.8658741,0.0012918708};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2071;
+ type="Land_HBarrier5";
};
- class Item31
+ class Item544
{
- dataType="Marker";
- position[]={12190.561,125.33263,11607.223};
- name="control_37";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=220;
- atlOffset=-7.6293945e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13083.154,6.6257553,7012.4258};
+ angles[]={-0,4.0424895,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2072;
+ type="Land_HBarrier5";
};
- class Item32
+ class Item545
{
- dataType="Marker";
- position[]={10650.623,262.1048,12416.02};
- name="control_38";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=221;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13046.948,6.5500975,7051.7031};
+ angles[]={6.2778587,4.462081,0.0039967569};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2073;
+ type="Land_HBarrier3";
};
- class Item33
+ class Item546
{
- dataType="Marker";
- position[]={13463.735,27.579247,11533.928};
- name="control_39";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=222;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13054.265,6.5445929,7027.4551};
+ angles[]={-0,4.4781523,0.0026520467};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2074;
+ type="Land_HBarrier3";
};
- class Item34
+ class Item547
{
- dataType="Marker";
- position[]={13120.329,6.117837,7321.6221};
- name="control_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=124.43841;
- b=120.9002;
- angle=159.709;
- id=223;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13070.122,6.5632186,7021.7939};
+ angles[]={-0,3.8384953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2075;
+ type="Land_HBarrier3";
};
- class Item35
+ class Item548
{
- dataType="Marker";
- position[]={6577.0186,265.08475,4409.0498};
- name="control_40";
- markerType="RECTANGLE";
- type="rectangle";
- a=300;
- b=300;
- id=224;
- atlOffset=3.0517578e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13115.641,9.1363554,7184.3652};
+ angles[]={-0,1.2678591,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2076;
+ type="Land_Hlaska";
};
- class Item36
+ class Item549
{
- dataType="Marker";
- position[]={13387.333,5.6839952,5494.8584};
- name="control_5";
- markerType="RECTANGLE";
- type="rectangle";
- a=170.06819;
- b=156.81378;
- angle=159.709;
- id=225;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={13039.591,9.1363554,7092.1206};
+ angles[]={-0,4.7877316,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2077;
+ type="Land_Hlaska";
};
- class Item37
+ class Item550
{
- dataType="Marker";
- position[]={11680.646,6.2326393,3414.2063};
- name="control_6";
- markerType="RECTANGLE";
- type="rectangle";
- a=155.98209;
- b=137.75055;
- angle=159.709;
- id=226;
- atlOffset=0.58462381;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6260.145,9.1286173,2228.3484};
+ angles[]={6.2805333,0.16172606,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2104;
+ type="Land_Hlaska";
+ atlOffset=-4.7683716e-007;
};
- class Item38
+ class Item551
{
- dataType="Marker";
- position[]={10212.076,58.016323,4034.5266};
- name="control_7";
- markerType="RECTANGLE";
- type="rectangle";
- a=122.87683;
- b=111.55153;
- angle=159.709;
- id=227;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6289.6069,8.1547222,2179.8818};
+ angles[]={6.2485328,1.4086109,6.200706};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2105;
+ type="Land_Hlaska";
+ atlOffset=-4.7683716e-007;
};
- class Item39
+ class Item552
{
- dataType="Marker";
- position[]={9435.4766,5.9109788,2049.0403};
- name="control_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=20;
- b=20;
- angle=159.709;
- id=228;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6198.8892,9.1311684,2190.1914};
+ angles[]={-0,5.3700085,6.2818937};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2106;
+ type="Land_Hlaska";
+ atlOffset=-4.7683716e-007;
};
- class Item40
+ class Item553
{
- dataType="Marker";
- position[]={6295.6943,27.816875,3371.0422};
- name="control_9";
- markerType="RECTANGLE";
- type="rectangle";
- a=108.98723;
- b=105.96222;
- angle=159.709;
- id=229;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8141.1299,470.62955,9170.0107};
+ angles[]={0.0080009829,0.28433129,0.0026744273};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2119;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- };
- id=188;
- atlOffset=15.737294;
- };
- class Item35
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={2732.5439,279.27542,9907.0645};
- };
- areaSize[]={8.9569092,0,7.2392578};
- flags=1;
- id=230;
- type="ModuleHideTerrainObjects_F";
- atlOffset=5.3254089;
- class CustomAttributes
- {
- class Attribute0
+ class Item554
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8158.7207,470.72467,9153.4375};
+ angles[]={0.0093286335,1.0844978,6.2778587};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
};
+ id=2138;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Attribute1
+ class Item555
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8167.7866,470.79944,9133.6797};
+ angles[]={0.0013372133,1.744573,6.2751846};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=2139;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9618.4336,86.676628,13544.852};
- angles[]={0.021331646,6.093493,6.2405448};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=231;
- type="Land_HelipadSquare_F";
- atlOffset=7.6293945e-006;
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12191.613,27.385157,9409.6543};
- angles[]={0.077179179,4.1988201,6.187479};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=232;
- type="Land_HelipadSquare_F";
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6599.4893,81.440643,3414.6682};
- angles[]={0.027993103,3.1187696,6.2805109};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=233;
- type="Land_HelipadSquare_F";
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5099.8477,9,2336.4397};
- angles[]={0,2.0886309,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=234;
- type="Land_HelipadSquare_F";
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4702.9673,8.9938231,2572.9631};
- angles[]={0.013327583,3.6829305,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=235;
- type="Land_HelipadSquare_F";
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4795.2324,9,2522.426};
- angles[]={0,3.6794586,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=236;
- type="Land_HelipadSquare_F";
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6251.6782,301.20001,7740.3652};
- angles[]={0,5.3228745,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=237;
- type="Land_HelipadSquare_F";
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={6882.5854,393.92322,11437.193};
- angles[]={6.2791886,1.4099587,0.051951028};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=238;
- type="Land_HelipadSquare_F";
- };
- class Item44
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={6880.5571,396.70984,11446.891};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=239;
- type="ModuleHideTerrainObjects_F";
- atlOffset=2.8699036;
- class CustomAttributes
- {
- class Attribute0
+ class Item556
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8160.6216,470.75461,9111.0605};
+ angles[]={6.272521,2.4522111,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2140;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item557
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8139.8633,470.45093,9103.5908};
+ angles[]={6.2551947,3.1744809,0.021328852};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
};
+ id=2141;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Attribute1
+ class Item558
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8120.3228,469.98929,9113.7598};
+ angles[]={6.2458706,3.8417838,0.058599081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=2142;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={6886.6914,394.27179,11427.021};
- angles[]={6.2738566,0,0.046629332};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=240;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.20065308;
- class CustomAttributes
- {
- class Attribute0
+ class Item559
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8106.354,469.77237,9132.4746};
+ angles[]={6.2565274,4.5629859,0.061255306};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
};
+ id=2143;
+ type="CUP_Winter_obj_fort_rampart_ep1";
};
- class Attribute1
+ class Item560
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8105.7549,470.03854,9148.2744};
+ angles[]={6.2711854,4.97997,0.051955618};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
};
+ id=2144;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item561
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8118.9736,470.48761,9163.6797};
+ angles[]={0.010664274,5.5416899,0.016002094};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2145;
+ type="CUP_Winter_obj_fort_rampart_ep1";
+ };
+ class Item562
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8121.2642,473.06604,9114.4863};
+ angles[]={0,3.8649094,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2146;
+ type="Land_Hlaska";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item563
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8140.4878,473.63574,9168.3857};
+ angles[]={0,0.34976399,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2147;
+ type="Land_Hlaska";
+ };
+ class Item564
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8159.9844,473.77573,9112.1143};
+ angles[]={6.272521,2.5369129,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2148;
+ type="Land_Posed";
+ atlOffset=-3.0517578e-005;
+ };
+ class Item565
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8119.3638,473.67569,9163.2178};
+ angles[]={0,5.6812038,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2149;
+ type="Land_Posed";
+ atlOffset=9.1552734e-005;
};
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4773.1392,339,10121.203};
- angles[]={0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=241;
- type="Land_HelipadSquare_F";
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4793.6182,339,10086.4};
- angles[]={0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=242;
- type="Land_HelipadSquare_F";
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4816.1475,339,10048.58};
- angles[]={0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=243;
- type="Land_HelipadSquare_F";
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4841.5283,339,10005.342};
- angles[]={0,1.0440426,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
};
- id=244;
- type="Land_HelipadSquare_F";
+ id=406;
+ atlOffset=-0.16647339;
};
- class Item50
+ class Item57
{
dataType="Layer";
- name="Roads";
+ name="Assets Resource-Factory";
class Entities
{
- items=39;
+ items=23;
class Item0
{
- dataType="Marker";
- position[]={258.75781,5.3926063,1621.6721};
- name="road";
- type="hd_arrow";
- angle=88.853943;
- id=246;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11207.309,193.27252,12170.938};
+ angles[]={0.098349214,2.2268865,6.212636};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=998;
+ type="CUP_Winter_obj_snowman";
};
class Item1
{
- dataType="Marker";
- position[]={939.98047,5.7140574,2028.0432};
- name="road_1";
- type="hd_arrow";
- angle=30.963726;
- id=247;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11202.95,194.22675,12164.772};
+ angles[]={0.097027354,2.2268865,6.2086577};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=999;
+ type="CUP_Winter_obj_snowman";
};
class Item2
{
- dataType="Marker";
- position[]={3195.126,290.02942,8138.8281};
- name="road_10";
- type="hd_arrow";
- angle=37.844521;
- id=248;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11246.57,190.19368,12208.623};
+ angles[]={-0,2.2268865,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1001;
+ type="CUP_Winter_obj_snowman";
};
class Item3
{
- dataType="Marker";
- position[]={2198.1602,483.38065,15010.172};
- name="road_11";
- type="hd_arrow";
- angle=181.73544;
- id=249;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11247.372,190.19368,12209.735};
+ angles[]={-0,5.3613849,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1002;
+ type="CUP_Winter_obj_snowman";
};
class Item4
{
- dataType="Marker";
- position[]={1401.8379,410.38309,14148.377};
- name="road_12";
- type="hd_arrow";
- angle=240.74304;
- id=250;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11252.53,194.88167,12226.907};
+ angles[]={-0,2.9285779,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1003;
+ type="CUP_Winter_obj_snowman";
};
class Item5
{
- dataType="Marker";
- position[]={608.39648,374.31506,13813.139};
- name="road_13";
- type="hd_arrow";
- angle=143.13023;
- id=251;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11230.978,190.28845,12199.597};
+ angles[]={6.282495,0.7866714,6.2822719};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1004;
+ type="CUP_Winter_obj_snowman";
};
class Item6
{
- dataType="Marker";
- position[]={1703.3027,285.4559,12665.393};
- name="road_14";
- type="hd_arrow";
- angle=153.32985;
- id=252;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11230.221,190.28848,12198.604};
+ angles[]={6.282495,3.8191438,6.2822719};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1005;
+ type="CUP_Winter_obj_snowman";
};
class Item7
{
- dataType="Marker";
- position[]={2122.1333,252.91904,11369.201};
- name="road_15";
- type="hd_arrow";
- angle=152.50713;
- id=253;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11228.75,190.28844,12196.534};
+ angles[]={6.282495,2.2887125,6.2822719};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1006;
+ type="CUP_Winter_obj_snowman";
};
class Item8
{
- dataType="Marker";
- position[]={2394.8418,273.40381,10390.951};
- name="road_16";
- type="hd_arrow";
- angle=138.85368;
- id=254;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9658.1943,86.386429,13533.556};
+ angles[]={-0,2.7645442,6.2671871};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1810;
+ type="Land_Ind_TankSmall2";
};
class Item9
{
- dataType="Marker";
- position[]={4460.9517,323.60736,8903.8262};
- name="road_17";
- type="hd_arrow";
- angle=173.95586;
- id=255;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9659.3672,86.370636,13530.446};
+ angles[]={0.015998369,2.7645442,6.2511969};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1811;
+ type="Land_Ind_TankSmall2";
};
class Item10
{
- dataType="Marker";
- position[]={5525.1934,335.09396,8358.7793};
- name="road_18";
- type="hd_arrow";
- angle=130.01761;
- id=256;
- atlOffset=-3.0517578e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9660.541,86.357544,13527.511};
+ angles[]={-0,2.7645442,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1812;
+ type="Land_Ind_TankSmall2";
};
class Item11
{
- dataType="Marker";
- position[]={6894.7017,289.23312,7629.5029};
- name="road_19";
- type="hd_arrow";
- angle=64.816978;
- id=257;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9579.9385,88.458595,13531.824};
+ angles[]={0.071875811,4.4197793,6.2551923};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1813;
+ type="CUP_Winter_obj_Timbers";
};
class Item12
{
- dataType="Marker";
- position[]={1599.0391,7.3636932,2241.4651};
- name="road_2";
- type="hd_arrow";
- angle=103.3924;
- id=258;
- atlOffset=4.7683716e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9581.2324,88.561928,13527.954};
+ angles[]={0.0039967569,4.4197793,6.2551923};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1814;
+ type="CUP_Winter_obj_Timbers";
};
class Item13
{
- dataType="Marker";
- position[]={5533.6025,5.8000002,2072.2424};
- name="road_20";
- type="hd_arrow";
- angle=66.925438;
- id=259;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9582.3613,88.541588,13524.422};
+ angles[]={-0,1.2905657,6.259192};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1815;
+ type="CUP_Winter_obj_Timbers";
};
class Item14
{
- dataType="Marker";
- position[]={6643.1299,6.0199733,2932.0647};
- name="road_21";
- type="hd_arrow";
- angle=60.499027;
- id=260;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9583.3164,88.564743,13520.578};
+ angles[]={0.02399601,4.4197793,6.2591896};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1816;
+ type="CUP_Winter_obj_Timbers";
};
class Item15
{
- dataType="Marker";
- position[]={8412.9844,5.9926867,2937.6458};
- name="road_22";
- type="hd_arrow";
- angle=150.56462;
- id=261;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9574.7422,88.658264,13526.421};
+ angles[]={-0,2.83266,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1817;
+ type="CUP_Winter_obj_Timbers";
};
class Item16
{
- dataType="Marker";
- position[]={9978.7402,6,2060.5686};
- name="road_23";
- type="hd_arrow";
- angle=62.230412;
- id=262;
- };
- class Item17
- {
- dataType="Marker";
- position[]={7092.5903,255.46463,6494.5791};
- name="road_24";
- type="hd_arrow";
- angle=162.60255;
- id=263;
- atlOffset=-1.5258789e-005;
- };
- class Item18
- {
- dataType="Marker";
- position[]={7521.1133,210.95322,5021.1514};
- name="road_25";
- type="hd_arrow";
- angle=144.19211;
- id=264;
- };
- class Item19
- {
- dataType="Marker";
- position[]={9039.5059,114.36784,4930.0723};
- name="road_26";
- type="hd_arrow";
- angle=88.853943;
- id=265;
- };
- class Item20
- {
- dataType="Marker";
- position[]={10161.783,69.648354,4084.9456};
- name="road_27";
- type="hd_arrow";
- angle=139.01399;
- id=266;
- atlOffset=7.6293945e-006;
- };
- class Item21
- {
- dataType="Marker";
- position[]={11236.777,5.5819979,3253.592};
- name="road_28";
- type="hd_arrow";
- angle=63.165874;
- id=267;
- };
- class Item22
- {
- dataType="Marker";
- position[]={13271.282,5.4664192,4017.9758};
- name="road_29";
- type="hd_arrow";
- angle=33.934391;
- id=268;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9577.7393,88.658264,13516.153};
+ angles[]={-0,6.0217323,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1818;
+ type="CUP_Winter_obj_Timbers";
};
- class Item23
+ class Item17
{
- dataType="Marker";
- position[]={3345.3438,5.6424031,2305.5725};
- name="road_3";
- type="hd_arrow";
- angle=43.965599;
- id=269;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9586.0811,89.081268,13510.733};
+ angles[]={6.2698488,1.2878926,6.1637564};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1819;
+ type="US_WarfareBContructionSite_Base_EP1";
};
- class Item24
+ class Item18
{
- dataType="Marker";
- position[]={13415.19,5.700428,5928.9102};
- name="road_30";
- type="hd_arrow";
- angle=8.5305576;
- id=270;
- atlOffset=-4.7683716e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9588.3467,88.781578,13506.221};
+ angles[]={0.012000273,1.0668645,6.1637568};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1820;
+ type="TK_WarfareBContructionSite_Base_EP1";
};
- class Item25
+ class Item19
{
- dataType="Marker";
- position[]={13045.874,5.7399998,7839.1289};
- name="road_31";
- type="hd_arrow";
- angle=357.37994;
- id=271;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9654.1826,87.831787,13522.076};
+ angles[]={-0,5.938621,6.2299027};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1821;
+ type="Land_Repair_center";
};
- class Item26
+ class Item20
{
- dataType="Marker";
- position[]={11176.471,197.8457,12130.416};
- name="road_32";
- type="hd_arrow";
- angle=210.06854;
- id=272;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9639.8525,87.978241,13503.406};
+ angles[]={0.0026520467,2.7037597,6.2778587};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1822;
+ type="Land_Fuel_tank_stairs";
};
- class Item27
+ class Item21
{
- dataType="Marker";
- position[]={10815.955,169.99748,11012.666};
- name="road_33";
- type="hd_arrow";
- angle=196.04909;
- id=273;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9630.7803,87.346504,13499.312};
+ angles[]={0.039979152,2.7037597,0.042640556};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1823;
+ type="Land_Fuel_tank_big";
};
- class Item28
+ class Item22
{
- dataType="Marker";
- position[]={10475.117,114.87349,10001.184};
- name="road_34";
- type="hd_arrow";
- angle=182.63902;
- id=274;
- atlOffset=-7.6293945e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8137.5386,476.93848,9138.9053};
+ angles[]={0.0053265258,0,6.2805333};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=2137;
+ type="Land_Vysilac_FM";
};
- class Item29
+ };
+ id=446;
+ atlOffset=142.30196;
+ };
+ class Item58
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4408.4434,235.24799,4650.9087};
+ };
+ areaSize[]={11.825195,0,10.748535};
+ flags=1;
+ id=501;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=1.2302246;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={10389.922,164.66653,9223.8594};
- name="road_35";
- type="hd_arrow";
- angle=152.52263;
- id=275;
- atlOffset=-1.5258789e-005;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item30
+ class Attribute1
{
- dataType="Marker";
- position[]={9664.2656,294.87292,8797.0625};
- name="road_36";
- type="hd_arrow";
- angle=279.66013;
- id=276;
- atlOffset=3.0517578e-005;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item31
+ nAttributes=2;
+ };
+ };
+ class Item59
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={4711.3184,270.84879,6786.415};
+ angles[]={0,5.6903358,0};
+ };
+ areaSize[]={11.366741,0,5.1338015};
+ areaIsRectangle=1;
+ flags=1;
+ id=571;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-0.31121826;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={11262.475,101.16262,9364.0625};
- name="road_37";
- type="hd_arrow";
- angle=75.367722;
- id=277;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item32
+ class Attribute1
{
- dataType="Marker";
- position[]={12241.701,18.434669,9483.4121};
- name="road_38";
- type="hd_arrow";
- angle=45.44635;
- id=278;
- atlOffset=0.0031681061;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item33
+ nAttributes=2;
+ };
+ };
+ class Item60
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2738.8826,274.71429,9924.2666};
+ angles[]={-0,3.6672072,0.0066592805};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=657;
+ type="Fort_RazorWire";
+ };
+ class Item61
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6949.7778,390.40884,11434.301};
+ };
+ areaSize[]={5,0,11.008301};
+ flags=1;
+ id=857;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=2.4249268;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={4090.7046,6.0571809,2612.6409};
- name="road_4";
- type="hd_arrow";
- angle=101.1778;
- id=279;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item34
+ class Attribute1
{
- dataType="Marker";
- position[]={2662.4365,121.88425,2974.97};
- name="road_5";
- type="hd_arrow";
- angle=4.8738437;
- id=280;
- atlOffset=-7.6293945e-006;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item35
+ nAttributes=2;
+ };
+ };
+ class Item62
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={6940.6182,391.04169,11454.242};
+ };
+ areaSize[]={3.2272949,0,3.9308519};
+ flags=1;
+ id=861;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=1.1322327;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={1957.3721,140.92625,3838.8928};
- name="road_6";
- type="hd_arrow";
- angle=292.26508;
- id=281;
- atlOffset=1.5258789e-005;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=4;
+ };
+ };
};
- class Item36
+ class Attribute1
{
- dataType="Marker";
- position[]={2059.29,200.68654,4674.54};
- name="road_7";
- type="hd_arrow";
- angle=43.505791;
- id=282;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item37
+ nAttributes=2;
+ };
+ };
+ class Item63
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8832.8262,232.75604,11617.233};
+ angles[]={0.0080009829,0.16858441,6.2818484};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=898;
+ type="76n6ClamShell";
+ };
+ class Item64
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11237.94,190,12203.883};
+ angles[]={-0,2.1201372,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=985;
+ type="Sign_DangerMines_ACR";
+ };
+ class Item65
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11240.435,190,12207.024};
+ angles[]={-0,2.4397206,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=991;
+ type="Sign_DangerMines_ACR";
+ };
+ class Item66
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={12222.043,24.496088,9404.7461};
+ angles[]={0.0066682254,0.40281636,6.200707};
+ };
+ areaSize[]={8.4046211,0,0.96533203};
+ flags=1;
+ id=1249;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.24967575;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={2683.7129,231.66516,5758.6367};
- name="road_8";
- type="hd_arrow";
- angle=9.0245171;
- id=283;
- atlOffset=-1.5258789e-005;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item38
+ class Attribute1
{
- dataType="Marker";
- position[]={2721.7295,362.41428,6705.0127};
- name="road_9";
- type="hd_arrow";
- angle=355.36441;
- id=284;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
+ nAttributes=2;
};
- id=245;
- atlOffset=29.722382;
};
- class Item51
+ class Item67
{
dataType="Object";
class PositionInfo
{
- position[]={8393.4121,293.78738,6006.0942};
- angles[]={6.1703324,0,0.0093375118};
+ position[]={12160.599,29.414997,9405.7334};
+ angles[]={0.053283807,3.9839635,6.2299018};
};
side="Empty";
flags=4;
class Attributes
{
- name="boxX";
};
- id=297;
- type="B_supplyCrate_F";
- class CustomAttributes
+ id=1264;
+ type="Sign_Stop";
+ };
+ class Item68
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12154.664,29.367001,9412.4238};
+ angles[]={0.053282689,3.9839635,6.2325621};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1265;
+ type="Sign_Stop";
+ };
+ class Item69
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12219.881,22.952749,9455.5635};
+ angles[]={0.14693315,0.97752666,6.161129};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1266;
+ type="Sign_Stop";
+ };
+ class Item70
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12214.695,22.718178,9462.5195};
+ angles[]={0.12074303,3.9839635,6.1519442};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1267;
+ type="Sign_Stop";
+ };
+ class Item71
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12992.67,6.4208422,10001.1};
+ angles[]={0.049293593,0,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1306;
+ type="Sign_Stop";
+ atlOffset=-2.5749207e-005;
+ };
+ class Item72
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12985.184,6.5877032,10054.242};
+ angles[]={-0,5.013525,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="ammoBox";
- expression="[_this,_value] call bis_fnc_initAmmoBox;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
- };
- };
- };
- nAttributes=1;
};
+ id=1307;
+ type="Sign_Stop";
+ atlOffset=-2.5749207e-005;
};
- class Item52
+ class Item73
{
dataType="Object";
class PositionInfo
{
- position[]={8393.2393,292.79132,5994.1274};
- angles[]={6.251193,0,6.2818413};
+ position[]={13029.718,6.6977034,10120.962};
+ angles[]={-0,3.418848,0};
};
side="Empty";
flags=4;
class Attributes
{
- name="vehicleBox";
};
- id=298;
- type="Box_East_AmmoVeh_F";
+ id=1308;
+ type="Sign_Stop";
+ atlOffset=-2.5749207e-005;
};
- class Item53
+ class Item74
{
dataType="Logic";
class PositionInfo
{
- position[]={8397.085,293.97952,6012.793};
+ position[]={12729.358,5.9899998,9661.7881};
};
- id=299;
- type="ModuleCurator_F";
- atlOffset=3.0517578e-005;
+ areaSize[]={17.246094,0,17.001465};
+ flags=1;
+ id=1320;
+ type="ModuleHideTerrainObjects_F";
class CustomAttributes
{
class Attribute0
{
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
class Value
{
class data
@@ -7176,17 +14861,17 @@ class Mission
{
type[]=
{
- "STRING"
+ "SCALAR"
};
};
- value="#adminLogged";
+ value=15;
};
};
};
class Attribute1
{
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
class Value
{
class data
@@ -7195,17 +14880,35 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "BOOL"
};
};
value=0;
};
};
};
- class Attribute2
+ nAttributes=2;
+ };
+ };
+ class Item75
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={10350.723,6.0271225,1903.8257};
+ angles[]={-0,3.1676364,6.2711854};
+ };
+ areaSize[]={5,0,7.8092041};
+ flags=1;
+ id=1398;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.035801888;
+ class CustomAttributes
+ {
+ class Attribute0
{
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
class Value
{
class data
@@ -7214,17 +14917,17 @@ class Mission
{
type[]=
{
- "STRING"
+ "SCALAR"
};
};
- value="";
+ value=15;
};
};
};
- class Attribute3
+ class Attribute1
{
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
class Value
{
class data
@@ -7233,47 +14936,26 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "BOOL"
};
};
- value=2;
+ value=0;
};
};
};
- nAttributes=4;
- };
- };
- class Item54
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8392.6963,293.96817,6016.8472};
- };
- name="HC_commanderX";
- id=300;
- type="HighCommand";
- };
- class Item55
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8393.5986,293.52765,6013.332};
+ nAttributes=2;
};
- id=301;
- type="HighCommandSubordinate";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -7287,7 +14969,7 @@ class Mission
class Item1
{
linkID=1;
- item0=19;
+ item0=303;
item1=300;
class CustomData
{
@@ -7297,7 +14979,7 @@ class Mission
class Item2
{
linkID=2;
- item0=20;
+ item0=304;
item1=300;
class CustomData
{
@@ -7307,7 +14989,7 @@ class Mission
class Item3
{
linkID=3;
- item0=21;
+ item0=305;
item1=300;
class CustomData
{
@@ -7317,7 +14999,7 @@ class Mission
class Item4
{
linkID=4;
- item0=26;
+ item0=306;
item1=300;
class CustomData
{
@@ -7327,7 +15009,7 @@ class Mission
class Item5
{
linkID=5;
- item0=39;
+ item0=307;
item1=300;
class CustomData
{
@@ -7337,7 +15019,7 @@ class Mission
class Item6
{
linkID=6;
- item0=40;
+ item0=308;
item1=300;
class CustomData
{
@@ -7347,7 +15029,7 @@ class Mission
class Item7
{
linkID=7;
- item0=45;
+ item0=309;
item1=300;
class CustomData
{
@@ -7357,7 +15039,7 @@ class Mission
class Item8
{
linkID=8;
- item0=50;
+ item0=310;
item1=300;
class CustomData
{
@@ -7367,7 +15049,7 @@ class Mission
class Item9
{
linkID=9;
- item0=55;
+ item0=311;
item1=300;
class CustomData
{
@@ -7377,7 +15059,7 @@ class Mission
class Item10
{
linkID=10;
- item0=60;
+ item0=312;
item1=300;
class CustomData
{
@@ -7387,7 +15069,7 @@ class Mission
class Item11
{
linkID=11;
- item0=65;
+ item0=313;
item1=300;
class CustomData
{
@@ -7397,7 +15079,7 @@ class Mission
class Item12
{
linkID=12;
- item0=22;
+ item0=314;
item1=300;
class CustomData
{
@@ -7407,7 +15089,7 @@ class Mission
class Item13
{
linkID=13;
- item0=27;
+ item0=315;
item1=300;
class CustomData
{
@@ -7417,7 +15099,7 @@ class Mission
class Item14
{
linkID=14;
- item0=31;
+ item0=316;
item1=300;
class CustomData
{
@@ -7427,7 +15109,7 @@ class Mission
class Item15
{
linkID=15;
- item0=35;
+ item0=317;
item1=300;
class CustomData
{
@@ -7437,7 +15119,7 @@ class Mission
class Item16
{
linkID=16;
- item0=41;
+ item0=318;
item1=300;
class CustomData
{
@@ -7447,7 +15129,7 @@ class Mission
class Item17
{
linkID=17;
- item0=46;
+ item0=319;
item1=300;
class CustomData
{
@@ -7457,7 +15139,7 @@ class Mission
class Item18
{
linkID=18;
- item0=51;
+ item0=320;
item1=300;
class CustomData
{
@@ -7467,7 +15149,7 @@ class Mission
class Item19
{
linkID=19;
- item0=56;
+ item0=321;
item1=300;
class CustomData
{
@@ -7477,7 +15159,7 @@ class Mission
class Item20
{
linkID=20;
- item0=61;
+ item0=322;
item1=300;
class CustomData
{
@@ -7487,7 +15169,7 @@ class Mission
class Item21
{
linkID=21;
- item0=66;
+ item0=323;
item1=300;
class CustomData
{
@@ -7497,7 +15179,7 @@ class Mission
class Item22
{
linkID=22;
- item0=24;
+ item0=324;
item1=300;
class CustomData
{
@@ -7507,7 +15189,7 @@ class Mission
class Item23
{
linkID=23;
- item0=29;
+ item0=325;
item1=300;
class CustomData
{
@@ -7517,7 +15199,7 @@ class Mission
class Item24
{
linkID=24;
- item0=33;
+ item0=326;
item1=300;
class CustomData
{
@@ -7527,7 +15209,7 @@ class Mission
class Item25
{
linkID=25;
- item0=37;
+ item0=327;
item1=300;
class CustomData
{
@@ -7537,7 +15219,7 @@ class Mission
class Item26
{
linkID=26;
- item0=43;
+ item0=328;
item1=300;
class CustomData
{
@@ -7547,7 +15229,7 @@ class Mission
class Item27
{
linkID=27;
- item0=48;
+ item0=329;
item1=300;
class CustomData
{
@@ -7557,7 +15239,7 @@ class Mission
class Item28
{
linkID=28;
- item0=53;
+ item0=330;
item1=300;
class CustomData
{
@@ -7567,7 +15249,7 @@ class Mission
class Item29
{
linkID=29;
- item0=58;
+ item0=331;
item1=300;
class CustomData
{
@@ -7577,7 +15259,7 @@ class Mission
class Item30
{
linkID=30;
- item0=63;
+ item0=332;
item1=300;
class CustomData
{
@@ -7587,7 +15269,7 @@ class Mission
class Item31
{
linkID=31;
- item0=68;
+ item0=333;
item1=300;
class CustomData
{
@@ -7597,7 +15279,7 @@ class Mission
class Item32
{
linkID=32;
- item0=25;
+ item0=334;
item1=300;
class CustomData
{
@@ -7607,7 +15289,7 @@ class Mission
class Item33
{
linkID=33;
- item0=30;
+ item0=335;
item1=300;
class CustomData
{
@@ -7617,7 +15299,7 @@ class Mission
class Item34
{
linkID=34;
- item0=34;
+ item0=336;
item1=300;
class CustomData
{
@@ -7627,7 +15309,7 @@ class Mission
class Item35
{
linkID=35;
- item0=38;
+ item0=337;
item1=300;
class CustomData
{
@@ -7637,7 +15319,7 @@ class Mission
class Item36
{
linkID=36;
- item0=44;
+ item0=338;
item1=300;
class CustomData
{
@@ -7647,7 +15329,7 @@ class Mission
class Item37
{
linkID=37;
- item0=49;
+ item0=339;
item1=300;
class CustomData
{
@@ -7657,227 +15339,7 @@ class Mission
class Item38
{
linkID=38;
- item0=54;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=59;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=64;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=69;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=70;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=71;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=72;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=73;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=74;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=75;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=76;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=77;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=78;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=286;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=287;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=288;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=289;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=290;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=291;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=292;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=293;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=294;
- item1=300;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=296;
+ item0=340;
item1=300;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm b/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm
index 58bba73b78..964cf66136 100755
--- a/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm
+++ b/Map-Templates/Antistasi-Kunduz.Kunduz/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1026;
class ItemIDProvider
{
- nextID=1349;
+ nextID=1390;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=76;
+ nextID=98;
};
class Camera
{
- pos[]={1100.3102,365.37076,1605.1041};
- dir[]={0.64004093,-0.43384323,-0.63414103};
- up[]={0.30819207,0.90098763,-0.30535144};
- aside[]={-0.7038281,2.0611333e-007,-0.71037447};
+ pos[]={3934.9272,36.820293,4589.2261};
+ dir[]={-0.57010537,-0.57413942,0.58772248};
+ up[]={-0.39980498,0.81871247,0.41216198};
+ aside[]={0.71781546,-5.1133975e-007,0.69629622};
};
};
binarizationWanted=0;
@@ -32,7 +32,6 @@ addons[]=
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F",
"A3_Characters_F",
- "A3_Weapons_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Mil_Flags",
"A3_Characters_F_Patrol",
@@ -65,19 +64,18 @@ addons[]=
"A3_Structures_F_Heli_Civ_Constructions",
"A3_Structures_F_Heli_Furniture",
"A3_Structures_F_EPA_Civ_Constructions",
- "A3_Structures_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Heli_Ind_Machines",
- "A3_Props_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Enoch_Military_Radar",
"A3_Ui_F",
"A3_Ui_F_Exp",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
class List
{
- items=21;
+ items=19;
class Item0
{
className="A3_Weapons_F";
@@ -198,27 +196,13 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item17
- {
- className="A3_Structures_F_Orange";
- name="Arma 3 Orange - Buildings and Structures";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item18
- {
- className="A3_Props_F_Orange";
- name="Arma 3 Orange - Decorative and Mission Objects";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item19
{
className="A3_Ui_F";
name="Arma 3 - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item20
+ class Item18
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
@@ -234,20 +218,15 @@ class Mission
{
briefingName=$STR_antistasi_mission_info_kunduz_mapname_text;
resistanceWest=0;
- startWind=0.1;
- forecastWind=0.1;
- forecastWaves=0.1;
year=2035;
month=6;
day=1;
hour=10;
minute=0;
- startFogDecay=0.0049333;
- forecastFogDecay=0.0049333;
};
class Entities
{
- items=458;
+ items=447;
class Item0
{
dataType="Object";
@@ -468,30 +447,24 @@ class Mission
side="Independent";
class Entities
{
- items=24;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={1328.1077,34.613026,383.85938};
+ position[]={1322.3127,34.865093,387.46875};
+ angles[]={0,2.1016905,0};
};
side="Independent";
flags=2;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=147;
+ id=149;
type="I_G_officer_F";
- atlOffset=0.32158661;
+ atlOffset=0.57365417;
class CustomAttributes
{
class Attribute0
@@ -509,7 +482,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -532,30 +505,155 @@ class Mission
};
};
};
- nAttributes=2;
+ class Attribute2
+ {
+ property="face";
+ expression="_this setface _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="";
+ };
+ };
+ };
+ nAttributes=3;
};
};
- class Item1
+ };
+ class Attributes
+ {
+ };
+ id=148;
+ atlOffset=0.57365417;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1325.3167,35.646446,390.57422};
+ };
+ side="Empty";
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=210;
+ type="MapBoard_seismic_F";
+ atlOffset=0.38756561;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1329.5803,38.517204,392.44141};
+ };
+ side="Empty";
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=215;
+ type="Flag_FIA_F";
+ atlOffset=0.25039673;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3634.418,10.761461,5206.0425};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if (!isMultiplayer) then {deleteVehicle this};";
+ };
+ id=216;
+ type="Flag_NATO_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item14
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={1331.6409,34.291439,380.33594};
- angles[]={0,6.2412972,0};
+ position[]={3634.0742,6.7888441,5198.6655};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=7;
class Attributes
{
- description="Machinegunner";
+ rank="SERGEANT";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=151;
- type="I_G_Soldier_AR_F";
+ id=219;
+ type="B_recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -573,7 +671,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -592,34 +690,33 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item2
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={1343.1018,34.293846,386.48828};
- angles[]={0,6.2412972,0.0039967569};
+ position[]={3639.0742,6.6270118,5193.6655};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=152;
- type="I_G_Soldier_AR_F";
+ id=220;
+ type="B_recon_M_F";
+ atlOffset=1.4305115e-006;
class CustomAttributes
{
class Attribute0
@@ -637,7 +734,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -656,33 +753,32 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item3
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={1349.1057,34.301437,386.375};
+ position[]={3629.0742,7.2476296,5193.6655};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=154;
- type="I_G_medic_F";
+ id=221;
+ type="B_recon_medic_F";
+ atlOffset=2.3841858e-006;
class CustomAttributes
{
class Attribute0
@@ -700,7 +796,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03ENG";
};
};
};
@@ -719,34 +815,32 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item4
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={1342.9983,34.291439,389.28125};
- angles[]={0,6.2412972,0};
+ position[]={3624.0742,8.4003878,5188.6655};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=158;
- type="I_G_Soldier_AR_F";
+ id=222;
+ type="B_recon_LAT_F";
+ atlOffset=9.5367432e-007;
class CustomAttributes
{
class Attribute0
@@ -764,7 +858,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -790,28 +884,27 @@ class Mission
nAttributes=2;
};
};
- class Item5
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={1349.0022,34.297443,389.16797};
- angles[]={0,0,0.0039967569};
+ position[]={3641.5547,6.6279035,5191.5444};
+ angles[]={0,0,6.2551923};
};
- side="Independent";
+ side="West";
flags=4;
class Attributes
{
- description="Paramedic";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=160;
- type="I_G_medic_F";
- atlOffset=-3.8146973e-006;
+ id=223;
+ type="B_Patrol_Soldier_MG_F";
+ atlOffset=1.4305115e-006;
class CustomAttributes
{
class Attribute0
@@ -829,7 +922,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male07ENG";
};
};
};
@@ -848,33 +941,32 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item6
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={1348.8987,34.291439,394.75781};
+ position[]={3636.3242,6.6596169,5189.3257};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=170;
- type="I_G_medic_F";
+ id=224;
+ type="B_recon_LAT_F";
+ atlOffset=4.7683716e-007;
class CustomAttributes
{
class Attribute0
@@ -892,7 +984,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male12ENG";
};
};
};
@@ -911,33 +1003,44 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item7
+ };
+ class Attributes
+ {
+ };
+ id=218;
+ };
+ class Item15
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={1343.1917,34.291439,394.98438};
+ position[]={5178.0737,12.26793,793.2431};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=3;
class Attributes
{
- description="Machinegunner";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=175;
- type="I_G_Soldier_AR_F";
+ id=228;
+ type="O_T_Recon_TL_F";
+ atlOffset=0.30826855;
class CustomAttributes
{
class Attribute0
@@ -955,7 +1058,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -974,33 +1077,31 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item8
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={1349.2307,34.291439,397.38281};
+ position[]={5173.2612,11.575912,788.73138};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=177;
- type="I_G_medic_F";
+ id=229;
+ type="O_T_Recon_Medic_F";
+ atlOffset=0.00050926208;
class CustomAttributes
{
class Attribute0
@@ -1018,7 +1119,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male02CHI";
};
};
};
@@ -1037,33 +1138,31 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=1.01;
};
};
};
nAttributes=2;
};
};
- class Item9
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={1352.2034,34.291439,400.63672};
+ position[]={5182.7358,11.589146,788.88177};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Engineer";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=184;
- type="I_G_engineer_F";
+ id=230;
+ type="O_T_Recon_M_F";
+ atlOffset=0.00050926208;
class CustomAttributes
{
class Attribute0
@@ -1081,7 +1180,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01CHI";
};
};
};
@@ -1100,33 +1199,31 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item10
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={1355.1917,34.291439,400.85547};
+ position[]={5168.9741,11.309069,783.53998};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=185;
- type="I_G_Soldier_GL_F";
+ id=231;
+ type="O_T_Recon_LAT_F";
+ atlOffset=0.00051021576;
class CustomAttributes
{
class Attribute0
@@ -1144,7 +1241,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01CHI";
};
};
};
@@ -1163,34 +1260,31 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item11
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={1340.8401,34.291439,400.51172};
+ position[]={5179.4468,12.314132,794.83295};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- skill=1;
- description="Officer";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=186;
- type="I_G_officer_F";
+ id=232;
+ type="O_Soldier_AR_F";
+ atlOffset=0.22092533;
class CustomAttributes
{
class Attribute0
@@ -1208,7 +1302,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01PER";
};
};
};
@@ -1227,33 +1321,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item12
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={1343.4065,34.291439,403.79297};
+ position[]={5178.5386,11.727695,790.47552};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="AT Launcher";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=188;
- type="I_G_Soldier_LAT_F";
+ id=233;
+ type="O_T_Recon_LAT_F";
+ atlOffset=0.00050926208;
class CustomAttributes
{
class Attribute0
@@ -1271,7 +1363,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03CHI";
};
};
};
@@ -1290,2003 +1382,352 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item13
+ };
+ class Attributes
+ {
+ };
+ id=227;
+ atlOffset=0.30826855;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5169.978,16.792131,794.89349};
+ };
+ side="Empty";
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=234;
+ type="Flag_Viper_F";
+ atlOffset=0.71427345;
+ };
+ class Item17
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={1321.9241,34.801178,377.01953};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=235;
+ type="HeadlessClient_F";
+ atlOffset=0.51117706;
+ };
+ class Item18
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={1323.7717,34.70137,376.02539};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=236;
+ type="HeadlessClient_F";
+ atlOffset=0.41136932;
+ };
+ class Item19
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={1351.2542,34.305016,378.40625};
+ angles[]={0,0,0.0039967569};
+ };
+ id=240;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1349.2366,34.291439,403.62109};
- };
- side="Independent";
- flags=4;
- class Attributes
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- description="Engineer";
- isPlayable=1;
- class Inventory
+ class data
{
- map="ItemMap";
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="#adminLogged";
};
};
- id=190;
- type="I_G_engineer_F";
- class CustomAttributes
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item14
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1352.2249,34.291439,403.84375};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=191;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "STRING"
};
};
+ value="";
};
- nAttributes=2;
};
};
- class Item15
+ class Attribute3
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1337.8733,34.608242,403.49609};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=192;
- type="I_G_officer_F";
- atlOffset=0.31680298;
- class CustomAttributes
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "SCALAR"
};
};
+ value=3;
};
- class Attribute1
+ };
+ };
+ nAttributes=4;
+ };
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1325.8264,35.23484,386.31836};
+ angles[]={0,1.0016968,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=241;
+ type="Land_TentSolar_01_olive_F";
+ atlOffset=0.37243652;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item16
+ nAttributes=1;
+ };
+ };
+ class Item21
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3929.0085,4.606873,4636.5796};
+ angles[]={6.2232571,1.1951427,6.2751846};
+ };
+ areaSize[]={54.162922,0,116.96795};
+ areaIsRectangle=1;
+ flags=1;
+ id=248;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.21784687;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1343.2581,34.291439,407.05859};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=194;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
+ "SCALAR"
};
};
+ value=15;
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1352.0764,34.291439,407.10547};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=197;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
+ nAttributes=2;
+ };
+ };
+ class Item22
+ {
+ dataType="Layer";
+ name="Open Ammo Dump";
+ id=249;
+ atlOffset=-124.86;
+ };
+ class Item23
+ {
+ dataType="Layer";
+ name="Vehicle Repair";
+ id=274;
+ atlOffset=-124.86;
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2063.6294,42.424999,3023.1621};
+ angles[]={0,0.14061472,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=682;
+ type="Land_Cargo_Patrol_V3_F";
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2105.7827,42.540279,3061.8245};
+ angles[]={0,4.8266172,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=683;
+ type="Land_Cargo_Patrol_V3_F";
+ };
+ class Item26
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2049.5925,37.565399,3060.8623};
+ angles[]={6.2631865,0,6.2631865};
+ };
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=684;
+ type="ModuleHideTerrainObjects_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1342.0725,34.382442,409.80078};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=200;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.091003418;
- class CustomAttributes
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "SCALAR"
};
};
+ value=15;
};
- nAttributes=2;
};
};
- class Item19
+ class Attribute1
{
- dataType="Object";
- class PositionInfo
- {
- position[]={1347.9006,34.291439,409.63281};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=202;
- type="I_G_engineer_F";
- class CustomAttributes
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
+ "BOOL"
};
};
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1336.5374,35.237858,409.50781};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=204;
- type="I_G_officer_F";
- atlOffset=0.94641876;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1340.6702,34.301437,380.48047};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=207;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1343.2561,34.301437,380.88672};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=208;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1334.7151,34.291439,380.57031};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=209;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=146;
- atlOffset=0.32158661;
- };
- class Item11
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1322.3127,34.865093,387.46875};
- angles[]={0,2.1016905,0};
- };
- side="Independent";
- flags=2;
- class Attributes
- {
- name="petros";
- };
- id=149;
- type="I_G_officer_F";
- atlOffset=0.57365417;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=148;
- atlOffset=0.57365417;
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1325.3167,35.646446,390.57422};
- };
- side="Empty";
- class Attributes
- {
- name="mapX";
- };
- id=210;
- type="MapBoard_seismic_F";
- atlOffset=0.38756561;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1329.5803,38.517204,392.44141};
- };
- side="Empty";
- class Attributes
- {
- name="flagX";
- };
- id=215;
- type="Flag_Altis_F";
- atlOffset=0.25039673;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.418,10.761461,5206.0425};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if (!isMultiplayer) then {deleteVehicle this};";
- };
- id=216;
- type="Flag_NATO_F";
- atlOffset=4.7683716e-007;
- };
- class Item15
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3634.0742,6.7888441,5198.6655};
- };
- side="West";
- flags=7;
- class Attributes
- {
- rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_blue_1";
- isPlayable=1;
- };
- id=219;
- type="B_recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3639.0742,6.6270118,5193.6655};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_blue_4";
- isPlayable=1;
- };
- id=220;
- type="B_recon_M_F";
- atlOffset=1.4305115e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3629.0742,7.2476296,5193.6655};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_blue_2";
- isPlayable=1;
- };
- id=221;
- type="B_recon_medic_F";
- atlOffset=2.3841858e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3624.0742,8.4003878,5188.6655};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_blue_5";
- isPlayable=1;
- };
- id=222;
- type="B_recon_LAT_F";
- atlOffset=9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3641.5547,6.6279035,5191.5444};
- angles[]={0,0,6.2551923};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_blue_3";
- isPlayable=1;
- };
- id=223;
- type="B_Patrol_Soldier_MG_F";
- atlOffset=1.4305115e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male07ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3636.3242,6.6596169,5189.3257};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_blue_6";
- isPlayable=1;
- };
- id=224;
- type="B_recon_LAT_F";
- atlOffset=4.7683716e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=218;
- };
- class Item16
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5178.0737,12.26793,793.2431};
- };
- side="East";
- flags=3;
- class Attributes
- {
- init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_red_1";
- isPlayable=1;
- };
- id=228;
- type="O_T_Recon_TL_F";
- atlOffset=0.30826855;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5173.2612,11.575912,788.73138};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_red_2";
- isPlayable=1;
- };
- id=229;
- type="O_T_Recon_Medic_F";
- atlOffset=0.00050926208;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5182.7358,11.589146,788.88177};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_red_4";
- isPlayable=1;
- };
- id=230;
- type="O_T_Recon_M_F";
- atlOffset=0.00050926208;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5168.9741,11.309069,783.53998};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=231;
- type="O_T_Recon_LAT_F";
- atlOffset=0.00051021576;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5179.4468,12.314132,794.83295};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=232;
- type="O_Soldier_AR_F";
- atlOffset=0.22092533;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01PER";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5178.5386,11.727695,790.47552};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=233;
- type="O_T_Recon_LAT_F";
- atlOffset=0.00050926208;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=227;
- atlOffset=0.30826855;
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5169.978,16.792131,794.89349};
- };
- side="Empty";
- class Attributes
- {
- init="if !(isMultiplayer) then {deleteVehicle this}";
- };
- id=234;
- type="Flag_Viper_F";
- atlOffset=0.71427345;
- };
- class Item18
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={1321.9241,34.801178,377.01953};
- };
- name="hc_1";
- isPlayable=1;
- id=235;
- type="HeadlessClient_F";
- atlOffset=0.51117706;
- };
- class Item19
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={1323.7717,34.70137,376.02539};
- };
- name="hc_2";
- isPlayable=1;
- id=236;
- type="HeadlessClient_F";
- atlOffset=0.41136932;
- };
- class Item20
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={1351.2542,34.305016,378.40625};
- angles[]={0,0,0.0039967569};
- };
- id=240;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1325.8264,35.23484,386.31836};
- angles[]={0,1.0016968,0};
- };
- side="Empty";
- class Attributes
- {
- name="fireX";
- };
- id=241;
- type="Land_TentSolar_01_olive_F";
- atlOffset=0.37243652;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item22
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3929.0085,4.606873,4636.5796};
- angles[]={6.2232571,1.1951427,6.2751846};
- };
- areaSize[]={54.162922,0,116.96795};
- areaIsRectangle=1;
- flags=1;
- id=248;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.21784687;
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
+ value=0;
};
};
};
nAttributes=2;
};
};
- class Item23
- {
- dataType="Layer";
- name="Open Ammo Dump";
- id=249;
- atlOffset=-124.86;
- };
- class Item24
- {
- dataType="Layer";
- name="Vehicle Repair";
- id=274;
- atlOffset=-124.86;
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2063.6294,42.424999,3023.1621};
- angles[]={0,0.14061472,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=682;
- type="Land_Cargo_Patrol_V3_F";
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2105.7827,42.540279,3061.8245};
- angles[]={0,4.8266172,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=683;
- type="Land_Cargo_Patrol_V3_F";
- };
class Item27
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={2049.5925,37.565399,3060.8623};
- angles[]={6.2631865,0,6.2631865};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=684;
- type="ModuleHideTerrainObjects_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
{
dataType="Object";
class PositionInfo
@@ -3302,7 +1743,7 @@ class Mission
id=685;
type="Land_Cargo_Patrol_V3_F";
};
- class Item29
+ class Item28
{
dataType="Object";
class PositionInfo
@@ -3319,7 +1760,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-9.5367432e-007;
};
- class Item30
+ class Item29
{
dataType="Object";
class PositionInfo
@@ -3335,7 +1776,7 @@ class Mission
id=718;
type="Land_Cargo_Patrol_V3_F";
};
- class Item31
+ class Item30
{
dataType="Object";
class PositionInfo
@@ -3351,7 +1792,7 @@ class Mission
id=719;
type="Land_Cargo_Patrol_V3_F";
};
- class Item32
+ class Item31
{
dataType="Object";
class PositionInfo
@@ -3366,7 +1807,7 @@ class Mission
id=720;
type="Land_Cargo_HQ_V3_F";
};
- class Item33
+ class Item32
{
dataType="Object";
class PositionInfo
@@ -3382,7 +1823,7 @@ class Mission
id=721;
type="Land_Cargo_House_V3_F";
};
- class Item34
+ class Item33
{
dataType="Object";
class PositionInfo
@@ -3399,7 +1840,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=-4.7683716e-007;
};
- class Item35
+ class Item34
{
dataType="Object";
class PositionInfo
@@ -3411,11 +1852,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=723;
type="Land_HBarrier_Big_F";
};
- class Item36
+ class Item35
{
dataType="Object";
class PositionInfo
@@ -3427,11 +1869,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=724;
type="Land_HBarrier_Big_F";
};
- class Item37
+ class Item36
{
dataType="Object";
class PositionInfo
@@ -3443,11 +1886,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=725;
type="Land_HBarrier_Big_F";
};
- class Item38
+ class Item37
{
dataType="Object";
class PositionInfo
@@ -3459,12 +1903,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=726;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item39
+ class Item38
{
dataType="Object";
class PositionInfo
@@ -3476,12 +1921,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=727;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item40
+ class Item39
{
dataType="Object";
class PositionInfo
@@ -3493,12 +1939,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=728;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item41
+ class Item40
{
dataType="Object";
class PositionInfo
@@ -3510,12 +1957,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=729;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item42
+ class Item41
{
dataType="Object";
class PositionInfo
@@ -3527,11 +1975,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=730;
type="Land_HBarrier_Big_F";
};
- class Item43
+ class Item42
{
dataType="Object";
class PositionInfo
@@ -3543,11 +1992,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=731;
type="Land_HBarrier_Big_F";
};
- class Item44
+ class Item43
{
dataType="Object";
class PositionInfo
@@ -3559,11 +2009,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=732;
type="Land_HBarrier_Big_F";
};
- class Item45
+ class Item44
{
dataType="Object";
class PositionInfo
@@ -3575,11 +2026,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=733;
type="Land_HBarrier_Big_F";
};
- class Item46
+ class Item45
{
dataType="Object";
class PositionInfo
@@ -3591,11 +2043,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=734;
type="Land_HBarrier_Big_F";
};
- class Item47
+ class Item46
{
dataType="Object";
class PositionInfo
@@ -3607,11 +2060,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=735;
type="Land_HBarrier_Big_F";
};
- class Item48
+ class Item47
{
dataType="Object";
class PositionInfo
@@ -3623,12 +2077,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=736;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item49
+ class Item48
{
dataType="Object";
class PositionInfo
@@ -3640,12 +2095,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=737;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item50
+ class Item49
{
dataType="Object";
class PositionInfo
@@ -3657,11 +2113,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=738;
type="Land_HBarrier_Big_F";
};
- class Item51
+ class Item50
{
dataType="Object";
class PositionInfo
@@ -3673,12 +2130,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=739;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item52
+ class Item51
{
dataType="Object";
class PositionInfo
@@ -3690,12 +2148,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=740;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item53
+ class Item52
{
dataType="Object";
class PositionInfo
@@ -3707,11 +2166,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=741;
type="Land_HBarrier_Big_F";
};
- class Item54
+ class Item53
{
dataType="Object";
class PositionInfo
@@ -3723,11 +2183,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=742;
type="Land_HBarrier_Big_F";
};
- class Item55
+ class Item54
{
dataType="Object";
class PositionInfo
@@ -3739,12 +2200,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=743;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item56
+ class Item55
{
dataType="Object";
class PositionInfo
@@ -3756,11 +2218,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=744;
type="Land_HBarrier_Big_F";
};
- class Item57
+ class Item56
{
dataType="Object";
class PositionInfo
@@ -3772,11 +2235,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=745;
type="Land_HBarrier_Big_F";
};
- class Item58
+ class Item57
{
dataType="Object";
class PositionInfo
@@ -3788,12 +2252,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=746;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item59
+ class Item58
{
dataType="Object";
class PositionInfo
@@ -3805,12 +2270,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=747;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item60
+ class Item59
{
dataType="Object";
class PositionInfo
@@ -3822,11 +2288,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=748;
type="Land_HBarrier_Big_F";
};
- class Item61
+ class Item60
{
dataType="Object";
class PositionInfo
@@ -3838,11 +2305,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=749;
type="Land_HBarrier_Big_F";
};
- class Item62
+ class Item61
{
dataType="Object";
class PositionInfo
@@ -3858,7 +2326,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item63
+ class Item62
{
dataType="Object";
class PositionInfo
@@ -3870,11 +2338,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=751;
type="Land_HBarrier_Big_F";
};
- class Item64
+ class Item63
{
dataType="Object";
class PositionInfo
@@ -3886,11 +2355,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=752;
type="Land_HBarrier_Big_F";
};
- class Item65
+ class Item64
{
dataType="Object";
class PositionInfo
@@ -3902,12 +2372,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=753;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item66
+ class Item65
{
dataType="Object";
class PositionInfo
@@ -3919,11 +2390,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=754;
type="Land_HBarrier_Big_F";
};
- class Item67
+ class Item66
{
dataType="Object";
class PositionInfo
@@ -3935,12 +2407,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=755;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item68
+ class Item67
{
dataType="Object";
class PositionInfo
@@ -3952,12 +2425,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=756;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item69
+ class Item68
{
dataType="Object";
class PositionInfo
@@ -3969,12 +2443,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=757;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item70
+ class Item69
{
dataType="Object";
class PositionInfo
@@ -3990,7 +2465,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item71
+ class Item70
{
dataType="Object";
class PositionInfo
@@ -4006,7 +2481,7 @@ class Mission
id=759;
type="Land_TTowerSmall_1_F";
};
- class Item72
+ class Item71
{
dataType="Object";
class PositionInfo
@@ -4023,7 +2498,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=4.7683716e-007;
};
- class Item73
+ class Item72
{
dataType="Object";
class PositionInfo
@@ -4039,7 +2514,7 @@ class Mission
id=761;
type="Land_Medevac_house_V1_F";
};
- class Item74
+ class Item73
{
dataType="Object";
class PositionInfo
@@ -4056,7 +2531,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-9.5367432e-007;
};
- class Item75
+ class Item74
{
dataType="Object";
class PositionInfo
@@ -4072,7 +2547,7 @@ class Mission
id=763;
type="Land_Cargo_Patrol_V3_F";
};
- class Item76
+ class Item75
{
dataType="Object";
class PositionInfo
@@ -4089,7 +2564,7 @@ class Mission
type="Land_Cargo_House_V3_F";
atlOffset=9.5367432e-007;
};
- class Item77
+ class Item76
{
dataType="Object";
class PositionInfo
@@ -4105,7 +2580,7 @@ class Mission
id=765;
type="Land_Cargo_House_V3_F";
};
- class Item78
+ class Item77
{
dataType="Object";
class PositionInfo
@@ -4121,7 +2596,7 @@ class Mission
id=766;
type="Land_Cargo_Patrol_V3_F";
};
- class Item79
+ class Item78
{
dataType="Object";
class PositionInfo
@@ -4137,7 +2612,7 @@ class Mission
id=767;
type="Land_Cargo_Patrol_V3_F";
};
- class Item80
+ class Item79
{
dataType="Object";
class PositionInfo
@@ -4149,12 +2624,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
disableSimulation=1;
};
id=768;
type="Land_Cargo40_sand_F";
+ atlOffset=-9.5367432e-007;
};
- class Item81
+ class Item80
{
dataType="Object";
class PositionInfo
@@ -4166,13 +2643,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
disableSimulation=1;
};
id=769;
type="Land_Cargo40_sand_F";
atlOffset=-0.27700043;
};
- class Item82
+ class Item81
{
dataType="Object";
class PositionInfo
@@ -4188,7 +2666,7 @@ class Mission
type="Land_dp_mainFactory_F";
atlOffset=-0.20000076;
};
- class Item83
+ class Item82
{
dataType="Object";
class PositionInfo
@@ -4203,7 +2681,7 @@ class Mission
id=848;
type="Land_dp_bigTank_F";
};
- class Item84
+ class Item83
{
dataType="Object";
class PositionInfo
@@ -4218,7 +2696,7 @@ class Mission
id=849;
type="Land_dp_bigTank_F";
};
- class Item85
+ class Item84
{
dataType="Object";
class PositionInfo
@@ -4234,7 +2712,7 @@ class Mission
id=850;
type="Land_dp_bigTank_F";
};
- class Item86
+ class Item85
{
dataType="Object";
class PositionInfo
@@ -4250,7 +2728,7 @@ class Mission
id=851;
type="Land_dp_bigTank_F";
};
- class Item87
+ class Item86
{
dataType="Object";
class PositionInfo
@@ -4265,7 +2743,7 @@ class Mission
id=852;
type="CargoPlaftorm_01_brown_ruins_F";
};
- class Item88
+ class Item87
{
dataType="Object";
class PositionInfo
@@ -4281,7 +2759,7 @@ class Mission
type="Land_Cargo_Tower_V3_ruins_F";
atlOffset=-0.11489105;
};
- class Item89
+ class Item88
{
dataType="Object";
class PositionInfo
@@ -4296,7 +2774,7 @@ class Mission
id=855;
type="Land_Cargo_Patrol_V3_F";
};
- class Item90
+ class Item89
{
dataType="Object";
class PositionInfo
@@ -4308,12 +2786,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=856;
type="Land_HBarrier_5_F";
atlOffset=0.008972168;
};
- class Item91
+ class Item90
{
dataType="Object";
class PositionInfo
@@ -4325,12 +2804,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=857;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item92
+ class Item91
{
dataType="Object";
class PositionInfo
@@ -4342,11 +2822,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=858;
type="Land_HBarrier_5_F";
};
- class Item93
+ class Item92
{
dataType="Object";
class PositionInfo
@@ -4358,11 +2839,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=859;
type="Land_HBarrier_5_F";
};
- class Item94
+ class Item93
{
dataType="Object";
class PositionInfo
@@ -4374,12 +2856,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=860;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item95
+ class Item94
{
dataType="Object";
class PositionInfo
@@ -4391,12 +2874,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=861;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item96
+ class Item95
{
dataType="Object";
class PositionInfo
@@ -4408,11 +2892,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=862;
type="Land_HBarrier_5_F";
};
- class Item97
+ class Item96
{
dataType="Object";
class PositionInfo
@@ -4424,11 +2909,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=863;
type="Land_HBarrier_5_F";
};
- class Item98
+ class Item97
{
dataType="Object";
class PositionInfo
@@ -4440,11 +2926,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=864;
type="Land_HBarrier_5_F";
};
- class Item99
+ class Item98
{
dataType="Object";
class PositionInfo
@@ -4456,11 +2943,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=865;
type="Land_HBarrier_5_F";
};
- class Item100
+ class Item99
{
dataType="Object";
class PositionInfo
@@ -4472,12 +2960,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=866;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item101
+ class Item100
{
dataType="Object";
class PositionInfo
@@ -4489,11 +2978,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=867;
type="Land_HBarrier_5_F";
};
- class Item102
+ class Item101
{
dataType="Object";
class PositionInfo
@@ -4505,12 +2995,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=868;
type="Land_HBarrier_5_F";
atlOffset=2.9563904e-005;
};
- class Item103
+ class Item102
{
dataType="Object";
class PositionInfo
@@ -4522,12 +3013,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=869;
type="Land_HBarrier_5_F";
atlOffset=0.0089712143;
};
- class Item104
+ class Item103
{
dataType="Object";
class PositionInfo
@@ -4539,11 +3031,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=870;
type="Land_HBarrier_5_F";
};
- class Item105
+ class Item104
{
dataType="Object";
class PositionInfo
@@ -4555,12 +3048,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=871;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item106
+ class Item105
{
dataType="Object";
class PositionInfo
@@ -4572,12 +3066,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=872;
type="Land_HBarrier_5_F";
atlOffset=2.9563904e-005;
};
- class Item107
+ class Item106
{
dataType="Object";
class PositionInfo
@@ -4589,11 +3084,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=873;
type="Land_HBarrier_5_F";
};
- class Item108
+ class Item107
{
dataType="Object";
class PositionInfo
@@ -4605,12 +3101,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=874;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item109
+ class Item108
{
dataType="Object";
class PositionInfo
@@ -4622,12 +3119,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=875;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item110
+ class Item109
{
dataType="Object";
class PositionInfo
@@ -4639,12 +3137,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=876;
type="Land_HBarrier_5_F";
atlOffset=0.0089421272;
};
- class Item111
+ class Item110
{
dataType="Object";
class PositionInfo
@@ -4656,12 +3155,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=877;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item112
+ class Item111
{
dataType="Object";
class PositionInfo
@@ -4673,11 +3173,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=878;
type="Land_HBarrier_5_F";
};
- class Item113
+ class Item112
{
dataType="Object";
class PositionInfo
@@ -4689,12 +3190,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=879;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item114
+ class Item113
{
dataType="Object";
class PositionInfo
@@ -4706,11 +3208,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=880;
type="Land_HBarrier_5_F";
};
- class Item115
+ class Item114
{
dataType="Object";
class PositionInfo
@@ -4722,12 +3225,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=881;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item116
+ class Item115
{
dataType="Object";
class PositionInfo
@@ -4739,11 +3243,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=882;
type="Land_HBarrier_5_F";
};
- class Item117
+ class Item116
{
dataType="Object";
class PositionInfo
@@ -4755,11 +3260,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=883;
type="Land_HBarrier_5_F";
};
- class Item118
+ class Item117
{
dataType="Object";
class PositionInfo
@@ -4771,11 +3277,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=884;
type="Land_HBarrier_5_F";
};
- class Item119
+ class Item118
{
dataType="Object";
class PositionInfo
@@ -4787,12 +3294,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=885;
type="Land_HBarrier_3_F";
atlOffset=6.1035156e-005;
};
- class Item120
+ class Item119
{
dataType="Object";
class PositionInfo
@@ -4804,12 +3312,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=886;
type="Land_HBarrier_3_F";
atlOffset=6.0558319e-005;
};
- class Item121
+ class Item120
{
dataType="Object";
class PositionInfo
@@ -4821,12 +3330,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=887;
type="Land_HBarrier_3_F";
atlOffset=6.1035156e-005;
};
- class Item122
+ class Item121
{
dataType="Object";
class PositionInfo
@@ -4838,12 +3348,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=888;
type="Land_HBarrier_5_F";
atlOffset=6.0081482e-005;
};
- class Item123
+ class Item122
{
dataType="Object";
class PositionInfo
@@ -4860,7 +3371,7 @@ class Mission
type="Land_Mil_WallBig_Corner_F";
atlOffset=-4.7683716e-007;
};
- class Item124
+ class Item123
{
dataType="Object";
class PositionInfo
@@ -4877,7 +3388,7 @@ class Mission
type="Land_Mil_WallBig_Corner_F";
atlOffset=-4.7683716e-007;
};
- class Item125
+ class Item124
{
dataType="Object";
class PositionInfo
@@ -4894,7 +3405,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=-9.5367432e-007;
};
- class Item126
+ class Item125
{
dataType="Object";
class PositionInfo
@@ -4911,7 +3422,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=-4.7683716e-007;
};
- class Item127
+ class Item126
{
dataType="Object";
class PositionInfo
@@ -4927,7 +3438,7 @@ class Mission
id=893;
type="Land_Mil_WallBig_4m_F";
};
- class Item128
+ class Item127
{
dataType="Object";
class PositionInfo
@@ -4943,7 +3454,7 @@ class Mission
id=894;
type="Land_Mil_WallBig_Corner_F";
};
- class Item129
+ class Item128
{
dataType="Object";
class PositionInfo
@@ -4960,7 +3471,7 @@ class Mission
type="Land_Mil_WallBig_Corner_F";
atlOffset=-4.7683716e-007;
};
- class Item130
+ class Item129
{
dataType="Object";
class PositionInfo
@@ -4976,7 +3487,7 @@ class Mission
id=896;
type="Land_Mil_WallBig_4m_F";
};
- class Item131
+ class Item130
{
dataType="Object";
class PositionInfo
@@ -4988,11 +3499,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=901;
type="Land_HBarrier_5_F";
};
- class Item132
+ class Item131
{
dataType="Object";
class PositionInfo
@@ -5004,11 +3516,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=902;
type="Land_HBarrier_5_F";
};
- class Item133
+ class Item132
{
dataType="Object";
class PositionInfo
@@ -5020,11 +3533,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=903;
type="Land_HBarrier_5_F";
};
- class Item134
+ class Item133
{
dataType="Object";
class PositionInfo
@@ -5036,12 +3550,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=904;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item135
+ class Item134
{
dataType="Object";
class PositionInfo
@@ -5053,12 +3568,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=905;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item136
+ class Item135
{
dataType="Object";
class PositionInfo
@@ -5070,12 +3586,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=906;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item137
+ class Item136
{
dataType="Object";
class PositionInfo
@@ -5087,11 +3604,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=910;
type="Land_HBarrier_5_F";
};
- class Item138
+ class Item137
{
dataType="Object";
class PositionInfo
@@ -5103,11 +3621,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=911;
type="Land_HBarrier_5_F";
};
- class Item139
+ class Item138
{
dataType="Object";
class PositionInfo
@@ -5119,12 +3638,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=912;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item140
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -5136,11 +3656,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=913;
type="Land_HBarrier_5_F";
};
- class Item141
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -5156,7 +3677,7 @@ class Mission
id=916;
type="Land_Cargo_House_V3_F";
};
- class Item142
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -5172,7 +3693,7 @@ class Mission
id=917;
type="Land_Cargo_House_V3_F";
};
- class Item143
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -5188,7 +3709,7 @@ class Mission
id=918;
type="Land_Cargo_House_V3_F";
};
- class Item144
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -5204,7 +3725,7 @@ class Mission
id=919;
type="Land_Cargo_House_V3_F";
};
- class Item145
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -5221,7 +3742,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-9.5367432e-007;
};
- class Item146
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -5238,7 +3759,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-4.7683716e-007;
};
- class Item147
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -5254,7 +3775,7 @@ class Mission
id=922;
type="Land_Cargo_Patrol_V3_F";
};
- class Item148
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -5271,7 +3792,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=4.7683716e-007;
};
- class Item149
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -5288,7 +3809,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=9.5367432e-007;
};
- class Item150
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -5305,7 +3826,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=3.8146973e-006;
};
- class Item151
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -5321,7 +3842,7 @@ class Mission
id=934;
type="Land_dp_transformer_F";
};
- class Item152
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -5338,7 +3859,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=3.8146973e-006;
};
- class Item153
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -5353,7 +3874,7 @@ class Mission
id=936;
type="Land_dp_smallTank_F";
};
- class Item154
+ class Item153
{
dataType="Logic";
class PositionInfo
@@ -5408,7 +3929,7 @@ class Mission
nAttributes=2;
};
};
- class Item155
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -5424,7 +3945,7 @@ class Mission
id=938;
type="Land_Cargo_Patrol_V3_F";
};
- class Item156
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -5437,11 +3958,12 @@ class Mission
class Attributes
{
name="Jackknal";
+ disableSimulation=1;
};
id=939;
type="Land_HelipadSquare_F";
};
- class Item157
+ class Item156
{
dataType="Logic";
class PositionInfo
@@ -5498,7 +4020,7 @@ class Mission
nAttributes=2;
};
};
- class Item158
+ class Item157
{
dataType="Object";
class PositionInfo
@@ -5514,7 +4036,7 @@ class Mission
id=941;
type="Land_BagFence_Long_F";
};
- class Item159
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -5530,7 +4052,7 @@ class Mission
id=942;
type="Land_BagFence_Long_F";
};
- class Item160
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -5546,7 +4068,7 @@ class Mission
id=943;
type="Land_BagFence_Long_F";
};
- class Item161
+ class Item160
{
dataType="Object";
class PositionInfo
@@ -5562,7 +4084,7 @@ class Mission
id=944;
type="Land_BagFence_Long_F";
};
- class Item162
+ class Item161
{
dataType="Object";
class PositionInfo
@@ -5578,7 +4100,7 @@ class Mission
id=945;
type="Land_BagFence_Round_F";
};
- class Item163
+ class Item162
{
dataType="Object";
class PositionInfo
@@ -5594,7 +4116,7 @@ class Mission
id=946;
type="Land_BagFence_Long_F";
};
- class Item164
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -5610,7 +4132,7 @@ class Mission
id=947;
type="Land_BagFence_Long_F";
};
- class Item165
+ class Item164
{
dataType="Object";
class PositionInfo
@@ -5626,7 +4148,7 @@ class Mission
id=948;
type="Land_BagFence_Round_F";
};
- class Item166
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -5642,7 +4164,7 @@ class Mission
id=949;
type="StorageBladder_01_fuel_sand_F";
};
- class Item167
+ class Item166
{
dataType="Object";
class PositionInfo
@@ -5658,7 +4180,7 @@ class Mission
type="Land_Cargo_Tower_V3_ruins_F";
atlOffset=-0.054344177;
};
- class Item168
+ class Item167
{
dataType="Object";
class PositionInfo
@@ -5674,7 +4196,7 @@ class Mission
id=951;
type="Land_Cargo_Patrol_V3_F";
};
- class Item169
+ class Item168
{
dataType="Object";
class PositionInfo
@@ -5690,7 +4212,7 @@ class Mission
id=952;
type="Land_Cargo_Patrol_V3_F";
};
- class Item170
+ class Item169
{
dataType="Object";
class PositionInfo
@@ -5707,7 +4229,7 @@ class Mission
type="Land_WoodenBox_F";
atlOffset=-4.5776367e-005;
};
- class Item171
+ class Item170
{
dataType="Object";
class PositionInfo
@@ -5724,7 +4246,7 @@ class Mission
type="Land_WoodenBox_F";
atlOffset=-5.197525e-005;
};
- class Item172
+ class Item171
{
dataType="Object";
class PositionInfo
@@ -5740,7 +4262,7 @@ class Mission
id=957;
type="Land_WoodenBox_F";
};
- class Item173
+ class Item172
{
dataType="Object";
class PositionInfo
@@ -5757,7 +4279,7 @@ class Mission
type="Land_WoodenBox_F";
atlOffset=3.9100647e-005;
};
- class Item174
+ class Item173
{
dataType="Object";
class PositionInfo
@@ -5773,7 +4295,7 @@ class Mission
id=959;
type="TyreBarrier_01_black_F";
};
- class Item175
+ class Item174
{
dataType="Object";
class PositionInfo
@@ -5790,7 +4312,7 @@ class Mission
type="Dirthump_3_F";
atlOffset=4.7683716e-007;
};
- class Item176
+ class Item175
{
dataType="Object";
class PositionInfo
@@ -5806,7 +4328,7 @@ class Mission
id=961;
type="Land_MarketShelter_F";
};
- class Item177
+ class Item176
{
dataType="Object";
class PositionInfo
@@ -5823,7 +4345,7 @@ class Mission
type="Land_WheelCart_F";
atlOffset=-1.4305115e-006;
};
- class Item178
+ class Item177
{
dataType="Object";
class PositionInfo
@@ -5840,7 +4362,7 @@ class Mission
type="Land_StallWater_F";
atlOffset=0.00066328049;
};
- class Item179
+ class Item178
{
dataType="Object";
class PositionInfo
@@ -5857,7 +4379,7 @@ class Mission
type="Land_cmp_Tower_F";
atlOffset=4.7683716e-007;
};
- class Item180
+ class Item179
{
dataType="Object";
class PositionInfo
@@ -5873,7 +4395,7 @@ class Mission
id=966;
type="Land_cmp_Tower_F";
};
- class Item181
+ class Item180
{
dataType="Object";
class PositionInfo
@@ -5889,7 +4411,7 @@ class Mission
id=967;
type="Land_Shed_Big_F";
};
- class Item182
+ class Item181
{
dataType="Object";
class PositionInfo
@@ -5906,7 +4428,7 @@ class Mission
id=968;
type="Land_dp_transformer_F";
};
- class Item183
+ class Item182
{
dataType="Object";
class PositionInfo
@@ -5923,7 +4445,7 @@ class Mission
id=969;
type="Land_dp_transformer_F";
};
- class Item184
+ class Item183
{
dataType="Object";
class PositionInfo
@@ -5941,7 +4463,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=4.7683716e-007;
};
- class Item185
+ class Item184
{
dataType="Object";
class PositionInfo
@@ -5959,7 +4481,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=4.7683716e-007;
};
- class Item186
+ class Item185
{
dataType="Object";
class PositionInfo
@@ -5977,7 +4499,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=4.7683716e-007;
};
- class Item187
+ class Item186
{
dataType="Object";
class PositionInfo
@@ -5995,7 +4517,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=-4.7683716e-007;
};
- class Item188
+ class Item187
{
dataType="Object";
class PositionInfo
@@ -6012,7 +4534,7 @@ class Mission
id=974;
type="Land_dp_transformer_F";
};
- class Item189
+ class Item188
{
dataType="Object";
class PositionInfo
@@ -6030,7 +4552,7 @@ class Mission
type="Land_dp_transformer_F";
atlOffset=-4.7683716e-007;
};
- class Item190
+ class Item189
{
dataType="Object";
class PositionInfo
@@ -6047,7 +4569,7 @@ class Mission
id=977;
type="Land_Tank_rust_F";
};
- class Item191
+ class Item190
{
dataType="Object";
class PositionInfo
@@ -6064,7 +4586,7 @@ class Mission
type="Land_LampShabby_F";
atlOffset=9.5367432e-007;
};
- class Item192
+ class Item191
{
dataType="Object";
class PositionInfo
@@ -6080,7 +4602,7 @@ class Mission
id=981;
type="Land_LampShabby_F";
};
- class Item193
+ class Item192
{
dataType="Object";
class PositionInfo
@@ -6097,7 +4619,7 @@ class Mission
type="Land_LampShabby_F";
atlOffset=4.7683716e-007;
};
- class Item194
+ class Item193
{
dataType="Object";
class PositionInfo
@@ -6114,7 +4636,7 @@ class Mission
type="Land_Cargo_Patrol_V3_ruins_F";
atlOffset=-0.019923687;
};
- class Item195
+ class Item194
{
dataType="Object";
class PositionInfo
@@ -6131,7 +4653,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=4.7683716e-007;
};
- class Item196
+ class Item195
{
dataType="Object";
class PositionInfo
@@ -6147,7 +4669,7 @@ class Mission
id=986;
type="Land_MarketShelter_F";
};
- class Item197
+ class Item196
{
dataType="Object";
class PositionInfo
@@ -6162,7 +4684,7 @@ class Mission
id=987;
type="Land_StallWater_F";
};
- class Item198
+ class Item197
{
dataType="Logic";
class PositionInfo
@@ -6173,13 +4695,13 @@ class Mission
id=988;
type="Logic";
};
- class Item199
+ class Item198
{
dataType="Layer";
name="Open Ammo Dump_4";
class Entities
{
- items=24;
+ items=26;
class Item0
{
dataType="Object";
@@ -6262,6 +4784,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1001;
type="Land_HBarrier_5_F";
@@ -6475,6 +4998,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1013;
type="Land_HBarrier_5_F";
@@ -6529,6 +5053,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1016;
type="Land_HBarrier_5_F";
@@ -6546,6 +5071,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1017;
type="Land_HBarrier_5_F";
@@ -6563,6 +5089,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1018;
type="Land_HBarrier_5_F";
@@ -6580,6 +5107,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1019;
type="Land_HBarrier_5_F";
@@ -6602,11 +5130,45 @@ class Mission
id=1275;
type="CamoNet_OPFOR_open_F";
};
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3878.3499,6.1936111,4621.2612};
+ angles[]={0,2.7474451,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=1388;
+ type="CamoNet_OPFOR_open_F";
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3963.3132,6.4288425,4654.1396};
+ angles[]={0,2.7474451,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ skill=0.2;
+ };
+ id=1389;
+ type="CamoNet_OPFOR_open_F";
+ };
};
id=996;
- atlOffset=0.70263624;
+ atlOffset=0.80569601;
};
- class Item200
+ class Item199
{
dataType="Layer";
name="Vehicle Repair_4";
@@ -6714,6 +5276,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1027;
type="Land_HBarrier_5_F";
@@ -6749,6 +5312,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1029;
type="Land_HBarrier_1_F";
@@ -6766,6 +5330,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1030;
type="Land_HBarrier_5_F";
@@ -6783,6 +5348,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1031;
type="Land_HBarrier_1_F";
@@ -6800,6 +5366,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1032;
type="Land_HBarrier_5_F";
@@ -6818,6 +5385,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1033;
type="Land_HBarrier_5_F";
@@ -6836,6 +5404,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1034;
type="Land_HBarrier_1_F";
@@ -6853,6 +5422,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=1035;
type="Land_HBarrier_1_F";
@@ -6879,7 +5449,7 @@ class Mission
id=1021;
atlOffset=0.14096165;
};
- class Item201
+ class Item200
{
dataType="Object";
class PositionInfo
@@ -6891,12 +5461,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1037;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item202
+ class Item201
{
dataType="Object";
class PositionInfo
@@ -6908,11 +5479,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1038;
type="Land_HBarrier_5_F";
};
- class Item203
+ class Item202
{
dataType="Object";
class PositionInfo
@@ -6924,12 +5496,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1039;
type="Land_HBarrier_Big_F";
atlOffset=1.1444092e-005;
};
- class Item204
+ class Item203
{
dataType="Object";
class PositionInfo
@@ -6941,12 +5514,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1040;
type="Land_HBarrier_5_F";
atlOffset=2.6702881e-005;
};
- class Item205
+ class Item204
{
dataType="Object";
class PositionInfo
@@ -6958,11 +5532,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1041;
type="Land_HBarrier_Big_F";
};
- class Item206
+ class Item205
{
dataType="Object";
class PositionInfo
@@ -6974,11 +5549,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1042;
type="Land_HBarrier_5_F";
};
- class Item207
+ class Item206
{
dataType="Object";
class PositionInfo
@@ -6990,11 +5566,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1043;
type="Land_HBarrier_5_F";
};
- class Item208
+ class Item207
{
dataType="Object";
class PositionInfo
@@ -7006,11 +5583,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1044;
type="Land_HBarrier_Big_F";
};
- class Item209
+ class Item208
{
dataType="Object";
class PositionInfo
@@ -7022,12 +5600,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1045;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item210
+ class Item209
{
dataType="Object";
class PositionInfo
@@ -7039,11 +5618,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1046;
type="Land_HBarrier_5_F";
};
- class Item211
+ class Item210
{
dataType="Object";
class PositionInfo
@@ -7055,11 +5635,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1047;
type="Land_HBarrier_3_F";
};
- class Item212
+ class Item211
{
dataType="Object";
class PositionInfo
@@ -7071,11 +5652,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1048;
type="Land_HBarrier_Big_F";
};
- class Item213
+ class Item212
{
dataType="Object";
class PositionInfo
@@ -7087,11 +5669,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1049;
type="Land_HBarrier_5_F";
};
- class Item214
+ class Item213
{
dataType="Object";
class PositionInfo
@@ -7103,11 +5686,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1050;
type="Land_HBarrier_Big_F";
};
- class Item215
+ class Item214
{
dataType="Object";
class PositionInfo
@@ -7119,12 +5703,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1051;
type="Land_HBarrier_Big_F";
atlOffset=2.3841858e-006;
};
- class Item216
+ class Item215
{
dataType="Object";
class PositionInfo
@@ -7136,11 +5721,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1052;
type="Land_HBarrier_Big_F";
};
- class Item217
+ class Item216
{
dataType="Object";
class PositionInfo
@@ -7152,11 +5738,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1053;
type="Land_HBarrier_3_F";
};
- class Item218
+ class Item217
{
dataType="Object";
class PositionInfo
@@ -7168,12 +5755,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1054;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item219
+ class Item218
{
dataType="Object";
class PositionInfo
@@ -7185,11 +5773,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1055;
type="Land_HBarrier_5_F";
};
- class Item220
+ class Item219
{
dataType="Object";
class PositionInfo
@@ -7201,12 +5790,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1056;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item221
+ class Item220
{
dataType="Object";
class PositionInfo
@@ -7218,12 +5808,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1057;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item222
+ class Item221
{
dataType="Object";
class PositionInfo
@@ -7235,11 +5826,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1058;
type="Land_HBarrier_Big_F";
};
- class Item223
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -7251,11 +5843,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1059;
type="Land_HBarrier_3_F";
};
- class Item224
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -7267,11 +5860,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1060;
type="Land_HBarrier_Big_F";
};
- class Item225
+ class Item224
{
dataType="Object";
class PositionInfo
@@ -7283,11 +5877,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1061;
type="Land_HBarrier_Big_F";
};
- class Item226
+ class Item225
{
dataType="Object";
class PositionInfo
@@ -7299,11 +5894,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1062;
type="Land_HBarrier_Big_F";
};
- class Item227
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -7315,12 +5911,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1063;
type="Land_HBarrierWall6_F";
atlOffset=-4.7683716e-007;
};
- class Item228
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -7332,11 +5929,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1064;
type="Land_HBarrier_5_F";
};
- class Item229
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -7353,7 +5951,7 @@ class Mission
type="Land_Mil_WiredFence_Gate_F";
atlOffset=1.9073486e-006;
};
- class Item230
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -7365,11 +5963,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1066;
type="Land_HBarrier_5_F";
};
- class Item231
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -7381,11 +5980,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1067;
type="Land_HBarrier_Big_F";
};
- class Item232
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -7397,11 +5997,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1068;
type="Land_HBarrier_5_F";
};
- class Item233
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -7413,11 +6014,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1069;
type="Land_HBarrier_Big_F";
};
- class Item234
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -7429,11 +6031,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1070;
type="Land_HBarrier_5_F";
};
- class Item235
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -7445,11 +6048,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1071;
type="Land_HBarrier_5_F";
};
- class Item236
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -7461,12 +6065,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1072;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item237
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -7478,11 +6083,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1073;
type="Land_HBarrier_5_F";
};
- class Item238
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -7494,11 +6100,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1074;
type="Land_HBarrier_Big_F";
};
- class Item239
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -7510,12 +6117,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1075;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item240
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -7527,11 +6135,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1076;
type="Land_HBarrier_5_F";
};
- class Item241
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -7543,12 +6152,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1077;
type="Land_HBarrier_Big_F";
atlOffset=2.3841858e-007;
};
- class Item242
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -7560,12 +6170,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1078;
type="Land_HBarrier_5_F";
atlOffset=2.3841858e-007;
};
- class Item243
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -7577,12 +6188,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1079;
type="Land_HBarrier_Big_F";
atlOffset=7.1525574e-007;
};
- class Item244
+ class Item243
{
dataType="Object";
class PositionInfo
@@ -7594,11 +6206,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1080;
type="Land_HBarrier_5_F";
};
- class Item245
+ class Item244
{
dataType="Object";
class PositionInfo
@@ -7610,12 +6223,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1081;
type="Land_HBarrier_5_F";
atlOffset=-2.3841858e-007;
};
- class Item246
+ class Item245
{
dataType="Object";
class PositionInfo
@@ -7627,12 +6241,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1082;
type="Land_HBarrier_Big_F";
atlOffset=2.3841858e-007;
};
- class Item247
+ class Item246
{
dataType="Object";
class PositionInfo
@@ -7644,11 +6259,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1083;
type="Land_HBarrier_5_F";
};
- class Item248
+ class Item247
{
dataType="Object";
class PositionInfo
@@ -7660,11 +6276,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1084;
type="Land_HBarrier_Big_F";
};
- class Item249
+ class Item248
{
dataType="Object";
class PositionInfo
@@ -7676,12 +6293,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1085;
type="Land_HBarrier_5_F";
atlOffset=2.3841858e-007;
};
- class Item250
+ class Item249
{
dataType="Object";
class PositionInfo
@@ -7693,11 +6311,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1086;
type="Land_HBarrier_5_F";
};
- class Item251
+ class Item250
{
dataType="Object";
class PositionInfo
@@ -7709,11 +6328,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1087;
type="Land_HBarrier_Big_F";
};
- class Item252
+ class Item251
{
dataType="Object";
class PositionInfo
@@ -7725,11 +6345,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1088;
type="Land_HBarrier_5_F";
};
- class Item253
+ class Item252
{
dataType="Object";
class PositionInfo
@@ -7741,11 +6362,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1089;
type="Land_HBarrier_Big_F";
};
- class Item254
+ class Item253
{
dataType="Object";
class PositionInfo
@@ -7757,51 +6379,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1090;
type="Land_HBarrier_3_F";
};
- class Item255
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3957.9419,6.6775398,4655.6328};
- angles[]={0,5.9077477,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1091;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=4.7683716e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item256
+ class Item254
{
dataType="Object";
class PositionInfo
@@ -7817,7 +6400,7 @@ class Mission
id=1092;
type="Land_Razorwire_F";
};
- class Item257
+ class Item255
{
dataType="Object";
class PositionInfo
@@ -7833,7 +6416,7 @@ class Mission
id=1093;
type="Land_Razorwire_F";
};
- class Item258
+ class Item256
{
dataType="Object";
class PositionInfo
@@ -7850,7 +6433,7 @@ class Mission
type="Land_Razorwire_F";
atlOffset=-4.7683716e-007;
};
- class Item259
+ class Item257
{
dataType="Object";
class PositionInfo
@@ -7866,7 +6449,7 @@ class Mission
id=1095;
type="Land_Razorwire_F";
};
- class Item260
+ class Item258
{
dataType="Object";
class PositionInfo
@@ -7883,7 +6466,7 @@ class Mission
type="Land_Razorwire_F";
atlOffset=4.7683716e-007;
};
- class Item261
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -7899,7 +6482,7 @@ class Mission
id=1097;
type="Land_Razorwire_F";
};
- class Item262
+ class Item260
{
dataType="Object";
class PositionInfo
@@ -7911,12 +6494,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1098;
type="Land_HBarrier_3_F";
atlOffset=-4.7683716e-007;
};
- class Item263
+ class Item261
{
dataType="Object";
class PositionInfo
@@ -7933,185 +6517,42 @@ class Mission
type="Land_LampSolar_F";
atlOffset=-4.7683716e-007;
};
- class Item264
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3966.3572,24.170511,4660.187};
- angles[]={0,2.7661562,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=1100;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=15.524203;
- };
- class Item265
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3957.9424,8.6621761,4655.6328};
- angles[]={6.121582,2.7661562,0.27926266};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1101;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.14673996;
- };
- class Item266
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3966.5535,6.6936793,4649.1338};
- angles[]={6.247201,2.7661562,0.015994642};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1102;
- type="Land_HBarrier_Big_F";
- atlOffset=4.7683716e-007;
- };
- class Item267
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3975.7393,5.6880293,4664.8667};
- angles[]={0.067895547,4.3369527,6.2152901};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1103;
- type="Land_PressureWasher_01_F";
- atlOffset=-0.0090379715;
- };
- class Item268
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3965.6719,5.926352,4651.8423};
- angles[]={0.047963165,2.7661562,0.011995304};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1104;
- type="Land_AirConditioner_03_F";
- atlOffset=-4.7683716e-007;
- };
- class Item269
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3952.1726,5.5492673,4653.9609};
- angles[]={0.027993103,4.3369527,0.019996032};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1105;
- type="Land_AirConditioner_02_F";
- atlOffset=-4.7683716e-007;
- };
- class Item270
+ class Item262
{
dataType="Object";
class PositionInfo
- {
- position[]={3967.2451,6.72013,4659.2998};
- angles[]={0,5.9077477,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1106;
- type="Land_MedicalTent_01_NATO_generic_closed_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="MedSign_Hide";
- expression="_this animateSource ['MedSign_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute1
- {
- property="Door_Hide";
- expression="_this animateSource ['Door_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=3;
+ {
+ position[]={3966.5535,6.6936793,4649.1338};
+ angles[]={6.247201,2.7661562,0.015994642};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
};
+ id=1102;
+ type="Land_HBarrier_Big_F";
+ atlOffset=4.7683716e-007;
};
- class Item271
+ class Item263
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3975.7393,5.6880293,4664.8667};
+ angles[]={0.067895547,4.3369527,6.2152901};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1103;
+ type="Land_PressureWasher_01_F";
+ atlOffset=-0.0090379715;
+ };
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -8123,11 +6564,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1107;
type="Land_HBarrier_5_F";
};
- class Item272
+ class Item265
{
dataType="Object";
class PositionInfo
@@ -8139,11 +6581,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1108;
type="Land_HBarrier_Big_F";
};
- class Item273
+ class Item266
{
dataType="Object";
class PositionInfo
@@ -8155,11 +6598,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1109;
type="Land_HBarrier_5_F";
};
- class Item274
+ class Item267
{
dataType="Object";
class PositionInfo
@@ -8171,11 +6615,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1110;
type="Land_HBarrier_Big_F";
};
- class Item275
+ class Item268
{
dataType="Object";
class PositionInfo
@@ -8187,12 +6632,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1111;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item276
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -8204,11 +6650,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1112;
type="Land_HBarrier_Big_F";
};
- class Item277
+ class Item270
{
dataType="Object";
class PositionInfo
@@ -8220,11 +6667,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1113;
type="Land_HBarrier_5_F";
};
- class Item278
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -8236,11 +6684,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1114;
type="Land_HBarrier_3_F";
};
- class Item279
+ class Item272
{
dataType="Object";
class PositionInfo
@@ -8252,11 +6701,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1115;
type="Land_HBarrier_5_F";
};
- class Item280
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -8268,11 +6718,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1116;
type="Land_HBarrier_Big_F";
};
- class Item281
+ class Item274
{
dataType="Object";
class PositionInfo
@@ -8284,11 +6735,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1117;
type="Land_HBarrier_3_F";
};
- class Item282
+ class Item275
{
dataType="Object";
class PositionInfo
@@ -8300,11 +6752,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1118;
type="Land_HBarrier_5_F";
};
- class Item283
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -8316,11 +6769,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1119;
type="Land_HBarrier_Big_F";
};
- class Item284
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -8332,11 +6786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1120;
type="Land_HBarrier_3_F";
};
- class Item285
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -8348,12 +6803,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1121;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item286
+ class Item279
{
dataType="Object";
class PositionInfo
@@ -8365,11 +6821,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1122;
type="Land_HBarrier_Big_F";
};
- class Item287
+ class Item280
{
dataType="Object";
class PositionInfo
@@ -8381,11 +6838,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1123;
type="Land_HBarrier_3_F";
};
- class Item288
+ class Item281
{
dataType="Object";
class PositionInfo
@@ -8397,11 +6855,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1124;
type="Land_HBarrier_5_F";
};
- class Item289
+ class Item282
{
dataType="Object";
class PositionInfo
@@ -8413,11 +6872,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1125;
type="Land_HBarrier_Big_F";
};
- class Item290
+ class Item283
{
dataType="Object";
class PositionInfo
@@ -8429,12 +6889,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1126;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item291
+ class Item284
{
dataType="Object";
class PositionInfo
@@ -8446,11 +6907,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1127;
type="Land_HBarrier_5_F";
};
- class Item292
+ class Item285
{
dataType="Object";
class PositionInfo
@@ -8462,11 +6924,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1128;
type="Land_HBarrier_5_F";
};
- class Item293
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -8478,11 +6941,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1129;
type="Land_HBarrier_5_F";
};
- class Item294
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -8494,11 +6958,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1130;
type="Land_HBarrier_Big_F";
};
- class Item295
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -8510,12 +6975,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1131;
type="Land_HBarrier_Big_F";
atlOffset=1.001358e-005;
};
- class Item296
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -8527,12 +6993,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1132;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item297
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -8544,12 +7011,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1133;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item298
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -8561,12 +7029,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1134;
type="Land_HBarrier_5_F";
atlOffset=7.1525574e-006;
};
- class Item299
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -8578,11 +7047,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1135;
type="Land_HBarrier_Big_F";
};
- class Item300
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -8594,11 +7064,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1136;
type="Land_HBarrier_5_F";
};
- class Item301
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -8610,12 +7081,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1137;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item302
+ class Item295
{
dataType="Object";
class PositionInfo
@@ -8627,11 +7099,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1138;
type="Land_HBarrier_Big_F";
};
- class Item303
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -8643,11 +7116,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1139;
type="Land_HBarrier_5_F";
};
- class Item304
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -8659,12 +7133,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1140;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item305
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -8676,11 +7151,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1141;
type="Land_HBarrier_5_F";
};
- class Item306
+ class Item299
{
dataType="Object";
class PositionInfo
@@ -8692,11 +7168,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1142;
type="Land_HBarrier_Big_F";
};
- class Item307
+ class Item300
{
dataType="Object";
class PositionInfo
@@ -8708,11 +7185,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1143;
type="Land_HBarrier_5_F";
};
- class Item308
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -8724,11 +7202,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1144;
type="Land_HBarrier_Big_F";
};
- class Item309
+ class Item302
{
dataType="Object";
class PositionInfo
@@ -8740,11 +7219,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1145;
type="Land_HBarrier_5_F";
};
- class Item310
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -8756,11 +7236,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1146;
type="Land_HBarrier_5_F";
};
- class Item311
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -8772,11 +7253,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1147;
type="Land_HBarrier_Big_F";
};
- class Item312
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -8788,12 +7270,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1148;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item313
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -8805,11 +7288,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1149;
type="Land_HBarrier_Big_F";
};
- class Item314
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -8821,12 +7305,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1150;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item315
+ class Item308
{
dataType="Object";
class PositionInfo
@@ -8838,11 +7323,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1151;
type="Land_HBarrier_3_F";
};
- class Item316
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -8854,12 +7340,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1152;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item317
+ class Item310
{
dataType="Object";
class PositionInfo
@@ -8871,12 +7358,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1153;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item318
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -8888,12 +7376,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1154;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item319
+ class Item312
{
dataType="Object";
class PositionInfo
@@ -8905,11 +7394,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1155;
type="Land_HBarrier_1_F";
};
- class Item320
+ class Item313
{
dataType="Object";
class PositionInfo
@@ -8921,12 +7411,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1156;
type="Land_HBarrier_1_F";
atlOffset=4.7683716e-007;
};
- class Item321
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -8938,11 +7429,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1157;
type="Land_HBarrier_5_F";
};
- class Item322
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -8954,11 +7446,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1158;
type="Land_HBarrier_Big_F";
};
- class Item323
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -8970,11 +7463,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1159;
type="Land_HBarrier_5_F";
};
- class Item324
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -8986,12 +7480,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1160;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item325
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -9003,11 +7498,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1161;
type="Land_HBarrier_5_F";
};
- class Item326
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -9019,11 +7515,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1162;
type="Land_HBarrier_Big_F";
};
- class Item327
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -9035,11 +7532,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1163;
type="Land_HBarrier_5_F";
};
- class Item328
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -9051,11 +7549,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1164;
type="Land_HBarrier_3_F";
};
- class Item329
+ class Item322
{
dataType="Object";
class PositionInfo
@@ -9067,12 +7566,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1165;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item330
+ class Item323
{
dataType="Object";
class PositionInfo
@@ -9084,11 +7584,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1166;
type="Land_HBarrier_Big_F";
};
- class Item331
+ class Item324
{
dataType="Object";
class PositionInfo
@@ -9100,12 +7601,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1167;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item332
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -9117,11 +7619,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1168;
type="Land_HBarrier_Big_F";
};
- class Item333
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -9133,12 +7636,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1169;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item334
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -9150,11 +7654,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1170;
type="Land_HBarrier_Big_F";
};
- class Item335
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -9171,7 +7676,7 @@ class Mission
type="Land_MobileRadar_01_radar_F";
atlOffset=4.7683716e-007;
};
- class Item336
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -9188,7 +7693,7 @@ class Mission
type="Land_MobileRadar_01_generator_F";
atlOffset=0.25139809;
};
- class Item337
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -9200,12 +7705,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1178;
type="Land_HelipadSquare_F";
atlOffset=0.65579796;
};
- class Item338
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -9217,11 +7723,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1179;
type="Land_HBarrier_5_F";
};
- class Item339
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -9233,11 +7740,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1180;
type="Land_HBarrier_Big_F";
};
- class Item340
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -9249,11 +7757,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1181;
type="Land_HBarrier_5_F";
};
- class Item341
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -9265,12 +7774,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1182;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item342
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -9282,12 +7792,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1183;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item343
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -9299,11 +7810,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1184;
type="Land_HBarrier_Big_F";
};
- class Item344
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -9315,11 +7827,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1185;
type="Land_HBarrier_5_F";
};
- class Item345
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -9331,11 +7844,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1186;
type="Land_HBarrier_Big_F";
};
- class Item346
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -9347,11 +7861,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1187;
type="Land_HBarrier_5_F";
};
- class Item347
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -9363,11 +7878,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1188;
type="Land_HBarrier_Big_F";
};
- class Item348
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -9379,12 +7895,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1189;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item349
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -9396,11 +7913,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1190;
type="Land_HBarrier_Big_F";
};
- class Item350
+ class Item343
{
dataType="Object";
class PositionInfo
@@ -9412,12 +7930,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1191;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item351
+ class Item344
{
dataType="Object";
class PositionInfo
@@ -9429,11 +7948,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1192;
type="Land_HBarrier_3_F";
};
- class Item352
+ class Item345
{
dataType="Object";
class PositionInfo
@@ -9445,11 +7965,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1193;
type="Land_HBarrier_5_F";
};
- class Item353
+ class Item346
{
dataType="Object";
class PositionInfo
@@ -9461,12 +7982,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1194;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item354
+ class Item347
{
dataType="Object";
class PositionInfo
@@ -9478,12 +8000,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1195;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item355
+ class Item348
{
dataType="Object";
class PositionInfo
@@ -9495,12 +8018,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1196;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item356
+ class Item349
{
dataType="Object";
class PositionInfo
@@ -9512,11 +8036,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1197;
type="Land_HBarrier_5_F";
};
- class Item357
+ class Item350
{
dataType="Object";
class PositionInfo
@@ -9528,11 +8053,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1198;
type="Land_HBarrier_5_F";
};
- class Item358
+ class Item351
{
dataType="Object";
class PositionInfo
@@ -9544,12 +8070,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1199;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item359
+ class Item352
{
dataType="Object";
class PositionInfo
@@ -9561,11 +8088,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1200;
type="Land_HBarrier_5_F";
};
- class Item360
+ class Item353
{
dataType="Object";
class PositionInfo
@@ -9577,11 +8105,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1201;
type="Land_HBarrier_Big_F";
};
- class Item361
+ class Item354
{
dataType="Object";
class PositionInfo
@@ -9593,11 +8122,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1202;
type="Land_HBarrier_5_F";
};
- class Item362
+ class Item355
{
dataType="Object";
class PositionInfo
@@ -9609,11 +8139,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1203;
type="Land_HBarrier_5_F";
};
- class Item363
+ class Item356
{
dataType="Object";
class PositionInfo
@@ -9625,12 +8156,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1204;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item364
+ class Item357
{
dataType="Object";
class PositionInfo
@@ -9642,11 +8174,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1205;
type="Land_HBarrier_5_F";
};
- class Item365
+ class Item358
{
dataType="Object";
class PositionInfo
@@ -9658,11 +8191,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1206;
type="Land_HBarrier_Big_F";
};
- class Item366
+ class Item359
{
dataType="Object";
class PositionInfo
@@ -9674,12 +8208,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1207;
type="Land_HBarrier_3_F";
atlOffset=-4.7683716e-007;
};
- class Item367
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -9691,11 +8226,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1208;
type="Land_HBarrier_5_F";
};
- class Item368
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -9707,12 +8243,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1209;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item369
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -9724,12 +8261,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1210;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item370
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -9741,11 +8279,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1211;
type="Land_HBarrier_Big_F";
};
- class Item371
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -9757,11 +8296,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1212;
type="Land_HBarrier_5_F";
};
- class Item372
+ class Item365
{
dataType="Object";
class PositionInfo
@@ -9773,11 +8313,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1213;
type="Land_HBarrier_Big_F";
};
- class Item373
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -9789,11 +8330,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1214;
type="Land_HBarrier_5_F";
};
- class Item374
+ class Item367
{
dataType="Object";
class PositionInfo
@@ -9805,12 +8347,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1215;
type="Land_HBarrier_Big_F";
atlOffset=-4.7683716e-007;
};
- class Item375
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -9822,11 +8365,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1216;
type="Land_HBarrier_5_F";
};
- class Item376
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -9838,11 +8382,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1217;
type="Land_HBarrier_3_F";
};
- class Item377
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -9854,11 +8399,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1218;
type="Land_HBarrier_3_F";
};
- class Item378
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -9870,11 +8416,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1219;
type="Land_HBarrier_3_F";
};
- class Item379
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -9886,11 +8433,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1220;
type="Land_HBarrier_1_F";
};
- class Item380
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -9902,12 +8450,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1221;
type="Land_HelipadSquare_F";
atlOffset=0.64489746;
};
- class Item381
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -9919,11 +8468,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1222;
type="Land_HBarrier_Big_F";
};
- class Item382
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -9935,11 +8485,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1223;
type="Land_HBarrier_5_F";
};
- class Item383
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -9951,12 +8502,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1224;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item384
+ class Item377
{
dataType="Object";
class PositionInfo
@@ -9968,11 +8520,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1225;
type="Land_HBarrier_5_F";
};
- class Item385
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -9984,11 +8537,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1226;
type="Land_HBarrier_Big_F";
};
- class Item386
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -10000,12 +8554,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1227;
type="Land_HBarrier_Big_F";
atlOffset=1.2874603e-005;
};
- class Item387
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -10017,12 +8572,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1228;
type="Land_HBarrier_5_F";
atlOffset=5.7220459e-006;
};
- class Item388
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -10034,12 +8590,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1229;
type="Land_HBarrier_5_F";
atlOffset=1.1920929e-005;
};
- class Item389
+ class Item382
{
dataType="Object";
class PositionInfo
@@ -10051,12 +8608,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1230;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item390
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -10068,12 +8626,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1231;
type="Land_HBarrier_5_F";
atlOffset=-9.5367432e-007;
};
- class Item391
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -10085,12 +8644,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1232;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-006;
};
- class Item392
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -10102,12 +8662,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1233;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item393
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -10119,11 +8680,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1234;
type="Land_HBarrier_5_F";
};
- class Item394
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -10135,11 +8697,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1235;
type="Land_HBarrier_5_F";
};
- class Item395
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -10151,12 +8714,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1236;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item396
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -10168,11 +8732,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1237;
type="Land_HBarrier_5_F";
};
- class Item397
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -10184,12 +8749,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1238;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item398
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -10201,12 +8767,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1242;
type="Land_HelipadSquare_F";
atlOffset=0.70659685;
};
- class Item399
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -10218,12 +8785,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1243;
type="Land_HelipadSquare_F";
atlOffset=0.63049507;
};
- class Item400
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -10235,191 +8803,64 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=1244;
type="Land_HelipadSquare_F";
atlOffset=0.66751099;
};
- class Item401
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3888.6826,5.2635531,4589.9497};
- angles[]={0,5.1086912,0};
- };
- side="Empty";
- class Attributes
- {
- init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
- };
- id=1245;
- type="Land_HelipadSquare_F";
- atlOffset=0.61740541;
- };
- class Item402
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3908.7686,17.03849,4626.9604};
- angles[]={0.027990974,1.1766464,6.247201};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1246;
- type="Land_LampAirport_F";
- atlOffset=4.7683716e-007;
- };
- class Item403
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3866.2161,17.522602,4611.1362};
- angles[]={0,4.3182416,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1247;
- type="Land_LampAirport_F";
- };
- class Item404
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3883.9009,6.1528006,4624.6758};
- angles[]={0,4.3182416,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1248;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item405
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3883.9006,8.4267359,4624.6758};
- angles[]={6.0109882,4.3182392,6.1356149};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1249;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.16068745;
- };
- class Item406
+ class Item394
{
dataType="Object";
class PositionInfo
{
- position[]={3871.321,6.3422222,4619.4429};
- angles[]={0,4.3182416,0};
+ position[]={3888.6826,5.2635531,4589.9497};
+ angles[]={0,5.1086912,0};
};
side="Empty";
- flags=4;
class Attributes
{
+ init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
- id=1250;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=4.7683716e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
+ id=1245;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.61740541;
};
- class Item407
+ class Item395
{
dataType="Object";
class PositionInfo
{
- position[]={3871.3213,8.6255207,4619.4434};
- angles[]={6.0052419,4.3182392,6.1942797};
+ position[]={3908.7686,17.03849,4626.9604};
+ angles[]={0.027990974,1.1766464,6.247201};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=1251;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.17014885;
+ id=1246;
+ type="Land_LampAirport_F";
+ atlOffset=4.7683716e-007;
};
- class Item408
+ class Item396
{
dataType="Object";
class PositionInfo
{
- position[]={3865.9182,5.6197557,4613.2886};
- angles[]={0.035984326,3.5328412,0.055941612};
+ position[]={3866.2161,17.522602,4611.1362};
+ angles[]={0,4.3182416,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=1252;
- type="Land_AirConditioner_04_F";
+ id=1247;
+ type="Land_LampAirport_F";
};
- class Item409
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -10431,11 +8872,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1255;
type="Land_HBarrier_Big_F";
};
- class Item410
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -10447,11 +8889,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1256;
type="Land_HBarrier_Big_F";
};
- class Item411
+ class Item399
{
dataType="Object";
class PositionInfo
@@ -10463,11 +8906,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1257;
type="Land_HBarrier_Big_F";
};
- class Item412
+ class Item400
{
dataType="Object";
class PositionInfo
@@ -10479,12 +8923,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1258;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item413
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -10496,12 +8941,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1259;
type="Land_HBarrier_Big_F";
atlOffset=2.3841858e-006;
};
- class Item414
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -10518,7 +8964,7 @@ class Mission
type="Land_LampAirport_F";
atlOffset=-4.7683716e-007;
};
- class Item415
+ class Item403
{
dataType="Object";
class PositionInfo
@@ -10535,7 +8981,7 @@ class Mission
type="Land_LampAirport_F";
atlOffset=-9.5367432e-007;
};
- class Item416
+ class Item404
{
dataType="Object";
class PositionInfo
@@ -10552,7 +8998,7 @@ class Mission
type="Land_LampSolar_F";
atlOffset=2.8610229e-006;
};
- class Item417
+ class Item405
{
dataType="Object";
class PositionInfo
@@ -10564,11 +9010,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1263;
type="Land_HBarrier_Big_F";
};
- class Item418
+ class Item406
{
dataType="Object";
class PositionInfo
@@ -10580,11 +9027,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1264;
type="Land_HBarrier_Big_F";
};
- class Item419
+ class Item407
{
dataType="Object";
class PositionInfo
@@ -10600,7 +9048,7 @@ class Mission
id=1267;
type="Land_Cargo_Patrol_V3_F";
};
- class Item420
+ class Item408
{
dataType="Object";
class PositionInfo
@@ -10616,7 +9064,7 @@ class Mission
id=1268;
type="Land_Cargo_Patrol_V3_F";
};
- class Item421
+ class Item409
{
dataType="Object";
class PositionInfo
@@ -10632,7 +9080,7 @@ class Mission
id=1269;
type="Land_Cargo_HQ_V3_F";
};
- class Item422
+ class Item410
{
dataType="Object";
class PositionInfo
@@ -10649,7 +9097,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=1.4305115e-006;
};
- class Item423
+ class Item411
{
dataType="Object";
class PositionInfo
@@ -10666,7 +9114,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=-4.7683716e-007;
};
- class Item424
+ class Item412
{
dataType="Object";
class PositionInfo
@@ -10683,7 +9131,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=-9.5367432e-007;
};
- class Item425
+ class Item413
{
dataType="Object";
class PositionInfo
@@ -10700,7 +9148,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=-4.7683716e-007;
};
- class Item426
+ class Item414
{
dataType="Object";
class PositionInfo
@@ -10717,7 +9165,7 @@ class Mission
type="Land_Cargo_Patrol_V3_F";
atlOffset=4.7683716e-007;
};
- class Item427
+ class Item415
{
dataType="Object";
class PositionInfo
@@ -10733,7 +9181,7 @@ class Mission
id=1278;
type="Land_Cargo_Patrol_V3_F";
};
- class Item428
+ class Item416
{
dataType="Object";
class PositionInfo
@@ -10750,7 +9198,7 @@ class Mission
type="Land_Cargo_Tower_V3_F";
atlOffset=4.7683716e-007;
};
- class Item429
+ class Item417
{
dataType="Object";
class PositionInfo
@@ -10763,1319 +9211,2267 @@ class Mission
class Attributes
{
};
- id=1280;
- type="StorageBladder_01_fuel_sand_F";
+ id=1280;
+ type="StorageBladder_01_fuel_sand_F";
+ };
+ class Item418
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3910.5291,5.3093553,4622.0088};
+ angles[]={0.016004669,2.7474451,6.2392201};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1281;
+ type="StorageBladder_01_fuel_sand_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item419
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={2021.0682,36.301563,3061.1606};
+ angles[]={6.2631865,0,6.2631865};
+ };
+ areaSize[]={11.518372,0,10.682495};
+ flags=1;
+ id=1287;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.27588272;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item420
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3107.0007,6.9952321,3491.9038};
+ angles[]={0,4.6408448,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=1289;
+ type="Land_HelipadSquare_F";
+ };
+ class Item421
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3104.6978,6.9976559,3490.8135};
+ };
+ areaSize[]={11.960327,0,9.0390625};
+ areaIsRectangle=1;
+ flags=1;
+ id=1290;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.011147022;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item422
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2643.9585,10.815956,650.96503};
+ angles[]={0,5.921464,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=1291;
+ type="Land_HelipadCircle_F";
+ atlOffset=3.7297664;
};
- class Item430
+ class Item423
{
dataType="Object";
class PositionInfo
{
- position[]={3910.5291,5.3093553,4622.0088};
- angles[]={0.016004669,2.7474451,6.2392201};
+ position[]={2644.7456,6.7616949,2048.8984};
+ angles[]={0,0.083399855,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=1281;
- type="StorageBladder_01_fuel_sand_F";
- atlOffset=9.5367432e-007;
+ id=1294;
+ type="Land_HelipadSquare_F";
};
- class Item431
+ class Item424
{
- dataType="Logic";
- class PositionInfo
+ dataType="Layer";
+ name="Resources";
+ class Entities
{
- position[]={2021.0682,36.301563,3061.1606};
- angles[]={6.2631865,0,6.2631865};
+ items=7;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={3883.0239,30.524418,1004.2935};
+ name="resource";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=51.14547;
+ b=51.037296;
+ angle=281.88538;
+ id=125;
+ atlOffset=23.737984;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={1233.6819,55.213917,2749.3616};
+ name="resource_1";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=33.808205;
+ b=43.442665;
+ angle=258.38504;
+ id=844;
+ atlOffset=25.133549;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4981.1333,34.654079,4712.8867};
+ name="resource_2";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=33.808205;
+ b=43.442665;
+ angle=258.38504;
+ id=845;
+ atlOffset=25.133549;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={2377.168,71.382957,292.37088};
+ name="resource_3";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=34.364311;
+ angle=281.88538;
+ id=931;
+ atlOffset=24.968201;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={1399.2565,67.958206,3218.0715};
+ name="resource_4";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=34.364311;
+ angle=281.88538;
+ id=953;
+ atlOffset=24.968204;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={4761.6929,31.134258,3422.4944};
+ name="resource_5";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=34.364311;
+ angle=281.88538;
+ id=954;
+ atlOffset=24.968203;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={615.64569,64.118202,4531.6646};
+ name="resource_6";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=34.364311;
+ angle=281.88538;
+ id=985;
+ atlOffset=24.968201;
+ };
};
- areaSize[]={11.518372,0,10.682495};
- flags=1;
- id=1287;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.27588272;
- class CustomAttributes
+ id=1295;
+ atlOffset=48.67535;
+ };
+ class Item425
+ {
+ dataType="Layer";
+ name="Outposts";
+ class Entities
{
- class Attribute0
+ items=9;
+ class Item0
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
+ dataType="Marker";
+ position[]={1415.3971,23.813477,3642.7617};
+ name="outp_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=24.227222;
+ b=9.3463001;
+ angle=117.14042;
+ id=1282;
+ atlOffset=-17.058563;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={2032.615,37.313999,3057.0991};
+ name="outp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=15.121;
+ b=6.9070001;
+ angle=100.403;
+ id=1286;
+ atlOffset=0.00026702881;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4860.7744,52.124084,1823.7734};
+ name="outpost";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=35.475227;
+ b=37.37513;
+ angle=86.265015;
+ id=127;
+ atlOffset=45.462868;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={1452.9749,84.846191,3675.1572};
+ name="outpost_1";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=100.18131;
+ b=84.119888;
+ angle=222.62746;
+ id=247;
+ atlOffset=42.673824;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={2068.5688,82.962814,3058.2114};
+ name="outpost_2";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=42.216072;
+ b=49.989052;
+ angle=96.4664;
+ id=681;
+ atlOffset=45.432816;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={2647.5386,53.165367,2067.3352};
+ name="outpost_3";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=42.216072;
+ b=49.989052;
+ angle=96.4664;
+ id=716;
+ atlOffset=45.432816;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={2686.4749,54.17622,674.58069};
+ name="outpost_4";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=57.423988;
+ b=39.442661;
+ angle=161.31964;
+ id=843;
+ atlOffset=45.314682;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={3034.5715,6.4892635,1120.2444};
+ name="outpost_5";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=57.423988;
+ b=57.955338;
+ angle=165.46199;
+ id=1319;
};
- class Attribute1
+ class Item8
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={2636.5779,5.7779803,4985.8721};
+ name="outpost_6";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=31.908295;
+ b=41.619595;
+ angle=140.43472;
+ id=1322;
+ atlOffset=-0.015707493;
};
- nAttributes=2;
- };
- };
- class Item432
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3107.0007,6.9952321,3491.9038};
- angles[]={0,4.6408448,0};
};
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1289;
- type="Land_HelipadSquare_F";
+ id=1296;
+ atlOffset=13.568083;
};
- class Item433
+ class Item426
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={3104.6978,6.9976559,3490.8135};
- };
- areaSize[]={11.960327,0,9.0390625};
- areaIsRectangle=1;
- flags=1;
- id=1290;
- type="ModuleHideTerrainObjects_F";
- atlOffset=0.011147022;
- class CustomAttributes
+ dataType="Layer";
+ name="Roadblocks";
+ class Entities
{
- class Attribute0
+ items=13;
+ class Item0
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
+ dataType="Marker";
+ position[]={3308.9822,3.6585898,979.12695};
+ name="control";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=212;
};
- class Attribute1
+ class Item1
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={3049.5835,7.4179912,3872.4841};
+ name="control_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=242;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4266.3271,5.0996571,4582.0933};
+ name="control_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=930;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={4265.9912,8.9496841,3286.0215};
+ name="control_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=244;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={4627.585,9.5051651,2239.6206};
+ name="control_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=245;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={1271.1563,38.992809,3619.6057};
+ name="control_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=246;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={3948.8596,8.2044792,4177.8027};
+ name="control_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=926;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={3719.1729,8.7402697,4819.1719};
+ name="control_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=928;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={4160.6475,5.9042177,4873.8052};
+ name="control_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=929;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={1401.7302,11.867155,2159.1555};
+ name="control_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=1345;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={1957.8864,7.4242187,1545.792};
+ name="control_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=1346;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={2237.446,7.9464197,4653.5996};
+ name="control_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=1347;
+ atlOffset=7.6293945e-006;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={3817.2368,5.7865357,470.80994};
+ name="control_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=1348;
};
- nAttributes=2;
- };
- };
- class Item434
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2643.9585,10.815956,650.96503};
- angles[]={0,5.921464,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=1291;
- type="Land_HelipadCircle_F";
- atlOffset=3.7297664;
- };
- class Item435
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2644.7456,6.7616949,2048.8984};
- angles[]={0,0.083399855,0};
};
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1294;
- type="Land_HelipadSquare_F";
+ id=1297;
+ atlOffset=1.9014182;
};
- class Item436
+ class Item427
{
dataType="Layer";
- name="Resources";
+ name="Spawner and Waypoints";
class Entities
{
- items=7;
+ items=21;
class Item0
{
dataType="Marker";
- position[]={3883.0239,30.524418,1004.2935};
- name="resource";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=51.14547;
- b=51.037296;
- angle=281.88538;
- id=125;
- atlOffset=23.737984;
+ position[]={-86.766953,10.392496,5012.8364};
+ name="seaAttackSpawn";
+ type="mil_ambush";
+ colorName="ColorWhite";
+ angle=28.695;
+ id=214;
};
class Item1
{
dataType="Marker";
- position[]={1233.6819,55.213917,2749.3616};
- name="resource_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=33.808205;
- b=43.442665;
- angle=258.38504;
- id=844;
- atlOffset=25.133549;
+ position[]={3617.7515,1.7949219,5236.0488};
+ name="seaAttackSpawn_3";
+ type="mil_ambush";
+ colorName="ColorWhite";
+ angle=28.695;
+ id=688;
+ atlOffset=-6.8075686;
};
class Item2
{
dataType="Marker";
- position[]={4981.1333,34.654079,4712.8867};
- name="resource_2";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=33.808205;
- b=43.442665;
- angle=258.38504;
- id=845;
- atlOffset=25.133549;
+ position[]={5180.1646,1.0527344,3885.031};
+ name="seaAttackSpawn_4";
+ type="mil_ambush";
+ colorName="ColorWhite";
+ angle=28.695;
+ id=689;
+ atlOffset=-10.168013;
};
class Item3
{
dataType="Marker";
- position[]={2377.168,71.382957,292.37088};
- name="resource_3";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=34.364311;
- angle=281.88538;
- id=931;
- atlOffset=24.968201;
+ position[]={1861.449,8.3984413,-99.121216};
+ name="seaAttackSpawn_5";
+ type="mil_ambush";
+ colorName="ColorWhite";
+ angle=28.695;
+ id=690;
+ atlOffset=-27.055641;
};
class Item4
{
dataType="Marker";
- position[]={1399.2565,67.958206,3218.0715};
- name="resource_4";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=34.364311;
- angle=281.88538;
- id=953;
- atlOffset=24.968204;
+ position[]={5277.0903,6.4091797,796.3894};
+ name="seaAttackSpawn_7";
+ type="mil_ambush";
+ colorName="ColorWhite";
+ angle=28.695;
+ id=692;
+ atlOffset=-5.711935;
};
class Item5
{
dataType="Marker";
- position[]={4761.6929,31.134258,3422.4944};
- name="resource_5";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=34.364311;
- angle=281.88538;
- id=954;
- atlOffset=24.968203;
+ position[]={4058.6799,8.3559999,3858.542};
+ name="road";
+ type="hd_arrow";
+ id=1298;
+ atlOffset=0.00029850006;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4451.5996,8.6188192,2740.1096};
+ name="road_1";
+ type="hd_arrow";
+ id=1299;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={1438.3711,26.031063,2265.2686};
+ name="road_10";
+ type="hd_arrow";
+ id=1308;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={1329.1234,37.862492,3139.7598};
+ name="road_11";
+ type="hd_arrow";
+ id=1309;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={649.07141,32.622135,4180.8223};
+ name="road_12";
+ type="hd_arrow";
+ id=1310;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={1573.249,5.2747269,1357.7197};
+ name="road_13";
+ type="hd_arrow";
+ id=1311;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={2497.8396,8.538537,1762.6943};
+ name="road_14";
+ type="hd_arrow";
+ id=1312;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4899.1104,7.3922772,1492.2739};
+ name="road_2";
+ type="hd_arrow";
+ id=1300;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={4687.3867,6.3900547,572.10052};
+ name="road_3";
+ type="hd_arrow";
+ id=1301;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={4034.6238,5.5726194,186.46881};
+ name="road_4";
+ type="hd_arrow";
+ id=1302;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={3494.7595,4.7622852,1018.7125};
+ name="road_5";
+ type="hd_arrow";
+ id=1303;
+ atlOffset=-1.4305115e-006;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={3110.3372,5.6137781,845.48492};
+ name="road_6";
+ type="hd_arrow";
+ id=1304;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={2517.1807,14.921409,594.94141};
+ name="road_7";
+ type="hd_arrow";
+ id=1305;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={1854.1124,35.718628,7.8616333};
+ name="road_8";
+ type="hd_arrow";
+ id=1306;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={803.37457,10.002952,1270.8616};
+ name="road_9";
+ type="hd_arrow";
+ id=1307;
};
- class Item6
+ class Item20
{
dataType="Marker";
- position[]={615.64569,64.118202,4531.6646};
- name="resource_6";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=34.364311;
- angle=281.88538;
- id=985;
- atlOffset=24.968201;
+ position[]={3854.791,20.436001,4481.6221};
+ name="spawnpoint";
+ type="hd_start";
+ angle=28.146986;
+ id=211;
+ atlOffset=12.870616;
};
};
- id=1295;
- atlOffset=48.67535;
+ id=1313;
+ atlOffset=9.7822409;
};
- class Item437
+ class Item428
{
dataType="Layer";
- name="Outposts";
+ name="Factories";
class Entities
{
- items=9;
+ items=3;
class Item0
{
dataType="Marker";
- position[]={1415.3971,23.813477,3642.7617};
- name="outp_1_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=24.227222;
- b=9.3463001;
- angle=117.14042;
- id=1282;
- atlOffset=-17.058563;
- };
- class Item1
- {
- dataType="Marker";
- position[]={2032.615,37.313999,3057.0991};
- name="outp_2_vehicle";
+ position[]={3129.2661,7.335,3542.813};
+ name="fact_1_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
a=15.121;
b=6.9070001;
- angle=100.403;
- id=1286;
- atlOffset=0.00026702881;
- };
- class Item2
- {
- dataType="Marker";
- position[]={4860.7744,52.124084,1823.7734};
- name="outpost";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=35.475227;
- b=37.37513;
- angle=86.265015;
- id=127;
- atlOffset=45.462868;
- };
- class Item3
- {
- dataType="Marker";
- position[]={1452.9749,84.846191,3675.1572};
- name="outpost_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=100.18131;
- b=84.119888;
- angle=222.62746;
- id=247;
- atlOffset=42.673824;
+ angle=162.44699;
+ id=1288;
+ atlOffset=-0.00011014938;
};
- class Item4
+ class Item1
{
dataType="Marker";
- position[]={2068.5688,82.962814,3058.2114};
- name="outpost_2";
+ position[]={1439.6815,38.797718,3023.0801};
+ name="factory";
markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=42.216072;
- b=49.989052;
- angle=96.4664;
- id=681;
- atlOffset=45.432816;
+ colorName="ColorOrange";
+ a=85.199837;
+ b=48.280182;
+ angle=359.70923;
+ id=126;
+ atlOffset=0.22445679;
};
- class Item5
+ class Item2
{
dataType="Marker";
- position[]={2647.5386,53.165367,2067.3352};
- name="outpost_3";
+ position[]={3126.2844,7.6508861,3512.4392};
+ name="factory_1";
markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=42.216072;
- b=49.989052;
- angle=96.4664;
- id=716;
- atlOffset=45.432816;
+ colorName="ColorOrange";
+ a=57.829742;
+ b=54.813107;
+ angle=359.70923;
+ id=964;
+ atlOffset=0.57536125;
};
- class Item6
+ };
+ id=1314;
+ atlOffset=5.7408857;
+ };
+ class Item429
+ {
+ dataType="Layer";
+ name="Airport";
+ class Entities
+ {
+ items=3;
+ class Item0
{
dataType="Marker";
- position[]={2686.4749,54.17622,674.58069};
- name="outpost_4";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=57.423988;
- b=39.442661;
- angle=161.31964;
- id=843;
- atlOffset=45.314682;
+ position[]={3978.9839,4.973,4687};
+ name="airp_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=4.803;
+ b=5.3460002;
+ id=1292;
+ atlOffset=0.00015306473;
};
- class Item7
+ class Item1
{
dataType="Marker";
- position[]={3034.5715,6.4892635,1120.2444};
- name="outpost_5";
+ position[]={3904.501,4.5180001,4650.5479};
+ name="airp_vehicle";
markerType="RECTANGLE";
- type="Empty";
+ type="rectangle";
colorName="ColorGreen";
- a=57.423988;
- b=57.955338;
- angle=165.46202;
- id=1319;
+ a=16.458;
+ b=5.0430002;
+ angle=161.61501;
+ id=1293;
+ atlOffset=0.00026082993;
};
- class Item8
+ class Item2
{
dataType="Marker";
- position[]={2636.5779,5.7779803,4985.8721};
- name="outpost_6";
+ position[]={3930.6348,22.849316,4636.3511};
+ name="airport";
markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=31.908295;
- b=41.619595;
- angle=140.43472;
- id=1322;
- atlOffset=-0.015707493;
+ colorName="ColorEAST";
+ a=118.31271;
+ b=60.644157;
+ angle=159.46762;
+ id=124;
+ atlOffset=18.48539;
};
};
- id=1296;
- atlOffset=13.568083;
+ id=1315;
+ atlOffset=8.8944836;
};
- class Item438
+ class Item430
{
dataType="Layer";
- name="Roadblocks";
+ name="Standard marker";
class Entities
{
- items=13;
+ items=9;
class Item0
{
dataType="Marker";
- position[]={3308.9822,3.6585898,979.12695};
- name="control";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=212;
+ position[]={5189.0352,9.2373695,649.89111};
+ name="CSAT_carrier";
+ type="flag_CSAT";
+ id=129;
+ atlOffset=-9.5367432e-007;
};
class Item1
{
dataType="Marker";
- position[]={3049.5835,7.4179912,3872.4841};
- name="control_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=242;
+ position[]={3614.7432,8.600626,5180.9927};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=217;
};
class Item2
{
dataType="Marker";
- position[]={4266.3271,5.0996571,4582.0933};
- name="control_10";
+ position[]={3832.3286,-1.9667969,4493.7959};
+ name="detectPlayer";
markerType="RECTANGLE";
type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=930;
+ a=25.366987;
+ b=348.42606;
+ angle=339.89185;
+ id=925;
+ atlOffset=-9.6127625;
};
class Item3
{
dataType="Marker";
- position[]={4265.9912,8.9496841,3286.0215};
- name="control_3";
+ position[]={4030.4436,9.5270004,2557.8586};
+ name="island";
markerType="RECTANGLE";
type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=244;
+ colorName="ColorCIV";
+ fillName="Border";
+ a=1103.1614;
+ b=2565.2739;
+ drawBorder=1;
+ id=714;
+ atlOffset=3.9198823;
};
class Item4
{
dataType="Marker";
- position[]={4627.585,9.5051651,2239.6206};
- name="control_4";
+ position[]={1495.9608,57.251976,2546.8567};
+ name="island_1";
markerType="RECTANGLE";
type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=245;
+ colorName="ColorCIV";
+ fillName="Border";
+ a=1443.525;
+ b=2554.7339;
+ drawBorder=1;
+ id=715;
+ atlOffset=33.54628;
};
class Item5
{
dataType="Marker";
- position[]={1271.1563,38.992809,3619.6057};
- name="control_5";
+ position[]={1324.1962,48.233715,385.39087};
+ name="Synd_HQ";
markerType="RECTANGLE";
type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=246;
+ colorName="ColorPink";
+ a=50;
+ b=50;
+ id=132;
+ atlOffset=13.943714;
};
class Item6
{
dataType="Marker";
- position[]={3948.8596,8.2044792,4177.8027};
- name="control_6";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=926;
+ position[]={3540.5605,6.3308487,5192.9038};
+ name="NATO_carrier";
+ type="flag_UN";
+ id=130;
};
class Item7
{
dataType="Marker";
- position[]={3719.1729,8.7402697,4819.1719};
- name="control_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=928;
+ position[]={5265.6465,122.77921,748.57959};
+ name="respawn_east";
+ type="flag_Viper";
+ id=226;
+ atlOffset=112.75693;
};
class Item8
{
dataType="Marker";
- position[]={4160.6475,5.9042177,4873.8052};
- name="control_9";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=929;
+ position[]={1320.0853,2.7037606e+012,385.2392};
+ name="respawn_guerrila";
+ text="Your Headquarters";
+ type="hd_flag";
+ colorName="ColorGUER";
+ id=133;
+ atlOffset=2.7037606e+012;
+ };
+ };
+ id=1316;
+ atlOffset=1.3518803e+012;
+ };
+ class Item431
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={1312.6346,34.290001,391.96024};
+ };
+ name="HC_commanderX";
+ id=1317;
+ type="HighCommand";
+ };
+ class Item432
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={1316.0343,34.290001,391.86551};
+ };
+ id=1318;
+ type="HighCommandSubordinate";
+ };
+ class Item433
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2990.3423,12.480574,1127.8311};
+ angles[]={0,1.4983648,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1320;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item434
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3039.627,12.210033,1076.4984};
+ angles[]={0,0.025648184,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1321;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-9.5367432e-007;
+ };
+ class Item435
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2616.0569,10.785845,4988.7681};
+ angles[]={0,1.3340008,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1323;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-4.7683716e-007;
+ };
+ class Item436
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2654.739,10.659266,4994.2832};
+ angles[]={0,3.8913257,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1324;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item437
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3134.3909,7.4326992,867.79242};
+ };
+ areaSize[]={5.7648926,0,6.0116882};
+ flags=1;
+ id=1328;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-0.15570736;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item438
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3175.3359,7.7366323,918.88867};
+ };
+ areaSize[]={8.0706787,0,8.0160217};
+ flags=1;
+ id=1329;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=1.1527967;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item9
+ nAttributes=2;
+ };
+ };
+ class Item439
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3250.9468,4.5502481,964.71893};
+ };
+ areaSize[]={10.326538,0,9.0950012};
+ flags=1;
+ id=1330;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-0.12501049;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={1401.7302,11.867155,2159.1555};
- name="control_7";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=1345;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item10
+ class Attribute1
{
- dataType="Marker";
- position[]={1957.8864,7.4242187,1545.792};
- name="control_11";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=1346;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
- class Item11
+ nAttributes=2;
+ };
+ };
+ class Item440
+ {
+ dataType="Marker";
+ position[]={3284.5493,0.56900001,968.2691};
+ name="marker_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=14.98178;
+ b=5.3061624;
+ angle=335.49991;
+ id=1335;
+ atlOffset=4.1576209;
+ };
+ class Item441
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={3284.5493,2.6752458,968.29584};
+ angles[]={0,5.8555794,0};
+ };
+ areaSize[]={15.056807,0,5.3783436};
+ areaIsRectangle=1;
+ flags=1;
+ id=1337;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=6.2623558;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={2237.446,7.9464197,4653.5996};
- name="control_12";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=1347;
- atlOffset=7.6293945e-006;
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
};
- class Item12
+ class Attribute1
{
- dataType="Marker";
- position[]={3817.2368,5.7865357,470.80994};
- name="control_13";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=1348;
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
};
+ nAttributes=2;
};
- id=1297;
- atlOffset=1.9014182;
};
- class Item439
+ class Item442
{
- dataType="Layer";
- name="Spawner and Waypoints";
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2398.7771,47.447998,315.45898};
+ angles[]={0,2.9712381,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=1338;
+ type="Land_dp_transformer_F";
+ atlOffset=-0.049068451;
+ };
+ class Item443
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2394.3308,47.79541,314.69119};
+ angles[]={0,2.9712381,0};
+ };
+ side="Empty";
+ flags=1;
+ class Attributes
+ {
+ };
+ id=1339;
+ type="Land_dp_transformer_F";
+ atlOffset=0.37271881;
+ };
+ class Item444
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2389.7578,48.037567,313.84106};
+ angles[]={0,2.9712381,0};
+ };
+ side="Empty";
+ flags=1;
+ class Attributes
+ {
+ };
+ id=1340;
+ type="Land_dp_transformer_F";
+ atlOffset=0.65101624;
+ };
+ class Item445
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2358.9067,48.766106,282.12637};
+ angles[]={0,1.3588662,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=1344;
+ type="Land_Tank_rust_F";
+ };
+ class Item446
+ {
+ dataType="Group";
+ side="Independent";
class Entities
{
- items=21;
+ items=38;
class Item0
{
- dataType="Marker";
- position[]={-86.766953,10.392496,5012.8364};
- name="seaAttackSpawn";
- type="mil_ambush";
- colorName="ColorWhite";
- angle=28.695;
- id=214;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1334.1346,34.291439,381.68088};
+ };
+ side="Independent";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1350;
+ type="I_G_Soldier_TL_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
class Item1
{
- dataType="Marker";
- position[]={3617.7515,1.7949219,5236.0488};
- name="seaAttackSpawn_3";
- type="mil_ambush";
- colorName="ColorWhite";
- angle=28.695;
- id=688;
- atlOffset=-6.8075686;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1338.9296,34.730358,378.97775};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1351;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.42892075;
};
class Item2
{
- dataType="Marker";
- position[]={5180.1646,1.0527344,3885.031};
- name="seaAttackSpawn_4";
- type="mil_ambush";
- colorName="ColorWhite";
- angle=28.695;
- id=689;
- atlOffset=-10.168013;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1339.0682,34.733829,381.21359};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1352;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.43611908;
};
class Item3
{
- dataType="Marker";
- position[]={1861.449,8.3984413,-99.121216};
- name="seaAttackSpawn_5";
- type="mil_ambush";
- colorName="ColorWhite";
- angle=28.695;
- id=690;
- atlOffset=-27.055641;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1339.0106,34.69775,383.54709};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1353;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.40029907;
};
class Item4
{
- dataType="Marker";
- position[]={5277.0903,6.4091797,796.3894};
- name="seaAttackSpawn_7";
- type="mil_ambush";
- colorName="ColorWhite";
- angle=28.695;
- id=692;
- atlOffset=-5.711935;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1338.8475,34.601688,385.86057};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1354;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.31024933;
};
class Item5
{
- dataType="Marker";
- position[]={4058.6799,8.3559999,3858.542};
- name="road";
- type="hd_arrow";
- id=1298;
- atlOffset=0.00029850006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1338.8065,34.511631,388.31467};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1355;
+ type="I_G_Soldier_TL_F";
+ atlOffset=0.22019196;
};
class Item6
{
- dataType="Marker";
- position[]={4451.5996,8.6188192,2740.1096};
- name="road_1";
- type="hd_arrow";
- id=1299;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1338.621,34.391979,390.63058};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1356;
+ type="I_G_Soldier_F";
+ atlOffset=0.10054016;
};
class Item7
{
- dataType="Marker";
- position[]={1438.3711,26.031063,2265.2686};
- name="road_10";
- type="hd_arrow";
- id=1308;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1338.4139,34.264805,392.52609};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1357;
+ type="I_G_Soldier_F";
+ atlOffset=-0.026634216;
};
class Item8
{
- dataType="Marker";
- position[]={1329.1234,37.862492,3139.7598};
- name="road_11";
- type="hd_arrow";
- id=1309;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1341.2889,34.941303,379.10129};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1358;
+ type="I_G_Soldier_F";
+ atlOffset=0.63986588;
};
class Item9
{
- dataType="Marker";
- position[]={649.07141,32.622135,4180.8223};
- name="road_12";
- type="hd_arrow";
- id=1310;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1341.288,34.931866,381.44064};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1359;
+ type="I_G_Soldier_F";
+ atlOffset=0.63042831;
};
class Item10
{
- dataType="Marker";
- position[]={1573.249,5.2747269,1357.7197};
- name="road_13";
- type="hd_arrow";
- id=1311;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1341.1815,34.882946,383.81418};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1360;
+ type="I_G_Soldier_F";
+ atlOffset=0.58656311;
};
class Item11
{
- dataType="Marker";
- position[]={2497.8396,8.538537,1762.6943};
- name="road_14";
- type="hd_arrow";
- id=1312;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1341.1229,34.800129,386.01389};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1361;
+ type="I_G_Soldier_F";
+ atlOffset=0.50868988;
};
class Item12
{
- dataType="Marker";
- position[]={4899.1104,7.3922772,1492.2739};
- name="road_2";
- type="hd_arrow";
- id=1300;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1340.9198,34.672565,388.43625};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1362;
+ type="I_G_Soldier_F";
+ atlOffset=0.3811264;
};
class Item13
{
- dataType="Marker";
- position[]={4687.3867,6.3900547,572.10052};
- name="road_3";
- type="hd_arrow";
- id=1301;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1340.7323,34.520565,390.7673};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1363;
+ type="I_G_Soldier_F";
+ atlOffset=0.22912598;
};
class Item14
{
- dataType="Marker";
- position[]={4034.6238,5.5726194,186.46881};
- name="road_4";
- type="hd_arrow";
- id=1302;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1343.3973,35.130116,379.13742};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1364;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.82867813;
};
class Item15
{
- dataType="Marker";
- position[]={3494.7595,4.7622852,1018.7125};
- name="road_5";
- type="hd_arrow";
- id=1303;
- atlOffset=-1.4305115e-006;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1343.5594,35.134899,381.57736};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1365;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.83346176;
};
class Item16
{
- dataType="Marker";
- position[]={3110.3372,5.6137781,845.48492};
- name="road_6";
- type="hd_arrow";
- id=1304;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1343.1591,35.053822,383.9924};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1366;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.75815201;
};
class Item17
{
- dataType="Marker";
- position[]={2517.1807,14.921409,594.94141};
- name="road_7";
- type="hd_arrow";
- id=1305;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1343.1356,34.953831,386.14133};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1367;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.65985107;
};
class Item18
{
- dataType="Marker";
- position[]={1854.1124,35.718628,7.8616333};
- name="road_8";
- type="hd_arrow";
- id=1306;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1342.9354,34.806393,388.38254};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1368;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.51495361;
};
class Item19
{
- dataType="Marker";
- position[]={803.37457,10.002952,1270.8616};
- name="road_9";
- type="hd_arrow";
- id=1307;
- };
- class Item20
- {
- dataType="Marker";
- position[]={3854.791,20.436001,4481.6221};
- name="spawnpoint";
- type="hd_start";
- angle=28.14699;
- id=211;
- atlOffset=12.870616;
- };
- };
- id=1313;
- atlOffset=9.7822409;
- };
- class Item440
- {
- dataType="Layer";
- name="Factories";
- class Entities
- {
- items=3;
- class Item0
- {
- dataType="Marker";
- position[]={3129.2661,7.335,3542.813};
- name="fact_1_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=15.121;
- b=6.9070001;
- angle=162.44699;
- id=1288;
- atlOffset=-0.00011014938;
- };
- class Item1
- {
- dataType="Marker";
- position[]={1439.6815,38.797718,3023.0801};
- name="factory";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorOrange";
- a=85.199837;
- b=48.280182;
- angle=359.70923;
- id=126;
- atlOffset=0.22445679;
- };
- class Item2
- {
- dataType="Marker";
- position[]={3126.2844,7.6508861,3512.4392};
- name="factory_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorOrange";
- a=57.829742;
- b=54.813107;
- angle=359.70923;
- id=964;
- atlOffset=0.57536125;
- };
- };
- id=1314;
- atlOffset=5.7408857;
- };
- class Item441
- {
- dataType="Layer";
- name="Airport";
- class Entities
- {
- items=3;
- class Item0
- {
- dataType="Marker";
- position[]={3978.9839,4.973,4687};
- name="airp_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=4.803;
- b=5.3460002;
- id=1292;
- atlOffset=0.00015306473;
- };
- class Item1
- {
- dataType="Marker";
- position[]={3904.501,4.5180001,4650.5479};
- name="airp_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=16.458;
- b=5.0430002;
- angle=161.61501;
- id=1293;
- atlOffset=0.00026082993;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1342.8485,34.65324,390.84152};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1369;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.36180115;
};
- class Item2
+ class Item20
{
- dataType="Marker";
- position[]={3930.6348,22.849316,4636.3511};
- name="airport";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorEAST";
- a=118.31271;
- b=60.644157;
- angle=159.46762;
- id=124;
- atlOffset=18.48539;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1345.4862,35.316975,379.21701};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1370;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.0155373;
};
- };
- id=1315;
- atlOffset=8.8944836;
- };
- class Item442
- {
- dataType="Layer";
- name="Standard marker";
- class Entities
- {
- items=9;
- class Item0
+ class Item21
{
- dataType="Marker";
- position[]={5189.0352,9.2373695,649.89111};
- name="CSAT_carrier";
- type="flag_CSAT";
- id=129;
- atlOffset=-9.5367432e-007;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1345.3563,35.296062,381.53488};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1371;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.99462509;
};
- class Item1
+ class Item22
{
- dataType="Marker";
- position[]={3614.7432,8.600626,5180.9927};
- name="respawn_west";
- type="flag_CTRG";
- id=217;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1345.2323,35.201481,384.27902};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1372;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.90004349;
};
- class Item2
+ class Item23
{
- dataType="Marker";
- position[]={3832.3286,-1.9667969,4493.7959};
- name="detectPlayer";
- markerType="RECTANGLE";
- type="rectangle";
- a=25.366987;
- b=348.42606;
- angle=339.89185;
- id=925;
- atlOffset=-9.6127625;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1345.0585,35.069653,386.28781};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1373;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.77316666;
};
- class Item3
+ class Item24
{
- dataType="Marker";
- position[]={4030.4436,9.5270004,2557.8586};
- name="island";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorCIV";
- fillName="Border";
- a=1103.1614;
- b=2565.2739;
- drawBorder=1;
- id=714;
- atlOffset=3.9198823;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1344.9891,34.934124,388.47238};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1374;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.64268494;
};
- class Item4
+ class Item25
{
- dataType="Marker";
- position[]={1495.9608,57.251976,2546.8567};
- name="island_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorCIV";
- fillName="Border";
- a=1443.525;
- b=2554.7339;
- drawBorder=1;
- id=715;
- atlOffset=33.54628;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1344.8837,34.777798,390.9631};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1375;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.48635864;
};
- class Item5
+ class Item26
{
- dataType="Marker";
- position[]={1324.1962,48.233715,385.39087};
- name="Synd_HQ";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorPink";
- a=50;
- b=50;
- id=132;
- atlOffset=13.943714;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1347.0135,35.318287,379.29465};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1376;
+ type="I_G_medic_F";
+ atlOffset=1.0168495;
};
- class Item6
+ class Item27
{
- dataType="Marker";
- position[]={3540.5605,6.3308487,5192.9038};
- name="NATO_carrier";
- type="flag_UN";
- id=130;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1346.8378,35.309559,381.57443};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1377;
+ type="I_G_medic_F";
+ atlOffset=1.0081215;
};
- class Item7
+ class Item28
{
- dataType="Marker";
- position[]={5265.6465,122.77921,748.57959};
- name="respawn_east";
- type="flag_Viper";
- id=226;
- atlOffset=112.75693;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1346.7958,35.213879,384.44601};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1378;
+ type="I_G_medic_F";
+ atlOffset=0.91244125;
};
- class Item8
+ class Item29
{
- dataType="Marker";
- position[]={1320.0853,2.7037606e+012,385.2392};
- name="respawn_guerrila";
- text="Your Headquarters";
- type="hd_flag";
- colorName="ColorGUER";
- id=133;
- atlOffset=2.7037606e+012;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1346.7079,35.105251,386.25266};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1379;
+ type="I_G_medic_F";
+ atlOffset=0.80698013;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1346.5243,34.96323,388.61203};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1380;
+ type="I_G_medic_F";
+ atlOffset=0.66603851;
};
- };
- id=1316;
- atlOffset=1.3518803e+012;
- };
- class Item443
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={1312.6346,34.290001,391.96024};
- };
- name="HC_commanderX";
- id=1317;
- type="HighCommand";
- };
- class Item444
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={1316.0343,34.290001,391.86551};
- };
- id=1318;
- type="HighCommandSubordinate";
- };
- class Item445
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2990.3423,12.480574,1127.8311};
- angles[]={0,1.4983648,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1320;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=4.7683716e-007;
- };
- class Item446
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3039.627,12.210033,1076.4984};
- angles[]={0,0.025648184,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1321;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=-9.5367432e-007;
- };
- class Item447
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2616.0569,10.785845,4988.7681};
- angles[]={0,1.3340008,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1323;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=-4.7683716e-007;
- };
- class Item448
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2654.739,10.659266,4994.2832};
- angles[]={0,3.8913257,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1324;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=9.5367432e-007;
- };
- class Item449
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3134.3909,7.4326992,867.79242};
- };
- areaSize[]={5.7648926,0,6.0116882};
- flags=1;
- id=1328;
- type="ModuleHideTerrainObjects_F";
- atlOffset=-0.15570736;
- class CustomAttributes
- {
- class Attribute0
+ class Item31
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1346.535,34.818661,391.02267};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
+ map="ItemMap";
};
};
+ id=1381;
+ type="I_G_medic_F";
+ atlOffset=0.52722168;
};
- class Attribute1
+ class Item32
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1348.8153,35.314739,379.45969};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
+ map="ItemMap";
};
};
+ id=1382;
+ type="I_G_engineer_F";
+ atlOffset=1.0133018;
};
- nAttributes=2;
- };
- };
- class Item450
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3175.3359,7.7366323,918.88867};
- };
- areaSize[]={8.0706787,0,8.0160217};
- flags=1;
- id=1329;
- type="ModuleHideTerrainObjects_F";
- atlOffset=1.1527967;
- class CustomAttributes
- {
- class Attribute0
+ class Item33
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1348.8387,35.314365,381.75998};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
+ map="ItemMap";
};
};
+ id=1383;
+ type="I_G_engineer_F";
+ atlOffset=1.012928;
};
- class Attribute1
+ class Item34
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1348.5966,35.211964,384.55002};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
+ map="ItemMap";
};
};
+ id=1384;
+ type="I_G_engineer_F";
+ atlOffset=0.91052628;
};
- nAttributes=2;
- };
- };
- class Item451
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={3250.9468,4.5502481,964.71893};
- };
- areaSize[]={10.326538,0,9.0950012};
- flags=1;
- id=1330;
- type="ModuleHideTerrainObjects_F";
- atlOffset=-0.12501049;
- class CustomAttributes
- {
- class Attribute0
+ class Item35
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1348.3417,35.094501,386.49777};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=1385;
+ type="I_G_engineer_F";
+ atlOffset=0.79306412;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1348.1464,34.959827,388.7341};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
+ map="ItemMap";
};
};
+ id=1386;
+ type="I_G_engineer_F";
+ atlOffset=0.66312408;
};
- class Attribute1
+ class Item37
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={1348.0419,34.811428,391.20334};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
+ map="ItemMap";
};
};
+ id=1387;
+ type="I_G_engineer_F";
+ atlOffset=0.51782227;
};
- nAttributes=2;
};
- };
- class Item452
- {
- dataType="Marker";
- position[]={3284.5493,0.56900001,968.2691};
- name="marker_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=14.98178;
- b=5.3061624;
- angle=335.49997;
- id=1335;
- atlOffset=4.1576209;
- };
- class Item453
- {
- dataType="Logic";
- class PositionInfo
+ class Attributes
{
- position[]={3284.5493,2.6752458,968.29584};
- angles[]={0,5.8555794,0};
};
- areaSize[]={15.056807,0,5.3783436};
- areaIsRectangle=1;
- flags=1;
- id=1337;
- type="ModuleHideTerrainObjects_F";
- atlOffset=6.2623558;
+ id=1349;
class CustomAttributes
{
class Attribute0
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
- };
- class Attribute1
- {
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
+ property="groupID";
+ expression="_this setGroupID [_value];";
class Value
{
class data
@@ -12084,93 +11480,26 @@ class Mission
{
type[]=
{
- "BOOL"
+ "STRING"
};
};
- value=0;
+ value="Guerillas";
};
};
};
- nAttributes=2;
- };
- };
- class Item454
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2398.7771,47.447998,315.45898};
- angles[]={0,2.9712381,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1338;
- type="Land_dp_transformer_F";
- atlOffset=-0.049068451;
- };
- class Item455
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2394.3308,47.79541,314.69119};
- angles[]={0,2.9712381,0};
- };
- side="Empty";
- flags=1;
- class Attributes
- {
- };
- id=1339;
- type="Land_dp_transformer_F";
- atlOffset=0.37271881;
- };
- class Item456
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2389.7578,48.037567,313.84106};
- angles[]={0,2.9712381,0};
- };
- side="Empty";
- flags=1;
- class Attributes
- {
- };
- id=1340;
- type="Land_dp_transformer_F";
- atlOffset=0.65101624;
- };
- class Item457
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2358.9067,48.766106,282.12637};
- angles[]={0,1.3588662,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
+ nAttributes=1;
};
- id=1344;
- type="Land_Tank_rust_F";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=25;
+ nextID=39;
};
class Links
{
- items=25;
+ items=39;
class Item0
{
linkID=0;
@@ -12184,7 +11513,7 @@ class Mission
class Item1
{
linkID=1;
- item0=147;
+ item0=1350;
item1=1317;
class CustomData
{
@@ -12194,7 +11523,7 @@ class Mission
class Item2
{
linkID=2;
- item0=151;
+ item0=1351;
item1=1317;
class CustomData
{
@@ -12204,7 +11533,7 @@ class Mission
class Item3
{
linkID=3;
- item0=152;
+ item0=1352;
item1=1317;
class CustomData
{
@@ -12214,7 +11543,7 @@ class Mission
class Item4
{
linkID=4;
- item0=154;
+ item0=1353;
item1=1317;
class CustomData
{
@@ -12224,7 +11553,7 @@ class Mission
class Item5
{
linkID=5;
- item0=158;
+ item0=1354;
item1=1317;
class CustomData
{
@@ -12234,7 +11563,7 @@ class Mission
class Item6
{
linkID=6;
- item0=160;
+ item0=1355;
item1=1317;
class CustomData
{
@@ -12244,7 +11573,7 @@ class Mission
class Item7
{
linkID=7;
- item0=170;
+ item0=1356;
item1=1317;
class CustomData
{
@@ -12254,7 +11583,7 @@ class Mission
class Item8
{
linkID=8;
- item0=175;
+ item0=1357;
item1=1317;
class CustomData
{
@@ -12264,7 +11593,7 @@ class Mission
class Item9
{
linkID=9;
- item0=177;
+ item0=1358;
item1=1317;
class CustomData
{
@@ -12274,7 +11603,7 @@ class Mission
class Item10
{
linkID=10;
- item0=184;
+ item0=1359;
item1=1317;
class CustomData
{
@@ -12284,7 +11613,7 @@ class Mission
class Item11
{
linkID=11;
- item0=185;
+ item0=1360;
item1=1317;
class CustomData
{
@@ -12294,7 +11623,7 @@ class Mission
class Item12
{
linkID=12;
- item0=186;
+ item0=1361;
item1=1317;
class CustomData
{
@@ -12304,7 +11633,7 @@ class Mission
class Item13
{
linkID=13;
- item0=188;
+ item0=1362;
item1=1317;
class CustomData
{
@@ -12314,7 +11643,7 @@ class Mission
class Item14
{
linkID=14;
- item0=190;
+ item0=1363;
item1=1317;
class CustomData
{
@@ -12324,7 +11653,7 @@ class Mission
class Item15
{
linkID=15;
- item0=191;
+ item0=1364;
item1=1317;
class CustomData
{
@@ -12334,7 +11663,7 @@ class Mission
class Item16
{
linkID=16;
- item0=192;
+ item0=1365;
item1=1317;
class CustomData
{
@@ -12344,7 +11673,7 @@ class Mission
class Item17
{
linkID=17;
- item0=194;
+ item0=1366;
item1=1317;
class CustomData
{
@@ -12354,7 +11683,7 @@ class Mission
class Item18
{
linkID=18;
- item0=197;
+ item0=1367;
item1=1317;
class CustomData
{
@@ -12364,7 +11693,7 @@ class Mission
class Item19
{
linkID=19;
- item0=200;
+ item0=1368;
item1=1317;
class CustomData
{
@@ -12374,7 +11703,7 @@ class Mission
class Item20
{
linkID=20;
- item0=202;
+ item0=1369;
item1=1317;
class CustomData
{
@@ -12384,7 +11713,7 @@ class Mission
class Item21
{
linkID=21;
- item0=204;
+ item0=1370;
item1=1317;
class CustomData
{
@@ -12394,7 +11723,7 @@ class Mission
class Item22
{
linkID=22;
- item0=207;
+ item0=1371;
item1=1317;
class CustomData
{
@@ -12404,7 +11733,7 @@ class Mission
class Item23
{
linkID=23;
- item0=208;
+ item0=1372;
item1=1317;
class CustomData
{
@@ -12414,7 +11743,147 @@ class Mission
class Item24
{
linkID=24;
- item0=209;
+ item0=1373;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item25
+ {
+ linkID=25;
+ item0=1374;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item26
+ {
+ linkID=26;
+ item0=1375;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item27
+ {
+ linkID=27;
+ item0=1376;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item28
+ {
+ linkID=28;
+ item0=1377;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item29
+ {
+ linkID=29;
+ item0=1378;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item30
+ {
+ linkID=30;
+ item0=1379;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item31
+ {
+ linkID=31;
+ item0=1380;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item32
+ {
+ linkID=32;
+ item0=1381;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item33
+ {
+ linkID=33;
+ item0=1382;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item34
+ {
+ linkID=34;
+ item0=1383;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item35
+ {
+ linkID=35;
+ item0=1384;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item36
+ {
+ linkID=36;
+ item0=1385;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item37
+ {
+ linkID=37;
+ item0=1386;
+ item1=1317;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item38
+ {
+ linkID=38;
+ item0=1387;
item1=1317;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm b/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm
index d821189931..1f56607cbe 100755
--- a/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm
+++ b/Map-Templates/Antistasi-Livonia.Enoch/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1030;
class ItemIDProvider
{
- nextID=3245;
+ nextID=3297;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=204;
+ nextID=276;
};
class Camera
{
- pos[]={962.53094,105.17551,5544.4683};
- dir[]={-0.56049997,-0.64726299,0.51661855};
- up[]={-0.47593507,0.7622658,0.43867427};
- aside[]={0.67773896,-1.3553654e-007,0.73530573};
+ pos[]={3211.3757,224.44746,8539.3467};
+ dir[]={0.88015741,-0.26389977,-0.39461026};
+ up[]={0.24083078,0.96453965,-0.10797425};
+ aside[]={-0.40911219,1.9308936e-007,-0.91250539};
};
};
binarizationWanted=0;
@@ -32,7 +32,6 @@ addons[]=
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F",
"A3_Characters_F",
- "A3_Weapons_F",
"A3_Structures_F_Mil_Flags",
"A3_Modules_F_Curator_Curator",
"A3_Structures_F_Civ_Camping",
@@ -44,7 +43,6 @@ addons[]=
"A3_Structures_F_Mil_Helipads",
"A3_Structures_F_Mil_Fortification",
"A3_Structures_F_Enoch_Military_Barracks",
- "A3_Structures_F_Enoch_Military_Camps",
"A3_Props_F_Enoch_Infrastructure_Traffic",
"A3_Structures_F_Enoch_Civilian_Accessories",
"A3_Structures_F_Enoch_Walls_Concrete",
@@ -59,24 +57,23 @@ addons[]=
"A3_Structures_F_EPA_Civ_Constructions",
"A3_Structures_F_Enoch_Military_Camonets",
"A3_Structures_F_Heli_Items_Airport",
- "A3_Structures_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Heli_Ind_Machines",
"A3_Structures_F_Mil_BagFence",
"A3_Structures_F_Items_Vessels",
"A3_Structures_F_Mil_Shelters",
"A3_Structures_F_Civ_Lamps",
- "A3_Props_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Enoch_Military_Radar",
"A3_Supplies_F_Heli_Bladders",
"A3_Ui_F",
"A3_Structures_F_Mil_TentHangar",
- "A3_Ui_F_Exp"
+ "A3_Ui_F_Exp",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
class List
{
- items=20;
+ items=18;
class Item0
{
className="A3_Weapons_F";
@@ -183,34 +180,20 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item15
- {
- className="A3_Structures_F_Orange";
- name="Arma 3 Orange - Buildings and Structures";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item16
- {
- className="A3_Props_F_Orange";
- name="Arma 3 Orange - Decorative and Mission Objects";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item17
{
className="A3_Supplies_F_Heli";
name="Arma 3 Helicopters - Ammoboxes and Supplies";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item18
+ class Item16
{
className="A3_Ui_F";
name="Arma 3 - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item19
+ class Item17
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
@@ -226,20 +209,15 @@ class Mission
{
briefingName=$STR_antistasi_mission_info_livonia_mapname_text;
resistanceWest=0;
- startWind=0.1;
- forecastWind=0.1;
- forecastWaves=0.1;
year=2035;
month=6;
day=1;
hour=10;
minute=0;
- startFogDecay=0.0049333;
- forecastFogDecay=0.0049333;
};
class Entities
{
- items=803;
+ items=781;
class Item0
{
dataType="Object";
@@ -461,29 +439,22 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={954.83466,77.172203,5564.3457};
- angles[]={6.2751918,0,0.094119832};
+ position[]={949.03876,76.610298,5567.9551};
+ angles[]={6.2272439,2.1016905,0.097292177};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=93;
+ id=95;
type="I_G_officer_F";
class CustomAttributes
{
@@ -502,7 +473,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -525,36 +496,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={958.36786,77.650902,5560.8213};
- angles[]={0.0080009829,6.2412972,0.16177347};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=97;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -566,181 +511,300 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="";
};
};
};
- class Attribute1
+ nAttributes=3;
+ };
+ };
+ };
+ class Attributes
+ {
+ };
+ id=94;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={956.30585,81.310669,5572.9268};
+ angles[]={0.0032018756,0,0.12888256};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=157;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item2
+ nAttributes=1;
+ };
+ };
+ class Item12
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={948.65082,75.988312,5557.5059};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=158;
+ type="HeadlessClient_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item13
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={950.4975,76.217697,5556.5117};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=159;
+ type="HeadlessClient_F";
+ atlOffset=1.5258789e-005;
+ };
+ class Item14
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={977.97998,80.936935,5558.8921};
+ };
+ id=163;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={969.82758,80.046257,5566.9736};
- angles[]={6.2527947,6.2412972,0.14771642};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=98;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "STRING"
};
};
+ value="#adminLogged";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item3
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={969.72455,80.101997,5569.7686};
- angles[]={6.2735858,6.2412972,0.15397188};
- };
- side="Independent";
- flags=4;
- class Attributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
+ class data
{
- map="ItemMap";
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="";
};
};
- id=104;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
+ "SCALAR"
};
};
+ value=3;
};
- class Attribute1
+ };
+ };
+ nAttributes=4;
+ };
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={952.55298,77.594696,5566.8052};
+ angles[]={6.2751913,1.0016968,0.094125606};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=172;
+ type="Land_TentDome_F";
+ atlOffset=7.6293945e-006;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item4
+ nAttributes=1;
+ };
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={952.04303,78.039307,5571.0591};
+ angles[]={6.2304416,0,0.094125606};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=173;
+ type="Land_MapBoard_Enoch_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={245.12823,392.56616,759.78418};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if (!isMultiplayer) then {deleteVehicle this};";
+ };
+ id=174;
+ type="Flag_NATO_F";
+ atlOffset=-0.64300537;
+ };
+ class Item18
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={969.82367,80.147293,5572.8848};
- angles[]={6.2735858,6.1574922,0.15397188};
+ position[]={235.25,388.81903,759.79999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=7;
class Attributes
{
- description="Machinegunner";
+ rank="SERGEANT";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=120;
- type="I_G_Soldier_AR_F";
+ id=177;
+ type="B_recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -758,7 +822,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -777,34 +841,33 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item5
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={969.91864,80.176949,5575.4717};
- angles[]={0.027193764,0,0.15865518};
+ position[]={239,388.76425,755.54999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=121;
- type="I_G_Soldier_AR_F";
+ id=178;
+ type="B_recon_M_F";
+ atlOffset=3.0517578e-005;
class CustomAttributes
{
class Attribute0
@@ -822,7 +885,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -841,34 +904,31 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item6
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={970.25092,80.158691,5578.0977};
- angles[]={0.027193764,0,0.15865518};
+ position[]={231.5,388.54343,757.79999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=127;
- type="I_G_Soldier_AR_F";
+ id=179;
+ type="B_recon_medic_F";
class CustomAttributes
{
class Attribute0
@@ -886,7 +946,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03ENG";
};
};
};
@@ -905,34 +965,32 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item7
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={970.3244,80.109978,5581.1719};
- angles[]={0.011198638,0,0.17421527};
+ position[]={228.5,388.1958,754.54999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=133;
- type="I_G_Soldier_AR_F";
+ id=180;
+ type="B_recon_F";
+ atlOffset=-3.0517578e-005;
class CustomAttributes
{
class Attribute0
@@ -950,7 +1008,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male09ENG";
};
};
};
@@ -969,34 +1027,31 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=1.01;
};
};
};
nAttributes=2;
};
};
- class Item8
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={967.3576,79.37915,5584.1582};
- angles[]={0.121006,0,0.075058199};
+ position[]={229.5,387.88742,751.29999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=139;
- type="I_G_Soldier_AR_F";
+ id=181;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1014,7 +1069,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -1040,27 +1095,24 @@ class Mission
nAttributes=2;
};
};
- class Item9
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={967.20917,78.971016,5587.4229};
- angles[]={0.121006,0,0.075058199};
+ position[]={225.75,387.64743,750.79999};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=145;
- type="I_G_Soldier_AR_F";
+ id=182;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1078,7 +1130,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -1104,155 +1156,36 @@ class Mission
nAttributes=2;
};
};
- class Item10
+ };
+ class Attributes
+ {
+ };
+ id=176;
+ };
+ class Item19
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={966.0224,79.046448,5590.168};
- angles[]={6.2144933,0,0.075058997};
+ position[]={1391,258.69864,236.8};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=7;
class Attributes
{
- description="Machinegunner";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=151;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item11
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={975.83148,80.962456,5566.8604};
- angles[]={6.2464013,0,0.14614981};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=100;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={975.72845,81.030983,5569.6553};
- angles[]={6.2687874,0,0.14615022};
};
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=106;
- type="I_G_medic_F";
+ id=185;
+ type="O_T_Recon_TL_F";
class CustomAttributes
{
class Attribute0
@@ -1270,7 +1203,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03CHI";
};
};
};
@@ -1289,34 +1222,30 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item13
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={975.72845,81.074196,5572.6563};
- angles[]={6.2687874,0,0.14615022};
+ position[]={1387.25,259.26984,235.05};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=111;
- type="I_G_medic_F";
+ id=186;
+ type="O_T_Recon_Medic_F";
class CustomAttributes
{
class Attribute0
@@ -1334,7 +1263,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male02CHI";
};
};
};
@@ -1353,34 +1282,30 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item14
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={975.62469,81.094223,5575.2432};
- angles[]={0.011203959,0,0.15084518};
+ position[]={1390.75,258.14105,231.8};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=116;
- type="I_G_medic_F";
+ id=187;
+ type="O_T_Recon_M_F";
class CustomAttributes
{
class Attribute0
@@ -1398,7 +1323,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1424,27 +1349,23 @@ class Mission
nAttributes=2;
};
};
- class Item15
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={975.95697,81.115326,5577.8691};
- angles[]={0.011203959,0,0.15084518};
+ position[]={1396.25,256.81345,230.05};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=123;
- type="I_G_medic_F";
+ id=188;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1462,7 +1383,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1481,34 +1402,30 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item16
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={976.03046,81.095299,5580.9434};
- angles[]={0.006394445,0,0.15553415};
+ position[]={1395,257.58823,234.3};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=129;
- type="I_G_medic_F";
+ id=189;
+ type="O_T_Recon_F";
class CustomAttributes
{
class Attribute0
@@ -1526,7 +1443,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03CHI";
};
};
};
@@ -1545,34 +1462,30 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item17
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={973.06366,80.311913,5583.9297};
- angles[]={0.062319059,0,0.23100168};
+ position[]={1386.75,258.79504,229.8};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=135;
- type="I_G_medic_F";
+ id=190;
+ type="O_T_Recon_LAT_F";
class CustomAttributes
{
class Attribute0
@@ -1590,7 +1503,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03CHI";
};
};
};
@@ -1609,3806 +1522,7 @@ class Mission
"SCALAR"
};
};
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={972.91522,80.07328,5587.1943};
- angles[]={0.062319059,0,0.23100168};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=141;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={971.72845,79.928719,5589.9395};
- angles[]={6.2176785,0,0.23100168};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=147;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={964.37177,78.666084,5560.708};
- angles[]={6.2416081,0,0.22644857};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=152;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.73065,81.395782,5567.0391};
- angles[]={6.2464013,0,0.14614981};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=101;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.62762,81.46032,5569.834};
- angles[]={6.2687874,0,0.14615022};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=107;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.62762,81.510307,5572.835};
- angles[]={6.2639894,0,0.1508448};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=112;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.52386,81.532898,5575.4219};
- angles[]={0.011203959,0,0.15084518};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=117;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.85614,81.556892,5578.0479};
- angles[]={0.006394445,0,0.15553415};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=124;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.92963,81.548744,5581.1221};
- angles[]={0.006394445,0,0.15553415};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=130;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={975.96283,80.907173,5584.1084};
- angles[]={0.062319059,0,0.15553415};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=136;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={975.81439,80.705673,5587.373};
- angles[]={0.022397626,0,0.19431612};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=142;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={974.62762,80.316681,5590.1182};
- angles[]={0.07346756,0,0.095706634};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=148;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.39691,79.373833,5560.9668};
- angles[]={6.2416081,0,0.22644857};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=153;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.71844,81.842186,5567.2588};
- angles[]={6.2464013,0,0.14301735};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=102;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.61542,81.909882,5570.0537};
- angles[]={6.2639894,0,0.147716};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=108;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.61542,81.967499,5573.0547};
- angles[]={6.2639894,0,0.147716};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=113;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.51166,81.987419,5575.6416};
- angles[]={0.006394445,0,0.15084599};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=118;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.84393,82.021126,5578.2676};
- angles[]={0.006394445,0,0.15084599};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=125;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={981.91742,82.015152,5581.3418};
- angles[]={0.022397626,0,0.155533};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=131;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.95062,81.39109,5584.3281};
- angles[]={0.022397626,0,0.19431612};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=137;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={978.80219,81.286568,5587.5928};
- angles[]={0.07346756,0,0.19431612};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=143;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={977.61542,80.850967,5590.3379};
- angles[]={0.07346756,0,0.19431612};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=149;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={969.98163,79.880096,5561.373};
- angles[]={6.2368193,0,0.147716};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=154;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.36664,79.487877,5566.9131};
- angles[]={6.2527947,0,0.27893379};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=103;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.26361,79.534622,5569.708};
- angles[]={6.2623887,0,0.27893379};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=109;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.26361,79.569908,5572.709};
- angles[]={6.2735858,0,0.2685523};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=114;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.15985,79.565796,5575.2959};
- angles[]={6.2751846,0,0.2685523};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=119;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.49213,79.621429,5577.9219};
- angles[]={0.027193764,0,0.23554493};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=126;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={967.56561,79.555458,5580.9961};
- angles[]={0.027193764,0,0.23554493};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=132;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={964.59882,78.951027,5583.9824};
- angles[]={6.2400126,0,0.23554493};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=138;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={964.45038,78.784943,5587.2471};
- angles[]={0.121006,0,0.075058199};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=144;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={963.26361,78.826889,5589.9922};
- angles[]={6.2144933,0,0.075058997};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=150;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={972.90155,80.527206,5567.209};
- angles[]={6.2464013,0,0.15397149};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=99;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={972.79852,80.581337,5570.0039};
- angles[]={6.2735858,0,0.15397188};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=105;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={972.79852,80.619759,5573.0049};
- angles[]={6.2687874,0,0.15865518};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=110;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={972.69476,80.617874,5575.5918};
- angles[]={0.027193764,0,0.15865518};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=115;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={973.02704,80.618721,5578.2178};
- angles[]={0.011198638,0,0.17421527};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=122;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={973.10052,80.597214,5581.292};
- angles[]={0.011198638,0,0.17421527};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=128;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={970.13373,79.712784,5584.2783};
- angles[]={0.1210065,0,0.17421561};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=134;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={969.98529,79.362411,5587.543};
- angles[]={0.062319059,0,0.23100168};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=140;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={968.79852,79.262482,5590.2881};
- angles[]={6.2176785,0,0.23100168};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=146;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={961.44183,78.150688,5561.0566};
- angles[]={0.0080009829,0,0.16177347};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=155;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=92;
- };
- class Item11
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={949.03876,76.610298,5567.9551};
- angles[]={6.2272439,2.1016905,0.097292177};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=95;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=94;
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={956.30585,81.310669,5572.9268};
- angles[]={0.0032018756,0,0.12888256};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=157;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item13
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={948.65082,75.988312,5557.5059};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_1";
- isPlayable=1;
- id=158;
- type="HeadlessClient_F";
- atlOffset=7.6293945e-006;
- };
- class Item14
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={950.4975,76.217697,5556.5117};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_2";
- isPlayable=1;
- id=159;
- type="HeadlessClient_F";
- atlOffset=1.5258789e-005;
- };
- class Item15
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={977.97998,80.936935,5558.8921};
- };
- id=163;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={952.55298,77.594696,5566.8052};
- angles[]={6.2751913,1.0016968,0.094125606};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=172;
- type="Land_TentDome_F";
- atlOffset=7.6293945e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={952.04303,78.039307,5571.0591};
- angles[]={6.2304416,0,0.094125606};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=173;
- type="Land_MapBoard_Enoch_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={245.12823,392.56616,759.78418};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if (!isMultiplayer) then {deleteVehicle this};";
- };
- id=174;
- type="Flag_NATO_F";
- atlOffset=-0.64300537;
- };
- class Item19
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={235.25,388.81903,759.79999};
- };
- side="West";
- flags=7;
- class Attributes
- {
- rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]";
- name="pvp_blue_1";
- isPlayable=1;
- };
- id=177;
- type="B_recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={239,388.76425,755.54999};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]";
- name="pvp_blue_4";
- isPlayable=1;
- };
- id=178;
- type="B_recon_M_F";
- atlOffset=3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={231.5,388.54343,757.79999};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]";
- name="pvp_blue_2";
- isPlayable=1;
- };
- id=179;
- type="B_recon_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={228.5,388.1958,754.54999};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]";
- name="pvp_blue_3";
- isPlayable=1;
- };
- id=180;
- type="B_recon_F";
- atlOffset=-3.0517578e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male09ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={229.5,387.88742,751.29999};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]";
- name="pvp_blue_5";
- isPlayable=1;
- };
- id=181;
- type="B_recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={225.75,387.64743,750.79999};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]";
- name="pvp_blue_6";
- isPlayable=1;
- };
- id=182;
- type="B_recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=176;
- };
- class Item20
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1391,258.69864,236.8};
- };
- side="East";
- flags=7;
- class Attributes
- {
- init="groupPlayersCSAT = group this;this setVariable [""pvp"",true]";
- name="pvp_red_1";
- isPlayable=1;
- };
- id=185;
- type="O_T_Recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1387.25,259.26984,235.05};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]";
- name="pvp_red_2";
- isPlayable=1;
- };
- id=186;
- type="O_T_Recon_Medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1390.75,258.14105,231.8};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]";
- name="pvp_red_4";
- isPlayable=1;
- };
- id=187;
- type="O_T_Recon_M_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1396.25,256.81345,230.05};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=188;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1395,257.58823,234.3};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=189;
- type="O_T_Recon_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1386.75,258.79504,229.8};
- };
- side="East";
- flags=5;
- class Attributes
- {
- init="this setVariable [""pvp"",true]";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=190;
- type="O_T_Recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ value=0.98000002;
};
};
};
@@ -5421,7 +1535,7 @@ class Mission
};
id=184;
};
- class Item21
+ class Item20
{
dataType="Object";
class PositionInfo
@@ -5438,7 +1552,7 @@ class Mission
id=191;
type="Flag_Viper_F";
};
- class Item22
+ class Item21
{
dataType="Object";
class PositionInfo
@@ -5453,63 +1567,63 @@ class Mission
id=209;
type="Land_TTowerBig_2_F";
};
- class Item23
+ class Item22
{
dataType="Layer";
name="Open Ammo Dump";
id=214;
atlOffset=-252.33;
};
- class Item24
+ class Item23
{
dataType="Layer";
name="Vehicle Repair";
id=239;
atlOffset=-252.33;
};
- class Item25
+ class Item24
{
dataType="Layer";
name="Check Point (Large)";
id=631;
atlOffset=-252.33;
};
- class Item26
+ class Item25
{
dataType="Layer";
name="Check Point (Medium)";
id=636;
atlOffset=-252.33;
};
- class Item27
+ class Item26
{
dataType="Layer";
name="Check Point (Small)";
id=641;
atlOffset=-252.33;
};
- class Item28
+ class Item27
{
dataType="Layer";
name="Camp Ant";
id=678;
atlOffset=-252.33;
};
- class Item29
+ class Item28
{
dataType="Layer";
name="Camp Crow";
id=711;
atlOffset=-252.33;
};
- class Item30
+ class Item29
{
dataType="Layer";
name="One-Way Reinforced";
id=771;
atlOffset=-252.33;
};
- class Item31
+ class Item30
{
dataType="Logic";
class PositionInfo
@@ -5520,7 +1634,7 @@ class Mission
id=820;
type="HighCommand";
};
- class Item32
+ class Item31
{
dataType="Logic";
class PositionInfo
@@ -5530,7 +1644,7 @@ class Mission
id=821;
type="HighCommandSubordinate";
};
- class Item33
+ class Item32
{
dataType="Object";
class PositionInfo
@@ -5542,11 +1656,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=825;
type="Land_HelipadSquare_F";
};
- class Item34
+ class Item33
{
dataType="Object";
class PositionInfo
@@ -5558,11 +1673,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=826;
type="Land_HelipadSquare_F";
};
- class Item35
+ class Item34
{
dataType="Object";
class PositionInfo
@@ -5574,12 +1690,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=827;
type="Land_HelipadSquare_F";
atlOffset=1.5258789e-005;
};
- class Item36
+ class Item35
{
dataType="Object";
class PositionInfo
@@ -5591,11 +1708,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=836;
type="Land_HBarrier_5_F";
};
- class Item37
+ class Item36
{
dataType="Object";
class PositionInfo
@@ -5607,11 +1725,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=837;
type="Land_HBarrier_5_F";
};
- class Item38
+ class Item37
{
dataType="Object";
class PositionInfo
@@ -5623,11 +1742,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=838;
type="Land_HBarrier_5_F";
};
- class Item39
+ class Item38
{
dataType="Object";
class PositionInfo
@@ -5639,11 +1759,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=839;
type="Land_HBarrier_5_F";
};
- class Item40
+ class Item39
{
dataType="Object";
class PositionInfo
@@ -5655,11 +1776,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=840;
type="Land_HBarrier_5_F";
};
- class Item41
+ class Item40
{
dataType="Object";
class PositionInfo
@@ -5671,11 +1793,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=841;
type="Land_HBarrier_5_F";
};
- class Item42
+ class Item41
{
dataType="Object";
class PositionInfo
@@ -5687,11 +1810,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=842;
type="Land_HBarrier_5_F";
};
- class Item43
+ class Item42
{
dataType="Object";
class PositionInfo
@@ -5703,11 +1827,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=843;
type="Land_HBarrier_5_F";
};
- class Item44
+ class Item43
{
dataType="Object";
class PositionInfo
@@ -5719,11 +1844,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=844;
type="Land_HBarrier_5_F";
};
- class Item45
+ class Item44
{
dataType="Object";
class PositionInfo
@@ -5735,11 +1861,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=845;
type="Land_HBarrier_5_F";
};
- class Item46
+ class Item45
{
dataType="Object";
class PositionInfo
@@ -5751,11 +1878,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=846;
type="Land_HBarrier_5_F";
};
- class Item47
+ class Item46
{
dataType="Object";
class PositionInfo
@@ -5767,11 +1895,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=847;
type="Land_HBarrier_5_F";
};
- class Item48
+ class Item47
{
dataType="Object";
class PositionInfo
@@ -5783,11 +1912,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=848;
type="Land_HBarrier_5_F";
};
- class Item49
+ class Item48
{
dataType="Object";
class PositionInfo
@@ -5799,11 +1929,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=849;
type="Land_HBarrier_5_F";
};
- class Item50
+ class Item49
{
dataType="Object";
class PositionInfo
@@ -5815,11 +1946,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=850;
type="Land_HBarrier_5_F";
};
- class Item51
+ class Item50
{
dataType="Object";
class PositionInfo
@@ -5831,11 +1963,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=851;
type="Land_HBarrier_5_F";
};
- class Item52
+ class Item51
{
dataType="Object";
class PositionInfo
@@ -5847,11 +1980,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=852;
type="Land_HBarrier_5_F";
};
- class Item53
+ class Item52
{
dataType="Object";
class PositionInfo
@@ -5863,11 +1997,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=853;
type="Land_HBarrier_5_F";
};
- class Item54
+ class Item53
{
dataType="Object";
class PositionInfo
@@ -5883,39 +2018,7 @@ class Mission
id=854;
type="Land_Barracks_06_F";
};
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={7809.25,151.25615,9764.25};
- angles[]={6.271987,4.8673191,0.02399601};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=855;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={7807.7944,151.37607,9752.373};
- angles[]={0.012798273,4.8673191,0.033588443};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=856;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- };
- class Item57
+ class Item54
{
dataType="Object";
class PositionInfo
@@ -5931,7 +2034,7 @@ class Mission
id=859;
type="Land_GuardBox_01_brown_F";
};
- class Item58
+ class Item55
{
dataType="Object";
class PositionInfo
@@ -5947,7 +2050,7 @@ class Mission
id=860;
type="Land_GuardBox_01_brown_F";
};
- class Item59
+ class Item56
{
dataType="Object";
class PositionInfo
@@ -5964,7 +2067,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.0035858154;
};
- class Item60
+ class Item57
{
dataType="Object";
class PositionInfo
@@ -5981,7 +2084,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00010681152;
};
- class Item61
+ class Item58
{
dataType="Object";
class PositionInfo
@@ -5998,7 +2101,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00062561035;
};
- class Item62
+ class Item59
{
dataType="Object";
class PositionInfo
@@ -6015,7 +2118,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00079345703;
};
- class Item63
+ class Item60
{
dataType="Object";
class PositionInfo
@@ -6032,7 +2135,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=-0.0002746582;
};
- class Item64
+ class Item61
{
dataType="Object";
class PositionInfo
@@ -6049,7 +2152,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00024414063;
};
- class Item65
+ class Item62
{
dataType="Object";
class PositionInfo
@@ -6066,7 +2169,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=-6.1035156e-005;
};
- class Item66
+ class Item63
{
dataType="Object";
class PositionInfo
@@ -6083,7 +2186,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=6.1035156e-005;
};
- class Item67
+ class Item64
{
dataType="Object";
class PositionInfo
@@ -6100,7 +2203,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=3.0517578e-005;
};
- class Item68
+ class Item65
{
dataType="Object";
class PositionInfo
@@ -6117,7 +2220,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=-1.5258789e-005;
};
- class Item69
+ class Item66
{
dataType="Object";
class PositionInfo
@@ -6133,7 +2236,7 @@ class Mission
id=873;
type="Land_ConcreteTreePlanter_02_F";
};
- class Item70
+ class Item67
{
dataType="Object";
class PositionInfo
@@ -6150,7 +2253,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.033691406;
};
- class Item71
+ class Item68
{
dataType="Object";
class PositionInfo
@@ -6166,7 +2269,7 @@ class Mission
id=877;
type="Land_CamoConcreteWall_01_l_4m_v2_F";
};
- class Item72
+ class Item69
{
dataType="Object";
class PositionInfo
@@ -6182,7 +2285,7 @@ class Mission
id=878;
type="Land_CamoConcreteWall_01_l_4m_v2_F";
};
- class Item73
+ class Item70
{
dataType="Logic";
class PositionInfo
@@ -6237,7 +2340,7 @@ class Mission
nAttributes=2;
};
};
- class Item74
+ class Item71
{
dataType="Object";
class PositionInfo
@@ -6253,7 +2356,7 @@ class Mission
id=881;
type="Land_ConcreteTreePlanter_02_F";
};
- class Item75
+ class Item72
{
dataType="Object";
class PositionInfo
@@ -6270,7 +2373,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00021362305;
};
- class Item76
+ class Item73
{
dataType="Object";
class PositionInfo
@@ -6286,7 +2389,7 @@ class Mission
id=883;
type="Land_ConcreteTreePlanter_02_F";
};
- class Item77
+ class Item74
{
dataType="Object";
class PositionInfo
@@ -6303,7 +2406,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.031066895;
};
- class Item78
+ class Item75
{
dataType="Logic";
class PositionInfo
@@ -6359,7 +2462,7 @@ class Mission
nAttributes=2;
};
};
- class Item79
+ class Item76
{
dataType="Object";
class PositionInfo
@@ -6375,7 +2478,7 @@ class Mission
id=886;
type="Land_CamoConcreteWall_01_l_4m_v2_F";
};
- class Item80
+ class Item77
{
dataType="Object";
class PositionInfo
@@ -6391,7 +2494,7 @@ class Mission
id=887;
type="Land_CamoConcreteWall_01_l_4m_v2_F";
};
- class Item81
+ class Item78
{
dataType="Logic";
class PositionInfo
@@ -6447,7 +2550,7 @@ class Mission
nAttributes=2;
};
};
- class Item82
+ class Item79
{
dataType="Object";
class PositionInfo
@@ -6464,7 +2567,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00012207031;
};
- class Item83
+ class Item80
{
dataType="Object";
class PositionInfo
@@ -6481,7 +2584,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=1.5258789e-005;
};
- class Item84
+ class Item81
{
dataType="Object";
class PositionInfo
@@ -6497,7 +2600,7 @@ class Mission
id=891;
type="Land_CamoConcreteWall_01_l_4m_v2_F";
};
- class Item85
+ class Item82
{
dataType="Logic";
class PositionInfo
@@ -6553,7 +2656,7 @@ class Mission
nAttributes=2;
};
};
- class Item86
+ class Item83
{
dataType="Logic";
class PositionInfo
@@ -6610,7 +2713,7 @@ class Mission
nAttributes=2;
};
};
- class Item87
+ class Item84
{
dataType="Logic";
class PositionInfo
@@ -6667,7 +2770,7 @@ class Mission
nAttributes=2;
};
};
- class Item88
+ class Item85
{
dataType="Logic";
class PositionInfo
@@ -6724,7 +2827,7 @@ class Mission
nAttributes=2;
};
};
- class Item89
+ class Item86
{
dataType="Object";
class PositionInfo
@@ -6736,11 +2839,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=896;
type="Land_HelipadSquare_F";
};
- class Item90
+ class Item87
{
dataType="Object";
class PositionInfo
@@ -6752,11 +2856,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=897;
type="Land_HBarrier_5_F";
};
- class Item91
+ class Item88
{
dataType="Object";
class PositionInfo
@@ -6768,11 +2873,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=898;
type="Land_HBarrier_5_F";
};
- class Item92
+ class Item89
{
dataType="Object";
class PositionInfo
@@ -6784,11 +2890,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=899;
type="Land_HBarrier_5_F";
};
- class Item93
+ class Item90
{
dataType="Object";
class PositionInfo
@@ -6800,11 +2907,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=900;
type="Land_HBarrier_5_F";
};
- class Item94
+ class Item91
{
dataType="Object";
class PositionInfo
@@ -6816,11 +2924,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=901;
type="Land_HBarrier_5_F";
};
- class Item95
+ class Item92
{
dataType="Object";
class PositionInfo
@@ -6832,11 +2941,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=902;
type="Land_HBarrier_5_F";
};
- class Item96
+ class Item93
{
dataType="Logic";
class PositionInfo
@@ -6893,7 +3003,7 @@ class Mission
nAttributes=2;
};
};
- class Item97
+ class Item94
{
dataType="Object";
class PositionInfo
@@ -6909,7 +3019,7 @@ class Mission
id=904;
type="Land_Cargo_Tower_V2_F";
};
- class Item98
+ class Item95
{
dataType="Object";
class PositionInfo
@@ -6925,7 +3035,7 @@ class Mission
id=905;
type="Land_Cargo_Tower_V2_F";
};
- class Item99
+ class Item96
{
dataType="Object";
class PositionInfo
@@ -6942,7 +3052,7 @@ class Mission
type="Land_Cargo_Tower_V2_ruins_F";
atlOffset=-0.14894104;
};
- class Item100
+ class Item97
{
dataType="Object";
class PositionInfo
@@ -6958,7 +3068,7 @@ class Mission
id=907;
type="Land_Cargo_HQ_V2_F";
};
- class Item101
+ class Item98
{
dataType="Object";
class PositionInfo
@@ -6975,7 +3085,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.030258179;
};
- class Item102
+ class Item99
{
dataType="Object";
class PositionInfo
@@ -6992,7 +3102,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.030258179;
};
- class Item103
+ class Item100
{
dataType="Object";
class PositionInfo
@@ -7009,7 +3119,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.030258179;
};
- class Item104
+ class Item101
{
dataType="Logic";
class PositionInfo
@@ -7064,7 +3174,7 @@ class Mission
nAttributes=2;
};
};
- class Item105
+ class Item102
{
dataType="Object";
class PositionInfo
@@ -7076,11 +3186,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=912;
type="Land_HelipadSquare_F";
};
- class Item106
+ class Item103
{
dataType="Object";
class PositionInfo
@@ -7092,12 +3203,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=915;
type="Land_HBarrier_5_F";
atlOffset=0.02041626;
};
- class Item107
+ class Item104
{
dataType="Object";
class PositionInfo
@@ -7109,11 +3221,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=916;
type="Land_HBarrier_5_F";
};
- class Item108
+ class Item105
{
dataType="Logic";
class PositionInfo
@@ -7168,7 +3281,7 @@ class Mission
nAttributes=2;
};
};
- class Item109
+ class Item106
{
dataType="Object";
class PositionInfo
@@ -7184,7 +3297,7 @@ class Mission
id=918;
type="Land_Cargo_Patrol_V2_F";
};
- class Item110
+ class Item107
{
dataType="Logic";
class PositionInfo
@@ -7238,7 +3351,7 @@ class Mission
nAttributes=2;
};
};
- class Item111
+ class Item108
{
dataType="Object";
class PositionInfo
@@ -7255,7 +3368,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.0048522949;
};
- class Item112
+ class Item109
{
dataType="Object";
class PositionInfo
@@ -7272,7 +3385,7 @@ class Mission
type="Land_WoodenWindBreak_01_F";
atlOffset=0.00044250488;
};
- class Item113
+ class Item110
{
dataType="Object";
class PositionInfo
@@ -7288,7 +3401,7 @@ class Mission
id=922;
type="Land_Cargo_Patrol_V2_F";
};
- class Item114
+ class Item111
{
dataType="Object";
class PositionInfo
@@ -7300,11 +3413,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=923;
type="Land_HBarrier_Big_F";
};
- class Item115
+ class Item112
{
dataType="Object";
class PositionInfo
@@ -7316,12 +3430,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=924;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item116
+ class Item113
{
dataType="Object";
class PositionInfo
@@ -7333,12 +3448,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=925;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item117
+ class Item114
{
dataType="Object";
class PositionInfo
@@ -7350,11 +3466,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=926;
type="Land_HBarrier_Big_F";
};
- class Item118
+ class Item115
{
dataType="Object";
class PositionInfo
@@ -7366,11 +3483,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=927;
type="Land_HBarrier_Big_F";
};
- class Item119
+ class Item116
{
dataType="Object";
class PositionInfo
@@ -7382,12 +3500,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=928;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item120
+ class Item117
{
dataType="Object";
class PositionInfo
@@ -7399,11 +3518,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=929;
type="Land_HBarrier_Big_F";
};
- class Item121
+ class Item118
{
dataType="Object";
class PositionInfo
@@ -7415,11 +3535,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=930;
type="Land_HBarrier_Big_F";
};
- class Item122
+ class Item119
{
dataType="Object";
class PositionInfo
@@ -7431,11 +3552,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=931;
type="Land_HBarrier_Big_F";
};
- class Item123
+ class Item120
{
dataType="Object";
class PositionInfo
@@ -7446,11 +3568,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=932;
type="Land_HBarrier_Big_F";
};
- class Item124
+ class Item121
{
dataType="Object";
class PositionInfo
@@ -7461,11 +3584,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=933;
type="Land_HBarrier_Big_F";
};
- class Item125
+ class Item122
{
dataType="Object";
class PositionInfo
@@ -7477,11 +3601,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=934;
type="Land_HBarrier_Big_F";
};
- class Item126
+ class Item123
{
dataType="Object";
class PositionInfo
@@ -7493,12 +3618,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=935;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item127
+ class Item124
{
dataType="Object";
class PositionInfo
@@ -7510,11 +3636,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=936;
type="Land_HBarrier_Big_F";
};
- class Item128
+ class Item125
{
dataType="Object";
class PositionInfo
@@ -7526,12 +3653,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=937;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item129
+ class Item126
{
dataType="Object";
class PositionInfo
@@ -7543,11 +3671,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=938;
type="Land_HBarrier_Big_F";
};
- class Item130
+ class Item127
{
dataType="Object";
class PositionInfo
@@ -7559,11 +3688,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=939;
type="Land_HBarrier_Big_F";
};
- class Item131
+ class Item128
{
dataType="Object";
class PositionInfo
@@ -7575,11 +3705,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=940;
type="Land_HBarrier_Big_F";
};
- class Item132
+ class Item129
{
dataType="Object";
class PositionInfo
@@ -7591,11 +3722,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=941;
type="Land_HBarrier_Big_F";
};
- class Item133
+ class Item130
{
dataType="Object";
class PositionInfo
@@ -7607,11 +3739,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=942;
type="Land_HBarrier_Big_F";
};
- class Item134
+ class Item131
{
dataType="Object";
class PositionInfo
@@ -7623,11 +3756,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=943;
type="Land_HBarrier_Big_F";
};
- class Item135
+ class Item132
{
dataType="Object";
class PositionInfo
@@ -7639,11 +3773,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=944;
type="Land_HBarrier_Big_F";
};
- class Item136
+ class Item133
{
dataType="Object";
class PositionInfo
@@ -7655,11 +3790,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=945;
type="Land_HBarrier_Big_F";
};
- class Item137
+ class Item134
{
dataType="Object";
class PositionInfo
@@ -7671,11 +3807,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=946;
type="Land_HBarrier_Big_F";
};
- class Item138
+ class Item135
{
dataType="Object";
class PositionInfo
@@ -7687,12 +3824,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=947;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item139
+ class Item136
{
dataType="Object";
class PositionInfo
@@ -7704,11 +3842,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=948;
type="Land_HBarrier_Big_F";
};
- class Item140
+ class Item137
{
dataType="Object";
class PositionInfo
@@ -7720,12 +3859,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=949;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item141
+ class Item138
{
dataType="Object";
class PositionInfo
@@ -7741,7 +3881,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item142
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -7753,11 +3893,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=951;
type="Land_HBarrier_Big_F";
};
- class Item143
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -7769,11 +3910,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=952;
type="Land_HBarrier_Big_F";
};
- class Item144
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -7785,11 +3927,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=953;
type="Land_HBarrier_Big_F";
};
- class Item145
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -7801,12 +3944,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=954;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item146
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -7818,11 +3962,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=955;
type="Land_HBarrier_Big_F";
};
- class Item147
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -7834,11 +3979,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=956;
type="Land_HBarrier_Big_F";
};
- class Item148
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -7850,11 +3996,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=957;
type="Land_HBarrier_Big_F";
};
- class Item149
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -7870,7 +4017,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item150
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -7887,7 +4034,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=0.11544037;
};
- class Item151
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -7903,7 +4050,7 @@ class Mission
id=960;
type="Land_TTowerSmall_2_F";
};
- class Item152
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -7920,7 +4067,7 @@ class Mission
type="Land_Medevac_house_V1_F";
atlOffset=7.6293945e-006;
};
- class Item153
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -7936,7 +4083,7 @@ class Mission
id=962;
type="Land_Cargo_Patrol_V2_F";
};
- class Item154
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -7952,7 +4099,7 @@ class Mission
id=963;
type="Land_Cargo_Patrol_V2_F";
};
- class Item155
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -7969,7 +4116,7 @@ class Mission
type="Land_Cargo_House_V2_F";
atlOffset=7.6293945e-006;
};
- class Item156
+ class Item153
{
dataType="Object";
class PositionInfo
@@ -7984,7 +4131,7 @@ class Mission
id=965;
type="Land_Cargo_Patrol_V2_F";
};
- class Item157
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -8000,7 +4147,7 @@ class Mission
id=966;
type="Land_Cargo_Patrol_V2_F";
};
- class Item158
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -8015,7 +4162,7 @@ class Mission
id=967;
type="Land_Cargo_House_V2_F";
};
- class Item159
+ class Item156
{
dataType="Object";
class PositionInfo
@@ -8026,12 +4173,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=968;
type="Land_Cargo40_orange_F";
atlOffset=0.15374756;
};
- class Item160
+ class Item157
{
dataType="Logic";
class PositionInfo
@@ -8087,7 +4236,7 @@ class Mission
nAttributes=2;
};
};
- class Item161
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -8097,12 +4246,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=972;
type="Land_Cargo20_grey_F";
atlOffset=2.489975;
};
- class Item162
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -8113,12 +4264,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=977;
type="Land_Cargo40_light_green_F";
atlOffset=0.1780014;
};
- class Item163
+ class Item160
{
dataType="Logic";
class PositionInfo
@@ -8173,7 +4326,7 @@ class Mission
nAttributes=2;
};
};
- class Item164
+ class Item161
{
dataType="Logic";
class PositionInfo
@@ -8227,7 +4380,7 @@ class Mission
nAttributes=2;
};
};
- class Item165
+ class Item162
{
dataType="Logic";
class PositionInfo
@@ -8282,7 +4435,7 @@ class Mission
nAttributes=2;
};
};
- class Item166
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -8298,7 +4451,7 @@ class Mission
id=981;
type="Land_Cargo_Patrol_V2_F";
};
- class Item167
+ class Item164
{
dataType="Logic";
class PositionInfo
@@ -8353,7 +4506,7 @@ class Mission
nAttributes=2;
};
};
- class Item168
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -8369,7 +4522,7 @@ class Mission
id=983;
type="Land_Cargo_Patrol_V2_F";
};
- class Item169
+ class Item166
{
dataType="Object";
class PositionInfo
@@ -8386,28 +4539,28 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.095653534;
};
- class Item170
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1489.5,9.90028,7537.5};
- angles[]={0,1.2106266,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=986;
- type="Land_BarGate_01_open_F";
- atlOffset=-4.7683716e-007;
- };
- class Item171
+ class Item167
{
dataType="Object";
class PositionInfo
{
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
position[]={1487,6.2627196,7542.5};
angles[]={0,4.3223305,0};
};
@@ -8419,7 +4572,7 @@ class Mission
id=987;
type="Land_BagFence_01_short_green_F";
};
- class Item172
+ class Item168
{
dataType="Object";
class PositionInfo
@@ -8435,7 +4588,7 @@ class Mission
id=988;
type="Land_BagFence_01_short_green_F";
};
- class Item173
+ class Item169
{
dataType="Object";
class PositionInfo
@@ -8451,7 +4604,7 @@ class Mission
id=991;
type="Land_Cargo_Tower_V2_F";
};
- class Item174
+ class Item170
{
dataType="Object";
class PositionInfo
@@ -8467,24 +4620,23 @@ class Mission
id=992;
type="Land_Cargo_Tower_V2_F";
};
- class Item175
+ class Item171
{
dataType="Object";
class PositionInfo
{
- position[]={3729,72.154999,9880.625};
+ position[]={3729,67.30481,9880.625};
angles[]={0,6.0160375,0};
};
side="Empty";
- flags=1;
+ flags=5;
class Attributes
{
};
id=993;
type="Land_Cargo_Patrol_V2_F";
- atlOffset=4.850193;
};
- class Item176
+ class Item172
{
dataType="Object";
class PositionInfo
@@ -8500,7 +4652,7 @@ class Mission
id=994;
type="Land_Cargo_Patrol_V2_F";
};
- class Item177
+ class Item173
{
dataType="Object";
class PositionInfo
@@ -8517,7 +4669,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.017974854;
};
- class Item178
+ class Item174
{
dataType="Object";
class PositionInfo
@@ -8534,12 +4686,12 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.017974854;
};
- class Item179
+ class Item175
{
dataType="Object";
class PositionInfo
{
- position[]={3906,74.529999,10353.75};
+ position[]={3906,76.425011,10353.75};
angles[]={0,2.3516929,0};
};
side="Empty";
@@ -8549,9 +4701,8 @@ class Mission
};
id=997;
type="Land_Cargo_Patrol_V2_F";
- atlOffset=-1.8950119;
};
- class Item180
+ class Item176
{
dataType="Object";
class PositionInfo
@@ -8567,7 +4718,7 @@ class Mission
id=998;
type="Land_Cargo_Patrol_V2_F";
};
- class Item181
+ class Item177
{
dataType="Object";
class PositionInfo
@@ -8583,7 +4734,7 @@ class Mission
id=999;
type="Land_Cargo_Patrol_V2_F";
};
- class Item182
+ class Item178
{
dataType="Object";
class PositionInfo
@@ -8595,11 +4746,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1020;
type="Land_HBarrier_Big_F";
};
- class Item183
+ class Item179
{
dataType="Object";
class PositionInfo
@@ -8611,11 +4763,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1026;
type="Land_HBarrier_Big_F";
};
- class Item184
+ class Item180
{
dataType="Object";
class PositionInfo
@@ -8627,11 +4780,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1027;
type="Land_HBarrier_Big_F";
};
- class Item185
+ class Item181
{
dataType="Object";
class PositionInfo
@@ -8643,11 +4797,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1028;
type="Land_HBarrier_Big_F";
};
- class Item186
+ class Item182
{
dataType="Object";
class PositionInfo
@@ -8659,12 +4814,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1029;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item187
+ class Item183
{
dataType="Object";
class PositionInfo
@@ -8676,11 +4832,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1031;
type="Land_HBarrier_Big_F";
};
- class Item188
+ class Item184
{
dataType="Object";
class PositionInfo
@@ -8692,11 +4849,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1032;
type="Land_HBarrier_Big_F";
};
- class Item189
+ class Item185
{
dataType="Object";
class PositionInfo
@@ -8708,11 +4866,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1033;
type="Land_HBarrier_Big_F";
};
- class Item190
+ class Item186
{
dataType="Object";
class PositionInfo
@@ -8724,12 +4883,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1034;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item191
+ class Item187
{
dataType="Object";
class PositionInfo
@@ -8741,11 +4901,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1035;
type="Land_HBarrier_Big_F";
};
- class Item192
+ class Item188
{
dataType="Object";
class PositionInfo
@@ -8761,7 +4922,7 @@ class Mission
id=1055;
type="Land_TTowerSmall_2_F";
};
- class Item193
+ class Item189
{
dataType="Object";
class PositionInfo
@@ -8777,7 +4938,7 @@ class Mission
id=1056;
type="Land_Medevac_house_V1_F";
};
- class Item194
+ class Item190
{
dataType="Object";
class PositionInfo
@@ -8793,7 +4954,7 @@ class Mission
id=1059;
type="Land_Cargo_House_V2_F";
};
- class Item195
+ class Item191
{
dataType="Object";
class PositionInfo
@@ -8810,7 +4971,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-4.7683716e-007;
};
- class Item196
+ class Item192
{
dataType="Object";
class PositionInfo
@@ -8826,7 +4987,7 @@ class Mission
id=1061;
type="Land_Cargo_Patrol_V2_F";
};
- class Item197
+ class Item193
{
dataType="Object";
class PositionInfo
@@ -8838,11 +4999,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1066;
type="Land_HBarrier_Big_F";
};
- class Item198
+ class Item194
{
dataType="Object";
class PositionInfo
@@ -8854,11 +5016,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1067;
type="Land_HBarrier_Big_F";
};
- class Item199
+ class Item195
{
dataType="Object";
class PositionInfo
@@ -8870,11 +5033,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1068;
type="Land_HBarrier_Big_F";
};
- class Item200
+ class Item196
{
dataType="Object";
class PositionInfo
@@ -8886,11 +5050,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1069;
type="Land_HBarrier_Big_F";
};
- class Item201
+ class Item197
{
dataType="Object";
class PositionInfo
@@ -8902,11 +5067,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1070;
type="Land_HBarrier_Big_F";
};
- class Item202
+ class Item198
{
dataType="Object";
class PositionInfo
@@ -8918,11 +5084,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1071;
type="Land_HBarrier_Big_F";
};
- class Item203
+ class Item199
{
dataType="Object";
class PositionInfo
@@ -8934,11 +5101,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1072;
type="Land_HBarrier_Big_F";
};
- class Item204
+ class Item200
{
dataType="Object";
class PositionInfo
@@ -8950,11 +5118,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1073;
type="Land_HBarrier_Big_F";
};
- class Item205
+ class Item201
{
dataType="Object";
class PositionInfo
@@ -8966,11 +5135,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1074;
type="Land_HBarrier_Big_F";
};
- class Item206
+ class Item202
{
dataType="Object";
class PositionInfo
@@ -8982,11 +5152,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1075;
type="Land_HBarrier_Big_F";
};
- class Item207
+ class Item203
{
dataType="Object";
class PositionInfo
@@ -8998,12 +5169,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1076;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item208
+ class Item204
{
dataType="Object";
class PositionInfo
@@ -9015,11 +5187,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1077;
type="Land_HBarrier_Big_F";
};
- class Item209
+ class Item205
{
dataType="Object";
class PositionInfo
@@ -9035,7 +5208,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.31480598;
};
- class Item210
+ class Item206
{
dataType="Object";
class PositionInfo
@@ -9051,7 +5224,7 @@ class Mission
id=1079;
type="Land_Cargo_Patrol_V2_F";
};
- class Item211
+ class Item207
{
dataType="Object";
class PositionInfo
@@ -9067,7 +5240,7 @@ class Mission
id=1080;
type="Land_Cargo_Patrol_V2_F";
};
- class Item212
+ class Item208
{
dataType="Object";
class PositionInfo
@@ -9083,7 +5256,7 @@ class Mission
id=1081;
type="Land_Cargo_House_V2_F";
};
- class Item213
+ class Item209
{
dataType="Object";
class PositionInfo
@@ -9095,12 +5268,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1082;
type="Land_Cargo40_orange_F";
atlOffset=-6.1988831e-006;
};
- class Item214
+ class Item210
{
dataType="Object";
class PositionInfo
@@ -9112,12 +5287,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=1083;
type="Land_Cargo40_red_F";
atlOffset=0.017612457;
};
- class Item215
+ class Item211
{
dataType="Object";
class PositionInfo
@@ -9134,7 +5311,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.0079727173;
};
- class Item216
+ class Item212
{
dataType="Object";
class PositionInfo
@@ -9146,10 +5323,11 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1093;
type="Land_HelipadSquare_F";
- atlOffset=0.053001404;
+ atlOffset=0.00021743774;
class CustomAttributes
{
class Attribute0
@@ -9174,7 +5352,7 @@ class Mission
nAttributes=1;
};
};
- class Item217
+ class Item213
{
dataType="Object";
class PositionInfo
@@ -9190,7 +5368,7 @@ class Mission
id=1094;
type="Land_Cargo_Patrol_V2_F";
};
- class Item218
+ class Item214
{
dataType="Object";
class PositionInfo
@@ -9206,7 +5384,7 @@ class Mission
id=1095;
type="Land_Cargo_Patrol_V2_F";
};
- class Item219
+ class Item215
{
dataType="Object";
class PositionInfo
@@ -9222,7 +5400,7 @@ class Mission
id=1097;
type="Land_Cargo_Patrol_V2_F";
};
- class Item220
+ class Item216
{
dataType="Object";
class PositionInfo
@@ -9238,7 +5416,7 @@ class Mission
id=1098;
type="Land_Cargo_Patrol_V2_F";
};
- class Item221
+ class Item217
{
dataType="Object";
class PositionInfo
@@ -9250,59 +5428,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1100;
type="Land_HBarrier_Big_F";
};
- class Item222
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9452.5,76.115471,10377};
- angles[]={0,0.90796453,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=1101;
- type="Land_BarGate_01_open_F";
- };
- class Item223
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9456.375,72.449715,10373.5};
- angles[]={0.001544081,0.85437727,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1102;
- type="Land_BagFence_01_long_green_F";
- };
- class Item224
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9449.5,72.556908,10381.5};
- angles[]={6.2816033,4.0105963,0.0015822123};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=1103;
- type="Land_BagFence_01_long_green_F";
- };
- class Item225
+ class Item218
{
dataType="Object";
class PositionInfo
@@ -9318,7 +5449,7 @@ class Mission
id=1104;
type="Land_Cargo_Patrol_V2_F";
};
- class Item226
+ class Item219
{
dataType="Object";
class PositionInfo
@@ -9334,21 +5465,21 @@ class Mission
id=1105;
type="Land_Cargo_Patrol_V2_F";
};
- class Item227
+ class Item220
{
dataType="Layer";
name="Open Ammo Dump_1";
id=1106;
atlOffset=-252.33;
};
- class Item228
+ class Item221
{
dataType="Layer";
name="Vehicle Repair_1";
id=1131;
atlOffset=-252.33;
};
- class Item229
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -9364,7 +5495,7 @@ class Mission
id=1524;
type="Land_Cargo_Patrol_V2_F";
};
- class Item230
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -9380,14 +5511,14 @@ class Mission
id=1525;
type="Land_Cargo_Patrol_V2_F";
};
- class Item231
+ class Item224
{
dataType="Layer";
name="Open Ammo Dump_2";
id=1574;
atlOffset=-252.33;
};
- class Item232
+ class Item225
{
dataType="Layer";
name="Vehicle Repair_2";
@@ -9495,6 +5626,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2120;
type="Land_HBarrier_5_F";
@@ -9530,6 +5662,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2122;
type="Land_HBarrier_1_F";
@@ -9547,6 +5680,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2123;
type="Land_HBarrier_5_F";
@@ -9564,6 +5698,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2124;
type="Land_HBarrier_1_F";
@@ -9581,6 +5716,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2125;
type="Land_HBarrier_5_F";
@@ -9598,6 +5734,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2126;
type="Land_HBarrier_5_F";
@@ -9615,6 +5752,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2127;
type="Land_HBarrier_1_F";
@@ -9649,6 +5787,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2129;
type="Land_HBarrier_1_F";
@@ -9674,7 +5813,7 @@ class Mission
id=1599;
atlOffset=0.0049133301;
};
- class Item233
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -9686,11 +5825,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2003;
type="Land_HBarrier_5_F";
};
- class Item234
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -9702,11 +5842,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2004;
type="Land_HBarrier_5_F";
};
- class Item235
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -9718,11 +5859,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2005;
type="Land_HBarrier_5_F";
};
- class Item236
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -9734,11 +5876,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2006;
type="Land_HBarrier_5_F";
};
- class Item237
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -9750,11 +5893,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2007;
type="Land_HBarrier_5_F";
};
- class Item238
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -9766,11 +5910,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2008;
type="Land_HBarrier_5_F";
};
- class Item239
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -9782,11 +5927,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2009;
type="Land_HBarrier_5_F";
};
- class Item240
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -9798,11 +5944,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2010;
type="Land_HBarrier_5_F";
};
- class Item241
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -9814,11 +5961,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2011;
type="Land_HBarrier_5_F";
};
- class Item242
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -9830,11 +5978,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2012;
type="Land_HBarrier_5_F";
};
- class Item243
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -9846,11 +5995,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2013;
type="Land_HBarrier_5_F";
};
- class Item244
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -9862,12 +6012,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2014;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item245
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -9879,11 +6030,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2015;
type="Land_HBarrier_5_F";
};
- class Item246
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -9895,12 +6047,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2016;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item247
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -9912,11 +6065,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2017;
type="Land_HBarrier_5_F";
};
- class Item248
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -9928,12 +6082,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2018;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item249
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -9945,11 +6100,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2019;
type="Land_HBarrier_5_F";
};
- class Item250
+ class Item243
{
dataType="Object";
class PositionInfo
@@ -9961,11 +6117,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2020;
type="Land_HBarrier_5_F";
};
- class Item251
+ class Item244
{
dataType="Object";
class PositionInfo
@@ -9977,11 +6134,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2021;
type="Land_HBarrier_5_F";
};
- class Item252
+ class Item245
{
dataType="Object";
class PositionInfo
@@ -9993,11 +6151,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2022;
type="Land_HBarrier_5_F";
};
- class Item253
+ class Item246
{
dataType="Object";
class PositionInfo
@@ -10009,11 +6168,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2023;
type="Land_HBarrier_5_F";
};
- class Item254
+ class Item247
{
dataType="Object";
class PositionInfo
@@ -10025,11 +6185,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2024;
type="Land_HBarrier_5_F";
};
- class Item255
+ class Item248
{
dataType="Object";
class PositionInfo
@@ -10041,11 +6202,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2025;
type="Land_HBarrier_5_F";
};
- class Item256
+ class Item249
{
dataType="Object";
class PositionInfo
@@ -10057,11 +6219,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2026;
type="Land_HBarrier_5_F";
};
- class Item257
+ class Item250
{
dataType="Object";
class PositionInfo
@@ -10073,12 +6236,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2027;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item258
+ class Item251
{
dataType="Object";
class PositionInfo
@@ -10095,7 +6259,7 @@ class Mission
type="Land_PortableLight_single_F";
atlOffset=-1.5258789e-005;
};
- class Item259
+ class Item252
{
dataType="Object";
class PositionInfo
@@ -10111,7 +6275,7 @@ class Mission
id=2031;
type="Land_PortableLight_single_F";
};
- class Item260
+ class Item253
{
dataType="Object";
class PositionInfo
@@ -10122,12 +6286,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2033;
type="Land_HelipadSquare_F";
atlOffset=0.75;
};
- class Item261
+ class Item254
{
dataType="Object";
class PositionInfo
@@ -10139,12 +6304,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2035;
type="Land_HelipadSquare_F";
atlOffset=1.5258789e-005;
};
- class Item262
+ class Item255
{
dataType="Object";
class PositionInfo
@@ -10156,6 +6322,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2045;
type="PortableHelipadLight_01_green_F";
@@ -10184,7 +6352,7 @@ class Mission
nAttributes=1;
};
};
- class Item263
+ class Item256
{
dataType="Object";
class PositionInfo
@@ -10196,6 +6364,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2046;
type="PortableHelipadLight_01_green_F";
@@ -10223,7 +6393,7 @@ class Mission
nAttributes=1;
};
};
- class Item264
+ class Item257
{
dataType="Object";
class PositionInfo
@@ -10235,6 +6405,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2047;
type="PortableHelipadLight_01_green_F";
@@ -10263,7 +6435,7 @@ class Mission
nAttributes=1;
};
};
- class Item265
+ class Item258
{
dataType="Object";
class PositionInfo
@@ -10275,6 +6447,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2048;
type="PortableHelipadLight_01_green_F";
@@ -10302,7 +6476,7 @@ class Mission
nAttributes=1;
};
};
- class Item266
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -10314,6 +6488,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2049;
type="PortableHelipadLight_01_green_F";
@@ -10342,7 +6518,7 @@ class Mission
nAttributes=1;
};
};
- class Item267
+ class Item260
{
dataType="Object";
class PositionInfo
@@ -10354,6 +6530,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2050;
type="PortableHelipadLight_01_green_F";
@@ -10382,7 +6560,7 @@ class Mission
nAttributes=1;
};
};
- class Item268
+ class Item261
{
dataType="Object";
class PositionInfo
@@ -10394,6 +6572,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2051;
type="PortableHelipadLight_01_green_F";
@@ -10421,7 +6601,7 @@ class Mission
nAttributes=1;
};
};
- class Item269
+ class Item262
{
dataType="Object";
class PositionInfo
@@ -10433,6 +6613,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2052;
type="PortableHelipadLight_01_green_F";
@@ -10461,7 +6643,7 @@ class Mission
nAttributes=1;
};
};
- class Item270
+ class Item263
{
dataType="Object";
class PositionInfo
@@ -10473,6 +6655,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2053;
type="PortableHelipadLight_01_green_F";
@@ -10501,7 +6685,7 @@ class Mission
nAttributes=1;
};
};
- class Item271
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -10513,6 +6697,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2054;
type="PortableHelipadLight_01_green_F";
@@ -10541,7 +6727,7 @@ class Mission
nAttributes=1;
};
};
- class Item272
+ class Item265
{
dataType="Object";
class PositionInfo
@@ -10553,6 +6739,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2055;
type="PortableHelipadLight_01_green_F";
@@ -10581,7 +6769,7 @@ class Mission
nAttributes=1;
};
};
- class Item273
+ class Item266
{
dataType="Object";
class PositionInfo
@@ -10593,6 +6781,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2056;
type="PortableHelipadLight_01_green_F";
@@ -10620,7 +6810,7 @@ class Mission
nAttributes=1;
};
};
- class Item274
+ class Item267
{
dataType="Object";
class PositionInfo
@@ -10632,6 +6822,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2057;
type="PortableHelipadLight_01_green_F";
@@ -10660,7 +6852,7 @@ class Mission
nAttributes=1;
};
};
- class Item275
+ class Item268
{
dataType="Object";
class PositionInfo
@@ -10672,6 +6864,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2058;
type="PortableHelipadLight_01_green_F";
@@ -10699,7 +6893,7 @@ class Mission
nAttributes=1;
};
};
- class Item276
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -10711,6 +6905,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2059;
type="PortableHelipadLight_01_green_F";
@@ -10738,7 +6934,7 @@ class Mission
nAttributes=1;
};
};
- class Item277
+ class Item270
{
dataType="Object";
class PositionInfo
@@ -10750,6 +6946,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2060;
type="PortableHelipadLight_01_green_F";
@@ -10777,7 +6975,7 @@ class Mission
nAttributes=1;
};
};
- class Item278
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -10789,12 +6987,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2070;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item279
+ class Item272
{
dataType="Object";
class PositionInfo
@@ -10806,11 +7005,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2071;
type="Land_HBarrier_5_F";
};
- class Item280
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -10822,11 +7022,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2072;
type="Land_HBarrier_5_F";
};
- class Item281
+ class Item274
{
dataType="Object";
class PositionInfo
@@ -10838,11 +7039,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2073;
type="Land_HBarrier_5_F";
};
- class Item282
+ class Item275
{
dataType="Object";
class PositionInfo
@@ -10854,11 +7056,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2074;
type="Land_HBarrier_5_F";
};
- class Item283
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -10870,11 +7073,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2075;
type="Land_HBarrier_5_F";
};
- class Item284
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -10886,11 +7090,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2076;
type="Land_HBarrier_5_F";
};
- class Item285
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -10902,11 +7107,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2077;
type="Land_HBarrier_5_F";
};
- class Item286
+ class Item279
{
dataType="Object";
class PositionInfo
@@ -10918,11 +7124,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2078;
type="Land_HBarrier_5_F";
};
- class Item287
+ class Item280
{
dataType="Object";
class PositionInfo
@@ -10934,11 +7141,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2079;
type="Land_HBarrier_5_F";
};
- class Item288
+ class Item281
{
dataType="Object";
class PositionInfo
@@ -10950,11 +7158,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2080;
type="Land_HBarrier_5_F";
};
- class Item289
+ class Item282
{
dataType="Object";
class PositionInfo
@@ -10966,11 +7175,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2081;
type="Land_HBarrier_5_F";
};
- class Item290
+ class Item283
{
dataType="Object";
class PositionInfo
@@ -10982,11 +7192,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2082;
type="Land_HBarrier_5_F";
};
- class Item291
+ class Item284
{
dataType="Object";
class PositionInfo
@@ -10998,11 +7209,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2083;
type="Land_HBarrier_5_F";
};
- class Item292
+ class Item285
{
dataType="Object";
class PositionInfo
@@ -11014,11 +7226,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2084;
type="Land_HBarrier_5_F";
};
- class Item293
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -11030,11 +7243,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2085;
type="Land_HBarrier_5_F";
};
- class Item294
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -11046,11 +7260,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2086;
type="Land_HBarrier_5_F";
};
- class Item295
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -11062,11 +7277,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2087;
type="Land_HBarrier_5_F";
};
- class Item296
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -11078,11 +7294,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2088;
type="Land_HBarrier_5_F";
};
- class Item297
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -11094,12 +7311,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2089;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item298
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -11111,11 +7329,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2090;
type="Land_HBarrier_5_F";
};
- class Item299
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -11127,11 +7346,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2091;
type="Land_HBarrier_5_F";
};
- class Item300
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -11143,11 +7363,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2092;
type="Land_HBarrier_5_F";
};
- class Item301
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -11159,11 +7380,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2093;
type="Land_HBarrier_5_F";
};
- class Item302
+ class Item295
{
dataType="Object";
class PositionInfo
@@ -11175,12 +7397,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2094;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item303
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -11196,7 +7419,7 @@ class Mission
id=2095;
type="Land_PortableLight_single_F";
};
- class Item304
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -11212,7 +7435,7 @@ class Mission
id=2096;
type="Land_PortableLight_single_F";
};
- class Item305
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -11223,12 +7446,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2097;
type="Land_HelipadSquare_F";
atlOffset=0.75;
};
- class Item306
+ class Item299
{
dataType="Object";
class PositionInfo
@@ -11240,11 +7464,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2098;
type="Land_HelipadSquare_F";
};
- class Item307
+ class Item300
{
dataType="Object";
class PositionInfo
@@ -11256,6 +7481,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2099;
type="PortableHelipadLight_01_green_F";
@@ -11283,7 +7510,7 @@ class Mission
nAttributes=1;
};
};
- class Item308
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -11295,6 +7522,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2100;
type="PortableHelipadLight_01_green_F";
@@ -11322,7 +7551,7 @@ class Mission
nAttributes=1;
};
};
- class Item309
+ class Item302
{
dataType="Object";
class PositionInfo
@@ -11334,6 +7563,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2101;
type="PortableHelipadLight_01_green_F";
@@ -11361,7 +7592,7 @@ class Mission
nAttributes=1;
};
};
- class Item310
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -11373,6 +7604,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2102;
type="PortableHelipadLight_01_green_F";
@@ -11400,7 +7633,7 @@ class Mission
nAttributes=1;
};
};
- class Item311
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -11412,6 +7645,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2103;
type="PortableHelipadLight_01_green_F";
@@ -11439,7 +7674,7 @@ class Mission
nAttributes=1;
};
};
- class Item312
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -11451,6 +7686,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2104;
type="PortableHelipadLight_01_green_F";
@@ -11478,7 +7715,7 @@ class Mission
nAttributes=1;
};
};
- class Item313
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -11490,6 +7727,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2105;
type="PortableHelipadLight_01_green_F";
@@ -11517,7 +7756,7 @@ class Mission
nAttributes=1;
};
};
- class Item314
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -11529,6 +7768,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2106;
type="PortableHelipadLight_01_green_F";
@@ -11556,7 +7797,7 @@ class Mission
nAttributes=1;
};
};
- class Item315
+ class Item308
{
dataType="Object";
class PositionInfo
@@ -11568,6 +7809,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2107;
type="PortableHelipadLight_01_green_F";
@@ -11595,7 +7838,7 @@ class Mission
nAttributes=1;
};
};
- class Item316
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -11607,6 +7850,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2108;
type="PortableHelipadLight_01_green_F";
@@ -11635,7 +7880,7 @@ class Mission
nAttributes=1;
};
};
- class Item317
+ class Item310
{
dataType="Object";
class PositionInfo
@@ -11647,6 +7892,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2109;
type="PortableHelipadLight_01_green_F";
@@ -11675,7 +7922,7 @@ class Mission
nAttributes=1;
};
};
- class Item318
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -11687,6 +7934,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2110;
type="PortableHelipadLight_01_green_F";
@@ -11715,7 +7964,7 @@ class Mission
nAttributes=1;
};
};
- class Item319
+ class Item312
{
dataType="Object";
class PositionInfo
@@ -11727,6 +7976,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2111;
type="PortableHelipadLight_01_green_F";
@@ -11754,7 +8005,7 @@ class Mission
nAttributes=1;
};
};
- class Item320
+ class Item313
{
dataType="Object";
class PositionInfo
@@ -11766,6 +8017,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2112;
type="PortableHelipadLight_01_green_F";
@@ -11793,7 +8046,7 @@ class Mission
nAttributes=1;
};
};
- class Item321
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -11805,6 +8058,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2113;
type="PortableHelipadLight_01_green_F";
@@ -11833,7 +8088,7 @@ class Mission
nAttributes=1;
};
};
- class Item322
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -11845,6 +8100,8 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2114;
type="PortableHelipadLight_01_green_F";
@@ -11873,7 +8130,7 @@ class Mission
nAttributes=1;
};
};
- class Item323
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -11885,26 +8142,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2131;
type="Land_HBarrier_5_F";
};
- class Item324
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9932.25,197.77466,3954.375};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2132;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=13.34729;
- };
- class Item325
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -11921,7 +8164,7 @@ class Mission
type="Land_PressureWasher_01_F";
atlOffset=-1.5258789e-005;
};
- class Item326
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -11937,152 +8180,7 @@ class Mission
id=2134;
type="Land_Cargo_Tower_V2_F";
};
- class Item327
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9932.25,182.32275,3954.375};
- angles[]={6.2816033,0,0.011198638};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2135;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item328
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9917.375,197.75645,3954.875};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2136;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=13.338715;
- };
- class Item329
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9917.375,182.30455,3954.875};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2137;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item330
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9904.0332,197.75645,3955.1919};
- };
- side="Empty";
- class Attributes
- {
- };
- id=2138;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=13.338715;
- };
- class Item331
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9904.0332,182.30455,3955.1919};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2139;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item332
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -12098,7 +8196,7 @@ class Mission
id=2140;
type="Land_Cargo_HQ_V2_F";
};
- class Item333
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -12114,7 +8212,7 @@ class Mission
id=2141;
type="Land_Cargo_HQ_V2_F";
};
- class Item334
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -12128,156 +8226,39 @@ class Mission
{
};
id=2142;
- type="Land_Cargo_Patrol_V2_F";
- };
- class Item335
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9803.0645,193.48499,3794.322};
- angles[]={6.2208662,1.8451034,0.011198638};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2143;
- type="Land_Cargo_Patrol_V2_F";
- };
- class Item336
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9862.9531,182.17456,3852.1628};
- angles[]={0,1.6160313,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2144;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item337
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9864.125,182.17456,3867};
- angles[]={0,1.6160313,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2145;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
+ type="Land_Cargo_Patrol_V2_F";
};
- class Item338
+ class Item322
{
dataType="Object";
class PositionInfo
{
- position[]={9865.0449,182.17456,3880.3137};
- angles[]={0,1.6160313,0};
+ position[]={9803.0645,193.48499,3794.322};
+ angles[]={6.2208662,1.8451034,0.011198638};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=2146;
- type="Land_MedicalTent_01_wdl_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
+ id=2143;
+ type="Land_Cargo_Patrol_V2_F";
};
- class Item339
+ class Item323
{
dataType="Layer";
name="Open Ammo Dump_3";
id=2147;
atlOffset=-252.33;
};
- class Item340
+ class Item324
{
dataType="Layer";
name="Vehicle Repair_3";
id=2172;
atlOffset=-252.33;
};
- class Item341
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -12289,11 +8270,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2562;
type="Land_HBarrier_5_F";
};
- class Item342
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -12305,11 +8287,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2563;
type="Land_HBarrier_5_F";
};
- class Item343
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -12321,12 +8304,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2564;
type="Land_HBarrier_5_F";
atlOffset=0.0730896;
};
- class Item344
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -12337,12 +8321,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2573;
type="Land_HelipadSquare_F";
atlOffset=0.69500732;
};
- class Item345
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -12353,12 +8338,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2582;
type="Land_HelipadSquare_F";
atlOffset=0.92480469;
};
- class Item346
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -12374,7 +8360,7 @@ class Mission
id=2583;
type="Land_Cargo_Tower_V2_F";
};
- class Item347
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -12390,7 +8376,7 @@ class Mission
id=2584;
type="Land_Cargo_Tower_V2_F";
};
- class Item348
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -12406,7 +8392,7 @@ class Mission
id=2585;
type="Land_Cargo_Tower_V2_F";
};
- class Item349
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -12418,11 +8404,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2586;
type="Land_HBarrier_5_F";
};
- class Item350
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -12434,11 +8421,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2587;
type="Land_HBarrier_Big_F";
};
- class Item351
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -12450,11 +8438,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2588;
type="Land_HBarrier_5_F";
};
- class Item352
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -12466,12 +8455,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2589;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item353
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -12483,11 +8473,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2590;
type="Land_HBarrier_5_F";
};
- class Item354
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -12499,11 +8490,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2591;
type="Land_HBarrier_5_F";
};
- class Item355
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -12515,12 +8507,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2592;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item356
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -12532,11 +8525,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2593;
type="Land_HBarrier_5_F";
};
- class Item357
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -12548,11 +8542,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2594;
type="Land_HBarrier_Big_F";
};
- class Item358
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -12564,11 +8559,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2595;
type="Land_HBarrier_5_F";
};
- class Item359
+ class Item343
{
dataType="Object";
class PositionInfo
@@ -12580,12 +8576,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2596;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item360
+ class Item344
{
dataType="Object";
class PositionInfo
@@ -12597,12 +8594,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2597;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item361
+ class Item345
{
dataType="Object";
class PositionInfo
@@ -12614,11 +8612,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2598;
type="Land_HBarrier_5_F";
};
- class Item362
+ class Item346
{
dataType="Object";
class PositionInfo
@@ -12630,11 +8629,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2599;
type="Land_HBarrier_Big_F";
};
- class Item363
+ class Item347
{
dataType="Object";
class PositionInfo
@@ -12646,11 +8646,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2600;
type="Land_HBarrier_5_F";
};
- class Item364
+ class Item348
{
dataType="Object";
class PositionInfo
@@ -12662,11 +8663,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2601;
type="Land_HBarrier_5_F";
};
- class Item365
+ class Item349
{
dataType="Object";
class PositionInfo
@@ -12678,12 +8680,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2602;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item366
+ class Item350
{
dataType="Object";
class PositionInfo
@@ -12695,12 +8698,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2603;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item367
+ class Item351
{
dataType="Object";
class PositionInfo
@@ -12712,11 +8716,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2604;
type="Land_HBarrier_Big_F";
};
- class Item368
+ class Item352
{
dataType="Object";
class PositionInfo
@@ -12728,11 +8733,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2605;
type="Land_HBarrier_5_F";
};
- class Item369
+ class Item353
{
dataType="Object";
class PositionInfo
@@ -12744,11 +8750,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2606;
type="Land_HBarrier_5_F";
};
- class Item370
+ class Item354
{
dataType="Object";
class PositionInfo
@@ -12760,11 +8767,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2607;
type="Land_HBarrier_Big_F";
};
- class Item371
+ class Item355
{
dataType="Object";
class PositionInfo
@@ -12776,11 +8784,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2608;
type="Land_HBarrier_5_F";
};
- class Item372
+ class Item356
{
dataType="Object";
class PositionInfo
@@ -12792,11 +8801,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2609;
type="Land_HBarrier_Big_F";
};
- class Item373
+ class Item357
{
dataType="Object";
class PositionInfo
@@ -12808,11 +8818,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2610;
type="Land_HBarrier_5_F";
};
- class Item374
+ class Item358
{
dataType="Object";
class PositionInfo
@@ -12824,12 +8835,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2611;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item375
+ class Item359
{
dataType="Object";
class PositionInfo
@@ -12841,11 +8853,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2612;
type="Land_HBarrier_5_F";
};
- class Item376
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -12857,12 +8870,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2613;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item377
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -12874,11 +8888,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2614;
type="Land_HBarrier_Big_F";
};
- class Item378
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -12890,11 +8905,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2615;
type="Land_HBarrier_5_F";
};
- class Item379
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -12906,11 +8922,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2616;
type="Land_HBarrier_Big_F";
};
- class Item380
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -12922,12 +8939,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2617;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item381
+ class Item365
{
dataType="Object";
class PositionInfo
@@ -12939,11 +8957,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2618;
type="Land_HBarrier_5_F";
};
- class Item382
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -12955,12 +8974,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2619;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item383
+ class Item367
{
dataType="Object";
class PositionInfo
@@ -12972,11 +8992,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2620;
type="Land_HBarrier_5_F";
};
- class Item384
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -12988,12 +9009,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2621;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item385
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -13005,11 +9027,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2622;
type="Land_HBarrier_5_F";
};
- class Item386
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -13021,11 +9044,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2623;
type="Land_HBarrier_5_F";
};
- class Item387
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -13037,11 +9061,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2624;
type="Land_HBarrier_Big_F";
};
- class Item388
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -13053,11 +9078,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2625;
type="Land_HBarrier_5_F";
};
- class Item389
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -13069,12 +9095,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2626;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item390
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -13086,12 +9113,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2627;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item391
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -13103,12 +9131,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2628;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item392
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -13120,12 +9149,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2629;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item393
+ class Item377
{
dataType="Object";
class PositionInfo
@@ -13137,11 +9167,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2630;
type="Land_HBarrier_5_F";
};
- class Item394
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -13153,12 +9184,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2631;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item395
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -13170,12 +9202,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2632;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item396
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -13187,11 +9220,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2633;
type="Land_HBarrier_5_F";
};
- class Item397
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -13203,11 +9237,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2634;
type="Land_HBarrier_Big_F";
};
- class Item398
+ class Item382
{
dataType="Object";
class PositionInfo
@@ -13219,11 +9254,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2635;
type="Land_HBarrier_5_F";
};
- class Item399
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -13235,11 +9271,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2636;
type="Land_HBarrier_Big_F";
};
- class Item400
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -13251,11 +9288,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2637;
type="Land_HBarrier_5_F";
};
- class Item401
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -13267,12 +9305,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2638;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item402
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -13284,11 +9323,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2639;
type="Land_HBarrier_5_F";
};
- class Item403
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -13300,12 +9340,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2640;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item404
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -13317,12 +9358,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2641;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item405
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -13334,12 +9376,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2642;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item406
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -13351,12 +9394,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2643;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item407
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -13368,12 +9412,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2644;
type="Land_HBarrier_5_F";
atlOffset=4.5776367e-005;
};
- class Item408
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -13385,12 +9430,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2645;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item409
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -13402,11 +9448,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2646;
type="Land_HBarrier_Big_F";
};
- class Item410
+ class Item394
{
dataType="Object";
class PositionInfo
@@ -13418,12 +9465,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2647;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item411
+ class Item395
{
dataType="Object";
class PositionInfo
@@ -13435,12 +9483,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2648;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item412
+ class Item396
{
dataType="Object";
class PositionInfo
@@ -13452,12 +9501,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2649;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item413
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -13469,12 +9519,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2650;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item414
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -13486,12 +9537,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2651;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item415
+ class Item399
{
dataType="Object";
class PositionInfo
@@ -13503,12 +9555,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2652;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item416
+ class Item400
{
dataType="Object";
class PositionInfo
@@ -13520,12 +9573,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2653;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item417
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -13537,12 +9591,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2654;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item418
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -13554,11 +9609,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2655;
type="Land_HBarrier_5_F";
};
- class Item419
+ class Item403
{
dataType="Object";
class PositionInfo
@@ -13570,11 +9626,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2656;
type="Land_HBarrier_Big_F";
};
- class Item420
+ class Item404
{
dataType="Object";
class PositionInfo
@@ -13586,12 +9643,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2657;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item421
+ class Item405
{
dataType="Object";
class PositionInfo
@@ -13603,12 +9661,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2658;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item422
+ class Item406
{
dataType="Object";
class PositionInfo
@@ -13620,12 +9679,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2659;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item423
+ class Item407
{
dataType="Object";
class PositionInfo
@@ -13637,12 +9697,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2660;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item424
+ class Item408
{
dataType="Object";
class PositionInfo
@@ -13654,12 +9715,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2661;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item425
+ class Item409
{
dataType="Object";
class PositionInfo
@@ -13671,11 +9733,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2662;
type="Land_HBarrier_Big_F";
};
- class Item426
+ class Item410
{
dataType="Object";
class PositionInfo
@@ -13687,12 +9750,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2663;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item427
+ class Item411
{
dataType="Object";
class PositionInfo
@@ -13704,12 +9768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2664;
type="Land_HBarrier_Big_F";
atlOffset=4.5776367e-005;
};
- class Item428
+ class Item412
{
dataType="Object";
class PositionInfo
@@ -13721,12 +9786,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2665;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item429
+ class Item413
{
dataType="Object";
class PositionInfo
@@ -13738,12 +9804,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2666;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item430
+ class Item414
{
dataType="Object";
class PositionInfo
@@ -13755,11 +9822,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2667;
type="Land_HBarrier_Big_F";
};
- class Item431
+ class Item415
{
dataType="Object";
class PositionInfo
@@ -13771,11 +9839,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2668;
type="Land_HBarrier_5_F";
};
- class Item432
+ class Item416
{
dataType="Object";
class PositionInfo
@@ -13787,12 +9856,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2669;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item433
+ class Item417
{
dataType="Object";
class PositionInfo
@@ -13804,12 +9874,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2670;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item434
+ class Item418
{
dataType="Object";
class PositionInfo
@@ -13821,11 +9892,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2671;
type="Land_HBarrier_Big_F";
};
- class Item435
+ class Item419
{
dataType="Object";
class PositionInfo
@@ -13837,11 +9909,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2672;
type="Land_HBarrier_5_F";
};
- class Item436
+ class Item420
{
dataType="Object";
class PositionInfo
@@ -13853,12 +9926,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2673;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item437
+ class Item421
{
dataType="Object";
class PositionInfo
@@ -13870,12 +9944,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2674;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item438
+ class Item422
{
dataType="Object";
class PositionInfo
@@ -13887,11 +9962,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2675;
type="Land_HBarrier_5_F";
};
- class Item439
+ class Item423
{
dataType="Object";
class PositionInfo
@@ -13903,12 +9979,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2676;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item440
+ class Item424
{
dataType="Object";
class PositionInfo
@@ -13920,11 +9997,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2677;
type="Land_HBarrier_Big_F";
};
- class Item441
+ class Item425
{
dataType="Object";
class PositionInfo
@@ -13936,12 +10014,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2678;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item442
+ class Item426
{
dataType="Object";
class PositionInfo
@@ -13953,12 +10032,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2679;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item443
+ class Item427
{
dataType="Object";
class PositionInfo
@@ -13970,12 +10050,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2680;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item444
+ class Item428
{
dataType="Object";
class PositionInfo
@@ -13987,12 +10068,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2681;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item445
+ class Item429
{
dataType="Object";
class PositionInfo
@@ -14004,12 +10086,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2682;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item446
+ class Item430
{
dataType="Object";
class PositionInfo
@@ -14021,12 +10104,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2683;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item447
+ class Item431
{
dataType="Object";
class PositionInfo
@@ -14038,11 +10122,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2684;
type="Land_HBarrier_Big_F";
};
- class Item448
+ class Item432
{
dataType="Object";
class PositionInfo
@@ -14054,11 +10139,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2685;
type="Land_HBarrier_5_F";
};
- class Item449
+ class Item433
{
dataType="Object";
class PositionInfo
@@ -14070,11 +10156,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2686;
type="Land_HBarrier_5_F";
};
- class Item450
+ class Item434
{
dataType="Object";
class PositionInfo
@@ -14086,11 +10173,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2687;
type="Land_HBarrier_Big_F";
};
- class Item451
+ class Item435
{
dataType="Object";
class PositionInfo
@@ -14102,12 +10190,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2688;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item452
+ class Item436
{
dataType="Object";
class PositionInfo
@@ -14119,11 +10208,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2689;
type="Land_HBarrier_Big_F";
};
- class Item453
+ class Item437
{
dataType="Object";
class PositionInfo
@@ -14135,12 +10225,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2690;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item454
+ class Item438
{
dataType="Object";
class PositionInfo
@@ -14152,11 +10243,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2693;
type="Land_HBarrier_Big_F";
};
- class Item455
+ class Item439
{
dataType="Object";
class PositionInfo
@@ -14168,11 +10260,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2694;
type="Land_HBarrier_5_F";
};
- class Item456
+ class Item440
{
dataType="Object";
class PositionInfo
@@ -14184,12 +10277,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2695;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item457
+ class Item441
{
dataType="Object";
class PositionInfo
@@ -14201,11 +10295,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2696;
type="Land_HBarrier_Big_F";
};
- class Item458
+ class Item442
{
dataType="Object";
class PositionInfo
@@ -14217,12 +10312,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2697;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item459
+ class Item443
{
dataType="Object";
class PositionInfo
@@ -14234,11 +10330,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2698;
type="Land_HBarrier_Big_F";
};
- class Item460
+ class Item444
{
dataType="Object";
class PositionInfo
@@ -14250,12 +10347,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2699;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item461
+ class Item445
{
dataType="Object";
class PositionInfo
@@ -14267,11 +10365,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2700;
type="Land_HBarrier_5_F";
};
- class Item462
+ class Item446
{
dataType="Object";
class PositionInfo
@@ -14283,12 +10382,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2701;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item463
+ class Item447
{
dataType="Object";
class PositionInfo
@@ -14300,11 +10400,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2702;
type="Land_HBarrier_5_F";
};
- class Item464
+ class Item448
{
dataType="Object";
class PositionInfo
@@ -14316,11 +10417,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2703;
type="Land_HBarrier_Big_F";
};
- class Item465
+ class Item449
{
dataType="Object";
class PositionInfo
@@ -14332,11 +10434,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2704;
type="Land_HBarrier_5_F";
};
- class Item466
+ class Item450
{
dataType="Object";
class PositionInfo
@@ -14348,11 +10451,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2705;
type="Land_HBarrier_Big_F";
};
- class Item467
+ class Item451
{
dataType="Object";
class PositionInfo
@@ -14364,12 +10468,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2706;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item468
+ class Item452
{
dataType="Object";
class PositionInfo
@@ -14381,11 +10486,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2707;
type="Land_HBarrier_5_F";
};
- class Item469
+ class Item453
{
dataType="Object";
class PositionInfo
@@ -14397,11 +10503,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2708;
type="Land_HBarrier_Big_F";
};
- class Item470
+ class Item454
{
dataType="Object";
class PositionInfo
@@ -14413,12 +10520,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2709;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item471
+ class Item455
{
dataType="Object";
class PositionInfo
@@ -14430,12 +10538,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2710;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item472
+ class Item456
{
dataType="Object";
class PositionInfo
@@ -14447,11 +10556,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2711;
type="Land_HBarrier_5_F";
};
- class Item473
+ class Item457
{
dataType="Object";
class PositionInfo
@@ -14463,12 +10573,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2712;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item474
+ class Item458
{
dataType="Object";
class PositionInfo
@@ -14480,12 +10591,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2713;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item475
+ class Item459
{
dataType="Object";
class PositionInfo
@@ -14497,11 +10609,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2714;
type="Land_HBarrier_5_F";
};
- class Item476
+ class Item460
{
dataType="Object";
class PositionInfo
@@ -14513,12 +10626,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2715;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item477
+ class Item461
{
dataType="Object";
class PositionInfo
@@ -14530,12 +10644,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2716;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item478
+ class Item462
{
dataType="Logic";
class PositionInfo
@@ -14592,7 +10707,7 @@ class Mission
nAttributes=2;
};
};
- class Item479
+ class Item463
{
dataType="Logic";
class PositionInfo
@@ -14649,7 +10764,7 @@ class Mission
nAttributes=2;
};
};
- class Item480
+ class Item464
{
dataType="Logic";
class PositionInfo
@@ -14706,7 +10821,7 @@ class Mission
nAttributes=2;
};
};
- class Item481
+ class Item465
{
dataType="Logic";
class PositionInfo
@@ -14763,7 +10878,7 @@ class Mission
nAttributes=2;
};
};
- class Item482
+ class Item466
{
dataType="Logic";
class PositionInfo
@@ -14820,7 +10935,7 @@ class Mission
nAttributes=2;
};
};
- class Item483
+ class Item467
{
dataType="Object";
class PositionInfo
@@ -14832,12 +10947,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2722;
type="Land_HBarrier_5_F";
atlOffset=-0.054992676;
};
- class Item484
+ class Item468
{
dataType="Object";
class PositionInfo
@@ -14849,12 +10965,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2723;
type="Land_HBarrier_5_F";
atlOffset=-0.054992676;
};
- class Item485
+ class Item469
{
dataType="Object";
class PositionInfo
@@ -14866,12 +10983,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2724;
type="Land_HBarrier_5_F";
atlOffset=-0.054992676;
};
- class Item486
+ class Item470
{
dataType="Object";
class PositionInfo
@@ -14882,12 +11000,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2733;
type="Land_HelipadSquare_F";
atlOffset=0.69500732;
};
- class Item487
+ class Item471
{
dataType="Object";
class PositionInfo
@@ -14898,12 +11017,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=2742;
type="Land_HelipadSquare_F";
atlOffset=0.64001465;
};
- class Item488
+ class Item472
{
dataType="Object";
class PositionInfo
@@ -14919,7 +11039,7 @@ class Mission
id=2743;
type="Land_Cargo_Tower_V2_F";
};
- class Item489
+ class Item473
{
dataType="Object";
class PositionInfo
@@ -14931,11 +11051,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2745;
type="Land_HBarrier_Big_F";
};
- class Item490
+ class Item474
{
dataType="Object";
class PositionInfo
@@ -14947,11 +11068,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2747;
type="Land_HBarrier_Big_F";
};
- class Item491
+ class Item475
{
dataType="Object";
class PositionInfo
@@ -14963,11 +11085,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2750;
type="Land_HBarrier_Big_F";
};
- class Item492
+ class Item476
{
dataType="Object";
class PositionInfo
@@ -14979,11 +11102,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2752;
type="Land_HBarrier_Big_F";
};
- class Item493
+ class Item477
{
dataType="Object";
class PositionInfo
@@ -14995,11 +11119,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2754;
type="Land_HBarrier_Big_F";
};
- class Item494
+ class Item478
{
dataType="Object";
class PositionInfo
@@ -15011,11 +11136,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2757;
type="Land_HBarrier_Big_F";
};
- class Item495
+ class Item479
{
dataType="Object";
class PositionInfo
@@ -15027,11 +11153,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2760;
type="Land_HBarrier_Big_F";
};
- class Item496
+ class Item480
{
dataType="Object";
class PositionInfo
@@ -15043,12 +11170,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2762;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item497
+ class Item481
{
dataType="Object";
class PositionInfo
@@ -15060,11 +11188,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2764;
type="Land_HBarrier_Big_F";
};
- class Item498
+ class Item482
{
dataType="Object";
class PositionInfo
@@ -15076,11 +11205,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2765;
type="Land_HBarrier_Big_F";
};
- class Item499
+ class Item483
{
dataType="Object";
class PositionInfo
@@ -15092,11 +11222,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2766;
type="Land_HBarrier_Big_F";
};
- class Item500
+ class Item484
{
dataType="Object";
class PositionInfo
@@ -15108,11 +11239,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2767;
type="Land_HBarrier_Big_F";
};
- class Item501
+ class Item485
{
dataType="Object";
class PositionInfo
@@ -15124,11 +11256,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2768;
type="Land_HBarrier_Big_F";
};
- class Item502
+ class Item486
{
dataType="Object";
class PositionInfo
@@ -15140,11 +11273,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2769;
type="Land_HBarrier_Big_F";
};
- class Item503
+ class Item487
{
dataType="Object";
class PositionInfo
@@ -15156,11 +11290,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2770;
type="Land_HBarrier_Big_F";
};
- class Item504
+ class Item488
{
dataType="Object";
class PositionInfo
@@ -15172,12 +11307,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2771;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item505
+ class Item489
{
dataType="Object";
class PositionInfo
@@ -15189,11 +11325,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2772;
type="Land_HBarrier_Big_F";
};
- class Item506
+ class Item490
{
dataType="Object";
class PositionInfo
@@ -15205,11 +11342,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2773;
type="Land_HBarrier_Big_F";
};
- class Item507
+ class Item491
{
dataType="Object";
class PositionInfo
@@ -15221,11 +11359,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2774;
type="Land_HBarrier_Big_F";
};
- class Item508
+ class Item492
{
dataType="Object";
class PositionInfo
@@ -15237,11 +11376,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2775;
type="Land_HBarrier_Big_F";
};
- class Item509
+ class Item493
{
dataType="Object";
class PositionInfo
@@ -15253,11 +11393,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2776;
type="Land_HBarrier_Big_F";
};
- class Item510
+ class Item494
{
dataType="Object";
class PositionInfo
@@ -15269,11 +11410,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2777;
type="Land_HBarrier_Big_F";
};
- class Item511
+ class Item495
{
dataType="Object";
class PositionInfo
@@ -15285,11 +11427,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2778;
type="Land_HBarrier_Big_F";
};
- class Item512
+ class Item496
{
dataType="Object";
class PositionInfo
@@ -15301,11 +11444,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2779;
type="Land_HBarrier_Big_F";
};
- class Item513
+ class Item497
{
dataType="Object";
class PositionInfo
@@ -15317,11 +11461,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2780;
type="Land_HBarrier_Big_F";
};
- class Item514
+ class Item498
{
dataType="Object";
class PositionInfo
@@ -15333,11 +11478,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2781;
type="Land_HBarrier_Big_F";
};
- class Item515
+ class Item499
{
dataType="Object";
class PositionInfo
@@ -15353,7 +11499,7 @@ class Mission
id=2782;
type="Land_Mil_WiredFence_Gate_F";
};
- class Item516
+ class Item500
{
dataType="Object";
class PositionInfo
@@ -15369,7 +11515,7 @@ class Mission
id=2783;
type="Land_Cargo_Patrol_V2_F";
};
- class Item517
+ class Item501
{
dataType="Object";
class PositionInfo
@@ -15386,7 +11532,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-0.025588989;
};
- class Item518
+ class Item502
{
dataType="Object";
class PositionInfo
@@ -15403,7 +11549,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-0.025588989;
};
- class Item519
+ class Item503
{
dataType="Object";
class PositionInfo
@@ -15420,7 +11566,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-0.025588989;
};
- class Item520
+ class Item504
{
dataType="Object";
class PositionInfo
@@ -15437,7 +11583,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-0.025588989;
};
- class Item521
+ class Item505
{
dataType="Object";
class PositionInfo
@@ -15453,7 +11599,7 @@ class Mission
id=2789;
type="Land_Cargo_Tower_V2_F";
};
- class Item522
+ class Item506
{
dataType="Object";
class PositionInfo
@@ -15469,7 +11615,7 @@ class Mission
id=2790;
type="Land_Cargo_Patrol_V2_F";
};
- class Item523
+ class Item507
{
dataType="Object";
class PositionInfo
@@ -15485,7 +11631,7 @@ class Mission
id=2791;
type="Land_Cargo_Patrol_V2_F";
};
- class Item524
+ class Item508
{
dataType="Object";
class PositionInfo
@@ -15502,7 +11648,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=1.5258789e-005;
};
- class Item525
+ class Item509
{
dataType="Object";
class PositionInfo
@@ -15518,7 +11664,7 @@ class Mission
id=2793;
type="Land_Cargo_Patrol_V2_F";
};
- class Item526
+ class Item510
{
dataType="Object";
class PositionInfo
@@ -15535,74 +11681,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=0.0091171265;
};
- class Item527
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8906,140.06662,6548.125};
- angles[]={0.00034526698,2.7269034,0.0075565549};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2888;
- type="Land_DeconTent_01_AAF_F";
- };
- class Item528
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8947.3496,139.98642,6567.0693};
- angles[]={0.00034526698,2.7269034,0.0075565549};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2889;
- type="Land_DeconTent_01_AAF_F";
- atlOffset=0.023544312;
- };
- class Item529
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8926.4697,140.0873,6557.6382};
- angles[]={6.2660117,5.838604,6.2749715};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2891;
- type="Land_MedicalTent_01_aaf_generic_open_F";
- atlOffset=0.0002746582;
- };
- class Item530
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8926.9014,140.35733,6611.603};
- angles[]={6.2528124,5.838604,6.2694311};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2892;
- type="Land_MedicalTent_01_aaf_generic_open_F";
- atlOffset=0.0002746582;
- };
- class Item531
+ class Item511
{
dataType="Object";
class PositionInfo
@@ -15618,7 +11697,7 @@ class Mission
id=2893;
type="Land_Cargo_Patrol_V2_F";
};
- class Item532
+ class Item512
{
dataType="Object";
class PositionInfo
@@ -15634,7 +11713,7 @@ class Mission
id=2894;
type="Land_Cargo_Patrol_V2_F";
};
- class Item533
+ class Item513
{
dataType="Object";
class PositionInfo
@@ -15647,91 +11726,26 @@ class Mission
class Attributes
{
};
- id=2895;
- type="Land_Cargo_Patrol_V2_F";
- };
- class Item534
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8909.75,306.88721,2088.375};
- angles[]={0,2.0327702,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=2896;
- type="Land_Cargo_Patrol_V2_F";
- };
- class Item535
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11063,187.9892,2444.25};
- angles[]={6.2719817,3.0360308,6.251195};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2897;
- type="Land_DeconTent_01_AAF_F";
- atlOffset=0.22538757;
- };
- class Item536
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11120.5,185.59541,2455};
- angles[]={0,6.0400758,6.2496004};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2898;
- type="Land_DeconTent_01_AAF_F";
- };
- class Item537
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11100.625,186.58017,2447.625};
- angles[]={0.011198638,2.8414578,6.2336264};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=2899;
- type="Land_MedicalTent_01_aaf_generic_open_F";
+ id=2895;
+ type="Land_Cargo_Patrol_V2_F";
};
- class Item538
+ class Item514
{
dataType="Object";
class PositionInfo
{
- position[]={11091.5,186.67776,2470.875};
- angles[]={6.2799835,4.5131998,6.2448072};
+ position[]={8909.75,306.88721,2088.375};
+ angles[]={0,2.0327702,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=2900;
- type="Land_MedicalTent_01_aaf_generic_open_F";
+ id=2896;
+ type="Land_Cargo_Patrol_V2_F";
};
- class Item539
+ class Item515
{
dataType="Object";
class PositionInfo
@@ -15747,7 +11761,7 @@ class Mission
id=2901;
type="Land_Cargo_Patrol_V2_F";
};
- class Item540
+ class Item516
{
dataType="Object";
class PositionInfo
@@ -15763,7 +11777,7 @@ class Mission
id=2902;
type="Land_Cargo_Patrol_V2_F";
};
- class Item541
+ class Item517
{
dataType="Object";
class PositionInfo
@@ -15779,7 +11793,7 @@ class Mission
id=2903;
type="Land_Cargo_Patrol_V2_F";
};
- class Item542
+ class Item518
{
dataType="Logic";
class PositionInfo
@@ -15836,7 +11850,7 @@ class Mission
nAttributes=2;
};
};
- class Item543
+ class Item519
{
dataType="Object";
class PositionInfo
@@ -15852,7 +11866,7 @@ class Mission
id=2906;
type="Land_Cargo_Patrol_V2_F";
};
- class Item544
+ class Item520
{
dataType="Logic";
class PositionInfo
@@ -15863,7 +11877,7 @@ class Mission
id=2910;
type="Logic";
};
- class Item545
+ class Item521
{
dataType="Layer";
name="Open Ammo Dump_4";
@@ -15953,6 +11967,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2916;
type="Land_HBarrier_5_F";
@@ -16167,6 +12182,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2928;
type="Land_HBarrier_5_F";
@@ -16220,6 +12236,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2931;
type="Land_HBarrier_5_F";
@@ -16237,6 +12254,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2932;
type="Land_HBarrier_5_F";
@@ -16254,6 +12272,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2933;
type="Land_HBarrier_5_F";
@@ -16271,6 +12290,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2934;
type="Land_HBarrier_5_F";
@@ -16297,7 +12317,7 @@ class Mission
id=2911;
atlOffset=1.3202038;
};
- class Item546
+ class Item522
{
dataType="Layer";
name="Vehicle Repair_4";
@@ -16406,6 +12426,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2942;
type="Land_HBarrier_5_F";
@@ -16441,6 +12462,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2944;
type="Land_HBarrier_1_F";
@@ -16459,6 +12481,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2945;
type="Land_HBarrier_5_F";
@@ -16476,6 +12499,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2946;
type="Land_HBarrier_1_F";
@@ -16494,6 +12518,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2947;
type="Land_HBarrier_5_F";
@@ -16511,6 +12536,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2948;
type="Land_HBarrier_5_F";
@@ -16529,6 +12555,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2949;
type="Land_HBarrier_1_F";
@@ -16547,6 +12574,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=2950;
type="Land_HBarrier_1_F";
@@ -16573,7 +12601,7 @@ class Mission
id=2936;
atlOffset=-0.0021696091;
};
- class Item547
+ class Item523
{
dataType="Object";
class PositionInfo
@@ -16585,11 +12613,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2952;
type="Land_HBarrier_5_F";
};
- class Item548
+ class Item524
{
dataType="Object";
class PositionInfo
@@ -16601,11 +12630,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2953;
type="Land_HBarrier_5_F";
};
- class Item549
+ class Item525
{
dataType="Object";
class PositionInfo
@@ -16617,12 +12647,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2954;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item550
+ class Item526
{
dataType="Object";
class PositionInfo
@@ -16634,12 +12665,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2955;
type="Land_HBarrier_5_F";
atlOffset=2.7656555e-005;
};
- class Item551
+ class Item527
{
dataType="Object";
class PositionInfo
@@ -16651,12 +12683,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2956;
type="Land_HBarrier_Big_F";
atlOffset=1.4305115e-006;
};
- class Item552
+ class Item528
{
dataType="Object";
class PositionInfo
@@ -16668,12 +12701,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2957;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item553
+ class Item529
{
dataType="Object";
class PositionInfo
@@ -16685,11 +12719,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2958;
type="Land_HBarrier_5_F";
};
- class Item554
+ class Item530
{
dataType="Object";
class PositionInfo
@@ -16701,11 +12736,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2959;
type="Land_HBarrier_Big_F";
};
- class Item555
+ class Item531
{
dataType="Object";
class PositionInfo
@@ -16717,11 +12753,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2960;
type="Land_HBarrier_Big_F";
};
- class Item556
+ class Item532
{
dataType="Object";
class PositionInfo
@@ -16733,12 +12770,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2961;
type="Land_HBarrier_5_F";
atlOffset=1.4305115e-006;
};
- class Item557
+ class Item533
{
dataType="Object";
class PositionInfo
@@ -16750,12 +12788,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2962;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item558
+ class Item534
{
dataType="Object";
class PositionInfo
@@ -16767,12 +12806,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2963;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item559
+ class Item535
{
dataType="Object";
class PositionInfo
@@ -16784,11 +12824,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2964;
type="Land_HBarrier_5_F";
};
- class Item560
+ class Item536
{
dataType="Object";
class PositionInfo
@@ -16800,12 +12841,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2965;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item561
+ class Item537
{
dataType="Object";
class PositionInfo
@@ -16817,12 +12859,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2966;
type="Land_HBarrier_Big_F";
atlOffset=2.8610229e-006;
};
- class Item562
+ class Item538
{
dataType="Object";
class PositionInfo
@@ -16834,12 +12877,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2967;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item563
+ class Item539
{
dataType="Object";
class PositionInfo
@@ -16851,11 +12895,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2968;
type="Land_HBarrier_3_F";
};
- class Item564
+ class Item540
{
dataType="Object";
class PositionInfo
@@ -16867,12 +12912,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2969;
type="Land_HBarrier_Big_F";
atlOffset=2.8610229e-006;
};
- class Item565
+ class Item541
{
dataType="Object";
class PositionInfo
@@ -16884,12 +12930,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2970;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item566
+ class Item542
{
dataType="Object";
class PositionInfo
@@ -16901,11 +12948,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2971;
type="Land_HBarrier_Big_F";
};
- class Item567
+ class Item543
{
dataType="Object";
class PositionInfo
@@ -16917,12 +12965,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2972;
type="Land_HBarrier_Big_F";
atlOffset=-2.9563904e-005;
};
- class Item568
+ class Item544
{
dataType="Object";
class PositionInfo
@@ -16934,11 +12983,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2973;
type="Land_HBarrier_Big_F";
};
- class Item569
+ class Item545
{
dataType="Object";
class PositionInfo
@@ -16950,12 +13000,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2974;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item570
+ class Item546
{
dataType="Object";
class PositionInfo
@@ -16967,11 +13018,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2975;
type="Land_HBarrier_Big_F";
};
- class Item571
+ class Item547
{
dataType="Object";
class PositionInfo
@@ -16983,11 +13035,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2976;
type="Land_HBarrier_Big_F";
};
- class Item572
+ class Item548
{
dataType="Object";
class PositionInfo
@@ -16999,12 +13052,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2977;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item573
+ class Item549
{
dataType="Object";
class PositionInfo
@@ -17016,11 +13070,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2978;
type="Land_HBarrierWall6_F";
};
- class Item574
+ class Item550
{
dataType="Object";
class PositionInfo
@@ -17032,11 +13087,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2979;
type="Land_HBarrier_5_F";
};
- class Item575
+ class Item551
{
dataType="Object";
class PositionInfo
@@ -17052,7 +13108,7 @@ class Mission
id=2980;
type="Land_Mil_WiredFence_Gate_F";
};
- class Item576
+ class Item552
{
dataType="Object";
class PositionInfo
@@ -17064,12 +13120,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2981;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item577
+ class Item553
{
dataType="Object";
class PositionInfo
@@ -17081,12 +13138,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2982;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item578
+ class Item554
{
dataType="Object";
class PositionInfo
@@ -17098,11 +13156,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2983;
type="Land_HBarrier_5_F";
};
- class Item579
+ class Item555
{
dataType="Object";
class PositionInfo
@@ -17114,11 +13173,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2984;
type="Land_HBarrier_Big_F";
};
- class Item580
+ class Item556
{
dataType="Object";
class PositionInfo
@@ -17130,11 +13190,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2985;
type="Land_HBarrier_5_F";
};
- class Item581
+ class Item557
{
dataType="Object";
class PositionInfo
@@ -17146,11 +13207,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2986;
type="Land_HBarrier_5_F";
};
- class Item582
+ class Item558
{
dataType="Object";
class PositionInfo
@@ -17162,12 +13224,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2987;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item583
+ class Item559
{
dataType="Object";
class PositionInfo
@@ -17179,12 +13242,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2988;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item584
+ class Item560
{
dataType="Object";
class PositionInfo
@@ -17196,11 +13260,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2989;
type="Land_HBarrier_Big_F";
};
- class Item585
+ class Item561
{
dataType="Object";
class PositionInfo
@@ -17212,11 +13277,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2990;
type="Land_HBarrier_5_F";
};
- class Item586
+ class Item562
{
dataType="Object";
class PositionInfo
@@ -17228,12 +13294,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2991;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item587
+ class Item563
{
dataType="Object";
class PositionInfo
@@ -17245,12 +13312,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2992;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item588
+ class Item564
{
dataType="Object";
class PositionInfo
@@ -17262,11 +13330,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2993;
type="Land_HBarrier_5_F";
};
- class Item589
+ class Item565
{
dataType="Object";
class PositionInfo
@@ -17278,12 +13347,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2994;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item590
+ class Item566
{
dataType="Object";
class PositionInfo
@@ -17295,12 +13365,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2995;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item591
+ class Item567
{
dataType="Object";
class PositionInfo
@@ -17312,11 +13383,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2996;
type="Land_HBarrier_5_F";
};
- class Item592
+ class Item568
{
dataType="Object";
class PositionInfo
@@ -17328,11 +13400,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2997;
type="Land_HBarrier_Big_F";
};
- class Item593
+ class Item569
{
dataType="Object";
class PositionInfo
@@ -17344,11 +13417,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2998;
type="Land_HBarrier_5_F";
};
- class Item594
+ class Item570
{
dataType="Object";
class PositionInfo
@@ -17360,12 +13434,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2999;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item595
+ class Item571
{
dataType="Object";
class PositionInfo
@@ -17377,11 +13452,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3000;
type="Land_HBarrier_5_F";
};
- class Item596
+ class Item572
{
dataType="Object";
class PositionInfo
@@ -17393,12 +13469,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3001;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item597
+ class Item573
{
dataType="Object";
class PositionInfo
@@ -17410,12 +13487,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3002;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item598
+ class Item574
{
dataType="Object";
class PositionInfo
@@ -17427,12 +13505,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3003;
type="Land_HBarrier_5_F";
atlOffset=1.9073486e-006;
};
- class Item599
+ class Item575
{
dataType="Object";
class PositionInfo
@@ -17444,11 +13523,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3004;
type="Land_HBarrier_Big_F";
};
- class Item600
+ class Item576
{
dataType="Object";
class PositionInfo
@@ -17460,52 +13540,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3005;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item601
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11323.436,13.722235,8912.2236};
- angles[]={0.090948731,2.8277617,0.036783949};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3006;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=-9.5367432e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item602
+ class Item577
{
dataType="Object";
class PositionInfo
@@ -17521,7 +13562,7 @@ class Mission
id=3007;
type="Land_Razorwire_F";
};
- class Item603
+ class Item578
{
dataType="Object";
class PositionInfo
@@ -17537,7 +13578,7 @@ class Mission
id=3008;
type="Land_Razorwire_F";
};
- class Item604
+ class Item579
{
dataType="Object";
class PositionInfo
@@ -17553,7 +13594,7 @@ class Mission
id=3009;
type="Land_Razorwire_F";
};
- class Item605
+ class Item580
{
dataType="Object";
class PositionInfo
@@ -17570,7 +13611,7 @@ class Mission
type="Land_Razorwire_F";
atlOffset=9.5367432e-007;
};
- class Item606
+ class Item581
{
dataType="Object";
class PositionInfo
@@ -17587,7 +13628,7 @@ class Mission
type="Land_Razorwire_F";
atlOffset=-3.1471252e-005;
};
- class Item607
+ class Item582
{
dataType="Object";
class PositionInfo
@@ -17604,7 +13645,7 @@ class Mission
type="Land_Razorwire_F";
atlOffset=4.7683716e-007;
};
- class Item608
+ class Item583
{
dataType="Object";
class PositionInfo
@@ -17616,11 +13657,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3013;
type="Land_HBarrier_3_F";
};
- class Item609
+ class Item584
{
dataType="Object";
class PositionInfo
@@ -17636,184 +13678,42 @@ class Mission
id=3014;
type="Land_LampSolar_F";
};
- class Item610
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11314.758,29.555788,8908.1963};
- angles[]={0,5.9693551,0};
- };
- side="Empty";
- class Attributes
- {
- };
- id=3015;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=13.827841;
- };
- class Item611
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11323.436,12.496593,8912.2236};
- angles[]={0.090948731,5.9693551,0.036783949};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3016;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.14892101;
- };
- class Item612
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11315.24,12.547988,8919.2432};
- angles[]={0.10679241,5.9693551,0.036783949};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3017;
- type="Land_HBarrier_Big_F";
- atlOffset=9.5367432e-007;
- };
- class Item613
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11305.002,13.067051,8904.1328};
- angles[]={0.087774232,1.2569656,0.028790962};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3018;
- type="Land_PressureWasher_01_F";
- atlOffset=-0.0014600754;
- };
- class Item614
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11315.955,12.152332,8916.4834};
- angles[]={0.10046093,5.9693551,0.036783949};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3019;
- type="Land_AirConditioner_03_F";
- atlOffset=-9.5367432e-007;
- };
- class Item615
+ class Item585
{
dataType="Object";
class PositionInfo
{
- position[]={11329.296,12.934837,8913.5391};
- angles[]={0.098875925,1.2569656,0.035185181};
+ position[]={11315.24,12.547988,8919.2432};
+ angles[]={0.10679241,5.9693551,0.036783949};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=3020;
- type="Land_AirConditioner_02_F";
+ id=3017;
+ type="Land_HBarrier_Big_F";
+ atlOffset=9.5367432e-007;
};
- class Item616
+ class Item586
{
dataType="Object";
class PositionInfo
{
- position[]={11313.924,13.675396,8909.1357};
- angles[]={0.095706634,2.8277617,0.03358667};
+ position[]={11305.002,13.067051,8904.1328};
+ angles[]={0.087774232,1.2569656,0.028790962};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3021;
- type="Land_MedicalTent_01_NATO_generic_closed_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="MedSign_Hide";
- expression="_this animateSource ['MedSign_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute1
- {
- property="Door_Hide";
- expression="_this animateSource ['Door_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=3;
- };
+ id=3018;
+ type="Land_PressureWasher_01_F";
+ atlOffset=-0.0014600754;
};
- class Item617
+ class Item587
{
dataType="Object";
class PositionInfo
@@ -17825,11 +13725,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3022;
type="Land_HBarrier_5_F";
};
- class Item618
+ class Item588
{
dataType="Object";
class PositionInfo
@@ -17841,12 +13742,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3023;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item619
+ class Item589
{
dataType="Object";
class PositionInfo
@@ -17858,11 +13760,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3024;
type="Land_HBarrier_5_F";
};
- class Item620
+ class Item590
{
dataType="Object";
class PositionInfo
@@ -17874,12 +13777,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3025;
type="Land_HBarrier_Big_F";
atlOffset=-3.6239624e-005;
};
- class Item621
+ class Item591
{
dataType="Object";
class PositionInfo
@@ -17891,11 +13795,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3026;
type="Land_HBarrier_5_F";
};
- class Item622
+ class Item592
{
dataType="Object";
class PositionInfo
@@ -17907,12 +13812,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3027;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item623
+ class Item593
{
dataType="Object";
class PositionInfo
@@ -17924,11 +13830,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3028;
type="Land_HBarrier_5_F";
};
- class Item624
+ class Item594
{
dataType="Object";
class PositionInfo
@@ -17940,12 +13847,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3029;
type="Land_HBarrier_3_F";
atlOffset=-9.5367432e-007;
};
- class Item625
+ class Item595
{
dataType="Object";
class PositionInfo
@@ -17957,11 +13865,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3030;
type="Land_HBarrier_5_F";
};
- class Item626
+ class Item596
{
dataType="Object";
class PositionInfo
@@ -17973,11 +13882,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3031;
type="Land_HBarrier_Big_F";
};
- class Item627
+ class Item597
{
dataType="Object";
class PositionInfo
@@ -17989,11 +13899,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3032;
type="Land_HBarrier_3_F";
};
- class Item628
+ class Item598
{
dataType="Object";
class PositionInfo
@@ -18005,11 +13916,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3033;
type="Land_HBarrier_5_F";
};
- class Item629
+ class Item599
{
dataType="Object";
class PositionInfo
@@ -18021,12 +13933,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3034;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item630
+ class Item600
{
dataType="Object";
class PositionInfo
@@ -18038,12 +13951,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3035;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item631
+ class Item601
{
dataType="Object";
class PositionInfo
@@ -18055,12 +13969,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3036;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item632
+ class Item602
{
dataType="Object";
class PositionInfo
@@ -18072,12 +13987,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3037;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item633
+ class Item603
{
dataType="Object";
class PositionInfo
@@ -18089,12 +14005,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3038;
type="Land_HBarrier_3_F";
atlOffset=4.7683716e-007;
};
- class Item634
+ class Item604
{
dataType="Object";
class PositionInfo
@@ -18106,11 +14023,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3039;
type="Land_HBarrier_5_F";
};
- class Item635
+ class Item605
{
dataType="Object";
class PositionInfo
@@ -18122,11 +14040,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3040;
type="Land_HBarrier_Big_F";
};
- class Item636
+ class Item606
{
dataType="Object";
class PositionInfo
@@ -18138,11 +14057,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3041;
type="Land_HBarrier_Big_F";
};
- class Item637
+ class Item607
{
dataType="Object";
class PositionInfo
@@ -18154,12 +14074,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3042;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item638
+ class Item608
{
dataType="Object";
class PositionInfo
@@ -18171,12 +14092,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3043;
type="Land_HBarrier_5_F";
atlOffset=-1.9073486e-006;
};
- class Item639
+ class Item609
{
dataType="Object";
class PositionInfo
@@ -18188,12 +14110,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3044;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item640
+ class Item610
{
dataType="Object";
class PositionInfo
@@ -18205,12 +14128,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3045;
type="Land_HBarrier_Big_F";
atlOffset=5.7220459e-006;
};
- class Item641
+ class Item611
{
dataType="Object";
class PositionInfo
@@ -18222,12 +14146,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3046;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item642
+ class Item612
{
dataType="Object";
class PositionInfo
@@ -18239,12 +14164,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3047;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item643
+ class Item613
{
dataType="Object";
class PositionInfo
@@ -18256,12 +14182,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3048;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item644
+ class Item614
{
dataType="Object";
class PositionInfo
@@ -18273,12 +14200,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3049;
type="Land_HBarrier_5_F";
atlOffset=7.6293945e-006;
};
- class Item645
+ class Item615
{
dataType="Object";
class PositionInfo
@@ -18290,12 +14218,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3050;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item646
+ class Item616
{
dataType="Object";
class PositionInfo
@@ -18307,12 +14236,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3051;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item647
+ class Item617
{
dataType="Object";
class PositionInfo
@@ -18324,11 +14254,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3052;
type="Land_HBarrier_5_F";
};
- class Item648
+ class Item618
{
dataType="Object";
class PositionInfo
@@ -18340,12 +14271,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3053;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item649
+ class Item619
{
dataType="Object";
class PositionInfo
@@ -18357,12 +14289,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3054;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item650
+ class Item620
{
dataType="Object";
class PositionInfo
@@ -18374,12 +14307,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3055;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item651
+ class Item621
{
dataType="Object";
class PositionInfo
@@ -18391,12 +14325,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3056;
type="Land_HBarrier_5_F";
atlOffset=-4.7683716e-007;
};
- class Item652
+ class Item622
{
dataType="Object";
class PositionInfo
@@ -18408,12 +14343,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3057;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item653
+ class Item623
{
dataType="Object";
class PositionInfo
@@ -18425,11 +14361,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3058;
type="Land_HBarrier_5_F";
};
- class Item654
+ class Item624
{
dataType="Object";
class PositionInfo
@@ -18441,12 +14378,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3059;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item655
+ class Item625
{
dataType="Object";
class PositionInfo
@@ -18458,12 +14396,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3060;
type="Land_HBarrier_5_F";
atlOffset=1.4305115e-006;
};
- class Item656
+ class Item626
{
dataType="Object";
class PositionInfo
@@ -18475,12 +14414,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3061;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item657
+ class Item627
{
dataType="Object";
class PositionInfo
@@ -18492,11 +14432,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3062;
type="Land_HBarrier_Big_F";
};
- class Item658
+ class Item628
{
dataType="Object";
class PositionInfo
@@ -18508,12 +14449,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3063;
type="Land_HBarrier_5_F";
atlOffset=1.9073486e-006;
};
- class Item659
+ class Item629
{
dataType="Object";
class PositionInfo
@@ -18525,12 +14467,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3064;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item660
+ class Item630
{
dataType="Object";
class PositionInfo
@@ -18542,11 +14485,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3065;
type="Land_HBarrier_5_F";
};
- class Item661
+ class Item631
{
dataType="Object";
class PositionInfo
@@ -18558,12 +14502,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3066;
type="Land_HBarrier_3_F";
atlOffset=4.7683716e-006;
};
- class Item662
+ class Item632
{
dataType="Object";
class PositionInfo
@@ -18575,12 +14520,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3067;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item663
+ class Item633
{
dataType="Object";
class PositionInfo
@@ -18592,11 +14538,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3068;
type="Land_HBarrier_Big_F";
};
- class Item664
+ class Item634
{
dataType="Object";
class PositionInfo
@@ -18608,12 +14555,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3069;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item665
+ class Item635
{
dataType="Object";
class PositionInfo
@@ -18625,12 +14573,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3070;
type="Land_HBarrier_1_F";
atlOffset=9.5367432e-007;
};
- class Item666
+ class Item636
{
dataType="Object";
class PositionInfo
@@ -18642,11 +14591,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3071;
type="Land_HBarrier_1_F";
};
- class Item667
+ class Item637
{
dataType="Object";
class PositionInfo
@@ -18658,11 +14608,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3072;
type="Land_HBarrier_5_F";
};
- class Item668
+ class Item638
{
dataType="Object";
class PositionInfo
@@ -18674,12 +14625,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3073;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item669
+ class Item639
{
dataType="Object";
class PositionInfo
@@ -18691,12 +14643,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3074;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item670
+ class Item640
{
dataType="Object";
class PositionInfo
@@ -18708,12 +14661,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3075;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item671
+ class Item641
{
dataType="Object";
class PositionInfo
@@ -18725,12 +14679,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3076;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item672
+ class Item642
{
dataType="Object";
class PositionInfo
@@ -18742,12 +14697,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3077;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item673
+ class Item643
{
dataType="Object";
class PositionInfo
@@ -18759,12 +14715,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3078;
type="Land_HBarrier_5_F";
atlOffset=-9.5367432e-007;
};
- class Item674
+ class Item644
{
dataType="Object";
class PositionInfo
@@ -18776,12 +14733,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3079;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item675
+ class Item645
{
dataType="Object";
class PositionInfo
@@ -18793,11 +14751,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3080;
type="Land_HBarrier_5_F";
};
- class Item676
+ class Item646
{
dataType="Object";
class PositionInfo
@@ -18809,12 +14768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3081;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item677
+ class Item647
{
dataType="Object";
class PositionInfo
@@ -18826,12 +14786,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3082;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item678
+ class Item648
{
dataType="Object";
class PositionInfo
@@ -18843,12 +14804,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3083;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item679
+ class Item649
{
dataType="Object";
class PositionInfo
@@ -18860,11 +14822,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3084;
type="Land_HBarrier_5_F";
};
- class Item680
+ class Item650
{
dataType="Object";
class PositionInfo
@@ -18876,12 +14839,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3085;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item681
+ class Item651
{
dataType="Object";
class PositionInfo
@@ -18897,7 +14861,7 @@ class Mission
id=3086;
type="Land_MobileRadar_01_radar_F";
};
- class Item682
+ class Item652
{
dataType="Object";
class PositionInfo
@@ -18914,7 +14878,7 @@ class Mission
type="Land_MobileRadar_01_generator_F";
atlOffset=0.2510004;
};
- class Item683
+ class Item653
{
dataType="Object";
class PositionInfo
@@ -18931,7 +14895,7 @@ class Mission
type="Land_Cargo_HQ_V1_F";
atlOffset=4.7683716e-007;
};
- class Item684
+ class Item654
{
dataType="Object";
class PositionInfo
@@ -18948,7 +14912,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-9.5367432e-007;
};
- class Item685
+ class Item655
{
dataType="Object";
class PositionInfo
@@ -18964,7 +14928,7 @@ class Mission
id=3090;
type="Land_Cargo_Patrol_V1_F";
};
- class Item686
+ class Item656
{
dataType="Object";
class PositionInfo
@@ -18981,7 +14945,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-9.5367432e-007;
};
- class Item687
+ class Item657
{
dataType="Object";
class PositionInfo
@@ -18998,7 +14962,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-9.5367432e-007;
};
- class Item688
+ class Item658
{
dataType="Object";
class PositionInfo
@@ -19009,12 +14973,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3093;
type="Land_HelipadSquare_F";
atlOffset=0.65579605;
};
- class Item689
+ class Item659
{
dataType="Object";
class PositionInfo
@@ -19026,12 +14991,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3094;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item690
+ class Item660
{
dataType="Object";
class PositionInfo
@@ -19043,12 +15009,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3095;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item691
+ class Item661
{
dataType="Object";
class PositionInfo
@@ -19060,11 +15027,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3096;
type="Land_HBarrier_5_F";
};
- class Item692
+ class Item662
{
dataType="Object";
class PositionInfo
@@ -19076,12 +15044,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3097;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item693
+ class Item663
{
dataType="Object";
class PositionInfo
@@ -19093,12 +15062,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3098;
type="Land_HBarrier_5_F";
atlOffset=1.9073486e-006;
};
- class Item694
+ class Item664
{
dataType="Object";
class PositionInfo
@@ -19110,12 +15080,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3099;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item695
+ class Item665
{
dataType="Object";
class PositionInfo
@@ -19127,12 +15098,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3100;
type="Land_HBarrier_5_F";
atlOffset=1.9073486e-006;
};
- class Item696
+ class Item666
{
dataType="Object";
class PositionInfo
@@ -19144,12 +15116,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3101;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item697
+ class Item667
{
dataType="Object";
class PositionInfo
@@ -19161,12 +15134,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3102;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item698
+ class Item668
{
dataType="Object";
class PositionInfo
@@ -19178,12 +15152,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3103;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item699
+ class Item669
{
dataType="Object";
class PositionInfo
@@ -19195,11 +15170,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3104;
type="Land_HBarrier_5_F";
};
- class Item700
+ class Item670
{
dataType="Object";
class PositionInfo
@@ -19211,12 +15187,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3105;
type="Land_HBarrier_Big_F";
atlOffset=-9.5367432e-007;
};
- class Item701
+ class Item671
{
dataType="Object";
class PositionInfo
@@ -19228,12 +15205,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3106;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item702
+ class Item672
{
dataType="Object";
class PositionInfo
@@ -19245,11 +15223,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3107;
type="Land_HBarrier_3_F";
};
- class Item703
+ class Item673
{
dataType="Object";
class PositionInfo
@@ -19261,11 +15240,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3108;
type="Land_HBarrier_5_F";
};
- class Item704
+ class Item674
{
dataType="Object";
class PositionInfo
@@ -19277,12 +15257,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3109;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item705
+ class Item675
{
dataType="Object";
class PositionInfo
@@ -19294,12 +15275,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3110;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item706
+ class Item676
{
dataType="Object";
class PositionInfo
@@ -19311,12 +15293,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3111;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item707
+ class Item677
{
dataType="Object";
class PositionInfo
@@ -19328,12 +15311,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3112;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item708
+ class Item678
{
dataType="Object";
class PositionInfo
@@ -19345,12 +15329,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3113;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item709
+ class Item679
{
dataType="Object";
class PositionInfo
@@ -19362,12 +15347,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3114;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item710
+ class Item680
{
dataType="Object";
class PositionInfo
@@ -19379,12 +15365,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3115;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item711
+ class Item681
{
dataType="Object";
class PositionInfo
@@ -19396,12 +15383,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3116;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item712
+ class Item682
{
dataType="Object";
class PositionInfo
@@ -19413,12 +15401,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3117;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item713
+ class Item683
{
dataType="Object";
class PositionInfo
@@ -19430,11 +15419,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3118;
type="Land_HBarrier_5_F";
};
- class Item714
+ class Item684
{
dataType="Object";
class PositionInfo
@@ -19446,12 +15436,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3119;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item715
+ class Item685
{
dataType="Object";
class PositionInfo
@@ -19463,12 +15454,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3120;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item716
+ class Item686
{
dataType="Object";
class PositionInfo
@@ -19480,12 +15472,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3121;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item717
+ class Item687
{
dataType="Object";
class PositionInfo
@@ -19497,12 +15490,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3122;
type="Land_HBarrier_3_F";
atlOffset=4.7683716e-007;
};
- class Item718
+ class Item688
{
dataType="Object";
class PositionInfo
@@ -19514,12 +15508,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3123;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item719
+ class Item689
{
dataType="Object";
class PositionInfo
@@ -19531,11 +15526,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3124;
type="Land_HBarrier_Big_F";
};
- class Item720
+ class Item690
{
dataType="Object";
class PositionInfo
@@ -19547,12 +15543,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3125;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item721
+ class Item691
{
dataType="Object";
class PositionInfo
@@ -19564,12 +15561,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3126;
type="Land_HBarrier_Big_F";
atlOffset=3.5762787e-005;
};
- class Item722
+ class Item692
{
dataType="Object";
class PositionInfo
@@ -19581,12 +15579,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3127;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item723
+ class Item693
{
dataType="Object";
class PositionInfo
@@ -19598,12 +15597,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3128;
type="Land_HBarrier_Big_F";
atlOffset=5.2452087e-006;
};
- class Item724
+ class Item694
{
dataType="Object";
class PositionInfo
@@ -19615,11 +15615,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3129;
type="Land_HBarrier_5_F";
};
- class Item725
+ class Item695
{
dataType="Object";
class PositionInfo
@@ -19631,11 +15632,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3130;
type="Land_HBarrier_Big_F";
};
- class Item726
+ class Item696
{
dataType="Object";
class PositionInfo
@@ -19647,12 +15649,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3131;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item727
+ class Item697
{
dataType="Object";
class PositionInfo
@@ -19664,12 +15667,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3132;
type="Land_HBarrier_3_F";
atlOffset=4.7683716e-007;
};
- class Item728
+ class Item698
{
dataType="Object";
class PositionInfo
@@ -19681,11 +15685,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3133;
type="Land_HBarrier_3_F";
};
- class Item729
+ class Item699
{
dataType="Object";
class PositionInfo
@@ -19697,12 +15702,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3134;
type="Land_HBarrier_3_F";
atlOffset=9.5367432e-007;
};
- class Item730
+ class Item700
{
dataType="Object";
class PositionInfo
@@ -19714,12 +15720,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3135;
type="Land_HBarrier_1_F";
atlOffset=9.5367432e-007;
};
- class Item731
+ class Item701
{
dataType="Object";
class PositionInfo
@@ -19730,12 +15737,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3136;
type="Land_HelipadSquare_F";
atlOffset=0.64489794;
};
- class Item732
+ class Item702
{
dataType="Object";
class PositionInfo
@@ -19747,12 +15755,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3137;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item733
+ class Item703
{
dataType="Object";
class PositionInfo
@@ -19764,12 +15773,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3138;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item734
+ class Item704
{
dataType="Object";
class PositionInfo
@@ -19781,11 +15791,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3139;
type="Land_HBarrier_5_F";
};
- class Item735
+ class Item705
{
dataType="Object";
class PositionInfo
@@ -19797,12 +15808,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3140;
type="Land_HBarrier_5_F";
atlOffset=4.7683716e-007;
};
- class Item736
+ class Item706
{
dataType="Object";
class PositionInfo
@@ -19814,12 +15826,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3141;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item737
+ class Item707
{
dataType="Object";
class PositionInfo
@@ -19831,12 +15844,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3142;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item738
+ class Item708
{
dataType="Object";
class PositionInfo
@@ -19848,11 +15862,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3143;
type="Land_HBarrier_5_F";
};
- class Item739
+ class Item709
{
dataType="Object";
class PositionInfo
@@ -19864,12 +15879,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3144;
type="Land_HBarrier_5_F";
atlOffset=8.1062317e-006;
};
- class Item740
+ class Item710
{
dataType="Object";
class PositionInfo
@@ -19881,12 +15897,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3145;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item741
+ class Item711
{
dataType="Object";
class PositionInfo
@@ -19898,11 +15915,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3146;
type="Land_HBarrier_5_F";
};
- class Item742
+ class Item712
{
dataType="Object";
class PositionInfo
@@ -19914,12 +15932,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3147;
type="Land_HBarrier_Big_F";
atlOffset=8.5830688e-006;
};
- class Item743
+ class Item713
{
dataType="Object";
class PositionInfo
@@ -19931,11 +15950,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3148;
type="Land_HBarrier_5_F";
};
- class Item744
+ class Item714
{
dataType="Object";
class PositionInfo
@@ -19947,12 +15967,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3149;
type="Land_HBarrier_5_F";
atlOffset=9.5367432e-007;
};
- class Item745
+ class Item715
{
dataType="Object";
class PositionInfo
@@ -19964,12 +15985,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3150;
type="Land_HBarrier_5_F";
atlOffset=-9.5367432e-007;
};
- class Item746
+ class Item716
{
dataType="Object";
class PositionInfo
@@ -19981,12 +16003,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3151;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item747
+ class Item717
{
dataType="Object";
class PositionInfo
@@ -19998,12 +16021,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3152;
type="Land_HBarrier_5_F";
atlOffset=-1.9073486e-006;
};
- class Item748
+ class Item718
{
dataType="Object";
class PositionInfo
@@ -20015,12 +16039,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3153;
type="Land_HBarrier_Big_F";
atlOffset=2.8610229e-006;
};
- class Item749
+ class Item719
{
dataType="Object";
class PositionInfo
@@ -20036,7 +16061,7 @@ class Mission
id=3154;
type="Land_Cargo_Tower_V1_F";
};
- class Item750
+ class Item720
{
dataType="Object";
class PositionInfo
@@ -20052,7 +16077,7 @@ class Mission
id=3155;
type="Land_Cargo_Tower_V1_F";
};
- class Item751
+ class Item721
{
dataType="Object";
class PositionInfo
@@ -20069,7 +16094,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=9.5367432e-007;
};
- class Item752
+ class Item722
{
dataType="Object";
class PositionInfo
@@ -20080,12 +16105,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3157;
type="Land_HelipadSquare_F";
atlOffset=0.70659256;
};
- class Item753
+ class Item723
{
dataType="Object";
class PositionInfo
@@ -20096,12 +16122,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3158;
type="Land_HelipadSquare_F";
atlOffset=0.63049412;
};
- class Item754
+ class Item724
{
dataType="Object";
class PositionInfo
@@ -20112,12 +16139,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3159;
type="Land_HelipadSquare_F";
atlOffset=0.66751099;
};
- class Item755
+ class Item725
{
dataType="Object";
class PositionInfo
@@ -20128,12 +16156,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=3160;
type="Land_HelipadSquare_F";
atlOffset=0.61739731;
};
- class Item756
+ class Item726
{
dataType="Object";
class PositionInfo
@@ -20150,7 +16179,7 @@ class Mission
type="Land_LampAirport_F";
atlOffset=9.5367432e-007;
};
- class Item757
+ class Item727
{
dataType="Object";
class PositionInfo
@@ -20166,136 +16195,7 @@ class Mission
id=3162;
type="Land_LampAirport_F";
};
- class Item758
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11399.243,12.236088,8938.5645};
- angles[]={0.059130985,1.2382526,6.2639894};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3163;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item759
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11399.243,14.485369,8938.5645};
- angles[]={6.0024781,1.2382526,6.145391};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3164;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.17053032;
- };
- class Item760
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11412.12,11.615068,8943.0127};
- angles[]={0.052750662,1.2382526,6.2527947};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3165;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- atlOffset=1.9073486e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item761
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11412.12,13.908028,8943.0127};
- angles[]={5.9955802,1.2382526,6.1341295};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3166;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.2069521;
- };
- class Item762
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11417.893,10.220989,8948.8223};
- angles[]={0.054345392,0.45285416,6.2480001};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3167;
- type="Land_AirConditioner_04_F";
- };
- class Item763
+ class Item728
{
dataType="Object";
class PositionInfo
@@ -20311,7 +16211,7 @@ class Mission
id=3168;
type="StorageBladder_01_fuel_forest_F";
};
- class Item764
+ class Item729
{
dataType="Object";
class PositionInfo
@@ -20327,7 +16227,7 @@ class Mission
id=3169;
type="StorageBladder_01_fuel_forest_F";
};
- class Item765
+ class Item730
{
dataType="Object";
class PositionInfo
@@ -20339,12 +16239,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3170;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item766
+ class Item731
{
dataType="Object";
class PositionInfo
@@ -20356,12 +16257,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3171;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item767
+ class Item732
{
dataType="Object";
class PositionInfo
@@ -20373,12 +16275,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3172;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item768
+ class Item733
{
dataType="Object";
class PositionInfo
@@ -20390,12 +16293,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3173;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item769
+ class Item734
{
dataType="Object";
class PositionInfo
@@ -20407,12 +16311,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3174;
type="Land_HBarrier_Big_F";
atlOffset=1.9073486e-006;
};
- class Item770
+ class Item735
{
dataType="Object";
class PositionInfo
@@ -20428,7 +16333,7 @@ class Mission
id=3175;
type="Land_LampAirport_F";
};
- class Item771
+ class Item736
{
dataType="Object";
class PositionInfo
@@ -20445,7 +16350,7 @@ class Mission
type="Land_LampAirport_F";
atlOffset=9.5367432e-007;
};
- class Item772
+ class Item737
{
dataType="Object";
class PositionInfo
@@ -20462,7 +16367,7 @@ class Mission
type="Land_LampSolar_F";
atlOffset=4.7683716e-007;
};
- class Item773
+ class Item738
{
dataType="Object";
class PositionInfo
@@ -20474,12 +16379,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3178;
type="Land_HBarrier_Big_F";
atlOffset=4.7683716e-007;
};
- class Item774
+ class Item739
{
dataType="Object";
class PositionInfo
@@ -20491,12 +16397,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=3179;
type="Land_HBarrier_Big_F";
atlOffset=9.5367432e-007;
};
- class Item775
+ class Item740
{
dataType="Object";
class PositionInfo
@@ -20509,2646 +16416,3749 @@ class Mission
class Attributes
{
};
- id=3180;
- type="Land_Cargo_Patrol_V1_F";
+ id=3180;
+ type="Land_Cargo_Patrol_V1_F";
+ };
+ class Item741
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11442.75,13.752237,8944};
+ angles[]={0,4.3848953,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=3181;
+ type="Land_Cargo_Patrol_V1_F";
+ };
+ class Item742
+ {
+ dataType="Layer";
+ name="Airfields";
+ class Entities
+ {
+ items=13;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={7894.75,150.5,9742.5};
+ name="airport_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=239.14899;
+ b=151.89774;
+ angle=248.19385;
+ id=212;
+ atlOffset=1.3180084;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={3914.0186,68.160004,10210.035};
+ name="airport";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=361.85641;
+ b=148.96893;
+ angle=320.09509;
+ id=210;
+ atlOffset=0.15761566;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={6468.5845,222.67999,3799.3018};
+ name="airport_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=126.36222;
+ b=102.06323;
+ angle=247.21413;
+ id=211;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={11349.085,50.75,8927.5781};
+ name="airport_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=110.95676;
+ b=73.756149;
+ angle=342.70255;
+ id=213;
+ atlOffset=39.107067;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={4039.75,68.026001,10206.5};
+ name="airp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=31.424999;
+ b=13.036;
+ angle=134.382;
+ id=3204;
+ atlOffset=0.0004119873;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={3986.5129,68.160004,10152};
+ name="airp_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=3201;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={6467.625,58,3820.75};
+ name="airp_1_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=3190;
+ atlOffset=-164.67999;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={7904.625,139.625,9758.25};
+ name="airp_2_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=6.4925308;
+ b=6.2019529;
+ id=3205;
+ atlOffset=-9.7825928;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={6384.625,51.375,3853.875};
+ name="airp_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=28.97348;
+ b=11.090794;
+ angle=258.53625;
+ id=3189;
+ atlOffset=-162.435;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={7903.5,133,9866.75};
+ name="airp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.010422;
+ b=8.6266327;
+ angle=90.943748;
+ id=3206;
+ atlOffset=-18.179993;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={3971,67.875,10252};
+ name="airp_hangar_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorRed";
+ a=50;
+ b=25.348;
+ angle=312.93088;
+ id=3203;
+ atlOffset=-0.00019836426;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={11405.53,7.0110002,9007.2695};
+ name="airp_3_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=161.98796;
+ id=3216;
+ atlOffset=-0.00051355362;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={7818.5342,144.71147,9551.4424};
+ name="airp_2_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=4.4136686;
+ b=7.3692002;
+ angle=26.459684;
+ id=3292;
+ atlOffset=0.0365448;
+ };
+ };
+ id=3184;
+ atlOffset=-6.9927597;
};
- class Item776
+ class Item743
{
- dataType="Object";
- class PositionInfo
- {
- position[]={11442.75,13.752237,8944};
- angles[]={0,4.3848953,0};
- };
- side="Empty";
- flags=4;
- class Attributes
+ dataType="Layer";
+ name="Resources";
+ class Entities
{
+ items=18;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={1220.5964,90.339996,8959.0313};
+ name="resource";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=72.040894;
+ b=66.637695;
+ id=192;
+ atlOffset=0.00071716309;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={2073.125,84.041,9473.5};
+ name="resource_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=105.38583;
+ b=50;
+ angle=34.30983;
+ id=193;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={7639.3828,126.75,2679.4541};
+ name="resource_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ id=202;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={11571.317,42.501511,397.11075};
+ name="resource_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ id=203;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={7831.875,74.617188,5842.125};
+ name="resource_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=72.654297;
+ b=72.343262;
+ angle=336.49976;
+ id=204;
+ atlOffset=-1.5900192;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={9073.3477,129.75565,6643.3481};
+ name="resource_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=66.131203;
+ b=50;
+ angle=343.26126;
+ id=205;
+ atlOffset=0.013580322;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={10654.603,63.91148,6963.7456};
+ name="resource_14";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=64.756393;
+ angle=36.986652;
+ id=206;
+ atlOffset=-0.25345993;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={9831.25,46.625,8087.625};
+ name="resource_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=67.521973;
+ b=73.392822;
+ angle=19.675964;
+ id=207;
+ atlOffset=-0.61500168;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={3132.6716,92.199997,12008.724};
+ name="resource_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ id=194;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={5126.5,24.499023,10439.5};
+ name="resource_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=73.913589;
+ b=156.8203;
+ angle=318.31445;
+ id=195;
+ atlOffset=-0.71657944;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={3814,31.533203,8470.375};
+ name="resource_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=78.386719;
+ b=78.370117;
+ id=196;
+ atlOffset=-0.98679733;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={1314.2432,43.837196,8015.0566};
+ name="resource_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=98.871033;
+ b=81.176025;
+ id=197;
+ atlOffset=2.8815651;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4852.5,142.125,7299.375};
+ name="resource_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=69.126396;
+ b=68.896507;
+ angle=8.6938763;
+ id=198;
+ atlOffset=0.52799988;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={2580.9646,226.5,5481.0532};
+ name="resource_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=111.99742;
+ b=43.611252;
+ angle=45.048157;
+ id=199;
+ atlOffset=0.67408752;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={5218.5,198.95,5661};
+ name="resource_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ id=200;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={1664.5,199.4552,3685};
+ name="resource_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=76.100403;
+ b=94.005249;
+ angle=357.297;
+ id=201;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={1356.004,41.870998,8035.1641};
+ name="reso_5_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=130.30399;
+ id=3227;
+ atlOffset=-0.00046157837;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={1658.625,199.41901,3634.875};
+ name="reso_9_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=86.959999;
+ id=3225;
+ atlOffset=0.00039672852;
+ };
};
- id=3181;
- type="Land_Cargo_Patrol_V1_F";
+ id=3185;
+ atlOffset=-48.311417;
};
- class Item777
+ class Item744
{
dataType="Layer";
- name="Airfields";
+ name="Outposts";
class Entities
{
- items=12;
+ items=36;
class Item0
{
dataType="Marker";
- position[]={7894.75,150.5,9742.5};
- name="airport_2";
+ position[]={1078.702,275.09799,11408.5};
+ name="outpost";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=239.14899;
- b=151.89774;
- angle=248.19386;
- id=212;
- atlOffset=1.3180084;
+ colorName="ColorGUER";
+ a=50;
+ b=50;
+ id=56;
+ atlOffset=0.00015258789;
};
class Item1
{
dataType="Marker";
- position[]={3914.0186,68.160004,10210.035};
- name="airport";
+ position[]={2065.5,109.73633,11150.5};
+ name="outpost_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=361.85641;
- b=148.96893;
- angle=320.09518;
- id=210;
- atlOffset=0.15761566;
+ colorName="ColorGUER";
+ a=218.24034;
+ b=239.39792;
+ angle=67.836891;
+ id=57;
+ atlOffset=-8.0124741;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={8923.75,308.25,2067.875};
+ name="outpost_10";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=85.130371;
+ b=72.120605;
+ id=66;
+ atlOffset=5.7438049;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={9898.8945,184.75,3894.9941};
+ name="outpost_11";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=95.76815;
+ b=130.22659;
+ angle=6.1560383;
+ id=67;
+ atlOffset=3.924118;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={11123.143,185.5,2473.3086};
+ name="outpost_12";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=84.215332;
+ b=81.173462;
+ id=68;
+ atlOffset=1.3292236;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={11311.66,176.89999,4201.9844};
+ name="outpost_13";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=104.21985;
+ b=69.965927;
+ angle=340.66489;
+ id=69;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={7641.375,63.0014,5972.125};
+ name="outpost_14";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=69.077148;
+ b=65.789063;
+ angle=332.43008;
+ id=70;
};
- class Item2
+ class Item7
{
dataType="Marker";
- position[]={6468.5845,222.67999,3799.3018};
- name="airport_1";
+ position[]={8916.625,138.5596,6578.5};
+ name="outpost_15";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=126.36222;
- b=102.06323;
- angle=247.21413;
- id=211;
+ colorName="ColorGUER";
+ a=50;
+ b=50;
+ angle=334.25339;
+ id=71;
};
- class Item3
+ class Item8
{
dataType="Marker";
- position[]={11349.085,50.75,8927.5781};
- name="airport_3";
+ position[]={9680.9219,43.615002,8495.7031};
+ name="outpost_16";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=110.95676;
- b=73.756149;
- angle=342.70255;
- id=213;
- atlOffset=39.107067;
+ colorName="ColorGUER";
+ a=74.474213;
+ b=56.669998;
+ angle=322.1239;
+ id=72;
+ atlOffset=-0.01770401;
};
- class Item4
+ class Item9
{
dataType="Marker";
- position[]={4039.75,68.026001,10206.5};
- name="airp_vehicle_1";
+ position[]={9428.8545,72.030151,10362.884};
+ name="outpost_17";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=31.424999;
- b=13.036;
- angle=134.382;
- id=3204;
- atlOffset=0.0004119873;
+ colorName="ColorGUER";
+ a=30.086159;
+ b=61.861637;
+ angle=321.72488;
+ id=73;
+ atlOffset=0.016929626;
};
- class Item5
+ class Item10
{
dataType="Marker";
- position[]={3986.5129,68.160004,10152};
- name="airp_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=3201;
+ position[]={8159.8047,35.146511,10768.631};
+ name="outpost_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=57.197998;
+ b=171.13599;
+ angle=350.74753;
+ id=74;
+ atlOffset=-8.6170387;
};
- class Item6
+ class Item11
{
dataType="Marker";
- position[]={6467.625,58,3820.75};
- name="airp_1_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=3190;
- atlOffset=-164.67999;
+ position[]={7823.1758,169.28152,10093.804};
+ name="outpost_19";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=60.068604;
+ b=50;
+ id=75;
+ atlOffset=-0.045181274;
};
- class Item7
+ class Item12
{
dataType="Marker";
- position[]={7904.625,139.625,9758.25};
- name="airp_2_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=6.4925308;
- b=6.2019529;
- id=3205;
- atlOffset=-9.7825928;
+ position[]={4266.7583,70,10486.607};
+ name="outpost_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGUER";
+ a=102.14345;
+ b=144.61456;
+ angle=314.80792;
+ id=58;
+ atlOffset=1.8328552;
};
- class Item8
+ class Item13
{
dataType="Marker";
- position[]={6384.625,51.375,3853.875};
- name="airp_1_vehicle";
+ position[]={6302.375,36.669998,9906.25};
+ name="outpost_20";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=28.97348;
- b=11.090794;
- angle=258.53625;
- id=3189;
- atlOffset=-162.435;
+ colorName="ColorGUER";
+ a=50;
+ b=50;
+ id=76;
};
- class Item9
+ class Item14
{
dataType="Marker";
- position[]={7903.5,133,9866.75};
- name="airp_2_vehicle";
+ position[]={6415.625,53.427208,8178.375};
+ name="outpost_21";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=20.010422;
- b=8.6266327;
- angle=90.943764;
- id=3206;
- atlOffset=-18.179993;
+ colorName="ColorGUER";
+ a=79.035378;
+ b=67.170029;
+ angle=314.43701;
+ id=77;
};
- class Item10
+ class Item15
{
dataType="Marker";
- position[]={3971,67.875,10252};
- name="airp_hangar_1";
+ position[]={6849.5,5.4451981,11204.5};
+ name="outpost_22";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorRed";
+ colorName="ColorGUER";
a=50;
- b=25.348;
- angle=312.93091;
- id=3203;
- atlOffset=-0.00019836426;
+ b=50;
+ angle=48.56834;
+ id=208;
};
- class Item11
+ class Item16
{
dataType="Marker";
- position[]={11405.53,7.0110002,9007.2695};
- name="airp_3_vehicle";
+ position[]={2046.8824,50.054153,7278.7412};
+ name="outpost_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=161.98796;
- id=3216;
- atlOffset=-0.00051355362;
+ colorName="ColorGUER";
+ a=54.100723;
+ b=56.806438;
+ angle=27.074936;
+ id=59;
+ atlOffset=-2.2098808;
};
- };
- id=3184;
- atlOffset=-75.780121;
- };
- class Item778
- {
- dataType="Layer";
- name="Resources";
- class Entities
- {
- items=18;
- class Item0
+ class Item17
{
dataType="Marker";
- position[]={1220.5964,90.339996,8959.0313};
- name="resource";
+ position[]={4617.0688,131.88693,6314.8472};
+ name="outpost_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=72.040894;
- b=66.637695;
- id=192;
- atlOffset=0.00071716309;
+ colorName="ColorGUER";
+ a=55.822796;
+ b=43.394402;
+ angle=338.12772;
+ id=60;
+ atlOffset=0.099838257;
};
- class Item1
+ class Item18
{
dataType="Marker";
- position[]={2073.125,84.041,9473.5};
- name="resource_1";
+ position[]={3182.5,235.84601,4950};
+ name="outpost_5";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=105.38583;
+ colorName="ColorGUER";
+ a=50;
b=50;
- angle=34.30983;
- id=193;
+ angle=45.087116;
+ id=61;
};
- class Item2
+ class Item19
{
dataType="Marker";
- position[]={7639.3828,126.75,2679.4541};
- name="resource_10";
+ position[]={4544,115.01487,4745};
+ name="outpost_6";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- id=202;
+ colorName="ColorGUER";
+ a=86.644043;
+ b=100.35596;
+ id=62;
};
- class Item3
+ class Item20
{
dataType="Marker";
- position[]={11571.317,42.501511,397.11075};
- name="resource_11";
+ position[]={5614.6919,251.62126,3780.3594};
+ name="outpost_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- id=203;
+ colorName="ColorGUER";
+ a=122.63338;
+ b=88.012146;
+ angle=331.32162;
+ id=63;
+ atlOffset=0.16125488;
};
- class Item4
+ class Item21
{
dataType="Marker";
- position[]={7831.875,74.617188,5842.125};
- name="resource_12";
+ position[]={4952.9375,357.83502,2149.1367};
+ name="outpost_8";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=72.654297;
- b=72.343262;
- angle=336.49976;
- id=204;
- atlOffset=-1.5900192;
+ colorName="ColorGUER";
+ a=168.66092;
+ b=127.42848;
+ angle=48.552986;
+ id=64;
+ atlOffset=3.6047058;
};
- class Item5
+ class Item22
{
dataType="Marker";
- position[]={9073.3477,129.75565,6643.3481};
- name="resource_13";
+ position[]={3831.0908,388.78015,1830.3856};
+ name="outpost_9";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=66.131203;
+ colorName="ColorGUER";
+ a=50;
b=50;
- angle=343.26126;
- id=205;
- atlOffset=0.013580322;
+ id=65;
+ atlOffset=0.00015258789;
};
- class Item6
+ class Item23
{
dataType="Marker";
- position[]={10654.603,63.91148,6963.7456};
- name="resource_14";
+ position[]={4302.8921,68.219002,10482.914};
+ name="outp_2_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=3202;
+ atlOffset=-0.00030517578;
+ };
+ class Item24
+ {
+ dataType="Marker";
+ position[]={8912,306.125,2048.875};
+ name="outp_10_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=64.756393;
- angle=36.986652;
- id=206;
- atlOffset=-0.25345993;
+ colorName="ColorGreen";
+ a=12.157;
+ b=5.3210001;
+ angle=89.540985;
+ id=3221;
+ atlOffset=0.78518677;
};
- class Item7
+ class Item25
{
dataType="Marker";
- position[]={9831.25,46.625,8087.625};
- name="resource_15";
+ position[]={9909.375,180.78999,3858.5};
+ name="outp_11_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=67.521973;
- b=73.392822;
- angle=19.675964;
- id=207;
- atlOffset=-0.61500168;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=92.507957;
+ id=3220;
};
- class Item8
+ class Item26
{
dataType="Marker";
- position[]={3132.6716,92.199997,12008.724};
- name="resource_2";
+ position[]={11326.25,176.80299,4183.875};
+ name="outp_13_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- id=194;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=157.245;
+ id=3219;
};
- class Item9
+ class Item27
{
dataType="Marker";
- position[]={5126.5,24.499023,10439.5};
- name="resource_3";
+ position[]={9415,72.036003,10383};
+ name="outp_17_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=73.913589;
- b=156.8203;
- angle=318.31445;
- id=195;
- atlOffset=-0.71657944;
+ colorName="ColorGreen";
+ a=13.047;
+ b=5.342;
+ angle=146.63095;
+ id=3213;
};
- class Item10
+ class Item28
{
dataType="Marker";
- position[]={3814,31.533203,8470.375};
- name="resource_4";
+ position[]={8121.25,44.875,10757};
+ name="outp_18_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=78.386719;
- b=78.370117;
- id=196;
- atlOffset=-0.98679733;
+ colorName="ColorGreen";
+ a=20.01;
+ b=8.6269999;
+ angle=79.769997;
+ id=3211;
+ atlOffset=0.62099457;
};
- class Item11
+ class Item29
{
dataType="Marker";
- position[]={1314.2432,43.837196,8015.0566};
- name="resource_5";
+ position[]={2099,110.717,11007.25};
+ name="outp_1_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=98.871033;
- b=81.176025;
- id=197;
- atlOffset=2.8815651;
+ colorName="ColorGreen";
+ a=12.536;
+ b=5.2579999;
+ angle=72.349953;
+ id=3208;
+ atlOffset=0.00020599365;
};
- class Item12
+ class Item30
{
dataType="Marker";
- position[]={4852.5,142.125,7299.375};
- name="resource_6";
+ position[]={6341.751,36.414001,9913.377};
+ name="outp_20_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=69.126396;
- b=68.896507;
- angle=8.6938763;
- id=198;
- atlOffset=0.52799988;
+ colorName="ColorGreen";
+ a=20.01;
+ b=8.6269999;
+ angle=90.944;
+ id=3209;
+ atlOffset=0.00025558472;
};
- class Item13
+ class Item31
{
dataType="Marker";
- position[]={2580.9646,226.5,5481.0532};
- name="resource_7";
+ position[]={6881.25,5.915,11228.125};
+ name="outp_22_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=111.99742;
- b=43.611252;
- angle=45.048157;
- id=199;
- atlOffset=0.67408752;
+ colorName="ColorGreen";
+ a=20.01;
+ b=8.6269999;
+ angle=50.795986;
+ id=3210;
};
- class Item14
+ class Item32
{
dataType="Marker";
- position[]={5218.5,198.95,5661};
- name="resource_8";
+ position[]={2069.405,53.279999,7275.6421};
+ name="outp_3_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- id=200;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=5.1599998;
+ angle=148.31696;
+ id=3226;
};
- class Item15
+ class Item33
{
dataType="Marker";
- position[]={1664.5,199.4552,3685};
- name="resource_9";
+ position[]={3165.7,234.722,4924.603};
+ name="outp_5_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorBrown";
- a=76.100403;
- b=94.005249;
- angle=357.297;
- id=201;
+ colorName="ColorGreen";
+ a=14.075;
+ b=6.1609998;
+ angle=45.19799;
+ id=3224;
+ atlOffset=-0.10426331;
};
- class Item16
+ class Item34
{
dataType="Marker";
- position[]={1356.004,41.870998,8035.1641};
- name="reso_5_vehicle";
+ position[]={5543.125,250.50999,3784.25};
+ name="outp_7_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
a=17.457001;
b=7.158;
- angle=130.30399;
- id=3227;
- atlOffset=-0.00046157837;
+ angle=150.44295;
+ id=3222;
};
- class Item17
+ class Item35
{
dataType="Marker";
- position[]={1658.625,199.41901,3634.875};
- name="reso_9_vehicle";
+ position[]={5016.957,347.82001,2142.4619};
+ name="outp_8_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=86.959999;
- id=3225;
- atlOffset=0.00039672852;
+ a=13.547;
+ b=5.6399999;
+ angle=88.968964;
+ id=3223;
};
};
- id=3185;
- atlOffset=-48.311417;
+ id=3186;
+ atlOffset=46.574249;
};
- class Item779
+ class Item745
{
dataType="Layer";
- name="Outposts";
+ name="Factories";
class Entities
{
- items=36;
+ items=14;
class Item0
{
dataType="Marker";
- position[]={1078.702,275.09799,11408.5};
- name="outpost";
+ position[]={11558,71.827148,7082.75};
+ name="factory";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=50;
- b=50;
- id=56;
- atlOffset=0.00015258789;
+ colorName="ColorOrange";
+ a=89.593483;
+ b=135.97307;
+ angle=347.56018;
+ id=616;
+ atlOffset=-1.1972504;
};
class Item1
{
dataType="Marker";
- position[]={2065.5,109.73633,11150.5};
- name="outpost_1";
+ position[]={9291,15.333008,11162.625};
+ name="factory_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=218.24034;
- b=239.39792;
- angle=67.836891;
- id=57;
- atlOffset=-8.0124741;
+ colorName="ColorOrange";
+ a=138.96671;
+ b=88.846985;
+ angle=320.82428;
+ id=617;
+ atlOffset=-1.2863922;
};
class Item2
{
dataType="Marker";
- position[]={8923.75,308.25,2067.875};
- name="outpost_10";
+ position[]={1561.4736,4.6816406,7548.8047};
+ name="factory_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=85.130371;
- b=72.120605;
- id=66;
- atlOffset=5.7438049;
+ colorName="ColorOrange";
+ a=87.437256;
+ b=50;
+ angle=334.98184;
+ id=618;
+ atlOffset=-1.1683593;
};
class Item3
{
dataType="Marker";
- position[]={9898.8945,184.75,3894.9941};
- name="outpost_11";
+ position[]={7328.75,115.875,2605.75};
+ name="factory_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=95.76815;
- b=130.22659;
- angle=6.1560383;
- id=67;
- atlOffset=3.924118;
+ colorName="ColorOrange";
+ a=59.157471;
+ b=67.04834;
+ id=619;
+ atlOffset=-1.1650009;
};
class Item4
{
dataType="Marker";
- position[]={11123.143,185.5,2473.3086};
- name="outpost_12";
+ position[]={6385.0913,140.87888,4785.9814};
+ name="factory_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=84.215332;
- b=81.173462;
- id=68;
- atlOffset=1.3292236;
+ colorName="ColorOrange";
+ a=53.553616;
+ b=93.034897;
+ angle=39.117695;
+ id=620;
+ atlOffset=0.32502747;
};
class Item5
{
dataType="Marker";
- position[]={11311.66,176.89999,4201.9844};
- name="outpost_13";
+ position[]={3085.25,79.049805,7071.5};
+ name="factory_5";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=104.21985;
- b=69.965927;
- angle=340.66489;
- id=69;
+ colorName="ColorOrange";
+ a=83.764648;
+ b=74.605957;
+ id=621;
+ atlOffset=-0.98019409;
};
class Item6
{
dataType="Marker";
- position[]={7641.375,63.0014,5972.125};
- name="outpost_14";
+ position[]={10999.75,14.292969,9020.5};
+ name="factory_6";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=69.077148;
- b=65.789063;
- angle=332.43008;
- id=70;
+ colorName="ColorOrange";
+ a=116.74219;
+ b=75.957031;
+ angle=2.1283612;
+ id=622;
+ atlOffset=-1.197031;
};
class Item7
{
dataType="Marker";
- position[]={8916.625,138.5596,6578.5};
- name="outpost_15";
+ position[]={11359.584,11.598531,9442.6133};
+ name="factory_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=50;
+ colorName="ColorOrange";
+ a=116.10118;
b=50;
- angle=334.25339;
- id=71;
+ angle=332.65359;
+ id=623;
+ atlOffset=-0.63055611;
};
class Item8
{
dataType="Marker";
- position[]={9680.9219,43.615002,8495.7031};
- name="outpost_16";
+ position[]={11157.151,2.9013834,11439.184};
+ name="factory_8";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=74.474213;
- b=56.669998;
- angle=322.1239;
- id=72;
- atlOffset=-0.01770401;
+ colorName="ColorOrange";
+ a=62.923828;
+ b=63.897461;
+ angle=40.887455;
+ id=624;
+ atlOffset=-1.1605382;
};
class Item9
{
dataType="Marker";
- position[]={9428.8545,72.030151,10362.884};
- name="outpost_17";
+ position[]={9351.416,16.662001,11191.668};
+ name="fact_1_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=30.086159;
- b=61.861637;
- angle=321.72488;
- id=73;
- atlOffset=0.016929626;
+ colorName="ColorGreen";
+ a=16.91;
+ b=7.704;
+ angle=51.057976;
+ id=3212;
+ atlOffset=0.003200531;
};
class Item10
{
dataType="Marker";
- position[]={8159.8047,35.146511,10768.631};
- name="outpost_18";
+ position[]={10971.515,15.49,9001.5029};
+ name="fact_6_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=57.197998;
- b=171.13599;
- angle=350.74753;
- id=74;
- atlOffset=-8.6170387;
+ colorName="ColorGreen";
+ a=13.076;
+ b=7.158;
+ angle=91.825996;
+ id=3217;
};
class Item11
{
dataType="Marker";
- position[]={7823.1758,169.28152,10093.804};
- name="outpost_19";
+ position[]={11314.375,12.717,9420.125};
+ name="fact_7_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=60.068604;
- b=50;
- id=75;
- atlOffset=-0.045181274;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=155.29492;
+ id=3215;
+ atlOffset=-0.00020313263;
};
class Item12
{
dataType="Marker";
- position[]={4266.7583,70,10486.607};
- name="outpost_2";
+ position[]={11142.137,4.0999999,11420.187};
+ name="fact_8_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=102.14345;
- b=144.61456;
- angle=314.80792;
- id=58;
- atlOffset=1.8328552;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=130.30399;
+ id=3214;
};
class Item13
{
dataType="Marker";
- position[]={6302.375,36.669998,9906.25};
- name="outpost_20";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGUER";
- a=50;
- b=50;
- id=76;
- };
- class Item14
- {
- dataType="Marker";
- position[]={6415.625,53.427208,8178.375};
- name="outpost_21";
+ position[]={11503.621,73.073997,7062.1182};
+ name="fact_vehicle";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=79.035378;
- b=67.170029;
- angle=314.43701;
- id=77;
+ colorName="ColorGreen";
+ a=17.457001;
+ b=7.158;
+ angle=88.679985;
+ id=3218;
+ atlOffset=0.00026702881;
};
- class Item15
+ };
+ id=3187;
+ atlOffset=25.882332;
+ };
+ class Item746
+ {
+ dataType="Layer";
+ name="Roadblocks";
+ class Entities
+ {
+ items=53;
+ class Item0
{
dataType="Marker";
- position[]={6849.5,5.4451981,11204.5};
- name="outpost_22";
+ position[]={3366.25,217.26074,4336};
+ name="control";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
a=50;
b=50;
- angle=48.56834;
- id=208;
- };
- class Item16
- {
- dataType="Marker";
- position[]={2046.8824,50.054153,7278.7412};
- name="outpost_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGUER";
- a=54.100723;
- b=56.806438;
- angle=27.074936;
- id=59;
- atlOffset=-2.2098808;
+ id=772;
+ atlOffset=-2.5232544;
};
- class Item17
+ class Item1
{
dataType="Marker";
- position[]={4617.0688,131.88693,6314.8472};
- name="outpost_4";
+ position[]={3368.7512,316.22528,2126.0469};
+ name="control_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=55.822796;
- b=43.394402;
- angle=338.12772;
- id=60;
- atlOffset=0.099838257;
+ a=50;
+ b=50;
+ id=773;
+ atlOffset=-2.5232544;
};
- class Item18
+ class Item2
{
dataType="Marker";
- position[]={3182.5,235.84601,4950};
- name="outpost_5";
+ position[]={1365.106,7.1691446,7666.6128};
+ name="control_10";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
a=50;
b=50;
- angle=45.087116;
- id=61;
+ id=782;
+ atlOffset=-2.5232544;
};
- class Item19
+ class Item3
{
dataType="Marker";
- position[]={4544,115.01487,4745};
- name="outpost_6";
+ position[]={4843.3237,24.360769,9696.4521};
+ name="control_11";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=86.644043;
- b=100.35596;
- id=62;
+ a=50;
+ b=50;
+ id=783;
+ atlOffset=-2.5232544;
};
- class Item20
+ class Item4
{
dataType="Marker";
- position[]={5614.6919,251.62126,3780.3594};
- name="outpost_7";
+ position[]={5378.9751,12.286582,10367.957};
+ name="control_12";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=122.63338;
- b=88.012146;
- angle=331.32162;
- id=63;
- atlOffset=0.16125488;
+ a=50;
+ b=50;
+ id=784;
+ atlOffset=-2.5232544;
};
- class Item21
+ class Item5
{
dataType="Marker";
- position[]={4952.9375,357.83502,2149.1367};
- name="outpost_8";
+ position[]={4153.0156,43.453606,10877.489};
+ name="control_13";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
- a=168.66092;
- b=127.42848;
- angle=48.552986;
- id=64;
- atlOffset=3.6047058;
+ a=50;
+ b=50;
+ id=785;
+ atlOffset=-2.5232544;
};
- class Item22
+ class Item6
{
dataType="Marker";
- position[]={3831.0908,388.78015,1830.3856};
- name="outpost_9";
+ position[]={11560.375,26.25,8819.875};
+ name="control_14";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGUER";
a=50;
b=50;
- id=65;
- atlOffset=0.00015258789;
+ id=786;
+ atlOffset=6.0272121;
};
- class Item23
+ class Item7
{
dataType="Marker";
- position[]={4302.8921,68.219002,10482.914};
- name="outp_2_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=3202;
- atlOffset=-0.00030517578;
+ position[]={11819.995,47.01823,7690.5884};
+ name="control_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=787;
+ atlOffset=-2.5232544;
};
- class Item24
+ class Item8
{
dataType="Marker";
- position[]={8912,306.125,2048.875};
- name="outp_10_vehicle";
+ position[]={11659.081,140.50577,4951.9058};
+ name="control_16";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=12.157;
- b=5.3210001;
- angle=89.540985;
- id=3221;
- atlOffset=0.78518677;
+ a=50;
+ b=50;
+ id=788;
+ atlOffset=-2.5232544;
};
- class Item25
+ class Item9
{
dataType="Marker";
- position[]={9909.375,180.78999,3858.5};
- name="outp_11_vehicle";
+ position[]={10900.278,172.10098,4129.5366};
+ name="control_17";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=92.50798;
- id=3220;
+ a=50;
+ b=50;
+ id=789;
+ atlOffset=-2.5232544;
};
- class Item26
+ class Item10
{
dataType="Marker";
- position[]={11326.25,176.80299,4183.875};
- name="outp_13_vehicle";
+ position[]={8779.4814,140.0092,6479.4951};
+ name="control_18";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=157.245;
- id=3219;
+ a=50;
+ b=50;
+ id=790;
+ atlOffset=-2.5232544;
};
- class Item27
+ class Item11
{
dataType="Marker";
- position[]={9415,72.036003,10383};
- name="outp_17_vehicle";
+ position[]={8924.0811,145.39896,6891.0078};
+ name="control_19";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=13.047;
- b=5.342;
- angle=146.63097;
- id=3213;
+ a=50;
+ b=50;
+ id=791;
+ atlOffset=-2.5232544;
};
- class Item28
+ class Item12
{
dataType="Marker";
- position[]={8121.25,44.875,10757};
- name="outp_18_vehicle";
+ position[]={7962.3833,81.444267,8665.0469};
+ name="control_20";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=20.01;
- b=8.6269999;
- angle=79.769997;
- id=3211;
- atlOffset=0.62099457;
+ a=50;
+ b=50;
+ id=792;
+ atlOffset=-2.5232544;
};
- class Item29
+ class Item13
{
dataType="Marker";
- position[]={2099,110.717,11007.25};
- name="outp_1_vehicle";
+ position[]={8576,99.584961,8668.5};
+ name="control_21";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=12.536;
- b=5.2579999;
- angle=72.349976;
- id=3208;
- atlOffset=0.00020599365;
+ a=50;
+ b=50;
+ id=793;
+ atlOffset=-2.9246445;
};
- class Item30
+ class Item14
{
dataType="Marker";
- position[]={6341.751,36.414001,9913.377};
- name="outp_20_vehicle";
+ position[]={5913.6938,10.407352,10907.52};
+ name="control_22";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=20.01;
- b=8.6269999;
- angle=90.944;
- id=3209;
- atlOffset=0.00025558472;
+ a=50;
+ b=50;
+ id=794;
+ atlOffset=-2.5232544;
};
- class Item31
+ class Item15
{
dataType="Marker";
- position[]={6881.25,5.915,11228.125};
- name="outp_22_vehicle";
+ position[]={6444.8247,2.9953322,10871.798};
+ name="control_23";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=20.01;
- b=8.6269999;
- angle=50.79599;
- id=3210;
+ a=50;
+ b=50;
+ id=795;
+ atlOffset=-2.5232544;
};
- class Item32
+ class Item16
{
dataType="Marker";
- position[]={2069.405,53.279999,7275.6421};
- name="outp_3_vehicle";
+ position[]={8412.0811,1.5667458,11831.865};
+ name="control_24";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=5.1599998;
- angle=148.31696;
- id=3226;
+ a=50;
+ b=50;
+ id=796;
+ atlOffset=-2.5232544;
};
- class Item33
+ class Item17
{
dataType="Marker";
- position[]={3165.7,234.722,4924.603};
- name="outp_5_vehicle";
+ position[]={7971.1494,1.5426173,11779.96};
+ name="control_25";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=14.075;
- b=6.1609998;
- angle=45.19799;
- id=3224;
- atlOffset=-0.10426331;
+ a=50;
+ b=50;
+ id=797;
+ atlOffset=-2.5232544;
};
- class Item34
+ class Item18
{
dataType="Marker";
- position[]={5543.125,250.50999,3784.25};
- name="outp_7_vehicle";
+ position[]={11079.664,2.1455345,11370.186};
+ name="control_26";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=150.44295;
- id=3222;
+ a=50;
+ b=50;
+ id=798;
+ atlOffset=-2.5232544;
};
- class Item35
+ class Item19
{
dataType="Marker";
- position[]={5016.957,347.82001,2142.4619};
- name="outp_8_vehicle";
+ position[]={9355.9678,42.334644,10707.669};
+ name="control_27";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=13.547;
- b=5.6399999;
- angle=88.968979;
- id=3223;
+ a=50;
+ b=50;
+ id=799;
+ atlOffset=-2.5232544;
};
- };
- id=3186;
- atlOffset=46.574249;
- };
- class Item780
- {
- dataType="Layer";
- name="Factories";
- class Entities
- {
- items=14;
- class Item0
+ class Item20
{
dataType="Marker";
- position[]={11558,71.827148,7082.75};
- name="factory";
+ position[]={9426.252,76.683098,10270.955};
+ name="control_28";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=89.593483;
- b=135.97307;
- angle=347.56018;
- id=616;
- atlOffset=-1.1972504;
+ a=50;
+ b=50;
+ id=800;
+ atlOffset=-2.5232544;
};
- class Item1
+ class Item21
{
dataType="Marker";
- position[]={9291,15.333008,11162.625};
- name="factory_1";
+ position[]={10859.868,12.415169,10777.237};
+ name="control_29";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=138.96671;
- b=88.846985;
- angle=320.82428;
- id=617;
- atlOffset=-1.2863922;
+ a=50;
+ b=50;
+ id=801;
+ atlOffset=-2.5232544;
};
- class Item2
+ class Item22
{
dataType="Marker";
- position[]={1561.4736,4.6816406,7548.8047};
- name="factory_2";
+ position[]={7643.0571,207.62411,3756.5042};
+ name="control_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=87.437256;
+ a=50;
b=50;
- angle=334.98184;
- id=618;
- atlOffset=-1.1683593;
+ id=775;
+ atlOffset=-2.5232544;
};
- class Item3
+ class Item23
{
dataType="Marker";
- position[]={7328.75,115.875,2605.75};
- name="factory_3";
+ position[]={10407.146,6.2089977,11205.414};
+ name="control_30";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=59.157471;
- b=67.04834;
- id=619;
- atlOffset=-1.1650009;
+ a=50;
+ b=50;
+ id=802;
+ atlOffset=-2.5232763;
};
- class Item4
+ class Item24
{
dataType="Marker";
- position[]={6385.0913,140.87888,4785.9814};
- name="factory_4";
+ position[]={7277.6733,52.785683,6554.4375};
+ name="control_31";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=53.553616;
- b=93.034897;
- angle=39.117695;
- id=620;
- atlOffset=0.32502747;
+ a=50;
+ b=50;
+ id=803;
+ atlOffset=-2.5232544;
};
- class Item5
+ class Item25
{
dataType="Marker";
- position[]={3085.25,79.049805,7071.5};
- name="factory_5";
+ position[]={5853.1245,112.37883,6699.3228};
+ name="control_32";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=83.764648;
- b=74.605957;
- id=621;
- atlOffset=-0.98019409;
+ a=50;
+ b=50;
+ id=804;
+ atlOffset=-2.5232544;
};
- class Item6
+ class Item26
{
dataType="Marker";
- position[]={10999.75,14.292969,9020.5};
- name="factory_6";
+ position[]={8579.0283,215.64503,2336.7993};
+ name="control_33";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=116.74219;
- b=75.957031;
- angle=2.1283612;
- id=622;
- atlOffset=-1.197031;
+ a=50;
+ b=50;
+ id=805;
+ atlOffset=-2.5232544;
};
- class Item7
+ class Item27
{
dataType="Marker";
- position[]={11359.584,11.598531,9442.6133};
- name="factory_7";
+ position[]={4750.417,296.77066,2555.5867};
+ name="control_34";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=116.10118;
+ a=50;
b=50;
- angle=332.65359;
- id=623;
- atlOffset=-0.63055611;
+ id=806;
+ atlOffset=-2.5232544;
};
- class Item8
+ class Item28
{
dataType="Marker";
- position[]={11157.151,2.9013834,11439.184};
- name="factory_8";
+ position[]={4104.6729,307.47437,1640.6548};
+ name="control_35";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=62.923828;
- b=63.897461;
- angle=40.887455;
- id=624;
- atlOffset=-1.1605382;
+ a=50;
+ b=50;
+ id=807;
+ atlOffset=-2.5232544;
};
- class Item9
+ class Item29
{
dataType="Marker";
- position[]={9351.416,16.662001,11191.668};
- name="fact_1_vehicle";
+ position[]={2553.156,81.912445,10544.641};
+ name="control_36";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=16.91;
- b=7.704;
- angle=51.057987;
- id=3212;
- atlOffset=0.003200531;
+ a=50;
+ b=50;
+ id=808;
+ atlOffset=-2.5232544;
};
- class Item10
+ class Item30
{
dataType="Marker";
- position[]={10971.515,15.49,9001.5029};
- name="fact_6_vehicle";
+ position[]={6198.0835,66.943924,7895.7246};
+ name="control_37";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=13.076;
- b=7.158;
- angle=91.825996;
- id=3217;
+ a=50;
+ b=50;
+ id=809;
+ atlOffset=-2.5232544;
};
- class Item11
+ class Item31
{
dataType="Marker";
- position[]={11314.375,12.717,9420.125};
- name="fact_7_vehicle";
+ position[]={5937.0996,210.42572,4428.6821};
+ name="control_38";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=155.29495;
- id=3215;
- atlOffset=-0.00020313263;
+ a=50;
+ b=50;
+ id=810;
+ atlOffset=-2.5232544;
};
- class Item12
+ class Item32
{
dataType="Marker";
- position[]={11142.137,4.0999999,11420.187};
- name="fact_8_vehicle";
+ position[]={6636.0947,204.87622,3931.1021};
+ name="control_39";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=130.30399;
- id=3214;
+ a=50;
+ b=50;
+ id=811;
+ atlOffset=-2.5232544;
};
- class Item13
+ class Item33
{
dataType="Marker";
- position[]={11503.621,73.073997,7062.1182};
- name="fact_vehicle";
+ position[]={8704.1357,196.07642,4150.4473};
+ name="control_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=17.457001;
- b=7.158;
- angle=88.679985;
- id=3218;
- atlOffset=0.00026702881;
+ a=50;
+ b=50;
+ id=776;
+ atlOffset=-2.5232544;
};
- };
- id=3187;
- atlOffset=25.882332;
- };
- class Item781
- {
- dataType="Layer";
- name="Roadblocks";
- class Entities
- {
- items=53;
- class Item0
+ class Item34
+ {
+ dataType="Marker";
+ position[]={6311.875,209.23047,3914.875};
+ name="control_40";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=812;
+ atlOffset=-2.2235413;
+ };
+ class Item35
{
dataType="Marker";
- position[]={3366.25,217.26074,4336};
- name="control";
+ position[]={5390.1978,244.14975,3760.6187};
+ name="control_41";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=772;
+ id=813;
atlOffset=-2.5232544;
};
- class Item1
+ class Item36
{
dataType="Marker";
- position[]={3368.7512,316.22528,2126.0469};
- name="control_1";
+ position[]={11168.68,50.084843,795.14526};
+ name="control_42";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=773;
+ id=814;
atlOffset=-2.5232544;
};
- class Item2
+ class Item37
{
dataType="Marker";
- position[]={1365.106,7.1691446,7666.6128};
- name="control_10";
+ position[]={4062.5789,3.4024124,8967.9043};
+ name="control_43";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=782;
- atlOffset=-2.5232544;
+ id=815;
+ atlOffset=-2.348166;
};
- class Item3
+ class Item38
{
dataType="Marker";
- position[]={4843.3237,24.360769,9696.4521};
- name="control_11";
+ position[]={5308.4849,1.7440257,9485.876};
+ name="control_44";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=783;
+ id=816;
atlOffset=-2.5232544;
};
- class Item4
+ class Item39
{
dataType="Marker";
- position[]={5378.9751,12.286582,10367.957};
- name="control_12";
+ position[]={4713.4019,118.1113,7641.4106};
+ name="control_45";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=784;
+ id=817;
atlOffset=-2.5232544;
};
- class Item5
+ class Item40
{
dataType="Marker";
- position[]={4153.0156,43.453606,10877.489};
- name="control_13";
+ position[]={3324.2793,66.125252,6649.729};
+ name="control_46";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=785;
+ id=818;
atlOffset=-2.5232544;
};
- class Item6
+ class Item41
{
dataType="Marker";
- position[]={11560.375,26.25,8819.875};
- name="control_14";
+ position[]={10226.291,31.340343,8692.4482};
+ name="control_47";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=786;
- atlOffset=6.0272121;
+ id=819;
+ atlOffset=-2.5232544;
};
- class Item7
+ class Item42
{
dataType="Marker";
- position[]={11819.995,47.01823,7690.5884};
- name="control_15";
+ position[]={2230.5,113.0448,10698.5};
+ name="control_48";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=787;
- atlOffset=-2.5232544;
+ id=989;
};
- class Item8
+ class Item43
{
dataType="Marker";
- position[]={11659.081,140.50577,4951.9058};
- name="control_16";
+ position[]={10088.347,176.83768,4208.6099};
+ name="control_5";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=788;
+ id=777;
atlOffset=-2.5232544;
};
- class Item9
+ class Item44
{
dataType="Marker";
- position[]={10900.278,172.10098,4129.5366};
- name="control_17";
+ position[]={9026.4873,153.58763,5157.7935};
+ name="control_6";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=789;
+ id=778;
atlOffset=-2.5232544;
};
- class Item10
+ class Item45
{
dataType="Marker";
- position[]={8779.4814,140.0092,6479.4951};
- name="control_18";
+ position[]={1797.5,152.06641,6205};
+ name="control_7";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=790;
- atlOffset=-2.5232544;
+ id=779;
+ atlOffset=-1.5395966;
};
- class Item11
+ class Item46
{
dataType="Marker";
- position[]={8924.0811,145.39896,6891.0078};
- name="control_19";
+ position[]={2200.6296,30.569206,7516.5586};
+ name="control_8";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=791;
+ id=780;
atlOffset=-2.5232544;
};
- class Item12
+ class Item47
{
dataType="Marker";
- position[]={7962.3833,81.444267,8665.0469};
- name="control_20";
+ position[]={1035.8557,23.535429,7294.0376};
+ name="control_9";
markerType="RECTANGLE";
type="rectangle";
a=50;
b=50;
- id=792;
+ id=781;
atlOffset=-2.5232544;
};
- class Item13
+ class Item48
{
dataType="Marker";
- position[]={8576,99.584961,8668.5};
- name="control_21";
+ position[]={7881.0366,144.69,9563.6963};
+ name="detectPlayer";
markerType="RECTANGLE";
type="rectangle";
- a=50;
- b=50;
- id=793;
- atlOffset=-2.9246445;
+ a=122.46957;
+ b=73.503365;
+ angle=6.6712604;
+ id=822;
+ atlOffset=2.1220245;
};
- class Item14
+ class Item49
{
dataType="Marker";
- position[]={5913.6938,10.407352,10907.52};
- name="control_22";
+ position[]={8018.5132,145.5,9623.7666};
+ name="detectPlayer_1";
markerType="RECTANGLE";
type="rectangle";
- a=50;
- b=50;
- id=794;
- atlOffset=-2.5232544;
+ a=41.776703;
+ b=91.376221;
+ angle=30.725622;
+ id=823;
+ atlOffset=10.4617;
};
- class Item15
+ class Item50
{
dataType="Marker";
- position[]={6444.8247,2.9953322,10871.798};
- name="control_23";
+ position[]={3898.0298,70.181999,10234.328};
+ name="detectPlayer_2";
markerType="RECTANGLE";
type="rectangle";
- a=50;
- b=50;
- id=795;
- atlOffset=-2.5232544;
+ a=569.40137;
+ b=81.80806;
+ angle=317.42856;
+ id=990;
+ atlOffset=2.0219955;
};
- class Item16
+ class Item51
{
dataType="Marker";
- position[]={8412.0811,1.5667458,11831.865};
- name="control_24";
+ position[]={4173.1475,72.875,10271.655};
+ name="detectPlayer_3";
markerType="RECTANGLE";
type="rectangle";
- a=50;
- b=50;
- id=796;
- atlOffset=-2.5232544;
+ a=346.33704;
+ b=81.80806;
+ angle=317.42856;
+ id=3182;
+ atlOffset=1.0064163;
+ };
+ class Item52
+ {
+ dataType="Marker";
+ position[]={3728.9324,68.099998,9974.0342};
+ name="detectPlayer_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=231.71259;
+ b=81.80806;
+ angle=339.95706;
+ id=3183;
+ atlOffset=0.019996643;
+ };
+ };
+ id=3188;
+ atlOffset=20.586609;
+ };
+ class Item747
+ {
+ dataType="Layer";
+ name="Old marker";
+ class Entities
+ {
+ items=43;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={11086.125,128,10254.125};
+ name="road";
+ type="hd_arrow";
+ id=2799;
+ atlOffset=121.9604;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={8562.917,140.98709,9715.6709};
+ name="road_1";
+ type="hd_arrow";
+ id=2800;
+ atlOffset=-0.00018310547;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={5294.9448,18.276405,10318.331};
+ name="road_10";
+ type="hd_arrow";
+ id=2809;
+ atlOffset=-0.00018310547;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={4791.8447,29.731018,9608.4932};
+ name="road_11";
+ type="hd_arrow";
+ id=2810;
+ atlOffset=-0.00018310547;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={8835.375,62.753906,8086.75};
+ name="road_12";
+ type="hd_arrow";
+ id=2811;
+ atlOffset=-62.236496;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={3520.3079,22.827456,8411.6797};
+ name="road_13";
+ type="hd_arrow";
+ id=2812;
+ atlOffset=-0.00018310547;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={2695.04,37.912689,7707.5264};
+ name="road_14";
+ type="hd_arrow";
+ id=2813;
+ atlOffset=-0.00018310547;
};
- class Item17
+ class Item7
{
dataType="Marker";
- position[]={7971.1494,1.5426173,11779.96};
- name="control_25";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=797;
- atlOffset=-2.5232544;
+ position[]={1748.1615,29.73444,7341.0615};
+ name="road_15";
+ type="hd_arrow";
+ id=2814;
+ atlOffset=-0.00018310547;
};
- class Item18
+ class Item8
{
dataType="Marker";
- position[]={11079.664,2.1455345,11370.186};
- name="control_26";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=798;
- atlOffset=-2.5232544;
+ position[]={1830.3436,160.3118,6137.5269};
+ name="road_16";
+ type="hd_arrow";
+ id=2815;
+ atlOffset=-0.00018310547;
};
- class Item19
+ class Item9
{
dataType="Marker";
- position[]={9355.9678,42.334644,10707.669};
- name="control_27";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=799;
- atlOffset=-2.5232544;
+ position[]={2665.0835,231.95938,5465.7339};
+ name="road_17";
+ type="hd_arrow";
+ id=2816;
+ atlOffset=-0.00018310547;
};
- class Item20
+ class Item10
{
dataType="Marker";
- position[]={9426.252,76.683098,10270.955};
- name="control_28";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=800;
- atlOffset=-2.5232544;
+ position[]={3267.4446,225.75246,4828.4434};
+ name="road_18";
+ type="hd_arrow";
+ id=2817;
+ atlOffset=-0.00018310547;
};
- class Item21
+ class Item11
{
dataType="Marker";
- position[]={10859.868,12.415169,10777.237};
- name="control_29";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=801;
- atlOffset=-2.5232544;
+ position[]={3332.6882,230.16058,3820.1021};
+ name="road_19";
+ type="hd_arrow";
+ id=2818;
+ atlOffset=-0.00018310547;
};
- class Item22
+ class Item12
{
dataType="Marker";
- position[]={7643.0571,207.62411,3756.5042};
- name="control_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=775;
- atlOffset=-2.5232544;
+ position[]={10322.375,6.4939976,11271.875};
+ name="road_2";
+ type="hd_arrow";
+ id=2801;
};
- class Item23
+ class Item13
{
dataType="Marker";
- position[]={10407.146,6.2089977,11205.414};
- name="control_30";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=802;
- atlOffset=-2.5232763;
+ position[]={3219.991,264.24762,3135.6833};
+ name="road_20";
+ type="hd_arrow";
+ id=2819;
+ atlOffset=-0.00018310547;
};
- class Item24
+ class Item14
{
dataType="Marker";
- position[]={7277.6733,52.785683,6554.4375};
- name="control_31";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=803;
- atlOffset=-2.5232544;
+ position[]={3088.5647,287.82925,2541.3162};
+ name="road_21";
+ type="hd_arrow";
+ id=2820;
+ atlOffset=-0.00018310547;
};
- class Item25
+ class Item15
{
dataType="Marker";
- position[]={5853.1245,112.37883,6699.3228};
- name="control_32";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=804;
- atlOffset=-2.5232544;
+ position[]={3366.3691,318.09369,2092.7925};
+ name="road_22";
+ type="hd_arrow";
+ id=2821;
+ atlOffset=-0.00018310547;
};
- class Item26
+ class Item16
{
dataType="Marker";
- position[]={8579.0283,215.64503,2336.7993};
- name="control_33";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=805;
- atlOffset=-2.5232544;
+ position[]={4172.4478,332.7579,2409.3071};
+ name="road_23";
+ type="hd_arrow";
+ id=2822;
+ atlOffset=-0.00018310547;
};
- class Item27
+ class Item17
{
dataType="Marker";
- position[]={4750.417,296.77066,2555.5867};
- name="control_34";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=806;
- atlOffset=-2.5232544;
+ position[]={4805.6548,280.17676,2716.5176};
+ name="road_24";
+ type="hd_arrow";
+ id=2823;
+ atlOffset=-0.00018310547;
};
- class Item28
+ class Item18
{
dataType="Marker";
- position[]={4104.6729,307.47437,1640.6548};
- name="control_35";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=807;
- atlOffset=-2.5232544;
+ position[]={5114.6558,261.82782,3465.2373};
+ name="road_25";
+ type="hd_arrow";
+ id=2824;
+ atlOffset=-0.00018310547;
};
- class Item29
+ class Item19
{
dataType="Marker";
- position[]={2553.156,81.912445,10544.641};
- name="control_36";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=808;
- atlOffset=-2.5232544;
+ position[]={6111.3408,216.39474,4140.3848};
+ name="road_26";
+ type="hd_arrow";
+ id=2825;
+ atlOffset=-0.00018310547;
};
- class Item30
+ class Item20
{
dataType="Marker";
- position[]={6198.0835,66.943924,7895.7246};
- name="control_37";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=809;
- atlOffset=-2.5232544;
+ position[]={7190.9292,207.46956,3966.7412};
+ name="road_27";
+ type="hd_arrow";
+ id=2826;
+ atlOffset=-0.00018310547;
};
- class Item31
+ class Item21
{
dataType="Marker";
- position[]={5937.0996,210.42572,4428.6821};
- name="control_38";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=810;
- atlOffset=-2.5232544;
+ position[]={8760,140.29492,6192.75};
+ name="road_28";
+ type="hd_arrow";
+ id=2827;
+ atlOffset=-0.72589111;
};
- class Item32
+ class Item22
{
dataType="Marker";
- position[]={6636.0947,204.87622,3931.1021};
- name="control_39";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=811;
- atlOffset=-2.5232544;
+ position[]={8171.3799,209.93561,3855.4893};
+ name="road_29";
+ type="hd_arrow";
+ id=2828;
+ atlOffset=-0.00018310547;
};
- class Item33
+ class Item23
{
dataType="Marker";
- position[]={8704.1357,196.07642,4150.4473};
- name="control_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=776;
- atlOffset=-2.5232544;
+ position[]={9479.373,75.502831,10297.341};
+ name="road_3";
+ type="hd_arrow";
+ id=2802;
+ atlOffset=-0.00018310547;
};
- class Item34
+ class Item24
{
dataType="Marker";
- position[]={6311.875,209.23047,3914.875};
- name="control_40";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=812;
- atlOffset=-2.2235413;
+ position[]={9037.0293,170.9929,4394.124};
+ name="road_30";
+ type="hd_arrow";
+ id=2829;
+ atlOffset=-0.00018310547;
};
- class Item35
+ class Item25
{
dataType="Marker";
- position[]={5390.1978,244.14975,3760.6187};
- name="control_41";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=813;
- atlOffset=-2.5232544;
+ position[]={10916.195,174.29092,4131.9785};
+ name="road_31";
+ type="hd_arrow";
+ id=2830;
+ atlOffset=-0.00018310547;
};
- class Item36
+ class Item26
{
dataType="Marker";
- position[]={11168.68,50.084843,795.14526};
- name="control_42";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=814;
- atlOffset=-2.5232544;
+ position[]={11396.061,164.2227,4434.313};
+ name="road_32";
+ type="hd_arrow";
+ id=2831;
+ atlOffset=-0.00018310547;
};
- class Item37
+ class Item27
{
dataType="Marker";
- position[]={4062.5789,3.4024124,8967.9043};
- name="control_43";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=815;
- atlOffset=-2.348166;
+ position[]={11745.959,137.35884,5132.4722};
+ name="road_33";
+ type="hd_arrow";
+ id=2832;
+ atlOffset=-0.00018310547;
};
- class Item38
+ class Item28
{
dataType="Marker";
- position[]={5308.4849,1.7440257,9485.876};
- name="control_44";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=816;
- atlOffset=-2.5232544;
+ position[]={12422.016,115.52794,6152.5947};
+ name="road_34";
+ type="hd_arrow";
+ id=2833;
+ atlOffset=-0.00018310547;
};
- class Item39
+ class Item29
{
dataType="Marker";
- position[]={4713.4019,118.1113,7641.4106};
- name="control_45";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=817;
- atlOffset=-2.5232544;
+ position[]={12067.134,99.297836,6767.3872};
+ name="road_35";
+ type="hd_arrow";
+ id=2834;
+ atlOffset=-0.00018310547;
};
- class Item40
+ class Item30
{
dataType="Marker";
- position[]={3324.2793,66.125252,6649.729};
- name="control_46";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=818;
- atlOffset=-2.5232544;
+ position[]={11717.827,66.907127,7415.6035};
+ name="road_36";
+ type="hd_arrow";
+ id=2835;
+ atlOffset=-0.00018310547;
};
- class Item41
+ class Item31
{
dataType="Marker";
- position[]={10226.291,31.340343,8692.4482};
- name="control_47";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=819;
- atlOffset=-2.5232544;
+ position[]={11670.094,27.014524,8459.0215};
+ name="road_37";
+ type="hd_arrow";
+ id=2836;
+ atlOffset=-0.00018310547;
};
- class Item42
+ class Item32
{
dataType="Marker";
- position[]={2230.5,113.0448,10698.5};
- name="control_48";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=989;
+ position[]={11478.669,10.774491,9485.6982};
+ name="road_38";
+ type="hd_arrow";
+ id=2837;
+ atlOffset=-0.00018310547;
};
- class Item43
+ class Item33
{
dataType="Marker";
- position[]={10088.347,176.83768,4208.6099};
- name="control_5";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=777;
- atlOffset=-2.5232544;
+ position[]={9315.3057,38.280392,10761.403};
+ name="road_4";
+ type="hd_arrow";
+ id=2803;
+ atlOffset=-0.00018310547;
};
- class Item44
+ class Item34
{
dataType="Marker";
- position[]={9026.4873,153.58763,5157.7935};
- name="control_6";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=778;
- atlOffset=-2.5232544;
+ position[]={8901.9717,20.449211,11258.684};
+ name="road_5";
+ type="hd_arrow";
+ id=2804;
+ atlOffset=-0.00018310547;
};
- class Item45
+ class Item35
{
dataType="Marker";
- position[]={1797.5,152.06641,6205};
- name="control_7";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=779;
- atlOffset=-1.5395966;
+ position[]={8422.9395,4.7527308,11778.245};
+ name="road_6";
+ type="hd_arrow";
+ id=2805;
+ atlOffset=-0.00018310547;
};
- class Item46
+ class Item36
{
dataType="Marker";
- position[]={2200.6296,30.569206,7516.5586};
- name="control_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=780;
- atlOffset=-2.5232544;
+ position[]={8359.248,40.714165,12348.514};
+ name="road_7";
+ type="hd_arrow";
+ id=2806;
+ atlOffset=-0.00018310547;
};
- class Item47
+ class Item37
{
dataType="Marker";
- position[]={1035.8557,23.535429,7294.0376};
- name="control_9";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=781;
- atlOffset=-2.5232544;
+ position[]={7264.4912,3.9998169,11407.471};
+ name="road_8";
+ type="hd_arrow";
+ id=2807;
+ atlOffset=-0.00018310547;
};
- class Item48
+ class Item38
{
dataType="Marker";
- position[]={7881.0366,144.69,9563.6963};
- name="detectPlayer";
- markerType="RECTANGLE";
- type="rectangle";
- a=122.46957;
- b=73.503365;
- angle=6.6712604;
- id=822;
- atlOffset=2.1220245;
+ position[]={6449.2734,4.915637,10981.103};
+ name="road_9";
+ type="hd_arrow";
+ id=2808;
+ atlOffset=-0.00018310547;
};
- class Item49
+ class Item39
{
dataType="Marker";
- position[]={8018.5132,145.5,9623.7666};
- name="detectPlayer_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=41.776703;
- b=91.376221;
- angle=30.725622;
- id=823;
- atlOffset=10.4617;
+ position[]={4479.562,59.393002,10465.873};
+ name="spawnPoint";
+ type="hd_start";
+ id=2795;
+ atlOffset=-0.00026702881;
};
- class Item50
+ class Item40
{
dataType="Marker";
- position[]={3898.0298,70.181999,10234.328};
- name="detectPlayer_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=569.40137;
- b=81.80806;
- angle=317.42856;
- id=990;
- atlOffset=2.0219955;
+ position[]={6412.7114,216.80989,3918.6729};
+ name="spawnPoint_1";
+ type="hd_start";
+ id=3242;
};
- class Item51
+ class Item41
{
dataType="Marker";
- position[]={4173.1475,72.875,10271.655};
- name="detectPlayer_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=346.33704;
- b=81.80806;
- angle=317.42856;
- id=3182;
- atlOffset=1.0064163;
+ position[]={7985.749,148.04671,9836.4512};
+ name="spawnPoint_2";
+ type="hd_start";
+ id=3243;
};
- class Item52
+ class Item42
{
dataType="Marker";
- position[]={3728.9324,68.099998,9974.0342};
- name="detectPlayer_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=231.71259;
- b=81.80806;
- angle=339.95712;
- id=3183;
- atlOffset=0.019996643;
+ position[]={11463.902,7.2081103,8968.9775};
+ name="spawnPoint_3";
+ type="hd_start";
+ id=3244;
};
};
- id=3188;
- atlOffset=20.586609;
+ id=3193;
+ atlOffset=6.4507904;
};
- class Item782
+ class Item748
{
dataType="Layer";
- name="Old marker";
+ name="SeaAttackSpawnPoints";
class Entities
{
- items=43;
+ items=8;
class Item0
{
dataType="Marker";
- position[]={11086.125,128,10254.125};
- name="road";
- type="hd_arrow";
- id=2799;
- atlOffset=121.9604;
+ position[]={-931,218.60742,13144.625};
+ name="seaAttackSpawn";
+ type="mil_ambush";
+ id=2878;
+ atlOffset=-1.4444122;
};
class Item1
{
dataType="Marker";
- position[]={8562.917,140.98709,9715.6709};
- name="road_1";
- type="hd_arrow";
- id=2800;
- atlOffset=-0.00018310547;
+ position[]={-1348.7396,72.563736,6363.9351};
+ name="seaAttackSpawn_1";
+ type="mil_ambush";
+ id=2879;
+ atlOffset=-0.00039672852;
};
class Item2
{
dataType="Marker";
- position[]={5294.9448,18.276405,10318.331};
- name="road_10";
- type="hd_arrow";
- id=2809;
- atlOffset=-0.00018310547;
+ position[]={-1065.1031,354.63818,-483.08258};
+ name="seaAttackSpawn_2";
+ type="mil_ambush";
+ id=2880;
+ atlOffset=-0.00039672852;
};
class Item3
{
dataType="Marker";
- position[]={4791.8447,29.731018,9608.4932};
- name="road_11";
- type="hd_arrow";
- id=2810;
- atlOffset=-0.00018310547;
+ position[]={6658.5327,280.2598,-897.39532};
+ name="seaAttackSpawn_3";
+ type="mil_ambush";
+ id=2881;
+ atlOffset=-0.00039672852;
};
class Item4
{
dataType="Marker";
- position[]={8835.375,62.753906,8086.75};
- name="road_12";
- type="hd_arrow";
- id=2811;
- atlOffset=-62.236496;
+ position[]={13574.896,130.17221,-810.16998};
+ name="seaAttackSpawn_4";
+ type="mil_ambush";
+ id=2882;
+ atlOffset=-0.00039672852;
};
class Item5
{
dataType="Marker";
- position[]={3520.3079,22.827456,8411.6797};
- name="road_13";
- type="hd_arrow";
- id=2812;
- atlOffset=-0.00018310547;
+ position[]={14229.441,111.76187,6385.7412};
+ name="seaAttackSpawn_5";
+ type="mil_ambush";
+ id=2883;
+ atlOffset=-0.00039672852;
};
class Item6
{
dataType="Marker";
- position[]={2695.04,37.912689,7707.5264};
- name="road_14";
- type="hd_arrow";
- id=2813;
- atlOffset=-0.00018310547;
+ position[]={13814.898,15.896471,13080.119};
+ name="seaAttackSpawn_6";
+ type="mil_ambush";
+ id=2884;
+ atlOffset=-0.00039672852;
};
class Item7
{
dataType="Marker";
- position[]={1748.1615,29.73444,7341.0615};
- name="road_15";
- type="hd_arrow";
- id=2814;
- atlOffset=-0.00018310547;
- };
- class Item8
- {
- dataType="Marker";
- position[]={1830.3436,160.3118,6137.5269};
- name="road_16";
- type="hd_arrow";
- id=2815;
- atlOffset=-0.00018310547;
- };
- class Item9
- {
- dataType="Marker";
- position[]={2665.0835,231.95938,5465.7339};
- name="road_17";
- type="hd_arrow";
- id=2816;
- atlOffset=-0.00018310547;
- };
- class Item10
- {
- dataType="Marker";
- position[]={3267.4446,225.75246,4828.4434};
- name="road_18";
- type="hd_arrow";
- id=2817;
- atlOffset=-0.00018310547;
- };
- class Item11
- {
- dataType="Marker";
- position[]={3332.6882,230.16058,3820.1021};
- name="road_19";
- type="hd_arrow";
- id=2818;
- atlOffset=-0.00018310547;
- };
- class Item12
- {
- dataType="Marker";
- position[]={10322.375,6.4939976,11271.875};
- name="road_2";
- type="hd_arrow";
- id=2801;
+ position[]={6331.2607,69.274628,13603.458};
+ name="seaAttackSpawn_7";
+ type="mil_ambush";
+ id=2885;
+ atlOffset=-0.00039672852;
};
- class Item13
+ };
+ id=3194;
+ atlOffset=54.222801;
+ };
+ class Item749
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3991.604,71.936157,10271.789};
+ angles[]={0,2.3312404,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=3195;
+ type="Land_TentHangar_V1_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item750
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3970.439,71.958878,10250.249};
+ angles[]={0,2.3312404,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=3196;
+ type="Land_TentHangar_V1_F";
+ };
+ class Item751
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3949.125,72.163177,10228.5};
+ angles[]={0,2.3312404,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=3197;
+ type="Land_TentHangar_V1_F";
+ };
+ class Item752
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4111.2378,68.343857,10388.865};
+ angles[]={0,5.4486198,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3198;
+ type="Land_HelipadSquare_F";
+ atlOffset=8.392334e-005;
+ };
+ class Item753
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4148.8345,68.366928,10428.553};
+ angles[]={0,5.4486198,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3199;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.00024414063;
+ };
+ class Item754
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4225.417,68.378044,10507.549};
+ angles[]={0,5.4486198,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3200;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.074050903;
+ };
+ class Item755
+ {
+ dataType="Layer";
+ name="Basics";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Marker";
- position[]={3219.991,264.24762,3135.6833};
- name="road_20";
- type="hd_arrow";
- id=2819;
- atlOffset=-0.00018310547;
+ position[]={14583.024,-0.016000001,12800.195};
+ name="CSAT_carrier";
+ type="flag_CSAT";
+ id=2887;
+ atlOffset=2.9620171;
};
- class Item14
+ class Item1
{
dataType="Marker";
- position[]={3088.5647,287.82925,2541.3162};
- name="road_21";
- type="hd_arrow";
- id=2820;
- atlOffset=-0.00018310547;
+ position[]={245.15363,390.56497,737.99121};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=175;
+ atlOffset=4.0483093;
};
- class Item15
+ class Item2
{
dataType="Marker";
- position[]={3366.3691,318.09369,2092.7925};
- name="road_22";
- type="hd_arrow";
- id=2821;
- atlOffset=-0.00018310547;
+ position[]={-1704,-0.66315949,7956.125};
+ name="NATO_carrier";
+ type="flag_NATO";
+ id=2886;
};
- class Item16
+ class Item3
{
dataType="Marker";
- position[]={4172.4478,332.7579,2409.3071};
- name="road_23";
- type="hd_arrow";
- id=2822;
- atlOffset=-0.00018310547;
+ position[]={953.14001,78.643997,5568.0278};
+ name="Synd_HQ";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorPink";
+ a=50;
+ b=50;
+ id=78;
+ atlOffset=1.603363;
};
- class Item17
+ class Item4
{
dataType="Marker";
- position[]={4805.6548,280.17676,2716.5176};
- name="road_24";
- type="hd_arrow";
- id=2823;
- atlOffset=-0.00018310547;
+ position[]={1388.8798,263.23926,225.21986};
+ name="respawn_east";
+ type="flag_Viper";
+ id=183;
+ atlOffset=5.421051;
};
- class Item18
+ class Item5
{
dataType="Marker";
- position[]={5114.6558,261.82782,3465.2373};
- name="road_25";
- type="hd_arrow";
- id=2824;
- atlOffset=-0.00018310547;
+ position[]={954.47308,2.7037606e+012,5570.207};
+ name="respawn_guerrila";
+ text="Your Headquarters";
+ type="hd_flag";
+ colorName="ColorGUER";
+ id=79;
+ atlOffset=2.7037606e+012;
};
- class Item19
+ };
+ id=3207;
+ atlOffset=1.3518803e+012;
+ };
+ class Item756
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8884.75,138.59959,6588.75};
+ angles[]={0,1.0895481,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3228;
+ type="Land_HelipadCircle_F";
+ };
+ class Item757
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11094.75,186.125,2503.875};
+ angles[]={0,1.4552404,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3229;
+ type="Land_HelipadCircle_F";
+ atlOffset=-1.0154114;
+ };
+ class Item758
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11366.875,175.125,4256.25};
+ angles[]={0,2.7159262,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3230;
+ type="Land_HelipadCircle_F";
+ atlOffset=1.8399506;
+ };
+ class Item759
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7347.75,117.04,2613.375};
+ angles[]={0,1.6257827,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3232;
+ type="Land_HelipadCircle_F";
+ };
+ class Item760
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4923.125,354.16,2122.625};
+ angles[]={0,5.8519688,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3233;
+ type="Land_HelipadCircle_F";
+ };
+ class Item761
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4490.625,111.46,4800.25};
+ angles[]={0,1.5873392,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3234;
+ type="Land_HelipadCircle_F";
+ };
+ class Item762
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4497.25,116.365,4833.125};
+ angles[]={0,4.0228968,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=3235;
+ type="Land_Cargo_Patrol_V2_F";
+ };
+ class Item763
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2052.625,53.279999,7248};
+ angles[]={0,6.2779412,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3236;
+ type="Land_HelipadCircle_F";
+ };
+ class Item764
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={4248.7334,69.109573,10397.498};
+ angles[]={0,0.82908094,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3238;
+ type="Land_HelipadCircle_F";
+ atlOffset=5.3405762e-005;
+ };
+ class Item765
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6861.896,5.100287,11188.406};
+ angles[]={0,3.9884927,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3239;
+ type="Land_HelipadCircle_F";
+ atlOffset=-1.5735626e-005;
+ };
+ class Item766
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11120.688,4.0151787,11453.879};
+ angles[]={0,1.6087209,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3240;
+ type="Land_HelipadCircle_F";
+ atlOffset=2.8610229e-006;
+ };
+ class Item767
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={6424.3486,53.662663,8156.5156};
+ angles[]={0,5.5036583,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=3241;
+ type="Land_HelipadCircle_F";
+ };
+ class Item768
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=38;
+ class Item0
{
- dataType="Marker";
- position[]={6111.3408,216.39474,4140.3848};
- name="road_26";
- type="hd_arrow";
- id=2825;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={961.62061,80.294884,5566.9243};
+ };
+ side="Independent";
+ flags=3;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3246;
+ type="I_G_Soldier_TL_F";
+ atlOffset=2.2093887;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
- class Item20
+ class Item1
{
- dataType="Marker";
- position[]={7190.9292,207.46956,3966.7412};
- name="road_27";
- type="hd_arrow";
- id=2826;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.41553,80.733803,5564.2212};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3247;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.5630188;
};
- class Item21
+ class Item2
{
- dataType="Marker";
- position[]={8760,140.29492,6192.75};
- name="road_28";
- type="hd_arrow";
- id=2827;
- atlOffset=-0.72589111;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.5542,80.737274,5566.457};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3248;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.4959488;
};
- class Item22
+ class Item3
{
- dataType="Marker";
- position[]={8171.3799,209.93561,3855.4893};
- name="road_29";
- type="hd_arrow";
- id=2828;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.49658,80.701195,5568.7905};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3249;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.405426;
};
- class Item23
+ class Item4
{
- dataType="Marker";
- position[]={9479.373,75.502831,10297.341};
- name="road_3";
- type="hd_arrow";
- id=2802;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.3335,80.605133,5571.104};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3250;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.3078613;
};
- class Item24
+ class Item5
{
- dataType="Marker";
- position[]={9037.0293,170.9929,4394.124};
- name="road_30";
- type="hd_arrow";
- id=2829;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.29248,80.515076,5573.5581};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3251;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.2042618;
};
- class Item25
+ class Item6
{
- dataType="Marker";
- position[]={10916.195,174.29092,4131.9785};
- name="road_31";
- type="hd_arrow";
- id=2830;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={966.10693,80.395424,5575.874};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3252;
+ type="I_G_Soldier_F";
+ atlOffset=1.1147766;
};
- class Item26
+ class Item7
{
- dataType="Marker";
- position[]={11396.061,164.2227,4434.313};
- name="road_32";
- type="hd_arrow";
- id=2831;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={965.8999,80.26825,5577.7695};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3253;
+ type="I_G_Soldier_F";
+ atlOffset=1.0294113;
};
- class Item27
+ class Item8
{
- dataType="Marker";
- position[]={11745.959,137.35884,5132.4722};
- name="road_33";
- type="hd_arrow";
- id=2832;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.7749,80.944748,5564.3447};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3254;
+ type="I_G_Soldier_F";
+ atlOffset=1.1350403;
};
- class Item28
+ class Item9
{
- dataType="Marker";
- position[]={12422.016,115.52794,6152.5947};
- name="road_34";
- type="hd_arrow";
- id=2833;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.77393,80.93531,5566.6841};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3255;
+ type="I_G_Soldier_F";
+ atlOffset=1.0546341;
};
- class Item29
+ class Item10
{
- dataType="Marker";
- position[]={12067.134,99.297836,6767.3872};
- name="road_35";
- type="hd_arrow";
- id=2834;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.66748,80.886391,5569.0576};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3256;
+ type="I_G_Soldier_F";
+ atlOffset=0.96520233;
};
- class Item30
+ class Item11
{
- dataType="Marker";
- position[]={11717.827,66.907127,7415.6035};
- name="road_36";
- type="hd_arrow";
- id=2835;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.60889,80.803574,5571.2573};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3257;
+ type="I_G_Soldier_F";
+ atlOffset=0.87738037;
};
- class Item31
+ class Item12
{
- dataType="Marker";
- position[]={11670.094,27.014524,8459.0215};
- name="road_37";
- type="hd_arrow";
- id=2836;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.40576,80.67601,5573.6797};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3258;
+ type="I_G_Soldier_F";
+ atlOffset=0.78246307;
};
- class Item32
+ class Item13
{
- dataType="Marker";
- position[]={11478.669,10.774491,9485.6982};
- name="road_38";
- type="hd_arrow";
- id=2837;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={968.21826,80.52401,5576.0107};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3259;
+ type="I_G_Soldier_F";
+ atlOffset=0.67633057;
};
- class Item33
+ class Item14
{
- dataType="Marker";
- position[]={9315.3057,38.280392,10761.403};
- name="road_4";
- type="hd_arrow";
- id=2803;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={970.8833,81.13356,5564.3809};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3260;
+ type="I_G_Soldier_AR_F";
+ atlOffset=1.0090256;
};
- class Item34
+ class Item15
{
- dataType="Marker";
- position[]={8901.9717,20.449211,11258.684};
- name="road_5";
- type="hd_arrow";
- id=2804;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={971.04541,81.138344,5566.8208};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3261;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.91348267;
};
- class Item35
+ class Item16
{
- dataType="Marker";
- position[]={8422.9395,4.7527308,11778.245};
- name="road_6";
- type="hd_arrow";
- id=2805;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={970.64502,81.057266,5569.2358};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3262;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.8175354;
};
- class Item36
+ class Item17
{
- dataType="Marker";
- position[]={8359.248,40.714165,12348.514};
- name="road_7";
- type="hd_arrow";
- id=2806;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={970.62158,80.957275,5571.3848};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3263;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.70054626;
};
- class Item37
+ class Item18
{
- dataType="Marker";
- position[]={7264.4912,3.9998169,11407.471};
- name="road_8";
- type="hd_arrow";
- id=2807;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={970.42139,80.809837,5573.626};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3264;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.56147766;
};
- class Item38
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={970.33447,80.656685,5576.085};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3265;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.42988586;
+ };
+ class Item20
{
- dataType="Marker";
- position[]={6449.2734,4.915637,10981.103};
- name="road_9";
- type="hd_arrow";
- id=2808;
- atlOffset=-0.00018310547;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.97217,81.320419,5564.4604};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3266;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.88265228;
};
- class Item39
+ class Item21
{
- dataType="Marker";
- position[]={4479.562,59.393002,10465.873};
- name="spawnPoint";
- type="hd_start";
- id=2795;
- atlOffset=-0.00026702881;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.84229,81.299507,5566.7783};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3267;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.79734802;
};
- class Item40
+ class Item22
{
- dataType="Marker";
- position[]={6412.7114,216.80989,3918.6729};
- name="spawnPoint_1";
- type="hd_start";
- id=3242;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.71826,81.204926,5569.5225};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3268;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.64067841;
};
- class Item41
+ class Item23
{
- dataType="Marker";
- position[]={7985.749,148.04671,9836.4512};
- name="spawnPoint_2";
- type="hd_start";
- id=3243;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.54443,81.073097,5571.5313};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3269;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.51522064;
};
- class Item42
+ class Item24
{
- dataType="Marker";
- position[]={11463.902,7.2081103,8968.9775};
- name="spawnPoint_3";
- type="hd_start";
- id=3244;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.4751,80.937569,5573.7158};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3270;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.35932922;
};
- };
- id=3193;
- atlOffset=23.501625;
- };
- class Item783
- {
- dataType="Layer";
- name="SeaAttackSpawnPoints";
- class Entities
- {
- items=8;
- class Item0
+ class Item25
{
- dataType="Marker";
- position[]={-931,218.60742,13144.625};
- name="seaAttackSpawn";
- type="mil_ambush";
- id=2878;
- atlOffset=-1.4444122;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={972.36963,80.781242,5576.2065};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3271;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.23212433;
};
- class Item1
+ class Item26
{
- dataType="Marker";
- position[]={-1348.7396,72.563736,6363.9351};
- name="seaAttackSpawn_1";
- type="mil_ambush";
- id=2879;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.49951,81.321732,5564.5381};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3272;
+ type="I_G_medic_F";
+ atlOffset=0.64479828;
};
- class Item2
+ class Item27
{
- dataType="Marker";
- position[]={-1065.1031,354.63818,-483.08258};
- name="seaAttackSpawn_2";
- type="mil_ambush";
- id=2880;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.32373,81.313004,5566.8179};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3273;
+ type="I_G_medic_F";
+ atlOffset=0.57946014;
};
- class Item3
+ class Item28
{
- dataType="Marker";
- position[]={6658.5327,280.2598,-897.39532};
- name="seaAttackSpawn_3";
- type="mil_ambush";
- id=2881;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.28174,81.217323,5569.6895};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3274;
+ type="I_G_medic_F";
+ atlOffset=0.40799713;
};
- class Item4
+ class Item29
{
- dataType="Marker";
- position[]={13574.896,130.17221,-810.16998};
- name="seaAttackSpawn_4";
- type="mil_ambush";
- id=2882;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.19385,81.108696,5571.4961};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3275;
+ type="I_G_medic_F";
+ atlOffset=0.28740692;
};
- class Item5
+ class Item30
{
- dataType="Marker";
- position[]={14229.441,111.76187,6385.7412};
- name="seaAttackSpawn_5";
- type="mil_ambush";
- id=2883;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.01025,80.966675,5573.8555};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3276;
+ type="I_G_medic_F";
+ atlOffset=0.14078522;
};
- class Item6
+ class Item31
{
- dataType="Marker";
- position[]={13814.898,15.896471,13080.119};
- name="seaAttackSpawn_6";
- type="mil_ambush";
- id=2884;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={974.021,80.822105,5576.2661};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3277;
+ type="I_G_medic_F";
+ atlOffset=0.0065917969;
};
- class Item7
+ class Item32
{
- dataType="Marker";
- position[]={6331.2607,69.274628,13603.458};
- name="seaAttackSpawn_7";
- type="mil_ambush";
- id=2885;
- atlOffset=-0.00039672852;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={976.30127,81.318184,5564.7031};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3278;
+ type="I_G_engineer_F";
+ atlOffset=0.36595917;
};
- };
- id=3194;
- atlOffset=54.222801;
- };
- class Item784
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3991.604,71.936157,10271.789};
- angles[]={0,2.3312404,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=3195;
- type="Land_TentHangar_V1_F";
- atlOffset=7.6293945e-006;
- };
- class Item785
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3970.439,71.958878,10250.249};
- angles[]={0,2.3312404,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=3196;
- type="Land_TentHangar_V1_F";
- };
- class Item786
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3949.125,72.163177,10228.5};
- angles[]={0,2.3312404,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=3197;
- type="Land_TentHangar_V1_F";
- };
- class Item787
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4111.2378,68.343857,10388.865};
- angles[]={0,5.4486198,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3198;
- type="Land_HelipadSquare_F";
- atlOffset=8.392334e-005;
- };
- class Item788
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4148.8345,68.366928,10428.553};
- angles[]={0,5.4486198,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3199;
- type="Land_HelipadSquare_F";
- atlOffset=0.00024414063;
- };
- class Item789
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={4225.417,68.378044,10507.549};
- angles[]={0,5.4486198,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=3200;
- type="Land_HelipadSquare_F";
- atlOffset=0.074050903;
- };
- class Item790
- {
- dataType="Layer";
- name="Basics";
- class Entities
- {
- items=6;
- class Item0
+ class Item33
{
- dataType="Marker";
- position[]={14583.024,-0.016000001,12800.195};
- name="CSAT_carrier";
- type="flag_CSAT";
- id=2887;
- atlOffset=2.9620171;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={976.32471,81.31781,5567.0034};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3279;
+ type="I_G_engineer_F";
+ atlOffset=0.27748108;
};
- class Item1
+ class Item34
{
- dataType="Marker";
- position[]={245.15363,390.56497,737.99121};
- name="respawn_west";
- type="flag_CTRG";
- id=175;
- atlOffset=4.0483093;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={976.08252,81.215408,5569.7935};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3280;
+ type="I_G_engineer_F";
+ atlOffset=0.13031006;
};
- class Item2
+ class Item35
{
- dataType="Marker";
- position[]={-1704,-0.66315949,7956.125};
- name="NATO_carrier";
- type="flag_NATO";
- id=2886;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={975.82764,81.097946,5571.7412};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3281;
+ type="I_G_engineer_F";
+ atlOffset=0.022331238;
};
- class Item3
+ class Item36
{
- dataType="Marker";
- position[]={953.14001,78.643997,5568.0278};
- name="Synd_HQ";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorPink";
- a=50;
- b=50;
- id=78;
- atlOffset=1.603363;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={975.63232,80.963272,5573.9775};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3282;
+ type="I_G_engineer_F";
+ atlOffset=-0.11579895;
};
- class Item4
+ class Item37
{
- dataType="Marker";
- position[]={1388.8798,263.23926,225.21986};
- name="respawn_east";
- type="flag_Viper";
- id=183;
- atlOffset=5.421051;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={975.52783,80.814873,5576.4468};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=3283;
+ type="I_G_engineer_F";
+ atlOffset=-0.25114441;
};
- class Item5
+ };
+ class Attributes
+ {
+ };
+ id=3245;
+ atlOffset=2.2093887;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={954.47308,2.7037606e+012,5570.207};
- name="respawn_guerrila";
- text="Your Headquarters";
- type="hd_flag";
- colorName="ColorGUER";
- id=79;
- atlOffset=2.7037606e+012;
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
};
+ nAttributes=1;
};
- id=3207;
- atlOffset=1.3518803e+012;
};
- class Item791
+ class Item769
{
dataType="Object";
class PositionInfo
{
- position[]={8884.75,138.59959,6588.75};
- angles[]={0,1.0895481,0};
+ position[]={8904.125,139.94028,6548.25};
+ angles[]={0,4.224834,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3228;
- type="Land_HelipadCircle_F";
+ id=3284;
+ type="CamoNet_OPFOR_F";
};
- class Item792
+ class Item770
{
dataType="Object";
class PositionInfo
{
- position[]={11094.75,186.125,2503.875};
- angles[]={0,1.4552404,0};
+ position[]={8926.625,139.86855,6559.125};
+ angles[]={0,1.1843517,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3229;
- type="Land_HelipadCircle_F";
+ id=3285;
+ type="CamoNet_OPFOR_open_F";
};
- class Item793
+ class Item771
{
dataType="Object";
class PositionInfo
{
- position[]={11366.875,175.125,4256.25};
- angles[]={0,2.7159262,0};
+ position[]={8948.375,139.85318,6568.375};
+ angles[]={0,1.1212085,0};
};
side="Empty";
+ flags=4;
class Attributes
{
};
- id=3230;
- type="Land_HelipadCircle_F";
- atlOffset=1.8399506;
+ id=3286;
+ type="CamoNet_OPFOR_F";
};
- class Item794
+ class Item772
{
dataType="Object";
class PositionInfo
{
- position[]={7347.75,117.04,2613.375};
- angles[]={0,1.6257827,0};
+ position[]={11093.375,186.39807,2472};
+ angles[]={0,2.9576545,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3232;
- type="Land_HelipadCircle_F";
+ id=3287;
+ type="CamoNet_OPFOR_open_F";
};
- class Item795
+ class Item773
{
dataType="Object";
class PositionInfo
{
- position[]={4923.125,354.16,2122.625};
- angles[]={0,5.8519688,0};
+ position[]={11119.473,185.43359,2458.3208};
+ angles[]={0,2.9576545,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3233;
- type="Land_HelipadCircle_F";
+ id=3288;
+ type="CamoNet_OPFOR_open_F";
+ atlOffset=3.0517578e-005;
};
- class Item796
+ class Item774
{
dataType="Object";
class PositionInfo
{
- position[]={4490.625,111.46,4800.25};
- angles[]={0,1.5873392,0};
+ position[]={7806.8916,151.14426,9752.0244};
+ angles[]={0.012798273,0,0.033588443};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3234;
- type="Land_HelipadCircle_F";
+ id=3289;
+ type="CamoNet_OPFOR_open_F";
+ atlOffset=0.00076293945;
};
- class Item797
+ class Item775
{
dataType="Object";
class PositionInfo
{
- position[]={4497.25,116.365,4833.125};
- angles[]={0,4.0228968,0};
+ position[]={7891.25,151.13785,9769.375};
+ angles[]={0.012798273,0,0.033588443};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
};
- id=3235;
- type="Land_Cargo_Patrol_V2_F";
+ id=3290;
+ type="CamoNet_OPFOR_open_F";
};
- class Item798
+ class Item776
{
dataType="Object";
class PositionInfo
{
- position[]={2052.625,53.279999,7248};
- angles[]={0,6.2779412,0};
+ position[]={8030.125,136.17107,9659.125};
+ angles[]={0,3.9002712,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3236;
- type="Land_HelipadCircle_F";
+ id=3291;
+ type="CamoNet_OPFOR_open_F";
};
- class Item799
+ class Item777
{
dataType="Object";
class PositionInfo
{
- position[]={4248.7334,69.109573,10397.498};
- angles[]={0,0.82908094,0};
+ position[]={9858.875,181.96223,3853.375};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3238;
- type="Land_HelipadCircle_F";
- atlOffset=5.3405762e-005;
+ id=3293;
+ type="CamoNet_OPFOR_open_F";
};
- class Item800
+ class Item778
{
dataType="Object";
class PositionInfo
{
- position[]={6861.896,5.100287,11188.406};
- angles[]={0,3.9884927,0};
+ position[]={9859.8965,181.96785,3878.011};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3239;
- type="Land_HelipadCircle_F";
+ id=3294;
+ type="CamoNet_OPFOR_open_F";
};
- class Item801
+ class Item779
{
dataType="Object";
class PositionInfo
{
- position[]={11120.688,4.0151787,11453.879};
- angles[]={0,1.6087209,0};
+ position[]={9908.9727,182.10333,3959.6809};
+ angles[]={0,4.8142505,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3240;
- type="Land_HelipadCircle_F";
- atlOffset=2.8610229e-006;
+ id=3295;
+ type="CamoNet_OPFOR_open_F";
};
- class Item802
+ class Item780
{
dataType="Object";
class PositionInfo
{
- position[]={6424.3486,53.662663,8156.5156};
- angles[]={0,5.5036583,0};
+ position[]={9929.7227,182.13855,3958.2808};
+ angles[]={0,3.2094893,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=3241;
- type="Land_HelipadCircle_F";
+ id=3296;
+ type="CamoNet_OPFOR_open_F";
+ atlOffset=6.1035156e-005;
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -23162,7 +20172,7 @@ class Mission
class Item1
{
linkID=1;
- item0=93;
+ item0=3246;
item1=820;
class CustomData
{
@@ -23172,7 +20182,7 @@ class Mission
class Item2
{
linkID=2;
- item0=97;
+ item0=3247;
item1=820;
class CustomData
{
@@ -23182,7 +20192,7 @@ class Mission
class Item3
{
linkID=3;
- item0=98;
+ item0=3248;
item1=820;
class CustomData
{
@@ -23192,7 +20202,7 @@ class Mission
class Item4
{
linkID=4;
- item0=104;
+ item0=3249;
item1=820;
class CustomData
{
@@ -23202,7 +20212,7 @@ class Mission
class Item5
{
linkID=5;
- item0=120;
+ item0=3250;
item1=820;
class CustomData
{
@@ -23212,7 +20222,7 @@ class Mission
class Item6
{
linkID=6;
- item0=121;
+ item0=3251;
item1=820;
class CustomData
{
@@ -23222,7 +20232,7 @@ class Mission
class Item7
{
linkID=7;
- item0=127;
+ item0=3252;
item1=820;
class CustomData
{
@@ -23232,7 +20242,7 @@ class Mission
class Item8
{
linkID=8;
- item0=133;
+ item0=3253;
item1=820;
class CustomData
{
@@ -23242,7 +20252,7 @@ class Mission
class Item9
{
linkID=9;
- item0=139;
+ item0=3254;
item1=820;
class CustomData
{
@@ -23252,7 +20262,7 @@ class Mission
class Item10
{
linkID=10;
- item0=145;
+ item0=3255;
item1=820;
class CustomData
{
@@ -23262,7 +20272,7 @@ class Mission
class Item11
{
linkID=11;
- item0=151;
+ item0=3256;
item1=820;
class CustomData
{
@@ -23272,7 +20282,7 @@ class Mission
class Item12
{
linkID=12;
- item0=100;
+ item0=3257;
item1=820;
class CustomData
{
@@ -23282,7 +20292,7 @@ class Mission
class Item13
{
linkID=13;
- item0=106;
+ item0=3258;
item1=820;
class CustomData
{
@@ -23292,7 +20302,7 @@ class Mission
class Item14
{
linkID=14;
- item0=111;
+ item0=3259;
item1=820;
class CustomData
{
@@ -23302,7 +20312,7 @@ class Mission
class Item15
{
linkID=15;
- item0=116;
+ item0=3260;
item1=820;
class CustomData
{
@@ -23312,7 +20322,7 @@ class Mission
class Item16
{
linkID=16;
- item0=123;
+ item0=3261;
item1=820;
class CustomData
{
@@ -23322,7 +20332,7 @@ class Mission
class Item17
{
linkID=17;
- item0=129;
+ item0=3262;
item1=820;
class CustomData
{
@@ -23332,7 +20342,7 @@ class Mission
class Item18
{
linkID=18;
- item0=135;
+ item0=3263;
item1=820;
class CustomData
{
@@ -23342,7 +20352,7 @@ class Mission
class Item19
{
linkID=19;
- item0=141;
+ item0=3264;
item1=820;
class CustomData
{
@@ -23352,7 +20362,7 @@ class Mission
class Item20
{
linkID=20;
- item0=147;
+ item0=3265;
item1=820;
class CustomData
{
@@ -23362,7 +20372,7 @@ class Mission
class Item21
{
linkID=21;
- item0=152;
+ item0=3266;
item1=820;
class CustomData
{
@@ -23372,7 +20382,7 @@ class Mission
class Item22
{
linkID=22;
- item0=101;
+ item0=3267;
item1=820;
class CustomData
{
@@ -23382,7 +20392,7 @@ class Mission
class Item23
{
linkID=23;
- item0=107;
+ item0=3268;
item1=820;
class CustomData
{
@@ -23392,7 +20402,7 @@ class Mission
class Item24
{
linkID=24;
- item0=112;
+ item0=3269;
item1=820;
class CustomData
{
@@ -23402,7 +20412,7 @@ class Mission
class Item25
{
linkID=25;
- item0=117;
+ item0=3270;
item1=820;
class CustomData
{
@@ -23412,7 +20422,7 @@ class Mission
class Item26
{
linkID=26;
- item0=124;
+ item0=3271;
item1=820;
class CustomData
{
@@ -23422,7 +20432,7 @@ class Mission
class Item27
{
linkID=27;
- item0=130;
+ item0=3272;
item1=820;
class CustomData
{
@@ -23432,7 +20442,7 @@ class Mission
class Item28
{
linkID=28;
- item0=136;
+ item0=3273;
item1=820;
class CustomData
{
@@ -23442,7 +20452,7 @@ class Mission
class Item29
{
linkID=29;
- item0=142;
+ item0=3274;
item1=820;
class CustomData
{
@@ -23452,7 +20462,7 @@ class Mission
class Item30
{
linkID=30;
- item0=148;
+ item0=3275;
item1=820;
class CustomData
{
@@ -23462,7 +20472,7 @@ class Mission
class Item31
{
linkID=31;
- item0=153;
+ item0=3276;
item1=820;
class CustomData
{
@@ -23472,7 +20482,7 @@ class Mission
class Item32
{
linkID=32;
- item0=102;
+ item0=3277;
item1=820;
class CustomData
{
@@ -23482,7 +20492,7 @@ class Mission
class Item33
{
linkID=33;
- item0=108;
+ item0=3278;
item1=820;
class CustomData
{
@@ -23492,7 +20502,7 @@ class Mission
class Item34
{
linkID=34;
- item0=113;
+ item0=3279;
item1=820;
class CustomData
{
@@ -23502,7 +20512,7 @@ class Mission
class Item35
{
linkID=35;
- item0=118;
+ item0=3280;
item1=820;
class CustomData
{
@@ -23512,7 +20522,7 @@ class Mission
class Item36
{
linkID=36;
- item0=125;
+ item0=3281;
item1=820;
class CustomData
{
@@ -23522,7 +20532,7 @@ class Mission
class Item37
{
linkID=37;
- item0=131;
+ item0=3282;
item1=820;
class CustomData
{
@@ -23532,227 +20542,7 @@ class Mission
class Item38
{
linkID=38;
- item0=137;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=143;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=149;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=154;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=103;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=109;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=114;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=119;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=126;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=132;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=138;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=144;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=150;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=99;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=105;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=110;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=115;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=122;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=128;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=134;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=140;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=146;
- item1=820;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=155;
+ item0=3283;
item1=820;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Malden.Malden/mission.sqm b/Map-Templates/Antistasi-Malden.Malden/mission.sqm
index b0a9287e5f..40f469924e 100755
--- a/Map-Templates/Antistasi-Malden.Malden/mission.sqm
+++ b/Map-Templates/Antistasi-Malden.Malden/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1030;
class ItemIDProvider
{
- nextID=8768;
+ nextID=8817;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=869;
+ nextID=1097;
};
class Camera
{
- pos[]={9683.874,332.13535,3695.8391};
- dir[]={0,-0.70710683,0.70710683};
- up[]={0,0.70710677,0.70710677};
- aside[]={0.99999994,0,0};
+ pos[]={7300.5835,369.31461,6703.7324};
+ dir[]={-0.6626538,-0.74134761,0.10644198};
+ up[]={-0.73197031,0.67111444,0.11757592};
+ aside[]={0.15859811,-1.658118e-007,0.98735857};
};
};
binarizationWanted=0;
@@ -37,7 +37,6 @@ addons[]=
"A3_Structures_F_Exp_Military_Flags",
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F",
- "A3_Weapons_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Modules_F_Curator_Curator",
"A3_Structures_F_Civ_Camping",
@@ -66,20 +65,18 @@ addons[]=
"A3_Structures_F_Heli_Furniture",
"A3_Structures_F_Ind_AirPort",
"A3_Structures_F_Mil_TentHangar",
- "A3_Structures_F_Enoch_Military_Camps",
- "A3_Structures_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Heli_Ind_Machines",
- "A3_Props_F_Orange_Humanitarian_Camps",
"A3_Structures_F_Enoch_Military_Radar",
"A3_Supplies_F_Heli_Bladders",
"A3_Structures_F_Exp_Military_ContainerBases",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
class List
{
- items=19;
+ items=17;
class Item0
{
className="A3_Ui_F";
@@ -193,20 +190,6 @@ class AddonsMetaData
url="https://www.arma3.com";
};
class Item16
- {
- className="A3_Structures_F_Orange";
- name="Arma 3 Orange - Buildings and Structures";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item17
- {
- className="A3_Props_F_Orange";
- name="Arma 3 Orange - Decorative and Mission Objects";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item18
{
className="A3_Supplies_F_Heli";
name="Arma 3 Helicopters - Ammoboxes and Supplies";
@@ -222,20 +205,15 @@ class Mission
{
briefingName=$STR_antistasi_mission_info_malden_mapname_text;
resistanceWest=0;
- startWind=0.1;
- forecastWind=0.1;
- forecastWaves=0.1;
year=2035;
month=6;
day=1;
hour=10;
minute=0;
- startFogDecay=0.0049333;
- forecastFogDecay=0.0049333;
};
class Entities
{
- items=860;
+ items=845;
class Item0
{
dataType="Marker";
@@ -646,7 +624,7 @@ class Mission
class Attributes
{
rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
name="pvp_blue_1";
isPlayable=1;
};
@@ -708,7 +686,7 @@ class Mission
{
skill=0.44999999;
rank="CORPORAL";
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
name="pvp_blue_4";
isPlayable=1;
};
@@ -769,7 +747,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
name="pvp_blue_2";
isPlayable=1;
};
@@ -830,7 +808,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
name="pvp_blue_3";
isPlayable=1;
};
@@ -891,7 +869,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
name="pvp_blue_5";
isPlayable=1;
};
@@ -952,7 +930,7 @@ class Mission
class Attributes
{
skill=0.40000001;
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
name="pvp_blue_6";
isPlayable=1;
};
@@ -1034,7 +1012,7 @@ class Mission
flags=7;
class Attributes
{
- init="groupPlayersCSAT = group this;this setVariable [""pvp"",true]";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
name="pvp_red_1";
isPlayable=1;
};
@@ -1094,7 +1072,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
name="pvp_red_2";
isPlayable=1;
};
@@ -1154,7 +1132,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
name="pvp_red_4";
isPlayable=1;
};
@@ -1214,7 +1192,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
name="pvp_red_6";
isPlayable=1;
};
@@ -1275,7 +1253,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
name="pvp_red_3";
isPlayable=1;
};
@@ -1336,7 +1314,7 @@ class Mission
flags=5;
class Attributes
{
- init="this setVariable [""pvp"",true]";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
name="pvp_red_5";
isPlayable=1;
};
@@ -1664,29 +1642,22 @@ class Mission
side="Independent";
class Entities
{
- items=25;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={8258.625,11.349237,5971.1748};
- angles[]={6.2136974,0,0.041575778};
+ position[]={8252.75,11.284647,5974.7998};
+ angles[]={0.087773547,2.1016905,0.041577213};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=451;
+ id=453;
type="I_G_officer_F";
class CustomAttributes
{
@@ -1705,7 +1676,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -1728,36 +1699,10 @@ class Mission
};
};
};
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8273.625,12.233256,5973.7998};
- angles[]={0.0095994528,6.2412972,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=456;
- type="I_G_Soldier_AR_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute2
{
- property="speaker";
- expression="_this setspeaker _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -1769,1823 +1714,219 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="";
};
};
};
- class Attribute1
+ nAttributes=3;
+ };
+ };
+ };
+ class Attributes
+ {
+ };
+ id=452;
+ };
+ class Item54
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8255.8125,12.048439,5977.8125};
+ angles[]={0.064709939,0,0.064709015};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=514;
+ type="MapBoard_seismic_F";
+ atlOffset=-0.0023269653;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item2
+ nAttributes=1;
+ };
+ };
+ class Item55
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8260.125,14.980715,5979.75};
+ angles[]={0.064709939,0,6.2384152};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=515;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8276.625,12.35534,5974.0498};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- description="AT Launcher";
- isPlayable=1;
- class Inventory
+ class data
{
- map="ItemMap";
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
};
};
- id=457;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
+ };
+ nAttributes=1;
+ };
+ };
+ class Item56
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8252.4082,11.822508,5964.3154};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=516;
+ type="HeadlessClient_F";
+ atlOffset=0.13149166;
+ };
+ class Item57
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8254.2559,11.813785,5963.3213};
+ angles[]={6.2818413,0,6.2431998};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=517;
+ type="HeadlessClient_F";
+ atlOffset=0.12053108;
+ };
+ class Item58
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8281.75,12.3767,5965.625};
+ };
+ id=521;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
+ "STRING"
};
};
+ value="#adminLogged";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item3
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8279.6777,11.9591,5973.6211};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=458;
- type="I_G_medic_F";
- atlOffset=-0.40356541;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8282.5527,11.965999,5973.7461};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=459;
- type="I_G_engineer_F";
- atlOffset=-0.40356636;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8285.4258,11.897231,5974.0918};
- angles[]={6.2791886,0,6.2208662};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=460;
- type="I_G_Soldier_GL_F";
- atlOffset=-0.47922993;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "STRING"
};
};
+ value="";
};
- nAttributes=2;
};
};
- class Item6
+ class Attribute3
{
- dataType="Object";
- class PositionInfo
- {
- position[]={8271.125,12.009743,5973.6748};
- angles[]={0.064709939,0,6.2384152};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=461;
- type="I_G_officer_F";
- class CustomAttributes
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "SCALAR"
};
};
- };
- nAttributes=2;
- };
- };
- class Item7
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8273.5215,12.213982,5976.5947};
- angles[]={0.0095994528,6.2412972,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=462;
- type="I_G_Soldier_AR_F";
- atlOffset=0.05105114;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item8
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8276.5225,12.336002,5976.8447};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=463;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.088599205;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item9
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8279.5742,11.939761,5976.416};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=464;
- type="I_G_medic_F";
- atlOffset=-0.34069252;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8282.4492,11.965801,5976.541};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=465;
- type="I_G_engineer_F";
- atlOffset=-0.31404686;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item11
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8285.3223,11.914836,5976.8857};
- angles[]={6.2791886,0,6.2208662};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=466;
- type="I_G_Soldier_GL_F";
- atlOffset=-0.3512373;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8271.0215,11.966632,5976.4697};
- angles[]={0.0095994528,0,0.010398259};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=467;
- type="I_G_officer_F";
- atlOffset=0.021665573;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8276.5225,12.307196,5979.8457};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=468;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.23985386;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8279.5215,12.33248,5979.4707};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=469;
- type="I_G_medic_F";
- atlOffset=0.23544121;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8282.4492,11.977805,5979.542};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=470;
- type="I_G_engineer_F";
- atlOffset=-0.12198162;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8285.3223,11.926839,5979.8867};
- angles[]={6.2791886,0,6.2208662};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=471;
- type="I_G_Soldier_GL_F";
- atlOffset=-0.1995821;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8271.0215,11.937826,5979.4707};
- angles[]={0.0095994528,0,0.010398259};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=472;
- type="I_G_officer_F";
- atlOffset=0.10945988;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8276.4189,12.30667,5982.4336};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=473;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.39484882;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8279.418,12.348971,5982.0576};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=474;
- type="I_G_medic_F";
- atlOffset=0.40738583;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8282.3457,11.994295,5982.1289};
- angles[]={6.2791886,0,6.2240543};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=475;
- type="I_G_engineer_F";
- atlOffset=0.020709991;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8285.2188,11.943662,5982.4736};
- angles[]={6.2791886,0,6.2208662};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=476;
- type="I_G_Soldier_GL_F";
- atlOffset=-0.065043449;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8270.918,11.911911,5982.0576};
- angles[]={0.0095994528,0,0.010398259};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=477;
- type="I_G_officer_F";
- atlOffset=0.24547291;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8273.6211,12.176786,5979.7109};
- angles[]={0.0095994528,6.1574922,6.2105141};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=478;
- type="I_G_Soldier_AR_F";
- atlOffset=0.19440269;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8273.7148,12.14507,5982.2979};
- angles[]={0.0095994528,0,6.2105141};
- };
- side="Independent";
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=479;
- type="I_G_Soldier_AR_F";
- atlOffset=0.31180954;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=450;
- };
- class Item54
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8252.75,11.284647,5974.7998};
- angles[]={0.087773547,2.1016905,0.041577213};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=453;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=452;
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8255.8125,12.048439,5977.8125};
- angles[]={0.064709939,0,0.064709015};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=514;
- type="MapBoard_seismic_F";
- atlOffset=-0.0023269653;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8260.125,14.980715,5979.75};
- angles[]={0.064709939,0,6.2384152};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=515;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item57
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8252.4082,11.822508,5964.3154};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_1";
- isPlayable=1;
- id=516;
- type="HeadlessClient_F";
- atlOffset=0.13149166;
- };
- class Item58
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8254.2559,11.813785,5963.3213};
- angles[]={6.2818413,0,6.2431998};
- };
- name="hc_2";
- isPlayable=1;
- id=517;
- type="HeadlessClient_F";
- atlOffset=0.12053108;
- };
- class Item59
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8281.75,12.3767,5965.625};
- };
- id=521;
- type="ModuleCurator_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
+ value=3;
};
};
};
nAttributes=4;
};
};
- class Item60
+ class Item59
{
dataType="Marker";
position[]={5459.8188,4.5114121,11656.509};
@@ -3594,7 +1935,7 @@ class Mission
id=525;
atlOffset=10.4767;
};
- class Item61
+ class Item60
{
dataType="Marker";
position[]={899.90588,-2.0057058,11832.569};
@@ -3603,7 +1944,7 @@ class Mission
id=526;
atlOffset=10.4767;
};
- class Item62
+ class Item61
{
dataType="Marker";
position[]={3027.8069,2.2266998,8529.0439};
@@ -3612,7 +1953,7 @@ class Mission
id=527;
atlOffset=10.4767;
};
- class Item63
+ class Item62
{
dataType="Marker";
position[]={978.70819,-0.040159225,702.729};
@@ -3621,7 +1962,7 @@ class Mission
id=528;
atlOffset=10.4767;
};
- class Item64
+ class Item63
{
dataType="Marker";
position[]={3560.2771,-6.8308105,3182.5996};
@@ -3630,7 +1971,7 @@ class Mission
id=529;
atlOffset=10.4767;
};
- class Item65
+ class Item64
{
dataType="Marker";
position[]={5749.25,-7.1310101,2344.25};
@@ -3638,7 +1979,7 @@ class Mission
type="Empty";
id=530;
};
- class Item66
+ class Item65
{
dataType="Marker";
position[]={7620.25,-8.875,3294.125};
@@ -3647,7 +1988,7 @@ class Mission
id=532;
atlOffset=1.779027;
};
- class Item67
+ class Item66
{
dataType="Marker";
position[]={8522.9141,2.2630234,3814.4736};
@@ -3656,7 +1997,7 @@ class Mission
id=533;
atlOffset=10.4767;
};
- class Item68
+ class Item67
{
dataType="Marker";
position[]={9290.0762,-4.8026781,3807.6021};
@@ -3665,7 +2006,7 @@ class Mission
id=534;
atlOffset=10.4767;
};
- class Item69
+ class Item68
{
dataType="Marker";
position[]={3344.8081,97.235451,3924.2493};
@@ -3674,7 +2015,7 @@ class Mission
id=537;
atlOffset=-1.9511871;
};
- class Item70
+ class Item69
{
dataType="Marker";
position[]={3792.2085,54.855759,4022.9133};
@@ -3683,7 +2024,7 @@ class Mission
id=538;
atlOffset=-1.9511871;
};
- class Item71
+ class Item70
{
dataType="Marker";
position[]={3968.5962,62.769188,4546.5127};
@@ -3692,7 +2033,7 @@ class Mission
id=539;
atlOffset=-1.9511871;
};
- class Item72
+ class Item71
{
dataType="Marker";
position[]={4313.1338,34.167179,4250.2256};
@@ -3701,7 +2042,7 @@ class Mission
id=540;
atlOffset=-1.9511871;
};
- class Item73
+ class Item72
{
dataType="Marker";
position[]={5062.6729,58.106449,3772.0818};
@@ -3710,7 +2051,7 @@ class Mission
id=541;
atlOffset=-1.9511871;
};
- class Item74
+ class Item73
{
dataType="Marker";
position[]={5951.0396,52.085911,3526.146};
@@ -3719,7 +2060,7 @@ class Mission
id=542;
atlOffset=-1.9511871;
};
- class Item75
+ class Item74
{
dataType="Marker";
position[]={6805.5649,80.418816,3504.238};
@@ -3728,7 +2069,7 @@ class Mission
id=543;
atlOffset=-1.9511871;
};
- class Item76
+ class Item75
{
dataType="Marker";
position[]={7515.189,24.038086,3867.199};
@@ -3737,7 +2078,7 @@ class Mission
id=544;
atlOffset=-1.9962158;
};
- class Item77
+ class Item76
{
dataType="Marker";
position[]={7921.5635,33.903698,4095.3789};
@@ -3746,7 +2087,7 @@ class Mission
id=545;
atlOffset=-1.9511871;
};
- class Item78
+ class Item77
{
dataType="Marker";
position[]={7627.2896,28.220585,4787.7188};
@@ -3755,7 +2096,7 @@ class Mission
id=546;
atlOffset=-1.9511871;
};
- class Item79
+ class Item78
{
dataType="Marker";
position[]={7107.0107,71.474724,5913.645};
@@ -3764,7 +2105,7 @@ class Mission
id=547;
atlOffset=-1.9511871;
};
- class Item80
+ class Item79
{
dataType="Marker";
position[]={7030.9258,97.153801,6764.1006};
@@ -3773,7 +2114,7 @@ class Mission
id=548;
atlOffset=-1.9511871;
};
- class Item81
+ class Item80
{
dataType="Marker";
position[]={7243.9956,165.60881,7771.7681};
@@ -3782,7 +2123,7 @@ class Mission
id=549;
atlOffset=-1.9511871;
};
- class Item82
+ class Item81
{
dataType="Marker";
position[]={7294.104,85.09877,8842.1563};
@@ -3791,7 +2132,7 @@ class Mission
id=550;
atlOffset=-1.9511871;
};
- class Item83
+ class Item82
{
dataType="Marker";
position[]={6629.5889,191.49059,9293.9961};
@@ -3800,7 +2141,7 @@ class Mission
id=551;
atlOffset=-1.9511871;
};
- class Item84
+ class Item83
{
dataType="Marker";
position[]={8163.3667,28.222548,9480.6104};
@@ -3809,7 +2150,7 @@ class Mission
id=552;
atlOffset=-1.9511871;
};
- class Item85
+ class Item84
{
dataType="Marker";
position[]={7468.5342,80.622108,9119.1592};
@@ -3818,7 +2159,7 @@ class Mission
id=553;
atlOffset=-1.9511871;
};
- class Item86
+ class Item85
{
dataType="Marker";
position[]={5970.4902,189.11472,9280.1641};
@@ -3826,7 +2167,7 @@ class Mission
type="hd_arrow";
id=554;
};
- class Item87
+ class Item86
{
dataType="Marker";
position[]={5196.2578,343.00293,9170.8027};
@@ -3835,7 +2176,7 @@ class Mission
id=555;
atlOffset=-17.439423;
};
- class Item88
+ class Item87
{
dataType="Marker";
position[]={4860.9658,393.61743,8432.3506};
@@ -3844,7 +2185,7 @@ class Mission
id=556;
atlOffset=-1.9512024;
};
- class Item89
+ class Item88
{
dataType="Marker";
position[]={4922.2153,407.42645,7354.0083};
@@ -3853,7 +2194,7 @@ class Mission
id=557;
atlOffset=-1.9511719;
};
- class Item90
+ class Item89
{
dataType="Marker";
position[]={4174.2476,381.46332,6480.6943};
@@ -3862,7 +2203,7 @@ class Mission
id=558;
atlOffset=-1.9512024;
};
- class Item91
+ class Item90
{
dataType="Marker";
position[]={3058.4907,222.3761,6334.5635};
@@ -3871,7 +2212,7 @@ class Mission
id=559;
atlOffset=-1.9511871;
};
- class Item92
+ class Item91
{
dataType="Marker";
position[]={3375.7668,120.64616,5182.2998};
@@ -3880,7 +2221,7 @@ class Mission
id=560;
atlOffset=-1.9511871;
};
- class Item93
+ class Item92
{
dataType="Marker";
position[]={7808.6372,31.142761,9909.6582};
@@ -3889,7 +2230,7 @@ class Mission
id=561;
atlOffset=-1.9511871;
};
- class Item94
+ class Item93
{
dataType="Marker";
position[]={7443.7866,26.908813,10655.921};
@@ -3898,7 +2239,7 @@ class Mission
id=562;
atlOffset=-1.9511871;
};
- class Item95
+ class Item94
{
dataType="Marker";
position[]={6492.2104,88.4114,10943.818};
@@ -3907,7 +2248,7 @@ class Mission
id=563;
atlOffset=-1.9511871;
};
- class Item96
+ class Item95
{
dataType="Marker";
position[]={4225.5396,310.06995,7875.4868};
@@ -3916,7 +2257,7 @@ class Mission
id=564;
atlOffset=-1.9512024;
};
- class Item97
+ class Item96
{
dataType="Marker";
position[]={3584.8003,120.46836,8686.3906};
@@ -3925,7 +2266,7 @@ class Mission
id=565;
atlOffset=-1.9511871;
};
- class Item98
+ class Item97
{
dataType="Marker";
position[]={2216.0876,184.90233,2970.9983};
@@ -3934,7 +2275,7 @@ class Mission
id=566;
atlOffset=-1.9511871;
};
- class Item99
+ class Item98
{
dataType="Marker";
position[]={1652.4279,79.741798,1621.9436};
@@ -3943,7 +2284,7 @@ class Mission
id=567;
atlOffset=-1.9511871;
};
- class Item100
+ class Item99
{
dataType="Object";
class PositionInfo
@@ -3983,7 +2324,7 @@ class Mission
nAttributes=1;
};
};
- class Item101
+ class Item100
{
dataType="Object";
class PositionInfo
@@ -3995,12 +2336,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=927;
type="Land_HBarrier_5_F";
atlOffset=0.0089416504;
};
- class Item102
+ class Item101
{
dataType="Object";
class PositionInfo
@@ -4012,11 +2354,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=928;
type="Land_HBarrier_5_F";
};
- class Item103
+ class Item102
{
dataType="Object";
class PositionInfo
@@ -4028,12 +2371,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=929;
type="Land_HBarrier_5_F";
atlOffset=-3.0517578e-005;
};
- class Item104
+ class Item103
{
dataType="Object";
class PositionInfo
@@ -4045,11 +2389,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=930;
type="Land_HBarrier_5_F";
};
- class Item105
+ class Item104
{
dataType="Object";
class PositionInfo
@@ -4061,11 +2406,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=931;
type="Land_HBarrier_5_F";
};
- class Item106
+ class Item105
{
dataType="Object";
class PositionInfo
@@ -4077,11 +2423,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=932;
type="Land_HBarrier_5_F";
};
- class Item107
+ class Item106
{
dataType="Object";
class PositionInfo
@@ -4093,11 +2440,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=933;
type="Land_HBarrier_5_F";
};
- class Item108
+ class Item107
{
dataType="Object";
class PositionInfo
@@ -4109,11 +2457,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=934;
type="Land_HBarrier_5_F";
};
- class Item109
+ class Item108
{
dataType="Object";
class PositionInfo
@@ -4125,11 +2474,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=935;
type="Land_HBarrier_5_F";
};
- class Item110
+ class Item109
{
dataType="Object";
class PositionInfo
@@ -4141,11 +2491,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=936;
type="Land_HBarrier_5_F";
};
- class Item111
+ class Item110
{
dataType="Object";
class PositionInfo
@@ -4157,12 +2508,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=937;
type="Land_HBarrier_5_F";
atlOffset=-3.0517578e-005;
};
- class Item112
+ class Item111
{
dataType="Object";
class PositionInfo
@@ -4174,11 +2526,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=938;
type="Land_HBarrier_5_F";
};
- class Item113
+ class Item112
{
dataType="Object";
class PositionInfo
@@ -4190,11 +2543,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=939;
type="Land_HBarrier_5_F";
};
- class Item114
+ class Item113
{
dataType="Object";
class PositionInfo
@@ -4206,12 +2560,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=940;
type="Land_HBarrier_5_F";
atlOffset=0.008972168;
};
- class Item115
+ class Item114
{
dataType="Object";
class PositionInfo
@@ -4223,11 +2578,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=941;
type="Land_HBarrier_5_F";
};
- class Item116
+ class Item115
{
dataType="Object";
class PositionInfo
@@ -4239,11 +2595,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=942;
type="Land_HBarrier_5_F";
};
- class Item117
+ class Item116
{
dataType="Object";
class PositionInfo
@@ -4255,11 +2612,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=943;
type="Land_HBarrier_5_F";
};
- class Item118
+ class Item117
{
dataType="Object";
class PositionInfo
@@ -4271,12 +2629,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=944;
type="Land_HBarrier_5_F";
atlOffset=-3.0517578e-005;
};
- class Item119
+ class Item118
{
dataType="Object";
class PositionInfo
@@ -4288,11 +2647,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=946;
type="Land_HBarrier_5_F";
};
- class Item120
+ class Item119
{
dataType="Object";
class PositionInfo
@@ -4304,11 +2664,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=947;
type="Land_HBarrier_5_F";
};
- class Item121
+ class Item120
{
dataType="Object";
class PositionInfo
@@ -4320,12 +2681,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=948;
type="Land_HBarrier_5_F";
atlOffset=0.008972168;
};
- class Item122
+ class Item121
{
dataType="Object";
class PositionInfo
@@ -4337,11 +2699,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=949;
type="Land_HBarrier_5_F";
};
- class Item123
+ class Item122
{
dataType="Object";
class PositionInfo
@@ -4353,11 +2716,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=950;
type="Land_HBarrier_5_F";
};
- class Item124
+ class Item123
{
dataType="Object";
class PositionInfo
@@ -4369,11 +2733,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=951;
type="Land_HBarrier_5_F";
};
- class Item125
+ class Item124
{
dataType="Object";
class PositionInfo
@@ -4385,12 +2750,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=952;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item126
+ class Item125
{
dataType="Object";
class PositionInfo
@@ -4402,12 +2768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=953;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item127
+ class Item126
{
dataType="Object";
class PositionInfo
@@ -4419,12 +2786,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=954;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item128
+ class Item127
{
dataType="Object";
class PositionInfo
@@ -4436,12 +2804,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=955;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item129
+ class Item128
{
dataType="Object";
class PositionInfo
@@ -4453,11 +2822,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=956;
type="Land_HBarrier_5_F";
};
- class Item130
+ class Item129
{
dataType="Object";
class PositionInfo
@@ -4469,11 +2839,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=957;
type="Land_HBarrier_3_F";
};
- class Item131
+ class Item130
{
dataType="Object";
class PositionInfo
@@ -4485,12 +2856,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=958;
type="Land_HBarrier_3_F";
atlOffset=-3.0517578e-005;
};
- class Item132
+ class Item131
{
dataType="Object";
class PositionInfo
@@ -4502,11 +2874,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=960;
type="Land_HBarrier_3_F";
};
- class Item133
+ class Item132
{
dataType="Object";
class PositionInfo
@@ -4518,11 +2891,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=962;
type="Land_HBarrier_5_F";
};
- class Item134
+ class Item133
{
dataType="Object";
class PositionInfo
@@ -4538,7 +2912,7 @@ class Mission
id=963;
type="Land_Mil_WallBig_Corner_F";
};
- class Item135
+ class Item134
{
dataType="Object";
class PositionInfo
@@ -4554,7 +2928,7 @@ class Mission
id=964;
type="Land_Mil_WallBig_Corner_F";
};
- class Item136
+ class Item135
{
dataType="Object";
class PositionInfo
@@ -4570,7 +2944,7 @@ class Mission
id=965;
type="Land_Mil_WallBig_4m_F";
};
- class Item137
+ class Item136
{
dataType="Object";
class PositionInfo
@@ -4586,7 +2960,7 @@ class Mission
id=967;
type="Land_Mil_WallBig_4m_F";
};
- class Item138
+ class Item137
{
dataType="Object";
class PositionInfo
@@ -4603,7 +2977,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.0517578e-005;
};
- class Item139
+ class Item138
{
dataType="Object";
class PositionInfo
@@ -4620,7 +2994,7 @@ class Mission
type="Land_Mil_WallBig_Corner_F";
atlOffset=3.0517578e-005;
};
- class Item140
+ class Item139
{
dataType="Object";
class PositionInfo
@@ -4636,7 +3010,7 @@ class Mission
id=970;
type="Land_Mil_WallBig_Corner_F";
};
- class Item141
+ class Item140
{
dataType="Object";
class PositionInfo
@@ -4653,7 +3027,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.0517578e-005;
};
- class Item142
+ class Item141
{
dataType="Object";
class PositionInfo
@@ -4669,7 +3043,7 @@ class Mission
id=972;
type="Land_Cargo_Tower_V1_F";
};
- class Item143
+ class Item142
{
dataType="Object";
class PositionInfo
@@ -4685,7 +3059,7 @@ class Mission
id=973;
type="Land_Cargo_House_V1_F";
};
- class Item144
+ class Item143
{
dataType="Object";
class PositionInfo
@@ -4701,7 +3075,7 @@ class Mission
id=974;
type="Land_Cargo_House_V1_F";
};
- class Item145
+ class Item144
{
dataType="Object";
class PositionInfo
@@ -4717,7 +3091,7 @@ class Mission
id=975;
type="Land_Cargo_Patrol_V1_F";
};
- class Item146
+ class Item145
{
dataType="Object";
class PositionInfo
@@ -4729,12 +3103,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=976;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item147
+ class Item146
{
dataType="Object";
class PositionInfo
@@ -4746,12 +3121,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=977;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item148
+ class Item147
{
dataType="Object";
class PositionInfo
@@ -4763,11 +3139,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=978;
type="Land_HBarrier_5_F";
};
- class Item149
+ class Item148
{
dataType="Object";
class PositionInfo
@@ -4779,11 +3156,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=979;
type="Land_HBarrier_5_F";
};
- class Item150
+ class Item149
{
dataType="Object";
class PositionInfo
@@ -4795,11 +3173,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=980;
type="Land_HBarrier_5_F";
};
- class Item151
+ class Item150
{
dataType="Object";
class PositionInfo
@@ -4811,12 +3190,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=981;
type="Land_HBarrier_5_F";
atlOffset=-3.0517578e-005;
};
- class Item152
+ class Item151
{
dataType="Object";
class PositionInfo
@@ -4832,7 +3212,7 @@ class Mission
id=982;
type="Land_Cargo_Patrol_V1_F";
};
- class Item153
+ class Item152
{
dataType="Object";
class PositionInfo
@@ -4849,7 +3229,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=3.0517578e-005;
};
- class Item154
+ class Item153
{
dataType="Object";
class PositionInfo
@@ -4865,7 +3245,7 @@ class Mission
id=984;
type="Land_Cargo_Patrol_V1_F";
};
- class Item155
+ class Item154
{
dataType="Object";
class PositionInfo
@@ -4877,11 +3257,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=985;
type="Land_HBarrier_5_F";
};
- class Item156
+ class Item155
{
dataType="Object";
class PositionInfo
@@ -4893,11 +3274,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=986;
type="Land_HBarrier_5_F";
};
- class Item157
+ class Item156
{
dataType="Object";
class PositionInfo
@@ -4909,11 +3291,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=987;
type="Land_HBarrier_5_F";
};
- class Item158
+ class Item157
{
dataType="Object";
class PositionInfo
@@ -4925,11 +3308,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=988;
type="Land_HBarrier_5_F";
};
- class Item159
+ class Item158
{
dataType="Object";
class PositionInfo
@@ -4945,7 +3329,7 @@ class Mission
id=989;
type="Land_Cargo_House_V1_F";
};
- class Item160
+ class Item159
{
dataType="Object";
class PositionInfo
@@ -4961,7 +3345,7 @@ class Mission
id=990;
type="Land_Cargo_House_V1_F";
};
- class Item161
+ class Item160
{
dataType="Object";
class PositionInfo
@@ -4973,12 +3357,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1117;
type="Land_HBarrier_5_F";
atlOffset=0.0090026855;
};
- class Item162
+ class Item161
{
dataType="Object";
class PositionInfo
@@ -4990,11 +3375,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1118;
type="Land_HBarrier_5_F";
};
- class Item163
+ class Item162
{
dataType="Object";
class PositionInfo
@@ -5006,11 +3392,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1119;
type="Land_HBarrier_5_F";
};
- class Item164
+ class Item163
{
dataType="Object";
class PositionInfo
@@ -5022,11 +3409,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1120;
type="Land_HBarrier_5_F";
};
- class Item165
+ class Item164
{
dataType="Object";
class PositionInfo
@@ -5038,11 +3426,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1121;
type="Land_HBarrier_5_F";
};
- class Item166
+ class Item165
{
dataType="Object";
class PositionInfo
@@ -5054,11 +3443,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1122;
type="Land_HBarrier_5_F";
};
- class Item167
+ class Item166
{
dataType="Object";
class PositionInfo
@@ -5070,11 +3460,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1123;
type="Land_HBarrier_5_F";
};
- class Item168
+ class Item167
{
dataType="Object";
class PositionInfo
@@ -5086,11 +3477,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1124;
type="Land_HBarrier_5_F";
};
- class Item169
+ class Item168
{
dataType="Object";
class PositionInfo
@@ -5102,11 +3494,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1125;
type="Land_HBarrier_5_F";
};
- class Item170
+ class Item169
{
dataType="Object";
class PositionInfo
@@ -5118,11 +3511,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1126;
type="Land_HBarrier_5_F";
};
- class Item171
+ class Item170
{
dataType="Object";
class PositionInfo
@@ -5134,11 +3528,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1127;
type="Land_HBarrier_5_F";
};
- class Item172
+ class Item171
{
dataType="Object";
class PositionInfo
@@ -5150,12 +3545,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1128;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item173
+ class Item172
{
dataType="Object";
class PositionInfo
@@ -5167,12 +3563,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1129;
type="Land_HBarrier_5_F";
atlOffset=6.1035156e-005;
};
- class Item174
+ class Item173
{
dataType="Object";
class PositionInfo
@@ -5184,12 +3581,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1130;
type="Land_HBarrier_5_F";
atlOffset=0.0090026855;
};
- class Item175
+ class Item174
{
dataType="Object";
class PositionInfo
@@ -5201,12 +3599,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1131;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item176
+ class Item175
{
dataType="Object";
class PositionInfo
@@ -5218,12 +3617,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1132;
type="Land_HBarrier_5_F";
atlOffset=6.1035156e-005;
};
- class Item177
+ class Item176
{
dataType="Object";
class PositionInfo
@@ -5235,12 +3635,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1133;
type="Land_HBarrier_5_F";
atlOffset=6.1035156e-005;
};
- class Item178
+ class Item177
{
dataType="Object";
class PositionInfo
@@ -5252,12 +3653,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1134;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item179
+ class Item178
{
dataType="Object";
class PositionInfo
@@ -5269,12 +3671,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1135;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item180
+ class Item179
{
dataType="Object";
class PositionInfo
@@ -5286,12 +3689,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1136;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item181
+ class Item180
{
dataType="Object";
class PositionInfo
@@ -5303,12 +3707,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1137;
type="Land_HBarrier_5_F";
atlOffset=0.008972168;
};
- class Item182
+ class Item181
{
dataType="Object";
class PositionInfo
@@ -5320,12 +3725,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1138;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item183
+ class Item182
{
dataType="Object";
class PositionInfo
@@ -5337,12 +3743,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1139;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item184
+ class Item183
{
dataType="Object";
class PositionInfo
@@ -5354,12 +3761,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1140;
type="Land_HBarrier_5_F";
atlOffset=6.1035156e-005;
};
- class Item185
+ class Item184
{
dataType="Object";
class PositionInfo
@@ -5371,11 +3779,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1141;
type="Land_HBarrier_5_F";
};
- class Item186
+ class Item185
{
dataType="Object";
class PositionInfo
@@ -5387,12 +3796,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1142;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item187
+ class Item186
{
dataType="Object";
class PositionInfo
@@ -5404,12 +3814,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1143;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item188
+ class Item187
{
dataType="Object";
class PositionInfo
@@ -5421,11 +3832,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1144;
type="Land_HBarrier_5_F";
};
- class Item189
+ class Item188
{
dataType="Object";
class PositionInfo
@@ -5437,11 +3849,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1145;
type="Land_HBarrier_5_F";
};
- class Item190
+ class Item189
{
dataType="Object";
class PositionInfo
@@ -5453,12 +3866,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1146;
type="Land_HBarrier_3_F";
atlOffset=9.1552734e-005;
};
- class Item191
+ class Item190
{
dataType="Object";
class PositionInfo
@@ -5470,12 +3884,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1147;
type="Land_HBarrier_3_F";
atlOffset=9.1552734e-005;
};
- class Item192
+ class Item191
{
dataType="Object";
class PositionInfo
@@ -5487,12 +3902,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1148;
type="Land_HBarrier_3_F";
atlOffset=9.1552734e-005;
};
- class Item193
+ class Item192
{
dataType="Object";
class PositionInfo
@@ -5504,12 +3920,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1149;
type="Land_HBarrier_5_F";
atlOffset=9.1552734e-005;
};
- class Item194
+ class Item193
{
dataType="Object";
class PositionInfo
@@ -5525,7 +3942,7 @@ class Mission
id=1150;
type="Land_Mil_WallBig_Corner_F";
};
- class Item195
+ class Item194
{
dataType="Object";
class PositionInfo
@@ -5541,7 +3958,7 @@ class Mission
id=1151;
type="Land_Mil_WallBig_Corner_F";
};
- class Item196
+ class Item195
{
dataType="Object";
class PositionInfo
@@ -5557,7 +3974,7 @@ class Mission
id=1152;
type="Land_Mil_WallBig_4m_F";
};
- class Item197
+ class Item196
{
dataType="Object";
class PositionInfo
@@ -5573,7 +3990,7 @@ class Mission
id=1153;
type="Land_Mil_WallBig_4m_F";
};
- class Item198
+ class Item197
{
dataType="Object";
class PositionInfo
@@ -5590,7 +4007,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.0517578e-005;
};
- class Item199
+ class Item198
{
dataType="Object";
class PositionInfo
@@ -5606,7 +4023,7 @@ class Mission
id=1155;
type="Land_Mil_WallBig_Corner_F";
};
- class Item200
+ class Item199
{
dataType="Object";
class PositionInfo
@@ -5622,7 +4039,7 @@ class Mission
id=1156;
type="Land_Mil_WallBig_Corner_F";
};
- class Item201
+ class Item200
{
dataType="Object";
class PositionInfo
@@ -5639,7 +4056,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.0517578e-005;
};
- class Item202
+ class Item201
{
dataType="Object";
class PositionInfo
@@ -5655,7 +4072,7 @@ class Mission
id=1158;
type="Land_Cargo_Tower_V1_F";
};
- class Item203
+ class Item202
{
dataType="Object";
class PositionInfo
@@ -5671,7 +4088,7 @@ class Mission
id=1159;
type="Land_Cargo_House_V1_F";
};
- class Item204
+ class Item203
{
dataType="Object";
class PositionInfo
@@ -5687,7 +4104,7 @@ class Mission
id=1160;
type="Land_Cargo_House_V1_F";
};
- class Item205
+ class Item204
{
dataType="Object";
class PositionInfo
@@ -5703,7 +4120,7 @@ class Mission
id=1161;
type="Land_Cargo_Patrol_V1_F";
};
- class Item206
+ class Item205
{
dataType="Object";
class PositionInfo
@@ -5715,11 +4132,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1162;
type="Land_HBarrier_5_F";
};
- class Item207
+ class Item206
{
dataType="Object";
class PositionInfo
@@ -5731,11 +4149,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1163;
type="Land_HBarrier_5_F";
};
- class Item208
+ class Item207
{
dataType="Object";
class PositionInfo
@@ -5747,11 +4166,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1164;
type="Land_HBarrier_5_F";
};
- class Item209
+ class Item208
{
dataType="Object";
class PositionInfo
@@ -5763,11 +4183,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1165;
type="Land_HBarrier_5_F";
};
- class Item210
+ class Item209
{
dataType="Object";
class PositionInfo
@@ -5779,11 +4200,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1166;
type="Land_HBarrier_5_F";
};
- class Item211
+ class Item210
{
dataType="Object";
class PositionInfo
@@ -5795,11 +4217,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1167;
type="Land_HBarrier_5_F";
};
- class Item212
+ class Item211
{
dataType="Object";
class PositionInfo
@@ -5815,7 +4238,7 @@ class Mission
id=1168;
type="Land_Cargo_Patrol_V1_F";
};
- class Item213
+ class Item212
{
dataType="Object";
class PositionInfo
@@ -5831,7 +4254,7 @@ class Mission
id=1169;
type="Land_Cargo_Patrol_V1_F";
};
- class Item214
+ class Item213
{
dataType="Object";
class PositionInfo
@@ -5847,7 +4270,7 @@ class Mission
id=1170;
type="Land_Cargo_Patrol_V1_F";
};
- class Item215
+ class Item214
{
dataType="Object";
class PositionInfo
@@ -5859,11 +4282,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1171;
type="Land_HBarrier_5_F";
};
- class Item216
+ class Item215
{
dataType="Object";
class PositionInfo
@@ -5875,12 +4299,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1172;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item217
+ class Item216
{
dataType="Object";
class PositionInfo
@@ -5892,11 +4317,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1173;
type="Land_HBarrier_5_F";
};
- class Item218
+ class Item217
{
dataType="Object";
class PositionInfo
@@ -5908,11 +4334,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1174;
type="Land_HBarrier_5_F";
};
- class Item219
+ class Item218
{
dataType="Object";
class PositionInfo
@@ -5929,7 +4356,7 @@ class Mission
type="Land_Cargo_House_V1_F";
atlOffset=-3.0517578e-005;
};
- class Item220
+ class Item219
{
dataType="Object";
class PositionInfo
@@ -5945,7 +4372,7 @@ class Mission
id=1176;
type="Land_Cargo_House_V1_F";
};
- class Item221
+ class Item220
{
dataType="Object";
class PositionInfo
@@ -5957,12 +4384,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1238;
type="Land_HBarrier_5_F";
atlOffset=0.0089454651;
};
- class Item222
+ class Item221
{
dataType="Object";
class PositionInfo
@@ -5974,11 +4402,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1239;
type="Land_HBarrier_5_F";
};
- class Item223
+ class Item222
{
dataType="Object";
class PositionInfo
@@ -5990,11 +4419,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1240;
type="Land_HBarrier_5_F";
};
- class Item224
+ class Item223
{
dataType="Object";
class PositionInfo
@@ -6006,11 +4436,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1241;
type="Land_HBarrier_5_F";
};
- class Item225
+ class Item224
{
dataType="Object";
class PositionInfo
@@ -6022,11 +4453,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1242;
type="Land_HBarrier_5_F";
};
- class Item226
+ class Item225
{
dataType="Object";
class PositionInfo
@@ -6038,11 +4470,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1243;
type="Land_HBarrier_5_F";
};
- class Item227
+ class Item226
{
dataType="Object";
class PositionInfo
@@ -6054,11 +4487,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1244;
type="Land_HBarrier_5_F";
};
- class Item228
+ class Item227
{
dataType="Object";
class PositionInfo
@@ -6070,12 +4504,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1245;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-006;
};
- class Item229
+ class Item228
{
dataType="Object";
class PositionInfo
@@ -6087,11 +4522,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1246;
type="Land_HBarrier_5_F";
};
- class Item230
+ class Item229
{
dataType="Object";
class PositionInfo
@@ -6103,12 +4539,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1247;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item231
+ class Item230
{
dataType="Object";
class PositionInfo
@@ -6120,11 +4557,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1248;
type="Land_HBarrier_5_F";
};
- class Item232
+ class Item231
{
dataType="Object";
class PositionInfo
@@ -6136,12 +4574,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1249;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item233
+ class Item232
{
dataType="Object";
class PositionInfo
@@ -6153,12 +4592,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1250;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item234
+ class Item233
{
dataType="Object";
class PositionInfo
@@ -6170,12 +4610,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1251;
type="Land_HBarrier_5_F";
atlOffset=0.0089416504;
};
- class Item235
+ class Item234
{
dataType="Object";
class PositionInfo
@@ -6187,11 +4628,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1252;
type="Land_HBarrier_5_F";
};
- class Item236
+ class Item235
{
dataType="Object";
class PositionInfo
@@ -6203,11 +4645,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1253;
type="Land_HBarrier_5_F";
};
- class Item237
+ class Item236
{
dataType="Object";
class PositionInfo
@@ -6219,11 +4662,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1254;
type="Land_HBarrier_5_F";
};
- class Item238
+ class Item237
{
dataType="Object";
class PositionInfo
@@ -6235,11 +4679,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1255;
type="Land_HBarrier_5_F";
};
- class Item239
+ class Item238
{
dataType="Object";
class PositionInfo
@@ -6251,12 +4696,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1256;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item240
+ class Item239
{
dataType="Object";
class PositionInfo
@@ -6268,12 +4714,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1257;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item241
+ class Item240
{
dataType="Object";
class PositionInfo
@@ -6285,12 +4732,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1258;
type="Land_HBarrier_5_F";
atlOffset=0.0089187622;
};
- class Item242
+ class Item241
{
dataType="Object";
class PositionInfo
@@ -6302,12 +4750,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1259;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-006;
};
- class Item243
+ class Item242
{
dataType="Object";
class PositionInfo
@@ -6319,12 +4768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1260;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-006;
};
- class Item244
+ class Item243
{
dataType="Object";
class PositionInfo
@@ -6336,11 +4786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1261;
type="Land_HBarrier_5_F";
};
- class Item245
+ class Item244
{
dataType="Object";
class PositionInfo
@@ -6352,11 +4803,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1262;
type="Land_HBarrier_5_F";
};
- class Item246
+ class Item245
{
dataType="Object";
class PositionInfo
@@ -6368,11 +4820,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1263;
type="Land_HBarrier_5_F";
};
- class Item247
+ class Item246
{
dataType="Object";
class PositionInfo
@@ -6384,11 +4837,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1264;
type="Land_HBarrier_5_F";
};
- class Item248
+ class Item247
{
dataType="Object";
class PositionInfo
@@ -6400,12 +4854,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1265;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-006;
};
- class Item249
+ class Item248
{
dataType="Object";
class PositionInfo
@@ -6417,11 +4872,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1266;
type="Land_HBarrier_5_F";
};
- class Item250
+ class Item249
{
dataType="Object";
class PositionInfo
@@ -6433,12 +4889,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1267;
type="Land_HBarrier_3_F";
atlOffset=3.4332275e-005;
};
- class Item251
+ class Item250
{
dataType="Object";
class PositionInfo
@@ -6450,12 +4907,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1268;
type="Land_HBarrier_3_F";
atlOffset=2.6702881e-005;
};
- class Item252
+ class Item251
{
dataType="Object";
class PositionInfo
@@ -6467,12 +4925,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1269;
type="Land_HBarrier_3_F";
atlOffset=2.2888184e-005;
};
- class Item253
+ class Item252
{
dataType="Object";
class PositionInfo
@@ -6484,12 +4943,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1270;
type="Land_HBarrier_5_F";
atlOffset=2.6702881e-005;
};
- class Item254
+ class Item253
{
dataType="Object";
class PositionInfo
@@ -6505,7 +4965,7 @@ class Mission
id=1271;
type="Land_Mil_WallBig_Corner_F";
};
- class Item255
+ class Item254
{
dataType="Object";
class PositionInfo
@@ -6521,7 +4981,7 @@ class Mission
id=1272;
type="Land_Mil_WallBig_Corner_F";
};
- class Item256
+ class Item255
{
dataType="Object";
class PositionInfo
@@ -6538,7 +4998,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.8146973e-006;
};
- class Item257
+ class Item256
{
dataType="Object";
class PositionInfo
@@ -6554,7 +5014,7 @@ class Mission
id=1274;
type="Land_Mil_WallBig_4m_F";
};
- class Item258
+ class Item257
{
dataType="Object";
class PositionInfo
@@ -6571,7 +5031,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=3.8146973e-006;
};
- class Item259
+ class Item258
{
dataType="Object";
class PositionInfo
@@ -6587,7 +5047,7 @@ class Mission
id=1276;
type="Land_Mil_WallBig_Corner_F";
};
- class Item260
+ class Item259
{
dataType="Object";
class PositionInfo
@@ -6603,7 +5063,7 @@ class Mission
id=1277;
type="Land_Mil_WallBig_Corner_F";
};
- class Item261
+ class Item260
{
dataType="Object";
class PositionInfo
@@ -6619,7 +5079,7 @@ class Mission
id=1278;
type="Land_Mil_WallBig_4m_F";
};
- class Item262
+ class Item261
{
dataType="Object";
class PositionInfo
@@ -6636,7 +5096,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=3.8146973e-006;
};
- class Item263
+ class Item262
{
dataType="Object";
class PositionInfo
@@ -6652,7 +5112,7 @@ class Mission
id=1280;
type="Land_Cargo_House_V1_F";
};
- class Item264
+ class Item263
{
dataType="Object";
class PositionInfo
@@ -6668,7 +5128,7 @@ class Mission
id=1281;
type="Land_Cargo_House_V1_F";
};
- class Item265
+ class Item264
{
dataType="Object";
class PositionInfo
@@ -6684,7 +5144,7 @@ class Mission
id=1282;
type="Land_Cargo_Patrol_V1_F";
};
- class Item266
+ class Item265
{
dataType="Object";
class PositionInfo
@@ -6696,11 +5156,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1283;
type="Land_HBarrier_5_F";
};
- class Item267
+ class Item266
{
dataType="Object";
class PositionInfo
@@ -6712,12 +5173,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1284;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item268
+ class Item267
{
dataType="Object";
class PositionInfo
@@ -6729,11 +5191,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1285;
type="Land_HBarrier_5_F";
};
- class Item269
+ class Item268
{
dataType="Object";
class PositionInfo
@@ -6745,11 +5208,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1286;
type="Land_HBarrier_5_F";
};
- class Item270
+ class Item269
{
dataType="Object";
class PositionInfo
@@ -6761,11 +5225,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1287;
type="Land_HBarrier_5_F";
};
- class Item271
+ class Item270
{
dataType="Object";
class PositionInfo
@@ -6777,12 +5242,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1288;
type="Land_HBarrier_5_F";
atlOffset=-3.8146973e-006;
};
- class Item272
+ class Item271
{
dataType="Object";
class PositionInfo
@@ -6798,7 +5264,7 @@ class Mission
id=1289;
type="Land_Cargo_Patrol_V1_F";
};
- class Item273
+ class Item272
{
dataType="Object";
class PositionInfo
@@ -6814,7 +5280,7 @@ class Mission
id=1290;
type="Land_Cargo_Patrol_V1_F";
};
- class Item274
+ class Item273
{
dataType="Object";
class PositionInfo
@@ -6830,7 +5296,7 @@ class Mission
id=1291;
type="Land_Cargo_Patrol_V1_F";
};
- class Item275
+ class Item274
{
dataType="Object";
class PositionInfo
@@ -6842,11 +5308,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1292;
type="Land_HBarrier_5_F";
};
- class Item276
+ class Item275
{
dataType="Object";
class PositionInfo
@@ -6858,11 +5325,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1293;
type="Land_HBarrier_5_F";
};
- class Item277
+ class Item276
{
dataType="Object";
class PositionInfo
@@ -6874,11 +5342,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1294;
type="Land_HBarrier_5_F";
};
- class Item278
+ class Item277
{
dataType="Object";
class PositionInfo
@@ -6890,12 +5359,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1295;
type="Land_HBarrier_5_F";
atlOffset=3.8146973e-006;
};
- class Item279
+ class Item278
{
dataType="Object";
class PositionInfo
@@ -6911,7 +5381,7 @@ class Mission
id=1296;
type="Land_Cargo_House_V1_F";
};
- class Item280
+ class Item279
{
dataType="Object";
class PositionInfo
@@ -6927,7 +5397,7 @@ class Mission
id=1297;
type="Land_Cargo_House_V1_F";
};
- class Item281
+ class Item280
{
dataType="Object";
class PositionInfo
@@ -6939,12 +5409,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1358;
type="Land_HBarrier_5_F";
atlOffset=0.0089569092;
};
- class Item282
+ class Item281
{
dataType="Object";
class PositionInfo
@@ -6956,11 +5427,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1359;
type="Land_HBarrier_5_F";
};
- class Item283
+ class Item282
{
dataType="Object";
class PositionInfo
@@ -6972,12 +5444,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1360;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item284
+ class Item283
{
dataType="Object";
class PositionInfo
@@ -6989,11 +5462,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1361;
type="Land_HBarrier_5_F";
};
- class Item285
+ class Item284
{
dataType="Object";
class PositionInfo
@@ -7005,11 +5479,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1362;
type="Land_HBarrier_5_F";
};
- class Item286
+ class Item285
{
dataType="Object";
class PositionInfo
@@ -7021,12 +5496,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1363;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item287
+ class Item286
{
dataType="Object";
class PositionInfo
@@ -7038,11 +5514,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1364;
type="Land_HBarrier_5_F";
};
- class Item288
+ class Item287
{
dataType="Object";
class PositionInfo
@@ -7054,11 +5531,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1365;
type="Land_HBarrier_5_F";
};
- class Item289
+ class Item288
{
dataType="Object";
class PositionInfo
@@ -7070,11 +5548,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1366;
type="Land_HBarrier_5_F";
};
- class Item290
+ class Item289
{
dataType="Object";
class PositionInfo
@@ -7086,11 +5565,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1367;
type="Land_HBarrier_5_F";
};
- class Item291
+ class Item290
{
dataType="Object";
class PositionInfo
@@ -7102,11 +5582,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1368;
type="Land_HBarrier_5_F";
};
- class Item292
+ class Item291
{
dataType="Object";
class PositionInfo
@@ -7118,11 +5599,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1369;
type="Land_HBarrier_5_F";
};
- class Item293
+ class Item292
{
dataType="Object";
class PositionInfo
@@ -7134,11 +5616,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1370;
type="Land_HBarrier_5_F";
};
- class Item294
+ class Item293
{
dataType="Object";
class PositionInfo
@@ -7150,12 +5633,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1371;
type="Land_HBarrier_5_F";
atlOffset=0.0089569092;
};
- class Item295
+ class Item294
{
dataType="Object";
class PositionInfo
@@ -7167,12 +5651,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1372;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item296
+ class Item295
{
dataType="Object";
class PositionInfo
@@ -7184,12 +5669,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1373;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item297
+ class Item296
{
dataType="Object";
class PositionInfo
@@ -7201,12 +5687,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1374;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item298
+ class Item297
{
dataType="Object";
class PositionInfo
@@ -7218,11 +5705,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1375;
type="Land_HBarrier_5_F";
};
- class Item299
+ class Item298
{
dataType="Object";
class PositionInfo
@@ -7234,11 +5722,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1376;
type="Land_HBarrier_5_F";
};
- class Item300
+ class Item299
{
dataType="Object";
class PositionInfo
@@ -7250,11 +5739,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1377;
type="Land_HBarrier_5_F";
};
- class Item301
+ class Item300
{
dataType="Object";
class PositionInfo
@@ -7266,12 +5756,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1378;
type="Land_HBarrier_5_F";
atlOffset=0.0089111328;
};
- class Item302
+ class Item301
{
dataType="Object";
class PositionInfo
@@ -7283,11 +5774,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1379;
type="Land_HBarrier_5_F";
};
- class Item303
+ class Item302
{
dataType="Object";
class PositionInfo
@@ -7299,12 +5791,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1380;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item304
+ class Item303
{
dataType="Object";
class PositionInfo
@@ -7316,12 +5809,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1381;
type="Land_HBarrier_5_F";
atlOffset=3.0517578e-005;
};
- class Item305
+ class Item304
{
dataType="Object";
class PositionInfo
@@ -7333,11 +5827,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1382;
type="Land_HBarrier_5_F";
};
- class Item306
+ class Item305
{
dataType="Object";
class PositionInfo
@@ -7349,12 +5844,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1383;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item307
+ class Item306
{
dataType="Object";
class PositionInfo
@@ -7366,12 +5862,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1384;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item308
+ class Item307
{
dataType="Object";
class PositionInfo
@@ -7383,11 +5880,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1385;
type="Land_HBarrier_5_F";
};
- class Item309
+ class Item308
{
dataType="Object";
class PositionInfo
@@ -7399,12 +5897,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1386;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item310
+ class Item309
{
dataType="Object";
class PositionInfo
@@ -7416,12 +5915,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1387;
type="Land_HBarrier_3_F";
atlOffset=4.5776367e-005;
};
- class Item311
+ class Item310
{
dataType="Object";
class PositionInfo
@@ -7433,12 +5933,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1388;
type="Land_HBarrier_3_F";
atlOffset=4.5776367e-005;
};
- class Item312
+ class Item311
{
dataType="Object";
class PositionInfo
@@ -7450,12 +5951,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1389;
type="Land_HBarrier_3_F";
atlOffset=3.0517578e-005;
};
- class Item313
+ class Item312
{
dataType="Object";
class PositionInfo
@@ -7467,12 +5969,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1390;
type="Land_HBarrier_5_F";
atlOffset=4.5776367e-005;
};
- class Item314
+ class Item313
{
dataType="Object";
class PositionInfo
@@ -7488,7 +5991,7 @@ class Mission
id=1391;
type="Land_Mil_WallBig_Corner_F";
};
- class Item315
+ class Item314
{
dataType="Object";
class PositionInfo
@@ -7504,7 +6007,7 @@ class Mission
id=1392;
type="Land_Mil_WallBig_Corner_F";
};
- class Item316
+ class Item315
{
dataType="Object";
class PositionInfo
@@ -7520,7 +6023,7 @@ class Mission
id=1393;
type="Land_Mil_WallBig_4m_F";
};
- class Item317
+ class Item316
{
dataType="Object";
class PositionInfo
@@ -7536,7 +6039,7 @@ class Mission
id=1394;
type="Land_Mil_WallBig_4m_F";
};
- class Item318
+ class Item317
{
dataType="Object";
class PositionInfo
@@ -7553,7 +6056,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=-1.5258789e-005;
};
- class Item319
+ class Item318
{
dataType="Object";
class PositionInfo
@@ -7569,7 +6072,7 @@ class Mission
id=1396;
type="Land_Mil_WallBig_Corner_F";
};
- class Item320
+ class Item319
{
dataType="Object";
class PositionInfo
@@ -7585,7 +6088,7 @@ class Mission
id=1397;
type="Land_Mil_WallBig_Corner_F";
};
- class Item321
+ class Item320
{
dataType="Object";
class PositionInfo
@@ -7602,7 +6105,7 @@ class Mission
type="Land_Mil_WallBig_4m_F";
atlOffset=-1.5258789e-005;
};
- class Item322
+ class Item321
{
dataType="Object";
class PositionInfo
@@ -7619,7 +6122,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-1.5258789e-005;
};
- class Item323
+ class Item322
{
dataType="Object";
class PositionInfo
@@ -7635,7 +6138,7 @@ class Mission
id=1400;
type="Land_Cargo_House_V1_F";
};
- class Item324
+ class Item323
{
dataType="Object";
class PositionInfo
@@ -7651,7 +6154,7 @@ class Mission
id=1401;
type="Land_Cargo_House_V1_F";
};
- class Item325
+ class Item324
{
dataType="Object";
class PositionInfo
@@ -7667,7 +6170,7 @@ class Mission
id=1402;
type="Land_Cargo_Patrol_V1_F";
};
- class Item326
+ class Item325
{
dataType="Object";
class PositionInfo
@@ -7679,12 +6182,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1403;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item327
+ class Item326
{
dataType="Object";
class PositionInfo
@@ -7696,11 +6200,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1404;
type="Land_HBarrier_5_F";
};
- class Item328
+ class Item327
{
dataType="Object";
class PositionInfo
@@ -7712,12 +6217,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1405;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item329
+ class Item328
{
dataType="Object";
class PositionInfo
@@ -7729,11 +6235,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1406;
type="Land_HBarrier_5_F";
};
- class Item330
+ class Item329
{
dataType="Object";
class PositionInfo
@@ -7745,11 +6252,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1407;
type="Land_HBarrier_5_F";
};
- class Item331
+ class Item330
{
dataType="Object";
class PositionInfo
@@ -7761,12 +6269,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1408;
type="Land_HBarrier_5_F";
atlOffset=0.027923584;
};
- class Item332
+ class Item331
{
dataType="Object";
class PositionInfo
@@ -7782,7 +6291,7 @@ class Mission
id=1409;
type="Land_Cargo_Patrol_V1_F";
};
- class Item333
+ class Item332
{
dataType="Object";
class PositionInfo
@@ -7799,7 +6308,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-1.5258789e-005;
};
- class Item334
+ class Item333
{
dataType="Object";
class PositionInfo
@@ -7815,7 +6324,7 @@ class Mission
id=1411;
type="Land_Cargo_Patrol_V1_F";
};
- class Item335
+ class Item334
{
dataType="Object";
class PositionInfo
@@ -7827,11 +6336,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1412;
type="Land_HBarrier_5_F";
};
- class Item336
+ class Item335
{
dataType="Object";
class PositionInfo
@@ -7843,11 +6353,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1413;
type="Land_HBarrier_5_F";
};
- class Item337
+ class Item336
{
dataType="Object";
class PositionInfo
@@ -7859,11 +6370,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1414;
type="Land_HBarrier_5_F";
};
- class Item338
+ class Item337
{
dataType="Object";
class PositionInfo
@@ -7875,11 +6387,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=1415;
type="Land_HBarrier_5_F";
};
- class Item339
+ class Item338
{
dataType="Object";
class PositionInfo
@@ -7896,7 +6409,7 @@ class Mission
type="Land_Cargo_House_V1_F";
atlOffset=-1.5258789e-005;
};
- class Item340
+ class Item339
{
dataType="Object";
class PositionInfo
@@ -7912,7 +6425,7 @@ class Mission
id=1417;
type="Land_Cargo_House_V1_F";
};
- class Item341
+ class Item340
{
dataType="Object";
class PositionInfo
@@ -7928,7 +6441,7 @@ class Mission
id=1418;
type="Land_Cargo_Patrol_V1_F";
};
- class Item342
+ class Item341
{
dataType="Object";
class PositionInfo
@@ -7944,7 +6457,7 @@ class Mission
id=1419;
type="Land_Cargo_Patrol_V1_F";
};
- class Item343
+ class Item342
{
dataType="Object";
class PositionInfo
@@ -7960,7 +6473,7 @@ class Mission
id=1420;
type="Land_Cargo_Patrol_V1_F";
};
- class Item344
+ class Item343
{
dataType="Object";
class PositionInfo
@@ -7976,7 +6489,7 @@ class Mission
id=1421;
type="Land_Cargo_Patrol_V1_F";
};
- class Item345
+ class Item344
{
dataType="Object";
class PositionInfo
@@ -7992,7 +6505,7 @@ class Mission
id=1422;
type="Land_Cargo_Patrol_V1_F";
};
- class Item346
+ class Item345
{
dataType="Object";
class PositionInfo
@@ -8008,28 +6521,28 @@ class Mission
id=1423;
type="Land_Cargo_Patrol_V1_F";
};
- class Item347
+ class Item346
{
dataType="Layer";
name="Open Ammo Dump";
id=1424;
atlOffset=96.5;
};
- class Item348
+ class Item347
{
dataType="Layer";
name="Vehicle Repair";
id=1449;
atlOffset=96.5;
};
- class Item349
+ class Item348
{
dataType="Layer";
name="Camp Audacity";
id=1883;
atlOffset=96.5;
};
- class Item350
+ class Item349
{
dataType="Logic";
class PositionInfo
@@ -8084,7 +6597,7 @@ class Mission
nAttributes=2;
};
};
- class Item351
+ class Item350
{
dataType="Object";
class PositionInfo
@@ -8100,7 +6613,7 @@ class Mission
id=1886;
type="Land_Wall_IndCnc_4_F";
};
- class Item352
+ class Item351
{
dataType="Logic";
class PositionInfo
@@ -8155,7 +6668,7 @@ class Mission
nAttributes=2;
};
};
- class Item353
+ class Item352
{
dataType="Object";
class PositionInfo
@@ -8171,7 +6684,7 @@ class Mission
id=1889;
type="Land_ConcreteWall_01_l_8m_F";
};
- class Item354
+ class Item353
{
dataType="Logic";
class PositionInfo
@@ -8226,7 +6739,7 @@ class Mission
nAttributes=2;
};
};
- class Item355
+ class Item354
{
dataType="Object";
class PositionInfo
@@ -8242,7 +6755,7 @@ class Mission
id=1891;
type="Land_ConcreteWall_01_l_8m_F";
};
- class Item356
+ class Item355
{
dataType="Object";
class PositionInfo
@@ -8258,35 +6771,35 @@ class Mission
id=1892;
type="Land_ConcreteWall_01_l_4m_F";
};
- class Item357
+ class Item356
{
dataType="Layer";
name="Open Ammo Dump_1";
id=1955;
atlOffset=96.5;
};
- class Item358
+ class Item357
{
dataType="Layer";
name="Vehicle Repair_1";
id=1980;
atlOffset=96.5;
};
- class Item359
+ class Item358
{
dataType="Layer";
name="Open Ammo Dump_2";
id=2357;
atlOffset=96.5;
};
- class Item360
+ class Item359
{
dataType="Layer";
name="Vehicle Repair_2";
id=2382;
atlOffset=96.5;
};
- class Item361
+ class Item360
{
dataType="Object";
class PositionInfo
@@ -8298,11 +6811,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2848;
type="Land_HBarrier_Big_F";
};
- class Item362
+ class Item361
{
dataType="Object";
class PositionInfo
@@ -8314,12 +6828,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2849;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item363
+ class Item362
{
dataType="Object";
class PositionInfo
@@ -8331,11 +6846,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2850;
type="Land_HBarrier_Big_F";
};
- class Item364
+ class Item363
{
dataType="Object";
class PositionInfo
@@ -8347,12 +6863,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2851;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item365
+ class Item364
{
dataType="Object";
class PositionInfo
@@ -8364,12 +6881,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2852;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item366
+ class Item365
{
dataType="Object";
class PositionInfo
@@ -8381,12 +6899,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2853;
type="Land_HBarrier_Big_F";
atlOffset=-3.8146973e-006;
};
- class Item367
+ class Item366
{
dataType="Object";
class PositionInfo
@@ -8398,12 +6917,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2854;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item368
+ class Item367
{
dataType="Object";
class PositionInfo
@@ -8415,12 +6935,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2855;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item369
+ class Item368
{
dataType="Object";
class PositionInfo
@@ -8432,12 +6953,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2856;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item370
+ class Item369
{
dataType="Object";
class PositionInfo
@@ -8449,11 +6971,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2857;
type="Land_HBarrier_Big_F";
};
- class Item371
+ class Item370
{
dataType="Object";
class PositionInfo
@@ -8465,11 +6988,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2858;
type="Land_HBarrier_Big_F";
};
- class Item372
+ class Item371
{
dataType="Object";
class PositionInfo
@@ -8481,11 +7005,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2859;
type="Land_HBarrier_Big_F";
};
- class Item373
+ class Item372
{
dataType="Object";
class PositionInfo
@@ -8497,11 +7022,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2860;
type="Land_HBarrier_Big_F";
};
- class Item374
+ class Item373
{
dataType="Object";
class PositionInfo
@@ -8513,12 +7039,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2861;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item375
+ class Item374
{
dataType="Object";
class PositionInfo
@@ -8530,11 +7057,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2862;
type="Land_HBarrier_Big_F";
};
- class Item376
+ class Item375
{
dataType="Object";
class PositionInfo
@@ -8546,11 +7074,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2863;
type="Land_HBarrier_Big_F";
};
- class Item377
+ class Item376
{
dataType="Object";
class PositionInfo
@@ -8562,11 +7091,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2864;
type="Land_HBarrier_Big_F";
};
- class Item378
+ class Item377
{
dataType="Object";
class PositionInfo
@@ -8578,11 +7108,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2865;
type="Land_HBarrier_Big_F";
};
- class Item379
+ class Item378
{
dataType="Object";
class PositionInfo
@@ -8594,11 +7125,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2866;
type="Land_HBarrier_Big_F";
};
- class Item380
+ class Item379
{
dataType="Object";
class PositionInfo
@@ -8610,11 +7142,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2867;
type="Land_HBarrier_Big_F";
};
- class Item381
+ class Item380
{
dataType="Object";
class PositionInfo
@@ -8626,11 +7159,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2868;
type="Land_HBarrier_Big_F";
};
- class Item382
+ class Item381
{
dataType="Object";
class PositionInfo
@@ -8642,11 +7176,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2869;
type="Land_HBarrier_Big_F";
};
- class Item383
+ class Item382
{
dataType="Object";
class PositionInfo
@@ -8658,11 +7193,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2870;
type="Land_HBarrier_Big_F";
};
- class Item384
+ class Item383
{
dataType="Object";
class PositionInfo
@@ -8674,12 +7210,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2871;
type="Land_HBarrier_Big_F";
atlOffset=-3.8146973e-006;
};
- class Item385
+ class Item384
{
dataType="Object";
class PositionInfo
@@ -8691,11 +7228,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2872;
type="Land_HBarrier_Big_F";
};
- class Item386
+ class Item385
{
dataType="Object";
class PositionInfo
@@ -8707,11 +7245,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2873;
type="Land_HBarrier_Big_F";
};
- class Item387
+ class Item386
{
dataType="Object";
class PositionInfo
@@ -8723,12 +7262,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2874;
type="Land_HBarrier_Big_F";
atlOffset=-3.8146973e-006;
};
- class Item388
+ class Item387
{
dataType="Object";
class PositionInfo
@@ -8744,7 +7284,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item389
+ class Item388
{
dataType="Object";
class PositionInfo
@@ -8761,7 +7301,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=7.6293945e-006;
};
- class Item390
+ class Item389
{
dataType="Object";
class PositionInfo
@@ -8773,11 +7313,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2877;
type="Land_HBarrier_Big_F";
};
- class Item391
+ class Item390
{
dataType="Object";
class PositionInfo
@@ -8789,12 +7330,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2878;
type="Land_HBarrier_Big_F";
atlOffset=3.8146973e-006;
};
- class Item392
+ class Item391
{
dataType="Object";
class PositionInfo
@@ -8806,11 +7348,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2879;
type="Land_HBarrier_Big_F";
};
- class Item393
+ class Item392
{
dataType="Object";
class PositionInfo
@@ -8822,11 +7365,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2880;
type="Land_HBarrier_Big_F";
};
- class Item394
+ class Item393
{
dataType="Object";
class PositionInfo
@@ -8838,11 +7382,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2881;
type="Land_HBarrier_Big_F";
};
- class Item395
+ class Item394
{
dataType="Object";
class PositionInfo
@@ -8854,11 +7399,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2882;
type="Land_HBarrier_Big_F";
};
- class Item396
+ class Item395
{
dataType="Object";
class PositionInfo
@@ -8870,11 +7416,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2883;
type="Land_HBarrier_Big_F";
};
- class Item397
+ class Item396
{
dataType="Object";
class PositionInfo
@@ -8891,7 +7438,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.24999619;
};
- class Item398
+ class Item397
{
dataType="Object";
class PositionInfo
@@ -8908,7 +7455,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=3.8146973e-006;
};
- class Item399
+ class Item398
{
dataType="Object";
class PositionInfo
@@ -8925,7 +7472,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=3.8146973e-006;
};
- class Item400
+ class Item399
{
dataType="Object";
class PositionInfo
@@ -8941,7 +7488,7 @@ class Mission
id=2887;
type="Land_Cargo_House_V1_F";
};
- class Item401
+ class Item400
{
dataType="Object";
class PositionInfo
@@ -8957,7 +7504,7 @@ class Mission
id=2888;
type="Land_Cargo_House_V1_F";
};
- class Item402
+ class Item401
{
dataType="Object";
class PositionInfo
@@ -8973,7 +7520,7 @@ class Mission
id=2889;
type="Land_TTowerSmall_1_F";
};
- class Item403
+ class Item402
{
dataType="Object";
class PositionInfo
@@ -8990,7 +7537,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=3.8146973e-006;
};
- class Item404
+ class Item403
{
dataType="Object";
class PositionInfo
@@ -9007,7 +7554,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=3.8146973e-006;
};
- class Item405
+ class Item404
{
dataType="Object";
class PositionInfo
@@ -9019,11 +7566,13 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2892;
type="Land_Cargo40_military_green_F";
};
- class Item406
+ class Item405
{
dataType="Object";
class PositionInfo
@@ -9035,12 +7584,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2893;
type="Land_Cargo40_military_green_F";
atlOffset=-7.6293945e-006;
};
- class Item407
+ class Item406
{
dataType="Object";
class PositionInfo
@@ -9052,11 +7603,13 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2894;
type="Land_Cargo40_military_green_F";
};
- class Item408
+ class Item407
{
dataType="Object";
class PositionInfo
@@ -9072,7 +7625,7 @@ class Mission
id=2895;
type="Land_Medevac_house_V1_F";
};
- class Item409
+ class Item408
{
dataType="Object";
class PositionInfo
@@ -9084,11 +7637,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2896;
type="Land_HBarrier_Big_F";
};
- class Item410
+ class Item409
{
dataType="Object";
class PositionInfo
@@ -9100,11 +7654,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2897;
type="Land_HBarrier_Big_F";
};
- class Item411
+ class Item410
{
dataType="Object";
class PositionInfo
@@ -9116,11 +7671,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2898;
type="Land_HBarrier_Big_F";
};
- class Item412
+ class Item411
{
dataType="Object";
class PositionInfo
@@ -9132,12 +7688,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2899;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item413
+ class Item412
{
dataType="Object";
class PositionInfo
@@ -9149,12 +7706,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2900;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item414
+ class Item413
{
dataType="Object";
class PositionInfo
@@ -9166,11 +7724,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2901;
type="Land_HBarrier_Big_F";
};
- class Item415
+ class Item414
{
dataType="Object";
class PositionInfo
@@ -9182,11 +7741,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2902;
type="Land_HBarrier_Big_F";
};
- class Item416
+ class Item415
{
dataType="Object";
class PositionInfo
@@ -9198,11 +7758,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2903;
type="Land_HBarrier_Big_F";
};
- class Item417
+ class Item416
{
dataType="Object";
class PositionInfo
@@ -9214,11 +7775,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2904;
type="Land_HBarrier_Big_F";
};
- class Item418
+ class Item417
{
dataType="Object";
class PositionInfo
@@ -9230,11 +7792,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2905;
type="Land_HBarrier_Big_F";
};
- class Item419
+ class Item418
{
dataType="Object";
class PositionInfo
@@ -9246,11 +7809,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2906;
type="Land_HBarrier_Big_F";
};
- class Item420
+ class Item419
{
dataType="Object";
class PositionInfo
@@ -9262,12 +7826,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2907;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item421
+ class Item420
{
dataType="Object";
class PositionInfo
@@ -9279,11 +7844,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2908;
type="Land_HBarrier_Big_F";
};
- class Item422
+ class Item421
{
dataType="Object";
class PositionInfo
@@ -9295,11 +7861,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2909;
type="Land_HBarrier_Big_F";
};
- class Item423
+ class Item422
{
dataType="Object";
class PositionInfo
@@ -9311,12 +7878,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2910;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item424
+ class Item423
{
dataType="Object";
class PositionInfo
@@ -9328,11 +7896,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2911;
type="Land_HBarrier_Big_F";
};
- class Item425
+ class Item424
{
dataType="Object";
class PositionInfo
@@ -9344,12 +7913,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2912;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item426
+ class Item425
{
dataType="Object";
class PositionInfo
@@ -9361,12 +7931,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2913;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item427
+ class Item426
{
dataType="Object";
class PositionInfo
@@ -9378,12 +7949,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2914;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item428
+ class Item427
{
dataType="Object";
class PositionInfo
@@ -9395,11 +7967,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2915;
type="Land_HBarrier_Big_F";
};
- class Item429
+ class Item428
{
dataType="Object";
class PositionInfo
@@ -9411,12 +7984,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2916;
type="Land_HBarrier_Big_F";
atlOffset=6.1035156e-005;
};
- class Item430
+ class Item429
{
dataType="Object";
class PositionInfo
@@ -9428,11 +8002,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2917;
type="Land_HBarrier_Big_F";
};
- class Item431
+ class Item430
{
dataType="Object";
class PositionInfo
@@ -9444,11 +8019,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2918;
type="Land_HBarrier_Big_F";
};
- class Item432
+ class Item431
{
dataType="Object";
class PositionInfo
@@ -9460,12 +8036,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2919;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item433
+ class Item432
{
dataType="Object";
class PositionInfo
@@ -9477,12 +8054,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2920;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item434
+ class Item433
{
dataType="Object";
class PositionInfo
@@ -9494,12 +8072,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2921;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item435
+ class Item434
{
dataType="Object";
class PositionInfo
@@ -9511,12 +8090,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2922;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item436
+ class Item435
{
dataType="Object";
class PositionInfo
@@ -9532,7 +8112,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25006104;
};
- class Item437
+ class Item436
{
dataType="Object";
class PositionInfo
@@ -9548,7 +8128,7 @@ class Mission
id=2924;
type="Land_Cargo_Patrol_V1_F";
};
- class Item438
+ class Item437
{
dataType="Object";
class PositionInfo
@@ -9560,12 +8140,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2925;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item439
+ class Item438
{
dataType="Object";
class PositionInfo
@@ -9577,12 +8158,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2926;
type="Land_HBarrier_Big_F";
atlOffset=-3.0517578e-005;
};
- class Item440
+ class Item439
{
dataType="Object";
class PositionInfo
@@ -9594,11 +8176,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2927;
type="Land_HBarrier_Big_F";
};
- class Item441
+ class Item440
{
dataType="Object";
class PositionInfo
@@ -9610,12 +8193,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2928;
type="Land_HBarrier_Big_F";
atlOffset=3.0517578e-005;
};
- class Item442
+ class Item441
{
dataType="Object";
class PositionInfo
@@ -9627,11 +8211,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2929;
type="Land_HBarrier_Big_F";
};
- class Item443
+ class Item442
{
dataType="Object";
class PositionInfo
@@ -9643,11 +8228,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2930;
type="Land_HBarrier_Big_F";
};
- class Item444
+ class Item443
{
dataType="Object";
class PositionInfo
@@ -9659,11 +8245,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=2931;
type="Land_HBarrier_Big_F";
};
- class Item445
+ class Item444
{
dataType="Object";
class PositionInfo
@@ -9679,7 +8266,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25003052;
};
- class Item446
+ class Item445
{
dataType="Object";
class PositionInfo
@@ -9695,7 +8282,7 @@ class Mission
id=2933;
type="Land_Cargo_Patrol_V1_F";
};
- class Item447
+ class Item446
{
dataType="Object";
class PositionInfo
@@ -9711,7 +8298,7 @@ class Mission
id=2934;
type="Land_Cargo_Patrol_V1_F";
};
- class Item448
+ class Item447
{
dataType="Object";
class PositionInfo
@@ -9727,7 +8314,7 @@ class Mission
id=2935;
type="Land_Cargo_House_V1_F";
};
- class Item449
+ class Item448
{
dataType="Object";
class PositionInfo
@@ -9743,7 +8330,7 @@ class Mission
id=2936;
type="Land_Cargo_House_V1_F";
};
- class Item450
+ class Item449
{
dataType="Object";
class PositionInfo
@@ -9760,7 +8347,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=-3.0517578e-005;
};
- class Item451
+ class Item450
{
dataType="Object";
class PositionInfo
@@ -9777,7 +8364,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=3.0517578e-005;
};
- class Item452
+ class Item451
{
dataType="Object";
class PositionInfo
@@ -9794,7 +8381,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-3.0517578e-005;
};
- class Item453
+ class Item452
{
dataType="Object";
class PositionInfo
@@ -9806,12 +8393,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2940;
type="Land_Cargo40_military_green_F";
atlOffset=-3.0517578e-005;
};
- class Item454
+ class Item453
{
dataType="Object";
class PositionInfo
@@ -9823,12 +8412,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2941;
type="Land_Cargo40_military_green_F";
atlOffset=3.0517578e-005;
};
- class Item455
+ class Item454
{
dataType="Object";
class PositionInfo
@@ -9839,12 +8430,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=2942;
type="Land_Cargo40_military_green_F";
atlOffset=2.6217957;
};
- class Item456
+ class Item455
{
dataType="Object";
class PositionInfo
@@ -9860,56 +8453,56 @@ class Mission
id=2943;
type="Land_Medevac_house_V1_F";
};
- class Item457
+ class Item456
{
dataType="Layer";
name="Open Ammo Dump_3";
id=2945;
atlOffset=96.5;
};
- class Item458
+ class Item457
{
dataType="Layer";
name="Vehicle Repair_3";
id=2970;
atlOffset=96.5;
};
- class Item459
+ class Item458
{
dataType="Layer";
name="Abandoned AA Gun Emplacement";
id=3316;
atlOffset=96.5;
};
- class Item460
+ class Item459
{
dataType="Layer";
name="Abandoned Field Hospital";
id=3423;
atlOffset=96.5;
};
- class Item461
+ class Item460
{
dataType="Layer";
name="Hasty Landing Zone";
id=3470;
atlOffset=96.5;
};
- class Item462
+ class Item461
{
dataType="Layer";
name="Landing Zone";
id=3571;
atlOffset=96.5;
};
- class Item463
+ class Item462
{
dataType="Layer";
name="Roadblock";
id=3599;
atlOffset=96.5;
};
- class Item464
+ class Item463
{
dataType="Layer";
name="Landing Zone";
@@ -9929,6 +8522,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3651;
type="Land_HBarrier_Big_F";
@@ -9947,6 +8541,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3652;
type="Land_HBarrier_Big_F";
@@ -9965,6 +8560,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3653;
type="Land_HBarrier_Big_F";
@@ -9983,6 +8579,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3654;
type="Land_HBarrier_Big_F";
@@ -10017,6 +8614,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3656;
type="Land_HBarrier_Big_F";
@@ -10035,6 +8633,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3657;
type="Land_HBarrier_5_F";
@@ -10052,6 +8651,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3658;
type="Land_HBarrier_Big_F";
@@ -10069,6 +8669,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3659;
type="Land_HBarrier_5_F";
@@ -10087,6 +8688,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3660;
type="Land_HBarrier_Big_F";
@@ -10122,6 +8724,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3662;
type="Land_HBarrier_Big_F";
@@ -10174,6 +8777,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3665;
type="Land_HBarrier_5_F";
@@ -10192,6 +8796,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3666;
type="Land_HBarrier_5_F";
@@ -10210,6 +8815,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=3667;
type="Land_Cargo10_light_green_F";
@@ -10228,6 +8835,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3668;
type="Land_HBarrier_Big_F";
@@ -10246,6 +8854,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=3669;
type="Land_Cargo10_light_blue_F";
@@ -10264,6 +8874,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3670;
type="Land_HBarrier_Big_F";
@@ -10282,6 +8893,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3671;
type="Land_HBarrier_Big_F";
@@ -10299,6 +8911,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=3672;
type="Land_Cargo10_light_green_F";
@@ -10317,6 +8931,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3673;
type="Land_HBarrier_Big_F";
@@ -10334,6 +8949,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=3674;
type="Land_Cargo10_light_green_F";
@@ -10352,6 +8969,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3675;
type="Land_HBarrier_Big_F";
@@ -10370,6 +8988,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3676;
type="Land_HBarrier_Big_F";
@@ -10388,6 +9007,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3677;
type="Land_HBarrier_Big_F";
@@ -10406,6 +9026,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3678;
type="Land_HBarrier_3_F";
@@ -10424,6 +9045,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3679;
type="Land_HBarrier_Big_F";
@@ -10442,6 +9064,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=3680;
type="Land_Cargo10_light_green_F";
@@ -10460,6 +9084,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3681;
type="Land_HBarrier_3_F";
@@ -10477,6 +9102,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3682;
type="Land_HBarrier_Big_F";
@@ -10495,6 +9121,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3683;
type="Land_HBarrier_Big_F";
@@ -10513,6 +9140,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3684;
type="Land_HBarrier_Big_F";
@@ -10530,6 +9158,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3685;
type="Land_HBarrier_Big_F";
@@ -10548,6 +9177,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3686;
type="Land_HBarrier_Big_F";
@@ -10566,6 +9196,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3687;
type="Land_HBarrier_Big_F";
@@ -10584,6 +9215,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3688;
type="Land_HBarrier_Big_F";
@@ -10602,6 +9234,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3689;
type="Land_HBarrier_Big_F";
@@ -10620,6 +9253,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3690;
type="Land_HBarrier_Big_F";
@@ -10638,6 +9272,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3691;
type="Land_HBarrier_Big_F";
@@ -10656,6 +9291,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3692;
type="Land_HBarrier_Big_F";
@@ -10674,6 +9310,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3693;
type="Land_HBarrier_Big_F";
@@ -10728,6 +9365,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3696;
type="Land_HBarrier_5_F";
@@ -10746,6 +9384,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3697;
type="Land_HBarrier_5_F";
@@ -10764,6 +9403,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3698;
type="Land_HBarrier_5_F";
@@ -10782,6 +9422,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=3699;
type="Land_HBarrier_5_F";
@@ -10826,245 +9467,245 @@ class Mission
id=3700;
atlOffset=-10.067444;
};
- class Item465
+ class Item464
{
dataType="Layer";
name="Industrial Compound (Large)";
id=3996;
atlOffset=96.5;
};
- class Item466
+ class Item465
{
dataType="Layer";
name="Storage Facility and Warehouse";
id=4280;
atlOffset=96.5;
};
- class Item467
+ class Item466
{
dataType="Layer";
name="IDAP Refugee Camp Large";
id=4597;
atlOffset=96.5;
};
- class Item468
+ class Item467
{
dataType="Layer";
name="Basketball Court";
id=4615;
atlOffset=96.5;
};
- class Item469
+ class Item468
{
dataType="Layer";
name="Gas Station";
id=4676;
atlOffset=96.5;
};
- class Item470
+ class Item469
{
dataType="Layer";
name="Cargo Post";
id=4692;
atlOffset=96.5;
};
- class Item471
+ class Item470
{
dataType="Layer";
name="Bunker (Small) #1";
id=4710;
atlOffset=96.5;
};
- class Item472
+ class Item471
{
dataType="Layer";
name="Shoot House";
id=5060;
atlOffset=96.5;
};
- class Item473
+ class Item472
{
dataType="Layer";
name="Depot [BLU]";
id=5115;
atlOffset=96.5;
};
- class Item474
+ class Item473
{
dataType="Layer";
name="Hangar";
id=5227;
atlOffset=96.5;
};
- class Item475
+ class Item474
{
dataType="Layer";
name="Hangar";
id=5339;
atlOffset=96.5;
};
- class Item476
+ class Item475
{
dataType="Layer";
name="Factory Headquarters";
id=5415;
atlOffset=96.5;
};
- class Item477
+ class Item476
{
dataType="Layer";
name="Main Headquarters";
id=5477;
atlOffset=96.5;
};
- class Item478
+ class Item477
{
dataType="Layer";
name="Radar Dome";
id=5539;
atlOffset=96.5;
};
- class Item479
+ class Item478
{
dataType="Layer";
name="Fortified Comms Tower";
id=5612;
atlOffset=96.5;
};
- class Item480
+ class Item479
{
dataType="Layer";
name="Communications Post";
id=5672;
atlOffset=96.5;
};
- class Item481
+ class Item480
{
dataType="Layer";
name="Comms Post [BLU]";
id=5708;
atlOffset=96.5;
};
- class Item482
+ class Item481
{
dataType="Layer";
name="Comms Post [OPF]";
id=5760;
atlOffset=96.5;
};
- class Item483
+ class Item482
{
dataType="Layer";
name="Cargo HQ [BLU] #1";
id=5851;
atlOffset=96.5;
};
- class Item484
+ class Item483
{
dataType="Layer";
name="Cargo Tower [BLU]";
id=5981;
atlOffset=96.5;
};
- class Item485
+ class Item484
{
dataType="Layer";
name="Field Depot [BLU]";
id=6077;
atlOffset=96.5;
};
- class Item486
+ class Item485
{
dataType="Layer";
name="Field HQ [BLU]";
id=6205;
atlOffset=96.5;
};
- class Item487
+ class Item486
{
dataType="Layer";
name="Concrete Wall LZ";
id=6319;
atlOffset=96.5;
};
- class Item488
+ class Item487
{
dataType="Layer";
name="Heliport - Fortified [BLU]";
id=6393;
atlOffset=96.5;
};
- class Item489
+ class Item488
{
dataType="Layer";
name="Heliport [BLU]";
id=6439;
atlOffset=96.5;
};
- class Item490
+ class Item489
{
dataType="Layer";
name="Command Centre";
id=6566;
atlOffset=96.5;
};
- class Item491
+ class Item490
{
dataType="Layer";
name="Main Headquarters [BLU]";
id=6757;
atlOffset=96.5;
};
- class Item492
+ class Item491
{
dataType="Layer";
name="Headquarters";
id=6794;
atlOffset=96.5;
};
- class Item493
+ class Item492
{
dataType="Layer";
name="Headquarters (Fortified)";
id=6858;
atlOffset=96.5;
};
- class Item494
+ class Item493
{
dataType="Layer";
name="Military Compound";
id=7018;
atlOffset=96.5;
};
- class Item495
+ class Item494
{
dataType="Layer";
name="VIP Compound";
id=7156;
atlOffset=96.5;
};
- class Item496
+ class Item495
{
dataType="Layer";
name="Main Headquarters [OPF]";
id=7410;
atlOffset=96.5;
};
- class Item497
+ class Item496
{
dataType="Layer";
name="Main Headquarters [BLU]";
id=7601;
atlOffset=96.5;
};
- class Item498
+ class Item497
{
dataType="Layer";
name="Military Compound";
id=7761;
atlOffset=96.5;
};
- class Item499
+ class Item498
{
dataType="Layer";
name="Command Centre";
@@ -11404,6 +10045,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7782;
type="Land_Cargo40_yellow_F";
@@ -11928,18 +10571,18 @@ class Mission
dataType="Object";
class PositionInfo
{
- position[]={5722.7505,352.88428,5555.875};
- angles[]={0.067896426,3.1421337,6.2105141};
+ position[]={5722.75,352.88431,5555.875};
+ angles[]={0.067893311,3.1421337,6.2105098};
};
side="Empty";
flags=4;
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=7814;
type="Land_HelipadSquare_F";
- atlOffset=3.0517578e-005;
};
class Item49
{
@@ -12134,6 +10777,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7825;
type="Land_Cargo20_cyan_F";
@@ -12479,6 +11124,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7857;
type="Land_Cargo20_light_green_F";
@@ -12766,6 +11413,8 @@ class Mission
class Attributes
{
skill=0.2;
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7874;
type="Land_Cargo40_military_green_F";
@@ -13006,7 +11655,7 @@ class Mission
id=7888;
atlOffset=0.17941284;
};
- class Item500
+ class Item499
{
dataType="Logic";
class PositionInfo
@@ -13063,7 +11712,7 @@ class Mission
nAttributes=2;
};
};
- class Item501
+ class Item500
{
dataType="Object";
class PositionInfo
@@ -13075,12 +11724,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7893;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item502
+ class Item501
{
dataType="Object";
class PositionInfo
@@ -13092,12 +11742,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7894;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item503
+ class Item502
{
dataType="Object";
class PositionInfo
@@ -13109,11 +11760,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7895;
type="Land_HBarrier_Big_F";
};
- class Item504
+ class Item503
{
dataType="Object";
class PositionInfo
@@ -13125,11 +11777,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7896;
type="Land_HBarrier_Big_F";
};
- class Item505
+ class Item504
{
dataType="Object";
class PositionInfo
@@ -13141,12 +11794,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7897;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item506
+ class Item505
{
dataType="Object";
class PositionInfo
@@ -13158,11 +11812,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7898;
type="Land_HBarrier_Big_F";
};
- class Item507
+ class Item506
{
dataType="Object";
class PositionInfo
@@ -13174,12 +11829,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7899;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item508
+ class Item507
{
dataType="Object";
class PositionInfo
@@ -13191,12 +11847,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7900;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item509
+ class Item508
{
dataType="Object";
class PositionInfo
@@ -13208,11 +11865,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7901;
type="Land_HBarrier_Big_F";
};
- class Item510
+ class Item509
{
dataType="Object";
class PositionInfo
@@ -13224,12 +11882,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7902;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item511
+ class Item510
{
dataType="Object";
class PositionInfo
@@ -13240,12 +11899,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=7903;
type="Land_HBarrier_Big_F";
atlOffset=0.4550705;
};
- class Item512
+ class Item511
{
dataType="Object";
class PositionInfo
@@ -13257,12 +11917,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7904;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item513
+ class Item512
{
dataType="Object";
class PositionInfo
@@ -13274,11 +11935,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7905;
type="Land_HBarrier_Big_F";
};
- class Item514
+ class Item513
{
dataType="Object";
class PositionInfo
@@ -13290,11 +11952,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7906;
type="Land_HBarrier_Big_F";
};
- class Item515
+ class Item514
{
dataType="Object";
class PositionInfo
@@ -13306,11 +11969,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7907;
type="Land_HBarrier_Big_F";
};
- class Item516
+ class Item515
{
dataType="Object";
class PositionInfo
@@ -13322,11 +11986,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7908;
type="Land_HBarrier_Big_F";
};
- class Item517
+ class Item516
{
dataType="Object";
class PositionInfo
@@ -13338,11 +12003,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7909;
type="Land_HBarrier_Big_F";
};
- class Item518
+ class Item517
{
dataType="Object";
class PositionInfo
@@ -13354,11 +12020,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7910;
type="Land_HBarrier_Big_F";
};
- class Item519
+ class Item518
{
dataType="Object";
class PositionInfo
@@ -13370,11 +12037,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7911;
type="Land_HBarrier_Big_F";
};
- class Item520
+ class Item519
{
dataType="Object";
class PositionInfo
@@ -13386,11 +12054,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7912;
type="Land_HBarrier_Big_F";
};
- class Item521
+ class Item520
{
dataType="Object";
class PositionInfo
@@ -13402,11 +12071,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7913;
type="Land_HBarrier_Big_F";
};
- class Item522
+ class Item521
{
dataType="Object";
class PositionInfo
@@ -13418,11 +12088,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7914;
type="Land_HBarrier_Big_F";
};
- class Item523
+ class Item522
{
dataType="Object";
class PositionInfo
@@ -13434,11 +12105,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7915;
type="Land_HBarrier_Big_F";
};
- class Item524
+ class Item523
{
dataType="Object";
class PositionInfo
@@ -13450,11 +12122,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7916;
type="Land_HBarrier_Big_F";
};
- class Item525
+ class Item524
{
dataType="Object";
class PositionInfo
@@ -13466,12 +12139,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7917;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item526
+ class Item525
{
dataType="Object";
class PositionInfo
@@ -13483,11 +12157,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7918;
type="Land_HBarrier_Big_F";
};
- class Item527
+ class Item526
{
dataType="Object";
class PositionInfo
@@ -13499,11 +12174,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7919;
type="Land_HBarrier_Big_F";
};
- class Item528
+ class Item527
{
dataType="Object";
class PositionInfo
@@ -13519,7 +12195,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.25;
};
- class Item529
+ class Item528
{
dataType="Object";
class PositionInfo
@@ -13536,7 +12212,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=-7.6293945e-006;
};
- class Item530
+ class Item529
{
dataType="Object";
class PositionInfo
@@ -13548,11 +12224,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7922;
type="Land_HBarrier_Big_F";
};
- class Item531
+ class Item530
{
dataType="Object";
class PositionInfo
@@ -13564,11 +12241,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7923;
type="Land_HBarrier_Big_F";
};
- class Item532
+ class Item531
{
dataType="Object";
class PositionInfo
@@ -13580,11 +12258,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7924;
type="Land_HBarrier_Big_F";
};
- class Item533
+ class Item532
{
dataType="Object";
class PositionInfo
@@ -13596,12 +12275,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7925;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item534
+ class Item533
{
dataType="Object";
class PositionInfo
@@ -13613,12 +12293,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7926;
type="Land_HBarrier_Big_F";
atlOffset=-7.6293945e-006;
};
- class Item535
+ class Item534
{
dataType="Object";
class PositionInfo
@@ -13630,12 +12311,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7927;
type="Land_HBarrier_Big_F";
atlOffset=7.6293945e-006;
};
- class Item536
+ class Item535
{
dataType="Object";
class PositionInfo
@@ -13647,11 +12329,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=7928;
type="Land_HBarrier_Big_F";
};
- class Item537
+ class Item536
{
dataType="Object";
class PositionInfo
@@ -13668,7 +12351,7 @@ class Mission
type="Land_BarGate_F";
atlOffset=0.24999237;
};
- class Item538
+ class Item537
{
dataType="Object";
class PositionInfo
@@ -13684,7 +12367,7 @@ class Mission
id=7930;
type="Land_Cargo_Patrol_V1_F";
};
- class Item539
+ class Item538
{
dataType="Object";
class PositionInfo
@@ -13700,7 +12383,7 @@ class Mission
id=7931;
type="Land_Cargo_Patrol_V1_F";
};
- class Item540
+ class Item539
{
dataType="Object";
class PositionInfo
@@ -13716,7 +12399,7 @@ class Mission
id=7932;
type="Land_Cargo_House_V1_F";
};
- class Item541
+ class Item540
{
dataType="Object";
class PositionInfo
@@ -13733,7 +12416,7 @@ class Mission
type="Land_Cargo_House_V1_F";
atlOffset=7.6293945e-006;
};
- class Item542
+ class Item541
{
dataType="Object";
class PositionInfo
@@ -13750,7 +12433,7 @@ class Mission
type="Land_TTowerSmall_1_F";
atlOffset=7.6293945e-006;
};
- class Item543
+ class Item542
{
dataType="Object";
class PositionInfo
@@ -13767,7 +12450,7 @@ class Mission
type="Land_TTowerSmall_2_F";
atlOffset=7.6293945e-006;
};
- class Item544
+ class Item543
{
dataType="Object";
class PositionInfo
@@ -13783,7 +12466,7 @@ class Mission
id=7936;
type="Land_Cargo_Patrol_V1_F";
};
- class Item545
+ class Item544
{
dataType="Object";
class PositionInfo
@@ -13794,12 +12477,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7937;
type="Land_Cargo40_military_green_F";
atlOffset=0.41942596;
};
- class Item546
+ class Item545
{
dataType="Object";
class PositionInfo
@@ -13810,28 +12495,14 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=7938;
type="Land_Cargo40_military_green_F";
atlOffset=0.34242249;
};
- class Item547
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={7069.082,103.81417,6772.7065};
- angles[]={0.027990974,6.1866245,6.2567925};
- };
- side="Empty";
- class Attributes
- {
- };
- id=7939;
- type="Land_Cargo40_military_green_F";
- atlOffset=5.8844223;
- };
- class Item548
+ class Item546
{
dataType="Object";
class PositionInfo
@@ -13848,7 +12519,7 @@ class Mission
type="Land_Medevac_house_V1_F";
atlOffset=7.6293945e-006;
};
- class Item549
+ class Item547
{
dataType="Logic";
class PositionInfo
@@ -13905,7 +12576,7 @@ class Mission
nAttributes=2;
};
};
- class Item550
+ class Item548
{
dataType="Marker";
position[]={5411.4707,451.25,5968.7446};
@@ -13920,7 +12591,7 @@ class Mission
id=7946;
atlOffset=80.688202;
};
- class Item551
+ class Item549
{
dataType="Marker";
position[]={10685.275,38.889198,3810.7349};
@@ -13935,7 +12606,7 @@ class Mission
id=7947;
atlOffset=15.959801;
};
- class Item552
+ class Item550
{
dataType="Marker";
position[]={1119.0909,16.625,11948.07};
@@ -13950,7 +12621,7 @@ class Mission
id=7948;
atlOffset=-13.964973;
};
- class Item553
+ class Item551
{
dataType="Marker";
position[]={9662.0869,33.314789,3789.7827};
@@ -13959,7 +12630,7 @@ class Mission
id=7950;
atlOffset=-1.9511871;
};
- class Item554
+ class Item552
{
dataType="Marker";
position[]={9430.9902,15.582298,3615.3931};
@@ -13968,7 +12639,7 @@ class Mission
id=7951;
atlOffset=-1.9511871;
};
- class Item555
+ class Item553
{
dataType="Marker";
position[]={9767.667,36.92873,3990.6501};
@@ -13977,7 +12648,7 @@ class Mission
id=7952;
atlOffset=-1.9511871;
};
- class Item556
+ class Item554
{
dataType="Marker";
position[]={10066.299,26.17466,4027.6467};
@@ -13986,7 +12657,7 @@ class Mission
id=7953;
atlOffset=-1.9511871;
};
- class Item557
+ class Item555
{
dataType="Marker";
position[]={10486.761,15.848598,4196.1509};
@@ -13995,7 +12666,7 @@ class Mission
id=7954;
atlOffset=-1.9511881;
};
- class Item558
+ class Item556
{
dataType="Marker";
position[]={11058.517,22.712757,4197.6699};
@@ -14004,7 +12675,7 @@ class Mission
id=7955;
atlOffset=-1.9511871;
};
- class Item559
+ class Item557
{
dataType="Marker";
position[]={11261.775,15.748955,4268.458};
@@ -14013,7 +12684,7 @@ class Mission
id=7956;
atlOffset=-1.9511871;
};
- class Item560
+ class Item558
{
dataType="Marker";
position[]={833.31549,14.35758,11943.996};
@@ -14022,7 +12693,7 @@ class Mission
id=7958;
atlOffset=-1.9511871;
};
- class Item561
+ class Item559
{
dataType="Logic";
class PositionInfo
@@ -14079,7 +12750,7 @@ class Mission
nAttributes=2;
};
};
- class Item562
+ class Item560
{
dataType="Layer";
name="Open Ammo Dump_4";
@@ -14168,6 +12839,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8489;
type="Land_HBarrier_5_F";
@@ -14379,6 +13051,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8501;
type="Land_HBarrier_5_F";
@@ -14432,6 +13105,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8504;
type="Land_HBarrier_5_F";
@@ -14449,6 +13123,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8505;
type="Land_HBarrier_5_F";
@@ -14467,6 +13142,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8506;
type="Land_HBarrier_5_F";
@@ -14484,6 +13160,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8507;
type="Land_HBarrier_5_F";
@@ -14510,7 +13187,7 @@ class Mission
id=7962;
atlOffset=1.3211975;
};
- class Item563
+ class Item561
{
dataType="Layer";
name="Vehicle Repair_4";
@@ -14618,6 +13295,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8514;
type="Land_HBarrier_5_F";
@@ -14654,6 +13332,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8516;
type="Land_HBarrier_1_F";
@@ -14671,6 +13350,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8517;
type="Land_HBarrier_5_F";
@@ -14689,6 +13369,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8518;
type="Land_HBarrier_1_F";
@@ -14706,6 +13387,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8519;
type="Land_HBarrier_5_F";
@@ -14723,6 +13405,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8520;
type="Land_HBarrier_5_F";
@@ -14740,6 +13423,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8521;
type="Land_HBarrier_1_F";
@@ -14757,6 +13441,7 @@ class Mission
class Attributes
{
skill=0.2;
+ disableSimulation=1;
};
id=8522;
type="Land_HBarrier_1_F";
@@ -14782,7 +13467,7 @@ class Mission
id=7987;
atlOffset=-0.01071167;
};
- class Item564
+ class Item562
{
dataType="Object";
class PositionInfo
@@ -14799,7 +13484,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=2.3841858e-007;
};
- class Item565
+ class Item563
{
dataType="Object";
class PositionInfo
@@ -14816,7 +13501,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-4.7683716e-007;
};
- class Item566
+ class Item564
{
dataType="Object";
class PositionInfo
@@ -14833,7 +13518,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-2.3841858e-007;
};
- class Item567
+ class Item565
{
dataType="Object";
class PositionInfo
@@ -14850,7 +13535,7 @@ class Mission
type="Land_Cargo_Patrol_V2_F";
atlOffset=-4.7683716e-007;
};
- class Item568
+ class Item566
{
dataType="Object";
class PositionInfo
@@ -14867,7 +13552,7 @@ class Mission
type="Land_Cargo_Tower_V2_F";
atlOffset=-1.9073486e-006;
};
- class Item569
+ class Item567
{
dataType="Object";
class PositionInfo
@@ -14883,7 +13568,7 @@ class Mission
type="Land_Cargo_Tower_V2_F";
atlOffset=-1.9073486e-006;
};
- class Item570
+ class Item568
{
dataType="Object";
class PositionInfo
@@ -14899,7 +13584,7 @@ class Mission
id=8386;
type="Land_Cargo_Patrol_V2_F";
};
- class Item571
+ class Item569
{
dataType="Logic";
class PositionInfo
@@ -14910,7 +13595,7 @@ class Mission
id=8387;
type="Logic";
};
- class Item572
+ class Item570
{
dataType="Marker";
position[]={8515.5879,-1.2098112,3849.7024};
@@ -14919,7 +13604,7 @@ class Mission
id=8388;
atlOffset=6.3372011;
};
- class Item573
+ class Item571
{
dataType="Object";
class PositionInfo
@@ -14931,12 +13616,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8389;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item574
+ class Item572
{
dataType="Object";
class PositionInfo
@@ -14948,12 +13634,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8390;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item575
+ class Item573
{
dataType="Object";
class PositionInfo
@@ -14965,12 +13652,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8391;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item576
+ class Item574
{
dataType="Object";
class PositionInfo
@@ -14982,12 +13670,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8392;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item577
+ class Item575
{
dataType="Object";
class PositionInfo
@@ -15003,7 +13692,7 @@ class Mission
id=8393;
type="Land_Hangar_F";
};
- class Item578
+ class Item576
{
dataType="Object";
class PositionInfo
@@ -15019,7 +13708,7 @@ class Mission
id=8394;
type="Land_TentHangar_V1_F";
};
- class Item579
+ class Item577
{
dataType="Object";
class PositionInfo
@@ -15035,7 +13724,7 @@ class Mission
id=8395;
type="Land_TentHangar_V1_F";
};
- class Item580
+ class Item578
{
dataType="Object";
class PositionInfo
@@ -15051,7 +13740,7 @@ class Mission
id=8396;
type="Land_TentHangar_V1_F";
};
- class Item581
+ class Item579
{
dataType="Object";
class PositionInfo
@@ -15063,29 +13752,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8399;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item582
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8038.3208,30.15959,10313.423};
- angles[]={6.2807932,4.6746531,6.2799835};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8400;
- type="Land_HelipadCircle_F";
- atlOffset=1.9073486e-006;
- };
- class Item583
+ class Item580
{
dataType="Object";
class PositionInfo
@@ -15097,12 +13770,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8401;
type="Land_HelipadCircle_F";
atlOffset=1.9073486e-006;
};
- class Item584
+ class Item581
{
dataType="Object";
class PositionInfo
@@ -15118,7 +13792,7 @@ class Mission
id=8402;
type="Land_TentHangar_V1_F";
};
- class Item585
+ class Item582
{
dataType="Object";
class PositionInfo
@@ -15135,7 +13809,7 @@ class Mission
type="Land_TentHangar_V1_F";
atlOffset=-1.9073486e-006;
};
- class Item586
+ class Item583
{
dataType="Object";
class PositionInfo
@@ -15151,7 +13825,7 @@ class Mission
id=8404;
type="Land_TentHangar_V1_F";
};
- class Item587
+ class Item584
{
dataType="Layer";
name="Airports";
@@ -15310,7 +13984,7 @@ class Mission
id=8407;
atlOffset=-188.48845;
};
- class Item588
+ class Item585
{
dataType="Object";
class PositionInfo
@@ -15322,11 +13996,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8410;
type="Land_HelipadCircle_F";
+ atlOffset=-3.0517578e-005;
};
- class Item589
+ class Item586
{
dataType="Object";
class PositionInfo
@@ -15338,11 +14014,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8413;
type="Land_HelipadCircle_F";
};
- class Item590
+ class Item587
{
dataType="Layer";
name="Factories";
@@ -15447,7 +14124,7 @@ class Mission
id=8415;
atlOffset=-70.355667;
};
- class Item591
+ class Item588
{
dataType="Object";
class PositionInfo
@@ -15459,11 +14136,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8418;
type="Land_HelipadCircle_F";
};
- class Item592
+ class Item589
{
dataType="Object";
class PositionInfo
@@ -15475,12 +14153,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8419;
type="Land_HelipadCircle_F";
atlOffset=7.6293945e-006;
};
- class Item593
+ class Item590
{
dataType="Object";
class PositionInfo
@@ -15492,11 +14171,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8420;
type="Land_HelipadCircle_F";
};
- class Item594
+ class Item591
{
dataType="Object";
class PositionInfo
@@ -15508,11 +14188,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8422;
type="Land_HelipadSquare_F";
};
- class Item595
+ class Item592
{
dataType="Object";
class PositionInfo
@@ -15524,11 +14205,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8423;
type="Land_HelipadSquare_F";
};
- class Item596
+ class Item593
{
dataType="Object";
class PositionInfo
@@ -15540,12 +14222,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8426;
type="Land_HelipadSquare_F";
atlOffset=1.5258789e-005;
};
- class Item597
+ class Item594
{
dataType="Object";
class PositionInfo
@@ -15557,11 +14240,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8428;
type="Land_HelipadSquare_F";
};
- class Item598
+ class Item595
{
dataType="Object";
class PositionInfo
@@ -15573,11 +14257,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8430;
type="Land_HelipadSquare_F";
};
- class Item599
+ class Item596
{
dataType="Layer";
name="Resources";
@@ -15778,24 +14463,24 @@ class Mission
id=8431;
atlOffset=12.317612;
};
- class Item600
+ class Item597
{
dataType="Object";
class PositionInfo
{
- position[]={1050.157,3.4221988,691.05896};
- angles[]={0.0087958695,1.6255023,0.022394964};
+ position[]={1050.157,3.4221969,691.05902};
+ angles[]={0.0087964591,1.625495,0.022392575};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8434;
type="Land_HelipadSquare_F";
- atlOffset=1.1920929e-006;
};
- class Item601
+ class Item598
{
dataType="Object";
class PositionInfo
@@ -15807,11 +14492,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8435;
type="Land_HelipadSquare_F";
+ atlOffset=-3.3378601e-006;
};
- class Item602
+ class Item599
{
dataType="Object";
class PositionInfo
@@ -15823,12 +14510,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8438;
type="Land_HelipadSquare_F";
atlOffset=3.3378601e-006;
};
- class Item603
+ class Item600
{
dataType="Object";
class PositionInfo
@@ -15840,11 +14528,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8441;
type="Land_HelipadSquare_F";
+ atlOffset=-2.3841858e-007;
};
- class Item604
+ class Item601
{
dataType="Object";
class PositionInfo
@@ -15856,11 +14546,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8442;
type="Land_HelipadSquare_F";
};
- class Item605
+ class Item602
{
dataType="Object";
class PositionInfo
@@ -15871,12 +14562,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=8445;
type="Land_HelipadSquare_F";
atlOffset=1.4099998;
};
- class Item606
+ class Item603
{
dataType="Object";
class PositionInfo
@@ -15888,11 +14580,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8447;
type="Land_HelipadSquare_F";
};
- class Item607
+ class Item604
{
dataType="Object";
class PositionInfo
@@ -15904,11 +14597,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8448;
type="Land_HelipadSquare_F";
};
- class Item608
+ class Item605
{
dataType="Object";
class PositionInfo
@@ -15920,11 +14614,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8449;
type="Land_HelipadSquare_F";
};
- class Item609
+ class Item606
{
dataType="Layer";
name="Seaports";
@@ -15968,7 +14663,7 @@ class Mission
colorName="ColorGreen";
a=7.539;
b=6;
- angle=54.692429;
+ angle=54.692421;
id=8437;
atlOffset=0.90610528;
};
@@ -16181,47 +14876,15 @@ class Mission
type="rectangle";
colorName="ColorWEST";
a=80.919556;
- b=76.199707;
- angle=25.683172;
- id=11;
- };
- };
- id=8452;
- atlOffset=14.458153;
- };
- class Item610
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8002.9717,30.53899,10683.684};
- angles[]={0.0055992967,4.6181393,6.2824135};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8453;
- type="Land_HelipadCircle_F";
- };
- class Item611
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={8011.3784,30.589775,10625.852};
- angles[]={6.2824135,4.6181393,0.00077204045};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
+ b=76.199707;
+ angle=25.683172;
+ id=11;
+ };
};
- id=8455;
- type="Land_HelipadCircle_F";
+ id=8452;
+ atlOffset=14.458153;
};
- class Item612
+ class Item607
{
dataType="Object";
class PositionInfo
@@ -16233,11 +14896,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8456;
type="Land_HelipadCircle_F";
+ atlOffset=-9.5367432e-006;
};
- class Item613
+ class Item608
{
dataType="Object";
class PositionInfo
@@ -16249,12 +14914,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8462;
type="Land_HelipadSquare_F";
atlOffset=3.0517578e-005;
};
- class Item614
+ class Item609
{
dataType="Object";
class PositionInfo
@@ -16266,11 +14932,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8463;
type="Land_HelipadSquare_F";
};
- class Item615
+ class Item610
{
dataType="Object";
class PositionInfo
@@ -16282,11 +14949,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8471;
type="Land_HelipadSquare_F";
};
- class Item616
+ class Item611
{
dataType="Object";
class PositionInfo
@@ -16298,11 +14966,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8472;
type="Land_HelipadSquare_F";
};
- class Item617
+ class Item612
{
dataType="Object";
class PositionInfo
@@ -16314,11 +14983,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8476;
type="Land_HelipadSquare_F";
+ atlOffset=-7.6293945e-006;
};
- class Item618
+ class Item613
{
dataType="Object";
class PositionInfo
@@ -16330,11 +15001,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8477;
type="Land_HelipadSquare_F";
+ atlOffset=-3.8146973e-006;
};
- class Item619
+ class Item614
{
dataType="Object";
class PositionInfo
@@ -16346,12 +15019,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8480;
type="Land_HelipadSquare_F";
atlOffset=3.0517578e-005;
};
- class Item620
+ class Item615
{
dataType="Object";
class PositionInfo
@@ -16363,11 +15037,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8481;
type="Land_HelipadSquare_F";
};
- class Item621
+ class Item616
{
dataType="Object";
class PositionInfo
@@ -16379,11 +15054,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8483;
type="Land_HelipadSquare_F";
};
- class Item622
+ class Item617
{
dataType="Layer";
name="Outposts";
@@ -16414,7 +15090,7 @@ class Mission
colorName="ColorGreen";
a=20.476999;
b=6;
- angle=220.9269;
+ angle=220.92679;
id=8461;
atlOffset=0.00021362305;
};
@@ -16483,7 +15159,7 @@ class Mission
colorName="ColorGreen";
a=13.154379;
b=5.3131795;
- angle=83.795937;
+ angle=83.795929;
id=8467;
atlOffset=0.8065567;
};
@@ -16792,7 +15468,7 @@ class Mission
id=8484;
atlOffset=25.185242;
};
- class Item623
+ class Item618
{
dataType="Object";
class PositionInfo
@@ -16804,12 +15480,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8524;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item624
+ class Item619
{
dataType="Object";
class PositionInfo
@@ -16821,11 +15498,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8525;
type="Land_HBarrier_5_F";
};
- class Item625
+ class Item620
{
dataType="Object";
class PositionInfo
@@ -16837,11 +15515,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8526;
type="Land_HBarrier_Big_F";
};
- class Item626
+ class Item621
{
dataType="Object";
class PositionInfo
@@ -16853,12 +15532,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8527;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item627
+ class Item622
{
dataType="Object";
class PositionInfo
@@ -16870,11 +15550,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8528;
type="Land_HBarrier_Big_F";
};
- class Item628
+ class Item623
{
dataType="Object";
class PositionInfo
@@ -16886,11 +15567,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8529;
type="Land_HBarrier_5_F";
};
- class Item629
+ class Item624
{
dataType="Object";
class PositionInfo
@@ -16902,11 +15584,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8530;
type="Land_HBarrier_5_F";
};
- class Item630
+ class Item625
{
dataType="Object";
class PositionInfo
@@ -16918,11 +15601,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8531;
type="Land_HBarrier_Big_F";
};
- class Item631
+ class Item626
{
dataType="Object";
class PositionInfo
@@ -16934,11 +15618,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8532;
type="Land_HBarrier_Big_F";
};
- class Item632
+ class Item627
{
dataType="Object";
class PositionInfo
@@ -16950,12 +15635,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8533;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item633
+ class Item628
{
dataType="Object";
class PositionInfo
@@ -16967,11 +15653,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8534;
type="Land_HBarrier_3_F";
};
- class Item634
+ class Item629
{
dataType="Object";
class PositionInfo
@@ -16983,11 +15670,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8535;
type="Land_HBarrier_Big_F";
};
- class Item635
+ class Item630
{
dataType="Object";
class PositionInfo
@@ -16999,11 +15687,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8536;
type="Land_HBarrier_5_F";
};
- class Item636
+ class Item631
{
dataType="Object";
class PositionInfo
@@ -17015,12 +15704,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8537;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item637
+ class Item632
{
dataType="Object";
class PositionInfo
@@ -17032,12 +15722,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8538;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item638
+ class Item633
{
dataType="Object";
class PositionInfo
@@ -17049,11 +15740,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8539;
type="Land_HBarrier_Big_F";
};
- class Item639
+ class Item634
{
dataType="Object";
class PositionInfo
@@ -17065,12 +15757,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8540;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item640
+ class Item635
{
dataType="Object";
class PositionInfo
@@ -17082,11 +15775,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8541;
type="Land_HBarrier_Big_F";
};
- class Item641
+ class Item636
{
dataType="Object";
class PositionInfo
@@ -17098,12 +15792,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8542;
type="Land_HBarrier_5_F";
atlOffset=-0.19999695;
};
- class Item642
+ class Item637
{
dataType="Object";
class PositionInfo
@@ -17115,12 +15810,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8543;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item643
+ class Item638
{
dataType="Object";
class PositionInfo
@@ -17132,11 +15828,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8544;
type="Land_HBarrier_Big_F";
};
- class Item644
+ class Item639
{
dataType="Object";
class PositionInfo
@@ -17148,11 +15845,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8545;
type="Land_HBarrier_Big_F";
};
- class Item645
+ class Item640
{
dataType="Object";
class PositionInfo
@@ -17164,11 +15862,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8546;
type="Land_HBarrier_3_F";
};
- class Item646
+ class Item641
{
dataType="Object";
class PositionInfo
@@ -17180,11 +15879,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8547;
type="Land_HBarrier_Big_F";
};
- class Item647
+ class Item642
{
dataType="Object";
class PositionInfo
@@ -17196,11 +15896,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8548;
type="Land_HBarrier_Big_F";
};
- class Item648
+ class Item643
{
dataType="Object";
class PositionInfo
@@ -17212,11 +15913,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8549;
type="Land_HBarrier_Big_F";
};
- class Item649
+ class Item644
{
dataType="Object";
class PositionInfo
@@ -17228,11 +15930,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8550;
type="Land_HBarrierWall6_F";
};
- class Item650
+ class Item645
{
dataType="Object";
class PositionInfo
@@ -17244,12 +15947,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8551;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item651
+ class Item646
{
dataType="Object";
class PositionInfo
@@ -17266,7 +15970,7 @@ class Mission
type="Land_Mil_WiredFence_Gate_F";
atlOffset=1.5258789e-005;
};
- class Item652
+ class Item647
{
dataType="Object";
class PositionInfo
@@ -17278,12 +15982,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8553;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item653
+ class Item648
{
dataType="Object";
class PositionInfo
@@ -17295,12 +16000,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8554;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item654
+ class Item649
{
dataType="Object";
class PositionInfo
@@ -17312,11 +16018,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8555;
type="Land_HBarrier_5_F";
};
- class Item655
+ class Item650
{
dataType="Object";
class PositionInfo
@@ -17328,12 +16035,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8556;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item656
+ class Item651
{
dataType="Object";
class PositionInfo
@@ -17345,12 +16053,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8557;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item657
+ class Item652
{
dataType="Object";
class PositionInfo
@@ -17362,11 +16071,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8558;
type="Land_HBarrier_5_F";
};
- class Item658
+ class Item653
{
dataType="Object";
class PositionInfo
@@ -17378,12 +16088,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8559;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item659
+ class Item654
{
dataType="Object";
class PositionInfo
@@ -17395,12 +16106,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8560;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item660
+ class Item655
{
dataType="Object";
class PositionInfo
@@ -17412,11 +16124,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8561;
type="Land_HBarrier_Big_F";
};
- class Item661
+ class Item656
{
dataType="Object";
class PositionInfo
@@ -17428,11 +16141,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8562;
type="Land_HBarrier_5_F";
};
- class Item662
+ class Item657
{
dataType="Object";
class PositionInfo
@@ -17444,11 +16158,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8563;
type="Land_HBarrier_5_F";
};
- class Item663
+ class Item658
{
dataType="Object";
class PositionInfo
@@ -17460,11 +16175,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8564;
type="Land_HBarrier_Big_F";
};
- class Item664
+ class Item659
{
dataType="Object";
class PositionInfo
@@ -17476,12 +16192,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8565;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item665
+ class Item660
{
dataType="Object";
class PositionInfo
@@ -17493,11 +16210,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8566;
type="Land_HBarrier_Big_F";
};
- class Item666
+ class Item661
{
dataType="Object";
class PositionInfo
@@ -17509,11 +16227,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8567;
type="Land_HBarrier_5_F";
};
- class Item667
+ class Item662
{
dataType="Object";
class PositionInfo
@@ -17525,11 +16244,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8568;
type="Land_HBarrier_5_F";
};
- class Item668
+ class Item663
{
dataType="Object";
class PositionInfo
@@ -17541,11 +16261,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8569;
type="Land_HBarrier_Big_F";
};
- class Item669
+ class Item664
{
dataType="Object";
class PositionInfo
@@ -17557,12 +16278,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8570;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item670
+ class Item665
{
dataType="Object";
class PositionInfo
@@ -17574,11 +16296,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8571;
type="Land_HBarrier_Big_F";
};
- class Item671
+ class Item666
{
dataType="Object";
class PositionInfo
@@ -17590,11 +16313,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8572;
type="Land_HBarrier_5_F";
};
- class Item672
+ class Item667
{
dataType="Object";
class PositionInfo
@@ -17606,11 +16330,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8573;
type="Land_HBarrier_5_F";
};
- class Item673
+ class Item668
{
dataType="Object";
class PositionInfo
@@ -17622,11 +16347,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8574;
type="Land_HBarrier_Big_F";
};
- class Item674
+ class Item669
{
dataType="Object";
class PositionInfo
@@ -17638,11 +16364,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8575;
type="Land_HBarrier_5_F";
};
- class Item675
+ class Item670
{
dataType="Object";
class PositionInfo
@@ -17654,11 +16381,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8576;
type="Land_HBarrier_Big_F";
};
- class Item676
+ class Item671
{
dataType="Object";
class PositionInfo
@@ -17670,50 +16398,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8577;
type="Land_HBarrier_3_F";
};
- class Item677
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2502.2781,202.54012,3615.8379};
- angles[]={6.2344246,5.9818177,6.2711854};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8578;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item678
+ class Item672
{
dataType="Object";
class PositionInfo
@@ -17729,7 +16419,7 @@ class Mission
id=8579;
type="Land_Razorwire_F";
};
- class Item679
+ class Item673
{
dataType="Object";
class PositionInfo
@@ -17745,280 +16435,139 @@ class Mission
id=8580;
type="Land_Razorwire_F";
};
- class Item680
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2366.3589,194.25618,3583.9026};
- angles[]={6.2352209,4.4085965,0.11706242};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8581;
- type="Land_Razorwire_F";
- };
- class Item681
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2381.2017,194.33044,3553.189};
- angles[]={6.2687874,4.4085965,0.1139039};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8582;
- type="Land_Razorwire_F";
- };
- class Item682
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2379.4497,193.89984,3543.7319};
- angles[]={6.2679858,4.4085965,0.094120465};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8583;
- type="Land_Razorwire_F";
- };
- class Item683
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2386.2866,194.43472,3536.9666};
- angles[]={6.2535958,4.4085965,0.094120465};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8584;
- type="Land_Razorwire_F";
- };
- class Item684
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2428.3484,196.6189,3540.8076};
- angles[]={6.2352209,5.9793925,0.030390549};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8585;
- type="Land_HBarrier_3_F";
- };
- class Item685
+ class Item674
{
dataType="Object";
class PositionInfo
{
- position[]={2374.364,196.94046,3563.3726};
- angles[]={0,1.2557691,0};
+ position[]={2366.3589,194.25618,3583.9026};
+ angles[]={6.2352209,4.4085965,0.11706242};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
};
- id=8586;
- type="Land_LampSolar_F";
- atlOffset=1.5258789e-005;
+ id=8581;
+ type="Land_Razorwire_F";
};
- class Item686
+ class Item675
{
dataType="Object";
class PositionInfo
{
- position[]={2511.0068,222.79994,3619.7566};
- angles[]={0,2.8402252,0};
+ position[]={2381.2017,194.33044,3553.189};
+ angles[]={6.2687874,4.4085965,0.1139039};
};
side="Empty";
+ flags=4;
class Attributes
{
};
- id=8587;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=18.18277;
+ id=8582;
+ type="Land_Razorwire_F";
};
- class Item687
+ class Item676
{
dataType="Object";
class PositionInfo
{
- position[]={2502.2781,204.76514,3615.8379};
- angles[]={0.062013965,2.8402252,5.9302912};
+ position[]={2379.4497,193.89984,3543.7319};
+ angles[]={6.2679858,4.4085965,0.094120465};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=8588;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.11151123;
+ id=8583;
+ type="Land_Razorwire_F";
};
- class Item688
+ class Item677
{
dataType="Object";
class PositionInfo
{
- position[]={2510.3848,201.86732,3608.7188};
- angles[]={6.2176785,2.8402252,6.2711854};
+ position[]={2386.2866,194.43472,3536.9666};
+ angles[]={6.2535958,4.4085965,0.094120465};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=8589;
- type="Land_HBarrier_Big_F";
+ id=8584;
+ type="Land_Razorwire_F";
};
- class Item689
+ class Item678
{
dataType="Object";
class PositionInfo
{
- position[]={2520.7446,201.96783,3623.7126};
- angles[]={6.2208652,4.4110217,6.2663836};
+ position[]={2428.3484,196.6189,3540.8076};
+ angles[]={6.2352209,5.9793925,0.030390549};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=8590;
- type="Land_PressureWasher_01_F";
- atlOffset=-0.00012207031;
+ id=8585;
+ type="Land_HBarrier_3_F";
};
- class Item690
+ class Item679
{
dataType="Object";
class PositionInfo
{
- position[]={2509.7061,201.3537,3611.4856};
- angles[]={6.2176785,2.8402252,6.2711854};
+ position[]={2374.364,196.94046,3563.3726};
+ angles[]={0,1.2557691,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=8591;
- type="Land_AirConditioner_03_F";
+ id=8586;
+ type="Land_LampSolar_F";
+ atlOffset=1.5258789e-005;
};
- class Item691
+ class Item680
{
dataType="Object";
class PositionInfo
{
- position[]={2496.4004,201.65584,3614.5972};
- angles[]={6.236022,4.4110217,6.277586};
+ position[]={2510.3848,201.86732,3608.7188};
+ angles[]={6.2176785,2.8402252,6.2711854};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=8592;
- type="Land_AirConditioner_02_F";
+ id=8589;
+ type="Land_HBarrier_Big_F";
};
- class Item692
+ class Item681
{
dataType="Object";
class PositionInfo
{
- position[]={2511.8264,202.61993,3618.8059};
- angles[]={6.2256494,5.9818177,6.2799835};
+ position[]={2520.7446,201.96783,3623.7126};
+ angles[]={6.2208652,4.4110217,6.2663836};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=8593;
- type="Land_MedicalTent_01_NATO_generic_closed_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="MedSign_Hide";
- expression="_this animateSource ['MedSign_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute1
- {
- property="Door_Hide";
- expression="_this animateSource ['Door_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=3;
- };
+ id=8590;
+ type="Land_PressureWasher_01_F";
+ atlOffset=-0.00012207031;
};
- class Item693
+ class Item682
{
dataType="Object";
class PositionInfo
@@ -18030,11 +16579,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8594;
type="Land_HBarrier_5_F";
};
- class Item694
+ class Item683
{
dataType="Object";
class PositionInfo
@@ -18046,11 +16596,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8595;
type="Land_HBarrier_Big_F";
};
- class Item695
+ class Item684
{
dataType="Object";
class PositionInfo
@@ -18062,11 +16613,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8596;
type="Land_HBarrier_5_F";
};
- class Item696
+ class Item685
{
dataType="Object";
class PositionInfo
@@ -18078,11 +16630,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8597;
type="Land_HBarrier_Big_F";
};
- class Item697
+ class Item686
{
dataType="Object";
class PositionInfo
@@ -18094,11 +16647,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8598;
type="Land_HBarrier_5_F";
};
- class Item698
+ class Item687
{
dataType="Object";
class PositionInfo
@@ -18110,11 +16664,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8599;
type="Land_HBarrier_Big_F";
};
- class Item699
+ class Item688
{
dataType="Object";
class PositionInfo
@@ -18126,11 +16681,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8600;
type="Land_HBarrier_5_F";
};
- class Item700
+ class Item689
{
dataType="Object";
class PositionInfo
@@ -18142,11 +16698,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8601;
type="Land_HBarrier_3_F";
};
- class Item701
+ class Item690
{
dataType="Object";
class PositionInfo
@@ -18158,12 +16715,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8602;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item702
+ class Item691
{
dataType="Object";
class PositionInfo
@@ -18175,12 +16733,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8603;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item703
+ class Item692
{
dataType="Object";
class PositionInfo
@@ -18192,11 +16751,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8604;
type="Land_HBarrier_3_F";
};
- class Item704
+ class Item693
{
dataType="Object";
class PositionInfo
@@ -18208,12 +16768,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8605;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item705
+ class Item694
{
dataType="Object";
class PositionInfo
@@ -18225,11 +16786,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8606;
type="Land_HBarrier_Big_F";
};
- class Item706
+ class Item695
{
dataType="Object";
class PositionInfo
@@ -18241,12 +16803,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8607;
type="Land_HBarrier_3_F";
atlOffset=1.5258789e-005;
};
- class Item707
+ class Item696
{
dataType="Object";
class PositionInfo
@@ -18258,12 +16821,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8608;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item708
+ class Item697
{
dataType="Object";
class PositionInfo
@@ -18275,12 +16839,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8609;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item709
+ class Item698
{
dataType="Object";
class PositionInfo
@@ -18292,11 +16857,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8610;
type="Land_HBarrier_3_F";
};
- class Item710
+ class Item699
{
dataType="Object";
class PositionInfo
@@ -18308,11 +16874,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8611;
type="Land_HBarrier_5_F";
};
- class Item711
+ class Item700
{
dataType="Object";
class PositionInfo
@@ -18324,11 +16891,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8612;
type="Land_HBarrier_Big_F";
};
- class Item712
+ class Item701
{
dataType="Object";
class PositionInfo
@@ -18340,11 +16908,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8613;
type="Land_HBarrier_Big_F";
};
- class Item713
+ class Item702
{
dataType="Object";
class PositionInfo
@@ -18356,11 +16925,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8614;
type="Land_HBarrier_5_F";
};
- class Item714
+ class Item703
{
dataType="Object";
class PositionInfo
@@ -18372,12 +16942,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8615;
type="Land_HBarrier_5_F";
atlOffset=-3.0517578e-005;
};
- class Item715
+ class Item704
{
dataType="Object";
class PositionInfo
@@ -18389,11 +16960,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8616;
type="Land_HBarrier_5_F";
};
- class Item716
+ class Item705
{
dataType="Object";
class PositionInfo
@@ -18405,11 +16977,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8617;
type="Land_HBarrier_Big_F";
};
- class Item717
+ class Item706
{
dataType="Object";
class PositionInfo
@@ -18421,11 +16994,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8618;
type="Land_HBarrier_Big_F";
};
- class Item718
+ class Item707
{
dataType="Object";
class PositionInfo
@@ -18437,12 +17011,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8619;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item719
+ class Item708
{
dataType="Object";
class PositionInfo
@@ -18454,11 +17029,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8620;
type="Land_HBarrier_5_F";
};
- class Item720
+ class Item709
{
dataType="Object";
class PositionInfo
@@ -18470,11 +17046,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8621;
type="Land_HBarrier_5_F";
};
- class Item721
+ class Item710
{
dataType="Object";
class PositionInfo
@@ -18486,11 +17063,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8622;
type="Land_HBarrier_Big_F";
};
- class Item722
+ class Item711
{
dataType="Object";
class PositionInfo
@@ -18502,11 +17080,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8623;
type="Land_HBarrier_5_F";
};
- class Item723
+ class Item712
{
dataType="Object";
class PositionInfo
@@ -18518,11 +17097,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8624;
type="Land_HBarrier_5_F";
};
- class Item724
+ class Item713
{
dataType="Object";
class PositionInfo
@@ -18534,11 +17114,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8625;
type="Land_HBarrier_Big_F";
};
- class Item725
+ class Item714
{
dataType="Object";
class PositionInfo
@@ -18550,11 +17131,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8626;
type="Land_HBarrier_5_F";
};
- class Item726
+ class Item715
{
dataType="Object";
class PositionInfo
@@ -18566,11 +17148,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8627;
type="Land_HBarrier_Big_F";
};
- class Item727
+ class Item716
{
dataType="Object";
class PositionInfo
@@ -18582,11 +17165,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8628;
type="Land_HBarrier_5_F";
};
- class Item728
+ class Item717
{
dataType="Object";
class PositionInfo
@@ -18598,11 +17182,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8629;
type="Land_HBarrier_Big_F";
};
- class Item729
+ class Item718
{
dataType="Object";
class PositionInfo
@@ -18614,11 +17199,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8630;
type="Land_HBarrier_5_F";
};
- class Item730
+ class Item719
{
dataType="Object";
class PositionInfo
@@ -18630,11 +17216,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8631;
type="Land_HBarrier_Big_F";
};
- class Item731
+ class Item720
{
dataType="Object";
class PositionInfo
@@ -18646,11 +17233,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8632;
type="Land_HBarrier_5_F";
};
- class Item732
+ class Item721
{
dataType="Object";
class PositionInfo
@@ -18662,11 +17250,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8633;
type="Land_HBarrier_5_F";
};
- class Item733
+ class Item722
{
dataType="Object";
class PositionInfo
@@ -18678,11 +17267,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8634;
type="Land_HBarrier_Big_F";
};
- class Item734
+ class Item723
{
dataType="Object";
class PositionInfo
@@ -18694,12 +17284,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8635;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item735
+ class Item724
{
dataType="Object";
class PositionInfo
@@ -18711,11 +17302,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8636;
type="Land_HBarrier_Big_F";
};
- class Item736
+ class Item725
{
dataType="Object";
class PositionInfo
@@ -18727,11 +17319,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8637;
type="Land_HBarrier_5_F";
};
- class Item737
+ class Item726
{
dataType="Object";
class PositionInfo
@@ -18743,12 +17336,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8638;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item738
+ class Item727
{
dataType="Object";
class PositionInfo
@@ -18760,12 +17354,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8639;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item739
+ class Item728
{
dataType="Object";
class PositionInfo
@@ -18777,11 +17372,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8640;
type="Land_HBarrier_Big_F";
};
- class Item740
+ class Item729
{
dataType="Object";
class PositionInfo
@@ -18793,11 +17389,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8641;
type="Land_HBarrier_5_F";
};
- class Item741
+ class Item730
{
dataType="Object";
class PositionInfo
@@ -18809,11 +17406,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8642;
type="Land_HBarrier_1_F";
};
- class Item742
+ class Item731
{
dataType="Object";
class PositionInfo
@@ -18825,11 +17423,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8643;
type="Land_HBarrier_1_F";
};
- class Item743
+ class Item732
{
dataType="Object";
class PositionInfo
@@ -18841,12 +17440,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8644;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item744
+ class Item733
{
dataType="Object";
class PositionInfo
@@ -18858,12 +17458,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8645;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item745
+ class Item734
{
dataType="Object";
class PositionInfo
@@ -18875,11 +17476,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8646;
type="Land_HBarrier_5_F";
};
- class Item746
+ class Item735
{
dataType="Object";
class PositionInfo
@@ -18891,11 +17493,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8647;
type="Land_HBarrier_Big_F";
};
- class Item747
+ class Item736
{
dataType="Object";
class PositionInfo
@@ -18907,11 +17510,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8648;
type="Land_HBarrier_5_F";
};
- class Item748
+ class Item737
{
dataType="Object";
class PositionInfo
@@ -18923,11 +17527,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8649;
type="Land_HBarrier_Big_F";
};
- class Item749
+ class Item738
{
dataType="Object";
class PositionInfo
@@ -18939,11 +17544,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8650;
type="Land_HBarrier_5_F";
};
- class Item750
+ class Item739
{
dataType="Object";
class PositionInfo
@@ -18955,11 +17561,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8651;
type="Land_HBarrier_3_F";
};
- class Item751
+ class Item740
{
dataType="Object";
class PositionInfo
@@ -18971,11 +17578,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8652;
type="Land_HBarrier_5_F";
};
- class Item752
+ class Item741
{
dataType="Object";
class PositionInfo
@@ -18987,11 +17595,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8653;
type="Land_HBarrier_Big_F";
};
- class Item753
+ class Item742
{
dataType="Object";
class PositionInfo
@@ -19003,11 +17612,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8654;
type="Land_HBarrier_5_F";
};
- class Item754
+ class Item743
{
dataType="Object";
class PositionInfo
@@ -19019,11 +17629,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8655;
type="Land_HBarrier_Big_F";
};
- class Item755
+ class Item744
{
dataType="Object";
class PositionInfo
@@ -19035,11 +17646,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8656;
type="Land_HBarrier_5_F";
};
- class Item756
+ class Item745
{
dataType="Object";
class PositionInfo
@@ -19051,12 +17663,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8657;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item757
+ class Item746
{
dataType="Object";
class PositionInfo
@@ -19072,7 +17685,7 @@ class Mission
id=8658;
type="Land_MobileRadar_01_radar_F";
};
- class Item758
+ class Item747
{
dataType="Object";
class PositionInfo
@@ -19089,7 +17702,7 @@ class Mission
type="Land_MobileRadar_01_generator_F";
atlOffset=0.25138855;
};
- class Item759
+ class Item748
{
dataType="Object";
class PositionInfo
@@ -19105,7 +17718,7 @@ class Mission
id=8660;
type="Land_Cargo_HQ_V1_F";
};
- class Item760
+ class Item749
{
dataType="Object";
class PositionInfo
@@ -19121,7 +17734,7 @@ class Mission
id=8661;
type="Land_Cargo_Patrol_V1_F";
};
- class Item761
+ class Item750
{
dataType="Object";
class PositionInfo
@@ -19137,7 +17750,7 @@ class Mission
id=8662;
type="Land_Cargo_Patrol_V1_F";
};
- class Item762
+ class Item751
{
dataType="Object";
class PositionInfo
@@ -19153,7 +17766,7 @@ class Mission
id=8663;
type="Land_Cargo_Patrol_V1_F";
};
- class Item763
+ class Item752
{
dataType="Object";
class PositionInfo
@@ -19169,7 +17782,7 @@ class Mission
id=8664;
type="Land_Cargo_Patrol_V1_F";
};
- class Item764
+ class Item753
{
dataType="Object";
class PositionInfo
@@ -19181,12 +17794,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=8665;
type="Land_HelipadSquare_F";
atlOffset=0.65576172;
};
- class Item765
+ class Item754
{
dataType="Object";
class PositionInfo
@@ -19198,12 +17812,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8666;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item766
+ class Item755
{
dataType="Object";
class PositionInfo
@@ -19215,12 +17830,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8667;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item767
+ class Item756
{
dataType="Object";
class PositionInfo
@@ -19232,12 +17848,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8668;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item768
+ class Item757
{
dataType="Object";
class PositionInfo
@@ -19249,12 +17866,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8669;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item769
+ class Item758
{
dataType="Object";
class PositionInfo
@@ -19266,11 +17884,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8670;
type="Land_HBarrier_5_F";
};
- class Item770
+ class Item759
{
dataType="Object";
class PositionInfo
@@ -19282,11 +17901,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8671;
type="Land_HBarrier_Big_F";
};
- class Item771
+ class Item760
{
dataType="Object";
class PositionInfo
@@ -19298,11 +17918,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8672;
type="Land_HBarrier_5_F";
};
- class Item772
+ class Item761
{
dataType="Object";
class PositionInfo
@@ -19314,11 +17935,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8673;
type="Land_HBarrier_Big_F";
};
- class Item773
+ class Item762
{
dataType="Object";
class PositionInfo
@@ -19330,11 +17952,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8674;
type="Land_HBarrier_5_F";
};
- class Item774
+ class Item763
{
dataType="Object";
class PositionInfo
@@ -19346,11 +17969,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8675;
type="Land_HBarrier_Big_F";
};
- class Item775
+ class Item764
{
dataType="Object";
class PositionInfo
@@ -19362,11 +17986,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8676;
type="Land_HBarrier_5_F";
};
- class Item776
+ class Item765
{
dataType="Object";
class PositionInfo
@@ -19378,12 +18003,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8677;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item777
+ class Item766
{
dataType="Object";
class PositionInfo
@@ -19395,11 +18021,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8678;
type="Land_HBarrier_5_F";
};
- class Item778
+ class Item767
{
dataType="Object";
class PositionInfo
@@ -19411,11 +18038,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8679;
type="Land_HBarrier_3_F";
};
- class Item779
+ class Item768
{
dataType="Object";
class PositionInfo
@@ -19427,12 +18055,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8680;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item780
+ class Item769
{
dataType="Object";
class PositionInfo
@@ -19444,11 +18073,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8681;
type="Land_HBarrier_Big_F";
};
- class Item781
+ class Item770
{
dataType="Object";
class PositionInfo
@@ -19460,11 +18090,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8682;
type="Land_HBarrier_5_F";
};
- class Item782
+ class Item771
{
dataType="Object";
class PositionInfo
@@ -19476,11 +18107,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8683;
type="Land_HBarrier_Big_F";
};
- class Item783
+ class Item772
{
dataType="Object";
class PositionInfo
@@ -19492,12 +18124,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8684;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item784
+ class Item773
{
dataType="Object";
class PositionInfo
@@ -19509,12 +18142,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8685;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item785
+ class Item774
{
dataType="Object";
class PositionInfo
@@ -19526,11 +18160,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8686;
type="Land_HBarrier_Big_F";
};
- class Item786
+ class Item775
{
dataType="Object";
class PositionInfo
@@ -19542,11 +18177,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8687;
type="Land_HBarrier_5_F";
};
- class Item787
+ class Item776
{
dataType="Object";
class PositionInfo
@@ -19558,11 +18194,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8688;
type="Land_HBarrier_Big_F";
};
- class Item788
+ class Item777
{
dataType="Object";
class PositionInfo
@@ -19574,11 +18211,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8689;
type="Land_HBarrier_5_F";
};
- class Item789
+ class Item778
{
dataType="Object";
class PositionInfo
@@ -19590,11 +18228,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8690;
type="Land_HBarrier_5_F";
};
- class Item790
+ class Item779
{
dataType="Object";
class PositionInfo
@@ -19606,11 +18245,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8691;
type="Land_HBarrier_Big_F";
};
- class Item791
+ class Item780
{
dataType="Object";
class PositionInfo
@@ -19622,11 +18262,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8692;
type="Land_HBarrier_5_F";
};
- class Item792
+ class Item781
{
dataType="Object";
class PositionInfo
@@ -19638,12 +18279,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8693;
type="Land_HBarrier_Big_F";
atlOffset=-1.5258789e-005;
};
- class Item793
+ class Item782
{
dataType="Object";
class PositionInfo
@@ -19655,11 +18297,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8694;
type="Land_HBarrier_3_F";
};
- class Item794
+ class Item783
{
dataType="Object";
class PositionInfo
@@ -19671,11 +18314,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8695;
type="Land_HBarrier_5_F";
};
- class Item795
+ class Item784
{
dataType="Object";
class PositionInfo
@@ -19687,11 +18331,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8696;
type="Land_HBarrier_Big_F";
};
- class Item796
+ class Item785
{
dataType="Object";
class PositionInfo
@@ -19703,11 +18348,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8697;
type="Land_HBarrier_5_F";
};
- class Item797
+ class Item786
{
dataType="Object";
class PositionInfo
@@ -19719,11 +18365,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8698;
type="Land_HBarrier_Big_F";
};
- class Item798
+ class Item787
{
dataType="Object";
class PositionInfo
@@ -19735,11 +18382,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8699;
type="Land_HBarrier_5_F";
};
- class Item799
+ class Item788
{
dataType="Object";
class PositionInfo
@@ -19751,12 +18399,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8700;
type="Land_HBarrier_Big_F";
atlOffset=1.5258789e-005;
};
- class Item800
+ class Item789
{
dataType="Object";
class PositionInfo
@@ -19768,12 +18417,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8701;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item801
+ class Item790
{
dataType="Object";
class PositionInfo
@@ -19785,11 +18435,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8702;
type="Land_HBarrier_Big_F";
};
- class Item802
+ class Item791
{
dataType="Object";
class PositionInfo
@@ -19801,12 +18452,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8703;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item803
+ class Item792
{
dataType="Object";
class PositionInfo
@@ -19818,11 +18470,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8704;
type="Land_HBarrier_3_F";
};
- class Item804
+ class Item793
{
dataType="Object";
class PositionInfo
@@ -19834,12 +18487,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8705;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item805
+ class Item794
{
dataType="Object";
class PositionInfo
@@ -19851,12 +18505,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8706;
type="Land_HBarrier_3_F";
atlOffset=-1.5258789e-005;
};
- class Item806
+ class Item795
{
dataType="Object";
class PositionInfo
@@ -19868,12 +18523,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8707;
type="Land_HBarrier_1_F";
atlOffset=-1.5258789e-005;
};
- class Item807
+ class Item796
{
dataType="Object";
class PositionInfo
@@ -19885,12 +18541,13 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
id=8708;
type="Land_HelipadSquare_F";
atlOffset=0.64489746;
};
- class Item808
+ class Item797
{
dataType="Object";
class PositionInfo
@@ -19902,11 +18559,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8709;
type="Land_HBarrier_Big_F";
};
- class Item809
+ class Item798
{
dataType="Object";
class PositionInfo
@@ -19918,11 +18576,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8710;
type="Land_HBarrier_5_F";
};
- class Item810
+ class Item799
{
dataType="Object";
class PositionInfo
@@ -19934,11 +18593,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8711;
type="Land_HBarrier_5_F";
};
- class Item811
+ class Item800
{
dataType="Object";
class PositionInfo
@@ -19950,12 +18610,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8712;
type="Land_HBarrier_5_F";
atlOffset=-1.5258789e-005;
};
- class Item812
+ class Item801
{
dataType="Object";
class PositionInfo
@@ -19967,11 +18628,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8713;
type="Land_HBarrier_Big_F";
};
- class Item813
+ class Item802
{
dataType="Object";
class PositionInfo
@@ -19983,11 +18645,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8714;
type="Land_HBarrier_Big_F";
};
- class Item814
+ class Item803
{
dataType="Object";
class PositionInfo
@@ -19999,12 +18662,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8715;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item815
+ class Item804
{
dataType="Object";
class PositionInfo
@@ -20016,12 +18680,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8716;
type="Land_HBarrier_5_F";
atlOffset=1.5258789e-005;
};
- class Item816
+ class Item805
{
dataType="Object";
class PositionInfo
@@ -20033,11 +18698,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8717;
type="Land_HBarrier_Big_F";
};
- class Item817
+ class Item806
{
dataType="Object";
class PositionInfo
@@ -20049,11 +18715,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8718;
type="Land_HBarrier_5_F";
};
- class Item818
+ class Item807
{
dataType="Object";
class PositionInfo
@@ -20065,11 +18732,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8719;
type="Land_HBarrier_Big_F";
};
- class Item819
+ class Item808
{
dataType="Object";
class PositionInfo
@@ -20081,11 +18749,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8720;
type="Land_HBarrier_5_F";
};
- class Item820
+ class Item809
{
dataType="Object";
class PositionInfo
@@ -20097,11 +18766,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8721;
type="Land_HBarrier_5_F";
};
- class Item821
+ class Item810
{
dataType="Object";
class PositionInfo
@@ -20113,11 +18783,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8722;
type="Land_HBarrier_5_F";
};
- class Item822
+ class Item811
{
dataType="Object";
class PositionInfo
@@ -20129,11 +18800,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8723;
type="Land_HBarrier_Big_F";
};
- class Item823
+ class Item812
{
dataType="Object";
class PositionInfo
@@ -20145,11 +18817,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8724;
type="Land_HBarrier_5_F";
};
- class Item824
+ class Item813
{
dataType="Object";
class PositionInfo
@@ -20161,11 +18834,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8725;
type="Land_HBarrier_Big_F";
};
- class Item825
+ class Item814
{
dataType="Object";
class PositionInfo
@@ -20181,7 +18855,7 @@ class Mission
id=8726;
type="Land_Cargo_Tower_V1_F";
};
- class Item826
+ class Item815
{
dataType="Object";
class PositionInfo
@@ -20198,7 +18872,7 @@ class Mission
type="Land_Cargo_Tower_V1_F";
atlOffset=-1.5258789e-005;
};
- class Item827
+ class Item816
{
dataType="Object";
class PositionInfo
@@ -20214,7 +18888,7 @@ class Mission
id=8728;
type="Land_Cargo_Tower_V1_F";
};
- class Item828
+ class Item817
{
dataType="Object";
class PositionInfo
@@ -20226,228 +18900,104 @@ class Mission
class Attributes
{
init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
- id=8729;
- type="Land_HelipadSquare_F";
- atlOffset=0.70658875;
- };
- class Item829
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2555.6633,199.38116,3601.2876};
- angles[]={0,5.1827598,0};
- };
- side="Empty";
- class Attributes
- {
- init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
- };
- id=8730;
- type="Land_HelipadSquare_F";
- atlOffset=0.63046265;
- };
- class Item830
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2411.3835,198.49561,3607.5151};
- angles[]={0,3.6119633,0};
- };
- side="Empty";
- class Attributes
- {
- init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
- };
- id=8731;
- type="Land_HelipadSquare_F";
- atlOffset=0.66749573;
- };
- class Item831
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2428.3474,197.18712,3555.4595};
- angles[]={0,5.1827598,0};
- };
- side="Empty";
- class Attributes
- {
- init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
- };
- id=8732;
- type="Land_HelipadSquare_F";
- atlOffset=0.61737061;
- };
- class Item832
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2451.1172,211.73416,3590.8831};
- angles[]={6.2352238,1.2507154,0.047164604};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8733;
- type="Land_LampAirport_F";
- };
- class Item833
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2407.5105,208.98065,3578.25};
- angles[]={6.247201,4.3923078,0.059131995};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8734;
- type="Land_LampAirport_F";
- };
- class Item834
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2426.1484,199.48441,3590.4441};
- angles[]={6.2424059,4.3923078,0.051954471};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=8735;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
+ id=8729;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.70658875;
};
- class Item835
+ class Item818
{
dataType="Object";
class PositionInfo
{
- position[]={2426.1484,201.75349,3590.4441};
- angles[]={0.3019498,4.3923078,0.16657287};
+ position[]={2555.6633,199.38116,3601.2876};
+ angles[]={0,5.1827598,0};
};
side="Empty";
- flags=4;
class Attributes
{
+ init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
- id=8736;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.1688385;
+ id=8730;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.63046265;
};
- class Item836
+ class Item819
{
dataType="Object";
class PositionInfo
{
- position[]={2413.2163,198.60815,3586.157};
- angles[]={6.2424088,4.3923078,0.053548392};
+ position[]={2411.3835,198.49561,3607.5151};
+ angles[]={0,3.6119633,0};
};
side="Empty";
- flags=4;
class Attributes
{
+ init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
- id=8737;
- type="Land_MedicalTent_01_NATO_generic_open_F";
- class CustomAttributes
+ id=8731;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.66749573;
+ };
+ class Item820
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="SolarPanel2_Hide";
- expression="_this animateSource ['SolarPanel2_Hide',_value,true]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
+ position[]={2428.3474,197.18712,3555.4595};
+ angles[]={0,5.1827598,0};
+ };
+ side="Empty";
+ class Attributes
+ {
+ init="call{this setVariable [""spawnableHelicopterTypes"", [""patrol"", ""transport"", ""attack""]];}";
+ disableSimulation=1;
};
+ id=8732;
+ type="Land_HelipadSquare_F";
+ atlOffset=0.61737061;
};
- class Item837
+ class Item821
{
dataType="Object";
class PositionInfo
{
- position[]={2413.2163,200.89568,3586.157};
- angles[]={0.302039,4.3923078,0.16814582};
+ position[]={2451.1172,211.73416,3590.8831};
+ angles[]={6.2352238,1.2507154,0.047164604};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=8738;
- type="Land_MedicalTent_01_floor_dark_F";
- atlOffset=0.18666077;
+ id=8733;
+ type="Land_LampAirport_F";
};
- class Item838
+ class Item822
{
dataType="Object";
class PositionInfo
{
- position[]={2407.3728,197.13968,3580.4194};
- angles[]={6.2424088,3.6069102,0.063912325};
+ position[]={2407.5105,208.98065,3578.25};
+ angles[]={6.247201,4.3923078,0.059131995};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=8739;
- type="Land_AirConditioner_04_F";
+ id=8734;
+ type="Land_LampAirport_F";
};
- class Item839
+ class Item823
{
dataType="Object";
class PositionInfo
{
- position[]={2452.5063,200.01665,3585.814};
+ position[]={2452.5,199.94958,3585.875};
angles[]={6.2320304,2.8215117,0.047164604};
};
side="Empty";
@@ -20457,25 +19007,24 @@ class Mission
};
id=8740;
type="StorageBladder_01_fuel_forest_F";
- atlOffset=0.069885254;
};
- class Item840
+ class Item824
{
dataType="Object";
class PositionInfo
{
- position[]={2442.0063,200.05913,3582.1289};
+ position[]={2442,199.3362,3582.125};
angles[]={6.2368193,2.8215117,0.042374056};
};
side="Empty";
+ flags=4;
class Attributes
{
};
id=8741;
type="StorageBladder_01_fuel_forest_F";
- atlOffset=0.7224884;
};
- class Item841
+ class Item825
{
dataType="Object";
class PositionInfo
@@ -20487,11 +19036,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8742;
type="Land_HBarrier_Big_F";
};
- class Item842
+ class Item826
{
dataType="Object";
class PositionInfo
@@ -20503,11 +19053,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8743;
type="Land_HBarrier_Big_F";
};
- class Item843
+ class Item827
{
dataType="Object";
class PositionInfo
@@ -20519,11 +19070,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8744;
type="Land_HBarrier_Big_F";
};
- class Item844
+ class Item828
{
dataType="Object";
class PositionInfo
@@ -20535,11 +19087,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8745;
type="Land_HBarrier_Big_F";
};
- class Item845
+ class Item829
{
dataType="Object";
class PositionInfo
@@ -20551,11 +19104,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8746;
type="Land_HBarrier_Big_F";
};
- class Item846
+ class Item830
{
dataType="Object";
class PositionInfo
@@ -20572,7 +19126,7 @@ class Mission
type="Land_LampAirport_F";
atlOffset=-1.5258789e-005;
};
- class Item847
+ class Item831
{
dataType="Object";
class PositionInfo
@@ -20588,7 +19142,7 @@ class Mission
id=8748;
type="Land_LampAirport_F";
};
- class Item848
+ class Item832
{
dataType="Object";
class PositionInfo
@@ -20605,7 +19159,7 @@ class Mission
type="Land_LampSolar_F";
atlOffset=1.5258789e-005;
};
- class Item849
+ class Item833
{
dataType="Object";
class PositionInfo
@@ -20617,11 +19171,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8750;
type="Land_HBarrier_Big_F";
};
- class Item850
+ class Item834
{
dataType="Object";
class PositionInfo
@@ -20632,12 +19187,13 @@ class Mission
side="Empty";
class Attributes
{
+ disableSimulation=1;
};
id=8751;
type="Land_HBarrier_Big_F";
atlOffset=0.265625;
};
- class Item851
+ class Item835
{
dataType="Object";
class PositionInfo
@@ -20653,7 +19209,7 @@ class Mission
id=8752;
type="Land_Cargo_Patrol_V1_F";
};
- class Item852
+ class Item836
{
dataType="Object";
class PositionInfo
@@ -20670,7 +19226,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=1.5258789e-005;
};
- class Item853
+ class Item837
{
dataType="Object";
class PositionInfo
@@ -20682,11 +19238,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=8756;
type="Land_HelipadCircle_F";
};
- class Item854
+ class Item838
{
dataType="Object";
class PositionInfo
@@ -20694,73 +19251,951 @@ class Mission
position[]={6986.125,129.91501,9976.75};
angles[]={0,1.6612021,0};
};
- side="Empty";
- flags=5;
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=8757;
+ type="Land_Cargo_Patrol_V4_F";
+ atlOffset=7.6293945e-006;
+ };
+ class Item839
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8254.1826,10.71443,5985.0322};
+ };
+ name="HC_commanderX";
+ id=8761;
+ type="HighCommand";
+ atlOffset=0.043842316;
+ };
+ class Item840
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={8257.583,10.71443,5984.9375};
+ };
+ id=8762;
+ type="HighCommandSubordinate";
+ atlOffset=-0.043831825;
+ };
+ class Item841
+ {
+ dataType="Marker";
+ position[]={737.70398,27.885,12084.651};
+ name="spawnPoint";
+ type="hd_start";
+ id=8765;
+ atlOffset=0.00016021729;
+ };
+ class Item842
+ {
+ dataType="Marker";
+ position[]={8157.2852,29.357891,9844.3545};
+ name="spawnPoint_1";
+ type="hd_start";
+ id=8766;
+ };
+ class Item843
+ {
+ dataType="Marker";
+ position[]={2353.4297,193.33873,3599.1111};
+ name="spawnPoint_2";
+ type="hd_start";
+ id=8767;
+ };
+ class Item844
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=38;
+ class Item0
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8263.6035,11.336456,5973.8779};
+ };
+ side="Independent";
+ flags=7;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8779;
+ type="I_G_Soldier_TL_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item1
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.3984,11.775373,5971.1748};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8780;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-5.1498413e-005;
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.5371,11.778847,5973.4106};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8781;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-7.6293945e-005;
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.4795,11.742768,5975.7441};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8782;
+ type="I_G_Soldier_TL_F";
+ atlOffset=3.528595e-005;
+ };
+ class Item4
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.3164,11.646703,5978.0576};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8783;
+ type="I_G_Soldier_TL_F";
+ atlOffset=2.4795532e-005;
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.2754,11.556644,5980.5117};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8784;
+ type="I_G_Soldier_TL_F";
+ atlOffset=-1.7166138e-005;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8268.0898,11.436996,5982.8276};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8785;
+ type="I_G_Soldier_F";
+ atlOffset=3.8146973e-005;
+ };
+ class Item7
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8267.8828,11.309816,5984.7231};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8786;
+ type="I_G_Soldier_F";
+ atlOffset=-1.2397766e-005;
+ };
+ class Item8
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.7578,11.98632,5971.2983};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8787;
+ type="I_G_Soldier_F";
+ atlOffset=2.0027161e-005;
+ };
+ class Item9
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.7568,11.976884,5973.6377};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8788;
+ type="I_G_Soldier_F";
+ atlOffset=1.0490417e-005;
+ };
+ class Item10
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.6504,11.927962,5976.0112};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8789;
+ type="I_G_Soldier_F";
+ atlOffset=7.8201294e-005;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.5918,11.845141,5978.2109};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8790;
+ type="I_G_Soldier_F";
+ atlOffset=-5.531311e-005;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.3887,11.71758,5980.6333};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8791;
+ type="I_G_Soldier_F";
+ atlOffset=-6.1988831e-005;
+ };
+ class Item13
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8270.2012,11.565583,5982.9644};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8792;
+ type="I_G_Soldier_F";
+ atlOffset=-2.6702881e-005;
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8272.8662,12.17513,5971.3345};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8793;
+ type="I_G_Soldier_AR_F";
+ atlOffset=2.9563904e-005;
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8273.0283,12.179917,5973.7744};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8794;
+ type="I_G_Soldier_AR_F";
+ atlOffset=8.4877014e-005;
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8272.6279,12.098839,5976.1895};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8795;
+ type="I_G_Soldier_AR_F";
+ atlOffset=3.7193298e-005;
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8272.6045,11.998848,5978.3384};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8796;
+ type="I_G_Soldier_AR_F";
+ atlOffset=-5.8174133e-005;
+ };
+ class Item18
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8272.4043,11.851407,5980.5796};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8797;
+ type="I_G_Soldier_AR_F";
+ atlOffset=-5.531311e-005;
+ };
+ class Item19
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8272.3174,11.698255,5983.0386};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8798;
+ type="I_G_Soldier_AR_F";
+ atlOffset=-3.4332275e-005;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.9551,12.361992,5971.4141};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8799;
+ type="I_G_Soldier_GL_F";
+ atlOffset=4.2915344e-005;
+ };
+ class Item21
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.8252,12.341078,5973.7319};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8800;
+ type="I_G_Soldier_GL_F";
+ atlOffset=2.0980835e-005;
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.7012,12.246495,5976.4761};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8801;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.4305115e-005;
+ };
+ class Item23
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.5273,12.114664,5978.4849};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8802;
+ type="I_G_Soldier_GL_F";
+ atlOffset=-3.8146973e-005;
+ };
+ class Item24
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.458,11.979136,5980.6694};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8803;
+ type="I_G_Soldier_GL_F";
+ atlOffset=1.335144e-005;
+ };
+ class Item25
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8274.3525,11.822813,5983.1602};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8804;
+ type="I_G_Soldier_GL_F";
+ atlOffset=-5.0544739e-005;
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8276.4824,12.363299,5971.4917};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8805;
+ type="I_G_medic_F";
+ atlOffset=-1.9073486e-006;
+ };
+ class Item27
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8276.3066,12.354573,5973.7715};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8806;
+ type="I_G_medic_F";
+ atlOffset=-9.5367432e-007;
+ };
+ class Item28
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8276.2646,12.258889,5976.6431};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8807;
+ type="I_G_medic_F";
+ atlOffset=-2.8610229e-006;
+ };
+ class Item29
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8276.1768,12.150266,5978.4497};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8808;
+ type="I_G_medic_F";
+ atlOffset=-1.8119812e-005;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8275.9932,12.008243,5980.8091};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8809;
+ type="I_G_medic_F";
+ atlOffset=-3.8146973e-005;
+ };
+ class Item31
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8276.0039,11.863671,5983.2197};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8810;
+ type="I_G_medic_F";
+ atlOffset=1.8119812e-005;
+ };
+ class Item32
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8278.2842,12.359756,5971.6567};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8811;
+ type="I_G_engineer_F";
+ atlOffset=-1.9073486e-006;
+ };
+ class Item33
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8278.3076,12.359378,5973.957};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8812;
+ type="I_G_engineer_F";
+ atlOffset=9.5367432e-007;
+ };
+ class Item34
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8278.0654,12.256976,5976.7471};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8813;
+ type="I_G_engineer_F";
+ atlOffset=9.5367432e-006;
+ };
+ class Item35
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8277.8105,12.139514,5978.6948};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8814;
+ type="I_G_engineer_F";
+ atlOffset=2.5749207e-005;
+ };
+ class Item36
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8277.6152,12.004844,5980.9312};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8815;
+ type="I_G_engineer_F";
+ atlOffset=-5.7220459e-006;
+ };
+ class Item37
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8277.5107,11.856441,5983.4004};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=8816;
+ type="I_G_engineer_F";
+ atlOffset=-2.8610229e-006;
+ };
+ };
class Attributes
{
};
- id=8757;
- type="Land_Cargo_Patrol_V4_F";
- atlOffset=7.6293945e-006;
- };
- class Item855
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={8254.1826,10.71443,5985.0322};
- };
- name="HC_commanderX";
- id=8761;
- type="HighCommand";
- atlOffset=0.043842316;
- };
- class Item856
- {
- dataType="Logic";
- class PositionInfo
+ id=8778;
+ class CustomAttributes
{
- position[]={8257.583,10.71443,5984.9375};
+ class Attribute0
+ {
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
+ };
+ nAttributes=1;
};
- id=8762;
- type="HighCommandSubordinate";
- atlOffset=-0.043831825;
- };
- class Item857
- {
- dataType="Marker";
- position[]={737.70398,27.885,12084.651};
- name="spawnPoint";
- type="hd_start";
- id=8765;
- atlOffset=0.00016021729;
- };
- class Item858
- {
- dataType="Marker";
- position[]={8157.2852,29.357891,9844.3545};
- name="spawnPoint_1";
- type="hd_start";
- id=8766;
- };
- class Item859
- {
- dataType="Marker";
- position[]={2353.4297,193.33873,3599.1111};
- name="spawnPoint_2";
- type="hd_start";
- id=8767;
};
};
class Connections
{
class LinkIDProvider
{
- nextID=26;
+ nextID=39;
};
class Links
{
- items=26;
+ items=39;
class Item0
{
linkID=0;
@@ -20774,7 +20209,7 @@ class Mission
class Item1
{
linkID=1;
- item0=451;
+ item0=8779;
item1=8761;
class CustomData
{
@@ -20784,7 +20219,7 @@ class Mission
class Item2
{
linkID=2;
- item0=456;
+ item0=8793;
item1=8761;
class CustomData
{
@@ -20794,7 +20229,7 @@ class Mission
class Item3
{
linkID=3;
- item0=457;
+ item0=8794;
item1=8761;
class CustomData
{
@@ -20804,7 +20239,7 @@ class Mission
class Item4
{
linkID=4;
- item0=458;
+ item0=8795;
item1=8761;
class CustomData
{
@@ -20814,7 +20249,7 @@ class Mission
class Item5
{
linkID=5;
- item0=459;
+ item0=8796;
item1=8761;
class CustomData
{
@@ -20824,7 +20259,7 @@ class Mission
class Item6
{
linkID=6;
- item0=460;
+ item0=8797;
item1=8761;
class CustomData
{
@@ -20834,7 +20269,7 @@ class Mission
class Item7
{
linkID=7;
- item0=461;
+ item0=8798;
item1=8761;
class CustomData
{
@@ -20844,7 +20279,7 @@ class Mission
class Item8
{
linkID=8;
- item0=462;
+ item0=8805;
item1=8761;
class CustomData
{
@@ -20854,7 +20289,7 @@ class Mission
class Item9
{
linkID=9;
- item0=463;
+ item0=8806;
item1=8761;
class CustomData
{
@@ -20864,7 +20299,7 @@ class Mission
class Item10
{
linkID=10;
- item0=464;
+ item0=8807;
item1=8761;
class CustomData
{
@@ -20874,7 +20309,7 @@ class Mission
class Item11
{
linkID=11;
- item0=465;
+ item0=8808;
item1=8761;
class CustomData
{
@@ -20884,7 +20319,7 @@ class Mission
class Item12
{
linkID=12;
- item0=466;
+ item0=8809;
item1=8761;
class CustomData
{
@@ -20894,7 +20329,7 @@ class Mission
class Item13
{
linkID=13;
- item0=467;
+ item0=8810;
item1=8761;
class CustomData
{
@@ -20904,7 +20339,7 @@ class Mission
class Item14
{
linkID=14;
- item0=468;
+ item0=8811;
item1=8761;
class CustomData
{
@@ -20914,7 +20349,7 @@ class Mission
class Item15
{
linkID=15;
- item0=469;
+ item0=8812;
item1=8761;
class CustomData
{
@@ -20924,7 +20359,7 @@ class Mission
class Item16
{
linkID=16;
- item0=470;
+ item0=8813;
item1=8761;
class CustomData
{
@@ -20934,7 +20369,7 @@ class Mission
class Item17
{
linkID=17;
- item0=471;
+ item0=8814;
item1=8761;
class CustomData
{
@@ -20944,7 +20379,7 @@ class Mission
class Item18
{
linkID=18;
- item0=472;
+ item0=8815;
item1=8761;
class CustomData
{
@@ -20954,7 +20389,7 @@ class Mission
class Item19
{
linkID=19;
- item0=473;
+ item0=8816;
item1=8761;
class CustomData
{
@@ -20964,7 +20399,7 @@ class Mission
class Item20
{
linkID=20;
- item0=474;
+ item0=8799;
item1=8761;
class CustomData
{
@@ -20974,7 +20409,7 @@ class Mission
class Item21
{
linkID=21;
- item0=475;
+ item0=8800;
item1=8761;
class CustomData
{
@@ -20984,7 +20419,7 @@ class Mission
class Item22
{
linkID=22;
- item0=476;
+ item0=8801;
item1=8761;
class CustomData
{
@@ -20994,7 +20429,7 @@ class Mission
class Item23
{
linkID=23;
- item0=477;
+ item0=8802;
item1=8761;
class CustomData
{
@@ -21004,7 +20439,7 @@ class Mission
class Item24
{
linkID=24;
- item0=478;
+ item0=8803;
item1=8761;
class CustomData
{
@@ -21014,7 +20449,137 @@ class Mission
class Item25
{
linkID=25;
- item0=479;
+ item0=8804;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item26
+ {
+ linkID=26;
+ item0=8780;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item27
+ {
+ linkID=27;
+ item0=8781;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item28
+ {
+ linkID=28;
+ item0=8782;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item29
+ {
+ linkID=29;
+ item0=8783;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item30
+ {
+ linkID=30;
+ item0=8784;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item31
+ {
+ linkID=31;
+ item0=8785;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item32
+ {
+ linkID=32;
+ item0=8786;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item33
+ {
+ linkID=33;
+ item0=8787;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item34
+ {
+ linkID=34;
+ item0=8788;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item35
+ {
+ linkID=35;
+ item0=8789;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item36
+ {
+ linkID=36;
+ item0=8790;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item37
+ {
+ linkID=37;
+ item0=8791;
+ item1=8761;
+ class CustomData
+ {
+ type="Sync";
+ };
+ };
+ class Item38
+ {
+ linkID=38;
+ item0=8792;
item1=8761;
class CustomData
{
diff --git a/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm
index 74d871ef08..49eceb9a15 100755
--- a/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm
+++ b/Map-Templates/Antistasi-Tembelan-Island.Tembelan/mission.sqm
@@ -1,14 +1,14 @@
version=53;
class EditorData
{
- moveGridStep=1;
+ moveGridStep=2;
angleGridStep=0.2617994;
scaleGridStep=1;
autoGroupingDist=10;
- toggles=1025;
+ toggles=1;
class ItemIDProvider
{
- nextID=355;
+ nextID=439;
};
class MarkerIDProvider
{
@@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=51;
+ nextID=69;
};
class Camera
{
- pos[]={4825.2744,308.02106,1269.7025};
- dir[]={-0.16478749,-0.85274255,-0.49571803};
- up[]={-0.2689963,0.52234536,-0.80920202};
- aside[]={-0.94897389,-6.4563937e-007,0.31545871};
+ pos[]={4905.7222,1342.1849,5537.1235};
+ dir[]={0.052876424,-0.63090199,0.77419794};
+ up[]={0.042992346,0.77576029,0.62955725};
+ aside[]={0.99777651,1.0782805e-006,-0.068143174};
};
};
binarizationWanted=0;
@@ -33,7 +33,6 @@ addons[]=
"A3_Weapons_F_Ammoboxes",
"A3_Modules_F",
"A3_Characters_F",
- "A3_Weapons_F",
"A3_Structures_F_EPC_Civ_InfoBoards",
"A3_Structures_F_Mil_Flags",
"A3_Ui_F_Exp",
@@ -50,12 +49,15 @@ addons[]=
"A3_Structures_F_Heli_Items_Luggage",
"A3_Structures_F_Heli_Ind_Cargo",
"A3_Structures_F_Ind_Cargo",
- "A3_Structures_F_Enoch_Military_Camps",
- "A3_Structures_F_Orange_Humanitarian_Camps",
- "A3_Structures_F_Mil_Helipads",
"A3_Structures_F_Exp_Military_ContainerBases",
"A3_Modules_F_Hc",
- "A3_Structures_F_Mil_Fortification"
+ "A3_Structures_F_Mil_Fortification",
+ "A3_Weapons_F",
+ "A3_Structures_F_Mil_Helipads",
+ "A3_Structures_F_Mil_Shelters",
+ "A3_Structures_F_Enoch_Cultural_OrthodoxChurches",
+ "A3_Props_F_Orange_Humanitarian_Garbage",
+ "A3_Props_F_Orange_Humanitarian_Camps"
};
class AddonsMetaData
{
@@ -176,15 +178,15 @@ class AddonsMetaData
};
class Item16
{
- className="A3_Structures_F_Enoch_Military";
- name="Arma 3 Enoch - Military Buildings and Structures";
+ className="A3_Structures_F_Enoch_Cultural";
+ name="Arma 3 Enoch - Cultural Buildings";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
class Item17
{
- className="A3_Structures_F_Orange";
- name="Arma 3 Orange - Buildings and Structures";
+ className="A3_Props_F_Orange";
+ name="Arma 3 Orange - Decorative and Mission Objects";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
@@ -195,22 +197,17 @@ class Mission
{
class Intel
{
- briefingName=$STR_antistasi_mission_info_tembelan_mapname_text;
+ briefingName=$STR_antistasi_mission_info_tembelan_mapname_text;
resistanceWest=0;
- startWind=0.1;
- forecastWind=0.1;
- forecastWaves=0.1;
year=2035;
month=6;
day=1;
hour=10;
minute=0;
- startFogDecay=0.0049333;
- forecastFogDecay=0.0049333;
};
class Entities
{
- items=164;
+ items=186;
class Item0
{
dataType="Marker";
@@ -471,28 +468,22 @@ class Mission
side="Independent";
class Entities
{
- items=60;
+ items=1;
class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={872.28076,9.9314394,5455.6367};
+ position[]={870.58624,9.9314394,5449.3677};
+ angles[]={0,2.1016905,0};
};
side="Independent";
flags=6;
class Attributes
{
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=23;
+ id=25;
type="I_G_officer_F";
class CustomAttributes
{
@@ -511,7 +502,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male06GRE";
};
};
};
@@ -534,30 +525,163 @@ class Mission
};
};
};
- nAttributes=2;
+ class Attribute2
+ {
+ property="face";
+ expression="_this setface _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="";
+ };
+ };
+ };
+ nAttributes=3;
};
};
- class Item1
+ };
+ class Attributes
+ {
+ };
+ id=24;
+ };
+ class Item15
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={884.98059,10.898882,5456.8228};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=86;
+ type="MapBoard_seismic_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item16
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={908.93127,13.906805,5455.1626};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=91;
+ type="Flag_FIA_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item17
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1553.0222,7.5292463,9045.9336};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if (!isMultiplayer) then {deleteVehicle this};";
+ };
+ id=92;
+ type="Flag_NATO_F";
+ atlOffset=-2.3841858e-007;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={1553.0457,3.9030445,9024.1406};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=93;
+ };
+ class Item19
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={874.17572,10.536942,5449.3467};
- angles[]={0,6.2412972,0};
+ position[]={1552.6785,3.6513946,9038.5566};
};
- side="Independent";
+ side="West";
+ flags=7;
class Attributes
{
- description="Machinegunner";
+ rank="SERGEANT";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=27;
- type="I_G_Soldier_AR_F";
- atlOffset=0.60550213;
+ id=95;
+ type="B_recon_TL_F";
+ atlOffset=2.3841858e-007;
class CustomAttributes
{
class Attribute0
@@ -575,7 +699,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -594,35 +718,33 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item2
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={907.51428,10.107938,5430.9507};
- angles[]={0,1.5460157,0};
+ position[]={1557.6785,4.0521088,9033.5566};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Machinegunner";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=28;
- type="I_G_Soldier_AR_F";
- atlOffset=0.17649841;
+ id=96;
+ type="B_recon_M_F";
+ atlOffset=4.7683716e-007;
class CustomAttributes
{
class Attribute0
@@ -640,7 +762,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -659,35 +781,32 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item3
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={907.69604,9.9836626,5427.8726};
- angles[]={0,1.5879039,0};
+ position[]={1547.6785,3.4160376,9033.5566};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="AT Launcher";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=29;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.052223206;
+ id=97;
+ type="B_recon_medic_F";
+ atlOffset=2.3841858e-007;
class CustomAttributes
{
class Attribute0
@@ -705,7 +824,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male03ENG";
};
};
};
@@ -724,34 +843,32 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.95999998;
};
};
};
nAttributes=2;
};
};
- class Item4
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={907.29834,9.9314394,5424.9492};
- angles[]={0,1.5879039,0};
+ position[]={1542.6785,3.1660376,9028.5566};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=30;
- type="I_G_medic_F";
+ id=98;
+ type="B_recon_LAT_F";
+ atlOffset=2.3841858e-007;
class CustomAttributes
{
class Attribute0
@@ -769,7 +886,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male12ENG";
};
};
};
@@ -788,34 +905,33 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item5
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={907.42841,9.9314394,5422.0483};
- angles[]={0,1.5879039,0};
+ position[]={1560.1589,4.2497554,9031.4355};
+ angles[]={0.015998369,0,0.065904573};
};
- side="Independent";
+ side="West";
flags=4;
class Attributes
{
- description="Engineer";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=31;
- type="I_G_engineer_F";
+ id=99;
+ type="B_Patrol_Soldier_MG_F";
class CustomAttributes
{
class Attribute0
@@ -833,7 +949,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male07ENG";
};
};
};
@@ -852,34 +968,32 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item6
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={907.59601,9.9314394,5419.0566};
- angles[]={0,1.5879039,0};
+ position[]={1554.9285,3.9500461,9029.2168};
};
- side="Independent";
- flags=4;
+ side="West";
+ flags=5;
class Attributes
{
- description="Grenadier";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=32;
- type="I_G_Soldier_GL_F";
+ id=100;
+ type="B_recon_LAT_F";
+ atlOffset=2.3841858e-007;
class CustomAttributes
{
class Attribute0
@@ -897,7 +1011,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male12ENG";
};
};
};
@@ -916,35 +1030,54 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item7
+ };
+ class Attributes
+ {
+ };
+ id=94;
+ atlOffset=2.3841858e-007;
+ };
+ class Item20
+ {
+ dataType="Marker";
+ position[]={2186.6816,98.928207,9258.084};
+ name="respawn_east";
+ type="flag_Viper";
+ id=102;
+ atlOffset=92.907089;
+ };
+ class Item21
+ {
+ dataType="Group";
+ side="East";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={907.4939,10.269444,5433.4121};
- angles[]={0,1.5879039,0};
+ position[]={2185.2676,94.095329,9262.0645};
};
- side="Independent";
+ side="East";
+ flags=3;
class Attributes
{
- skill=1;
- description="Officer";
+ init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_red_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=33;
- type="I_G_officer_F";
- atlOffset=0.33800507;
+ id=104;
+ type="O_T_Recon_TL_F";
+ atlOffset=88.093887;
class CustomAttributes
{
class Attribute0
@@ -962,7 +1095,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -981,35 +1114,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=0.98000002;
};
};
};
nAttributes=2;
};
};
- class Item8
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={910.30865,10.081128,5431.0063};
- angles[]={0,1.5460157,0};
+ position[]={2180.4551,93.788376,9257.5527};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=1;
class Attributes
{
- description="Machinegunner";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_red_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=34;
- type="I_G_Soldier_AR_F";
- atlOffset=0.14968872;
+ id=105;
+ type="O_T_Recon_Medic_F";
+ atlOffset=87.78511;
class CustomAttributes
{
class Attribute0
@@ -1027,7 +1156,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male02CHI";
};
};
};
@@ -1046,35 +1175,31 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=1.01;
};
};
};
nAttributes=2;
};
};
- class Item9
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={910.49426,9.9778872,5427.9282};
- angles[]={0,1.5879039,0};
+ position[]={2189.9297,93.050819,9257.7031};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=1;
class Attributes
{
- description="AT Launcher";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_red_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=35;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.046447754;
+ id=106;
+ type="O_T_Recon_M_F";
+ atlOffset=85.654083;
class CustomAttributes
{
class Attribute0
@@ -1092,7 +1217,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1111,34 +1236,31 @@ class Mission
"SCALAR"
};
};
- value=1;
+ value=1.03;
};
};
};
nAttributes=2;
};
};
- class Item10
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={910.09265,9.9314394,5425.0049};
- angles[]={0,1.5879039,0};
+ position[]={2176.168,93.274101,9252.3613};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=1;
class Attributes
{
- description="Paramedic";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_red_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=36;
- type="I_G_medic_F";
+ id=107;
+ type="O_T_Recon_LAT_F";
+ atlOffset=87.272659;
class CustomAttributes
{
class Attribute0
@@ -1156,7 +1278,7 @@ class Mission
"STRING"
};
};
- value="Male01FRE";
+ value="Male01CHI";
};
};
};
@@ -1175,34 +1297,31 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.94999999;
};
};
};
nAttributes=2;
};
};
- class Item11
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={910.22272,9.9314394,5422.104};
- angles[]={0,1.5879039,0};
+ position[]={2186.6406,94.007996,9263.6543};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=1;
class Attributes
{
- description="Engineer";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_red_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=37;
- type="I_G_engineer_F";
+ id=108;
+ type="O_Soldier_AR_F";
+ atlOffset=88.006554;
class CustomAttributes
{
class Attribute0
@@ -1220,7 +1339,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male01PER";
};
};
};
@@ -1239,34 +1358,31 @@ class Mission
"SCALAR"
};
};
- value=0.95999998;
+ value=0.99000001;
};
};
};
nAttributes=2;
};
};
- class Item12
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={910.39032,9.9314394,5419.1123};
- angles[]={0,1.5879039,0};
+ position[]={2185.7324,93.796448,9259.2969};
};
- side="Independent";
- flags=4;
+ side="East";
+ flags=1;
class Attributes
{
- description="Grenadier";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_red_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=38;
- type="I_G_Soldier_GL_F";
+ id=109;
+ type="O_T_Recon_LAT_F";
+ atlOffset=87.786133;
class CustomAttributes
{
class Attribute0
@@ -1284,7 +1400,7 @@ class Mission
"STRING"
};
};
- value="Male03FRE";
+ value="Male03CHI";
};
};
};
@@ -1303,4175 +1419,194 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.97000003;
};
};
};
nAttributes=2;
};
};
- class Item13
+ };
+ class Attributes
+ {
+ };
+ id=103;
+ atlOffset=88.093887;
+ };
+ class Item22
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2177.1719,98.476715,9263.7148};
+ };
+ side="Empty";
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=110;
+ type="Flag_Viper_F";
+ atlOffset=88.499908;
+ };
+ class Item23
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={880.00354,10.754942,5431.6436};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=111;
+ type="HeadlessClient_F";
+ atlOffset=0.82494164;
+ };
+ class Item24
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={881.85114,10.655134,5430.6494};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=112;
+ type="HeadlessClient_F";
+ atlOffset=0.7251339;
+ };
+ class Item25
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={900.78613,29.345961,5434.6372};
+ };
+ id=116;
+ type="ModuleCurator_F";
+ atlOffset=18.51119;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={910.29211,10.242635,5433.4678};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- class Attributes
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
{
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
+ class data
{
- map="ItemMap";
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="#adminLogged";
};
};
- id=39;
- type="I_G_officer_F";
- atlOffset=0.31119537;
- class CustomAttributes
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item14
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={913.49384,10.006875,5427.877};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=40;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.075435638;
- class CustomAttributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "STRING"
};
};
+ value="";
};
- nAttributes=2;
};
};
- class Item15
+ class Attribute3
{
- dataType="Object";
- class PositionInfo
- {
- position[]={913.09613,9.9314394,5424.9536};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=41;
- type="I_G_medic_F";
- class CustomAttributes
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
+ "SCALAR"
};
};
+ value=3;
};
- nAttributes=2;
};
};
- class Item16
+ nAttributes=4;
+ };
+ };
+ class Item26
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={878.6311,10.502403,5455.8652};
+ angles[]={0,1.0016968,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=117;
+ type="Land_TentSolar_01_olive_F";
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={913.22229,9.9314394,5422.0527};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=42;
- type="I_G_engineer_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
+ "BOOL"
};
};
- };
- nAttributes=2;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={913.3938,9.9314394,5419.061};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=43;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={913.29169,10.305421,5433.4165};
- angles[]={0,1.5879039,0};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=44;
- type="I_G_officer_F";
- atlOffset=0.37398148;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={934.73773,9.9744692,5452.0723};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=45;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.043029785;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item20
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={937.66742,9.9314394,5451.7246};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=46;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={940.56586,9.9314394,5451.9043};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=47;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={943.55414,9.9314394,5452.123};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=48;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.20258,10.331502,5451.7754};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=49;
- type="I_G_officer_F";
- atlOffset=0.40006256;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={913.42365,10.084859,5430.853};
- angles[]={0,1.4622107,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=50;
- type="I_G_Soldier_AR_F";
- atlOffset=0.15341949;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={931.96039,10.039815,5451.9512};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=51;
- type="I_G_Soldier_AR_F";
- atlOffset=0.10837555;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={935.06976,10.001584,5454.6973};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=52;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.070144653;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={937.99945,9.9314394,5454.3496};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=53;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={940.89789,9.9314394,5454.5293};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=54;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={943.88617,9.9314394,5454.748};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=55;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.53461,10.334573,5454.4043};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=56;
- type="I_G_officer_F";
- atlOffset=0.40313339;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={932.29242,10.069871,5454.5801};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=57;
- type="I_G_Soldier_AR_F";
- atlOffset=0.13843155;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={935.14398,10.104962,5457.7715};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=58;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.17352295;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={938.07367,10.00879,5457.4238};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=59;
- type="I_G_medic_F";
- atlOffset=0.077350616;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={940.97211,9.9776468,5457.6035};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=60;
- type="I_G_engineer_F";
- atlOffset=0.046207428;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={943.96039,10.011685,5457.8223};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=61;
- type="I_G_Soldier_GL_F";
- atlOffset=0.080245972;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={929.60883,10.443479,5457.4785};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=62;
- type="I_G_officer_F";
- atlOffset=0.51203918;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={932.36664,10.170617,5457.6543};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=63;
- type="I_G_Soldier_AR_F";
- atlOffset=0.2391777;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={912.66119,9.9314394,5477.187};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=64;
- type="I_G_Soldier_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={913.03186,9.9314394,5480.1157};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=65;
- type="I_G_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={912.87891,9.9314394,5483.0156};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=66;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={912.67975,9.9314394,5486.0054};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=67;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={912.91449,10.535169,5471.6519};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=68;
- type="I_G_officer_F";
- atlOffset=0.60372925;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={912.76044,10.226407,5474.4106};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=69;
- type="I_G_Soldier_AR_F";
- atlOffset=0.29496765;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.39447,10.059045,5477.0645};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=70;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.12760544;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.7691,9.9405794,5479.9932};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=71;
- type="I_G_medic_F";
- atlOffset=0.0091400146;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.61218,9.9314394,5482.8926};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=72;
- type="I_G_engineer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.41693,9.9314394,5485.8828};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=73;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.64783,10.692422,5471.5288};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=74;
- type="I_G_officer_F";
- atlOffset=0.76098251;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={909.49371,10.385228,5474.2881};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=75;
- type="I_G_Soldier_AR_F";
- atlOffset=0.45378876;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={906.64307,10.309373,5475.9004};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=76;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.3779335;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={907.01373,10.3663,5478.8271};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=77;
- type="I_G_medic_F";
- atlOffset=0.43486023;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={906.85687,10.016458,5481.7271};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=78;
- type="I_G_engineer_F";
- atlOffset=0.085018158;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={906.66162,10.009507,5484.7168};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=79;
- type="I_G_Soldier_GL_F";
- atlOffset=0.07806778;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={906.89246,11.164788,5470.3628};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- skill=1;
- description="Officer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=80;
- type="I_G_officer_F";
- atlOffset=1.2333488;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={906.7384,10.663938,5473.124};
- angles[]={0,4.7202539,0};
- };
- side="Independent";
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=81;
- type="I_G_Soldier_AR_F";
- atlOffset=0.73249817;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={880.17963,10.153695,5449.2334};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=82;
- type="I_G_medic_F";
- atlOffset=0.22225571;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={883.20502,10.025476,5449.4912};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=83;
- type="I_G_engineer_F";
- atlOffset=0.094037056;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={885.79095,9.9314394,5449.8975};
- };
- side="Independent";
- flags=4;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=84;
- type="I_G_Soldier_GL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={877.24994,10.330724,5449.5811};
- };
- side="Independent";
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=85;
- type="I_G_Soldier_LAT_F";
- atlOffset=0.39928436;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=22;
- };
- class Item15
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={870.58624,9.9314394,5449.3677};
- angles[]={0,2.1016905,0};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- name="petros";
- };
- id=25;
- type="I_G_officer_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06GRE";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- class Attribute2
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- nAttributes=3;
- };
- };
- };
- class Attributes
- {
- };
- id=24;
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={884.98059,10.898882,5456.8228};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=86;
- type="MapBoard_seismic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={908.93127,13.906805,5455.1626};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="flagX";
- };
- id=91;
- type="Flag_Altis_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item18
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1553.0222,7.5292463,9045.9336};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if (!isMultiplayer) then {deleteVehicle this};";
- };
- id=92;
- type="Flag_NATO_F";
- atlOffset=-2.3841858e-007;
- };
- class Item19
- {
- dataType="Marker";
- position[]={1553.0457,3.9030445,9024.1406};
- name="respawn_west";
- type="flag_CTRG";
- id=93;
- };
- class Item20
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1552.6785,3.6513946,9038.5566};
- };
- side="West";
- flags=7;
- class Attributes
- {
- rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_blue_1";
- isPlayable=1;
- };
- id=95;
- type="B_recon_TL_F";
- atlOffset=2.3841858e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1557.6785,4.0521088,9033.5566};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_blue_4";
- isPlayable=1;
- };
- id=96;
- type="B_recon_M_F";
- atlOffset=4.7683716e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1547.6785,3.4160376,9033.5566};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_blue_2";
- isPlayable=1;
- };
- id=97;
- type="B_recon_medic_F";
- atlOffset=2.3841858e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1542.6785,3.1660376,9028.5566};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_blue_5";
- isPlayable=1;
- };
- id=98;
- type="B_recon_LAT_F";
- atlOffset=2.3841858e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1560.1589,4.2497554,9031.4355};
- angles[]={0.015998369,0,0.065904573};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_blue_3";
- isPlayable=1;
- };
- id=99;
- type="B_Patrol_Soldier_MG_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male07ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1554.9285,3.9500461,9029.2168};
- };
- side="West";
- flags=5;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_blue_6";
- isPlayable=1;
- };
- id=100;
- type="B_recon_LAT_F";
- atlOffset=2.3841858e-007;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male12ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=94;
- atlOffset=2.3841858e-007;
- };
- class Item21
- {
- dataType="Marker";
- position[]={2186.6816,98.928207,9258.084};
- name="respawn_east";
- type="flag_Viper";
- id=102;
- atlOffset=92.907089;
- };
- class Item22
- {
- dataType="Group";
- side="East";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2185.2676,94.095329,9262.0645};
- };
- side="East";
- flags=3;
- class Attributes
- {
- init="groupPlayersCSAT = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_red_1";
- isPlayable=1;
- };
- id=104;
- type="O_T_Recon_TL_F";
- atlOffset=88.093887;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2180.4551,93.788376,9257.5527};
- };
- side="East";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_red_2";
- isPlayable=1;
- };
- id=105;
- type="O_T_Recon_Medic_F";
- atlOffset=87.78511;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.01;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2189.9297,93.050819,9257.7031};
- };
- side="East";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_red_4";
- isPlayable=1;
- };
- id=106;
- type="O_T_Recon_M_F";
- atlOffset=85.654083;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.03;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2176.168,93.274101,9252.3613};
- };
- side="East";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_red_5";
- isPlayable=1;
- };
- id=107;
- type="O_T_Recon_LAT_F";
- atlOffset=87.272659;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2186.6406,94.007996,9263.6543};
- };
- side="East";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=108;
- type="O_Soldier_AR_F";
- atlOffset=88.006554;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01PER";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.99000001;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2185.7324,93.796448,9259.2969};
- };
- side="East";
- flags=1;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_red_6";
- isPlayable=1;
- };
- id=109;
- type="O_T_Recon_LAT_F";
- atlOffset=87.786133;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03CHI";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=103;
- atlOffset=88.093887;
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2177.1719,98.476715,9263.7148};
- };
- side="Empty";
- class Attributes
- {
- init="if !(isMultiplayer) then {deleteVehicle this}";
- };
- id=110;
- type="Flag_Viper_F";
- atlOffset=88.499908;
- };
- class Item24
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={880.00354,10.754942,5431.6436};
- };
- name="hc_1";
- isPlayable=1;
- id=111;
- type="HeadlessClient_F";
- atlOffset=0.82494164;
- };
- class Item25
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={881.85114,10.655134,5430.6494};
- };
- name="hc_2";
- isPlayable=1;
- id=112;
- type="HeadlessClient_F";
- atlOffset=0.7251339;
- };
- class Item26
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={900.78613,29.345961,5434.6372};
- };
- id=116;
- type="ModuleCurator_F";
- atlOffset=18.51119;
- class CustomAttributes
- {
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={878.6311,10.502403,5455.8652};
- angles[]={0,1.0016968,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="fireX";
- };
- id=117;
- type="Land_TentSolar_01_olive_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
+ value=0;
};
};
};
nAttributes=1;
};
};
- class Item28
+ class Item27
{
dataType="Object";
class PositionInfo
@@ -5488,7 +1623,7 @@ class Mission
id=138;
type="Land_dp_transformer_F";
};
- class Item29
+ class Item28
{
dataType="Object";
class PositionInfo
@@ -5505,7 +1640,7 @@ class Mission
id=139;
type="Land_Medevac_house_V1_F";
};
- class Item30
+ class Item29
{
dataType="Object";
class PositionInfo
@@ -5523,7 +1658,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.2539978;
};
- class Item31
+ class Item30
{
dataType="Object";
class PositionInfo
@@ -5535,11 +1670,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=146;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item32
+ class Item31
{
dataType="Object";
class PositionInfo
@@ -5551,11 +1687,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=147;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item33
+ class Item32
{
dataType="Object";
class PositionInfo
@@ -5567,11 +1704,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=148;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item34
+ class Item33
{
dataType="Object";
class PositionInfo
@@ -5583,11 +1721,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=149;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item35
+ class Item34
{
dataType="Object";
class PositionInfo
@@ -5599,11 +1738,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=150;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item36
+ class Item35
{
dataType="Object";
class PositionInfo
@@ -5615,12 +1755,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=151;
type="Land_HBarrier_01_big_4_green_F";
atlOffset=-3.0517578e-005;
};
- class Item37
+ class Item36
{
dataType="Object";
class PositionInfo
@@ -5632,11 +1773,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=152;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item38
+ class Item37
{
dataType="Object";
class PositionInfo
@@ -5648,11 +1790,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=153;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item39
+ class Item38
{
dataType="Object";
class PositionInfo
@@ -5664,12 +1807,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=154;
type="Land_HBarrier_01_big_4_green_F";
atlOffset=-3.0517578e-005;
};
- class Item40
+ class Item39
{
dataType="Object";
class PositionInfo
@@ -5681,11 +1825,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=155;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item41
+ class Item40
{
dataType="Marker";
position[]={3022.4458,30.182636,4398.3501};
@@ -5695,7 +1840,7 @@ class Mission
id=160;
atlOffset=15.667421;
};
- class Item42
+ class Item41
{
dataType="Marker";
position[]={6562.4707,-21.497236,9898.9805};
@@ -5705,7 +1850,7 @@ class Mission
id=163;
atlOffset=-3.1900005;
};
- class Item43
+ class Item42
{
dataType="Marker";
position[]={9445.8291,-12.703266,8644.8096};
@@ -5715,7 +1860,7 @@ class Mission
id=164;
atlOffset=-3.1899996;
};
- class Item44
+ class Item43
{
dataType="Marker";
position[]={10633.654,-23.818001,5667.353};
@@ -5726,7 +1871,7 @@ class Mission
id=165;
atlOffset=-3.1903534;
};
- class Item45
+ class Item44
{
dataType="Marker";
position[]={8909.3896,-87.276695,1407.0038};
@@ -5736,7 +1881,7 @@ class Mission
id=166;
atlOffset=-3.1900024;
};
- class Item46
+ class Item45
{
dataType="Marker";
position[]={282.76001,-22.028179,9522.668};
@@ -5746,7 +1891,7 @@ class Mission
id=167;
atlOffset=-3.1899986;
};
- class Item47
+ class Item46
{
dataType="Marker";
position[]={-1235.7861,-57.114273,6836.1953};
@@ -5757,7 +1902,7 @@ class Mission
id=168;
atlOffset=-3.1903534;
};
- class Item48
+ class Item47
{
dataType="Marker";
position[]={-1427.7869,-15.071719,1498.1366};
@@ -5768,7 +1913,7 @@ class Mission
id=169;
atlOffset=-3.1903534;
};
- class Item49
+ class Item48
{
dataType="Marker";
position[]={2167.8496,-21.41099,-944.11133};
@@ -5779,7 +1924,7 @@ class Mission
id=170;
atlOffset=-3.1903534;
};
- class Item50
+ class Item49
{
dataType="Marker";
position[]={6426.7598,-24.055374,-961.5564};
@@ -5790,7 +1935,7 @@ class Mission
id=171;
atlOffset=-3.1903534;
};
- class Item51
+ class Item50
{
dataType="Marker";
position[]={2001.4104,-4.2427058,4919.978};
@@ -5798,7 +1943,7 @@ class Mission
type="Empty";
id=172;
};
- class Item52
+ class Item51
{
dataType="Marker";
position[]={5697.2114,-93.79702,6299.3027};
@@ -5807,7 +1952,7 @@ class Mission
id=173;
atlOffset=-79.747086;
};
- class Item53
+ class Item52
{
dataType="Marker";
position[]={6030.4009,-86.154274,4879.6748};
@@ -5816,7 +1961,7 @@ class Mission
id=174;
atlOffset=-79.747086;
};
- class Item54
+ class Item53
{
dataType="Marker";
position[]={3435.8516,-1.8395869,3494.8071};
@@ -5824,7 +1969,7 @@ class Mission
type="mil_objective";
id=175;
};
- class Item55
+ class Item54
{
dataType="Marker";
position[]={5639.0195,-8.2921238,5511.5728};
@@ -5833,7 +1978,7 @@ class Mission
id=176;
atlOffset=-3.1900001;
};
- class Item56
+ class Item55
{
dataType="Marker";
position[]={4461.9888,-9.0299997,3057.8823};
@@ -5841,7 +1986,7 @@ class Mission
type="Empty";
id=178;
};
- class Item57
+ class Item56
{
dataType="Marker";
position[]={1381.9493,-0.64816922,5374.3203};
@@ -5849,7 +1994,7 @@ class Mission
type="mil_objective";
id=179;
};
- class Item58
+ class Item57
{
dataType="Marker";
position[]={1334.0188,-3.2399633,7678.1855};
@@ -5857,7 +2002,7 @@ class Mission
type="mil_objective";
id=180;
};
- class Item59
+ class Item58
{
dataType="Marker";
position[]={5854.8267,-2.4443359,1890.6775};
@@ -5865,7 +2010,7 @@ class Mission
type="mil_objective";
id=181;
};
- class Item60
+ class Item59
{
dataType="Marker";
position[]={2805.1284,-1.8965716,3252.46};
@@ -5873,7 +2018,7 @@ class Mission
type="mil_objective";
id=182;
};
- class Item61
+ class Item60
{
dataType="Marker";
position[]={5241.4707,-7.0143108,5754.8188};
@@ -5882,7 +2027,7 @@ class Mission
id=183;
atlOffset=-3.1899993;
};
- class Item62
+ class Item61
{
dataType="Marker";
position[]={6015.7021,-8.6722107,6663.0298};
@@ -5891,7 +2036,7 @@ class Mission
id=184;
atlOffset=-3.1899991;
};
- class Item63
+ class Item62
{
dataType="Marker";
position[]={6738.6128,-7.073514,5323.6289};
@@ -5900,7 +2045,7 @@ class Mission
id=185;
atlOffset=-3.1899996;
};
- class Item64
+ class Item63
{
dataType="Marker";
position[]={5734.9243,-2.1778834,8252.6475};
@@ -5908,7 +2053,7 @@ class Mission
type="mil_objective";
id=186;
};
- class Item65
+ class Item64
{
dataType="Marker";
position[]={1312.3444,-5.2672153,8756.4482};
@@ -5917,7 +2062,7 @@ class Mission
id=187;
atlOffset=-3.1899996;
};
- class Item66
+ class Item65
{
dataType="Object";
class PositionInfo
@@ -5929,12 +2074,13 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=213;
type="Land_HBarrier_01_big_4_green_F";
atlOffset=0.032302856;
};
- class Item67
+ class Item66
{
dataType="Object";
class PositionInfo
@@ -5946,11 +2092,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=214;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item68
+ class Item67
{
dataType="Object";
class PositionInfo
@@ -5962,11 +2109,12 @@ class Mission
flags=4;
class Attributes
{
+ disableSimulation=1;
};
id=215;
type="Land_HBarrier_01_big_4_green_F";
};
- class Item69
+ class Item68
{
dataType="Object";
class PositionInfo
@@ -5983,7 +2131,7 @@ class Mission
type="Land_Cargo_Patrol_V1_F";
atlOffset=0.2731781;
};
- class Item70
+ class Item69
{
dataType="Object";
class PositionInfo
@@ -5998,7 +2146,7 @@ class Mission
id=218;
type="Land_WoodenCrate_01_stack_x5_F";
};
- class Item71
+ class Item70
{
dataType="Object";
class PositionInfo
@@ -6014,7 +2162,7 @@ class Mission
id=219;
type="Land_WoodenCrate_01_stack_x5_F";
};
- class Item72
+ class Item71
{
dataType="Object";
class PositionInfo
@@ -6030,7 +2178,7 @@ class Mission
id=220;
type="Land_WoodenCrate_01_stack_x5_F";
};
- class Item73
+ class Item72
{
dataType="Object";
class PositionInfo
@@ -6046,7 +2194,7 @@ class Mission
id=221;
type="Land_WoodenCrate_01_stack_x5_F";
};
- class Item74
+ class Item73
{
dataType="Object";
class PositionInfo
@@ -6062,7 +2210,7 @@ class Mission
id=222;
type="Land_WoodenCrate_01_stack_x5_F";
};
- class Item75
+ class Item74
{
dataType="Object";
class PositionInfo
@@ -6079,7 +2227,7 @@ class Mission
type="Land_WaterTank_F";
atlOffset=1.5258789e-005;
};
- class Item76
+ class Item75
{
dataType="Object";
class PositionInfo
@@ -6095,7 +2243,7 @@ class Mission
id=224;
type="Land_WaterBarrel_F";
};
- class Item77
+ class Item76
{
dataType="Object";
class PositionInfo
@@ -6111,7 +2259,7 @@ class Mission
id=225;
type="Land_WoodenCrate_01_F";
};
- class Item78
+ class Item77
{
dataType="Object";
class PositionInfo
@@ -6127,7 +2275,7 @@ class Mission
id=226;
type="Land_MetalCase_01_small_F";
};
- class Item79
+ class Item78
{
dataType="Object";
class PositionInfo
@@ -6139,11 +2287,13 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=227;
type="Land_Cargo10_grey_F";
};
- class Item80
+ class Item79
{
dataType="Object";
class PositionInfo
@@ -6155,12 +2305,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=228;
type="Land_Cargo20_grey_F";
atlOffset=-0.00018310547;
};
- class Item81
+ class Item80
{
dataType="Object";
class PositionInfo
@@ -6172,12 +2324,14 @@ class Mission
flags=4;
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=229;
type="Land_Cargo20_grey_F";
atlOffset=-0.00016784668;
};
- class Item82
+ class Item81
{
dataType="Object";
class PositionInfo
@@ -6188,2218 +2342,3735 @@ class Mission
side="Empty";
class Attributes
{
+ createAsSimpleObject=1;
+ disableSimulation=1;
};
id=230;
type="Land_Cargo20_light_blue_F";
atlOffset=2.6228638;
};
- class Item83
+ class Item82
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={466.11465,8.7874355,358.69617};
+ angles[]={0,5.4966431,0};
+ };
+ areaSize[]={10.551336,0,10.024108};
+ areaIsRectangle=1;
+ flags=1;
+ id=233;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-0.00033473969;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item83
+ {
+ dataType="Marker";
+ position[]={587.15283,-85.946854,523.54248};
+ name="seaPatrol_5";
+ type="Empty";
+ id=236;
+ atlOffset=-79.747086;
+ };
+ class Item84
+ {
+ dataType="Marker";
+ position[]={417.36566,-83.491501,174.42444};
+ name="seaPatrol_6";
+ type="Empty";
+ id=237;
+ atlOffset=-79.747086;
+ };
+ class Item85
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3054.6279,25.833622,4129.917};
+ angles[]={0,0.41018143,0};
+ };
+ side="Empty";
+ flags=1;
+ class Attributes
+ {
+ };
+ id=253;
+ type="Land_Cargo_Tower_V4_F";
+ atlOffset=0.27638435;
+ };
+ class Item86
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3216.8315,21.973166,4399.9165};
+ angles[]={0,4.3744025,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=254;
+ type="Land_Cargo_Patrol_V4_F";
+ };
+ class Item87
{
dataType="Object";
class PositionInfo
{
- position[]={5262.5132,202.99638,7813.4194};
- angles[]={0.011246439,0,0};
+ position[]={3135.9656,19.594999,4436.5063};
+ angles[]={0,3.1965852,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=231;
- type="Land_DeconTent_01_white_F";
+ id=255;
+ type="Land_Cargo_Patrol_V4_F";
+ atlOffset=-9.5367432e-007;
};
- class Item84
+ class Item88
{
dataType="Object";
class PositionInfo
{
- position[]={5286.1895,203.01427,7812.4131};
- angles[]={0.018749893,0,0};
+ position[]={2906.9736,19.54129,4128.606};
+ angles[]={0,1.4735304,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=232;
- type="Land_MedicalTent_01_white_generic_outer_F";
+ id=256;
+ type="Land_Cargo_Patrol_V4_F";
+ atlOffset=0.0026073456;
};
- class Item85
+ class Item89
{
- dataType="Logic";
- class PositionInfo
- {
- position[]={466.11465,8.7874355,358.69617};
- angles[]={0,5.4966431,0};
- };
- areaSize[]={10.551336,0,10.024108};
- areaIsRectangle=1;
- flags=1;
- id=233;
- type="ModuleHideTerrainObjects_F";
- atlOffset=-0.00033473969;
- class CustomAttributes
+ dataType="Layer";
+ name="Outposts";
+ class Entities
{
- class Attribute0
+ items=19;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={3739.729,-7.6830001,4851.084};
+ name="outp_3_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.496;
+ b=13.036;
+ angle=116.033;
+ id=257;
+ atlOffset=-23.722893;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={4374.8516,65.53186,6630.457};
+ name="outpost_1";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=35.475227;
+ b=37.37513;
+ angle=119.03481;
+ id=121;
+ atlOffset=44.96637;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4898.874,52.779789,720.89624};
+ name="outpost_10";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=107.89522;
+ b=161.41794;
+ angle=90.683784;
+ id=202;
+ atlOffset=45.632519;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={5142.7827,55.316368,6023.8721};
+ name="outpost_2";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=44.519325;
+ b=47.903667;
+ angle=136.63515;
+ id=124;
+ atlOffset=44.96637;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={3731.907,60.426365,4883.9443};
+ name="outpost_3";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=41.753052;
+ b=37.37513;
+ angle=114.06979;
+ id=125;
+ atlOffset=44.966366;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={9046.54,104.87637,6004.8291};
+ name="outpost_4";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=44.42963;
+ b=130.77122;
+ angle=168.85548;
+ id=131;
+ atlOffset=44.966373;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={8841.5352,180.08636,6129.6963};
+ name="outpost_5";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=76.77066;
+ b=37.37513;
+ angle=179.67282;
+ id=132;
+ atlOffset=44.96637;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={2816.0447,194.20055,7877.333};
+ name="outpost_8";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=49.033043;
+ b=64.149734;
+ angle=179.27458;
+ id=156;
+ atlOffset=44.839493;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={9253.416,62.026367,5145.6909};
+ name="outpost_9";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=58.205769;
+ b=40.860683;
+ angle=90.683784;
+ id=157;
+ atlOffset=44.96637;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={5072.8408,13.456,6039.4941};
+ name="outp_2_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=21.083;
+ b=10.351;
+ angle=124.91899;
+ id=259;
+ atlOffset=0.6110363;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={9028.2471,46.042,6046.2861};
+ name="outp_4_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=26.857;
+ b=10.307;
+ angle=89.650002;
+ id=260;
+ atlOffset=-20.43644;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={9055.375,44.542969,6045.6963};
+ name="outp_4_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=26.857;
+ b=10.307;
+ angle=91.258873;
+ id=262;
+ atlOffset=-20.338295;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={9266.2891,17.059999,5118.4312};
+ name="outp_9_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=19.487;
+ b=5.724;
+ angle=0.61699969;
+ id=263;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={7824.52,217.645,6896.438};
+ name="outp_6_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=264;
+ atlOffset=0.00044250488;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={9254.0684,145.606,6024.4766};
+ name="outpost";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=67.4021;
+ b=88.879227;
+ angle=99.203995;
+ id=130;
+ atlOffset=44.966003;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={5728.3301,99.069,4240.7578};
+ name="outpost_11";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=55.234207;
+ b=88.771461;
+ angle=180.39397;
+ id=208;
+ atlOffset=44.959;
+ };
+ class Item16
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=15;
- };
- };
+ dataType="Marker";
+ position[]={7860.5967,257.4444,6993.2944};
+ name="outpost_6";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=127.78634;
+ b=139.33255;
+ angle=61.681442;
+ id=133;
+ atlOffset=43.77684;
};
- class Attribute1
+ class Item17
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
+ dataType="Marker";
+ position[]={4112.1362,401.95099,8046.6763};
+ name="outpost_7";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=52.469822;
+ b=69.335587;
+ angle=119.035;
+ id=144;
+ atlOffset=46.06662;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={8858.1904,46.956001,4771.8765};
+ name="outpost_12";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorGreen";
+ a=75.85791;
+ b=63.35891;
+ angle=90.683983;
+ id=311;
+ atlOffset=44.966;
};
- nAttributes=2;
- };
- };
- class Item86
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={385.73734,8.7600002,552.797};
- angles[]={0,2.3661182,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=235;
- type="Land_HelipadSquare_F";
- };
- class Item87
- {
- dataType="Marker";
- position[]={587.15283,-85.946854,523.54248};
- name="seaPatrol_5";
- type="Empty";
- id=236;
- atlOffset=-79.747086;
- };
- class Item88
- {
- dataType="Marker";
- position[]={417.36566,-83.491501,174.42444};
- name="seaPatrol_6";
- type="Empty";
- id=237;
- atlOffset=-79.747086;
- };
- class Item89
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1811.0693,12.41,4835.5352};
- angles[]={0,3.1415927,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=238;
- type="Land_HelipadSquare_F";
- };
- class Item90
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1777.9683,12.41,4835.4785};
- angles[]={0,3.1415927,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=239;
- type="Land_HelipadSquare_F";
- };
- class Item91
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1745.5701,12.41,4836.251};
- angles[]={0,3.1415927,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=240;
- type="Land_HelipadSquare_F";
- };
- class Item92
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={1714.0297,12.41,4836.3008};
- angles[]={0,3.1415927,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=241;
- type="Land_HelipadSquare_F";
- };
- class Item93
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3062.5676,14.69,4317.0547};
- angles[]={0,2.1329734,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=249;
- type="Land_HelipadSquare_F";
- };
- class Item94
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3044.9717,14.69,4289.0176};
- angles[]={0,2.1329734,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=250;
- type="Land_HelipadSquare_F";
- };
- class Item95
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3027.0491,14.69,4262.0176};
- angles[]={0,2.1329734,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=251;
- type="Land_HelipadSquare_F";
- };
- class Item96
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3010.1948,14.69,4235.3579};
- angles[]={0,2.1329734,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=252;
- type="Land_HelipadSquare_F";
- };
- class Item97
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3054.6279,25.833622,4129.917};
- angles[]={0,0.41018143,0};
- };
- side="Empty";
- flags=1;
- class Attributes
- {
- };
- id=253;
- type="Land_Cargo_Tower_V4_F";
- atlOffset=0.27638435;
- };
- class Item98
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3216.8315,21.973166,4399.9165};
- angles[]={0,4.3744025,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=254;
- type="Land_Cargo_Patrol_V4_F";
- };
- class Item99
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={3135.9656,19.594999,4436.5063};
- angles[]={0,3.1965852,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
};
- id=255;
- type="Land_Cargo_Patrol_V4_F";
- atlOffset=-9.5367432e-007;
+ id=258;
+ atlOffset=141.31024;
};
- class Item100
+ class Item90
{
- dataType="Object";
- class PositionInfo
- {
- position[]={2906.9736,19.54129,4128.606};
- angles[]={0,1.4735304,0};
- };
- side="Empty";
- flags=5;
- class Attributes
+ dataType="Layer";
+ name="Resources";
+ class Entities
{
+ items=13;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={1422.6705,29.839157,7367.5142};
+ name="resource_1";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=51.972672;
+ b=47.111237;
+ angle=281.88538;
+ id=120;
+ atlOffset=24.693537;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={5274.0278,225.81081,7857.4761};
+ name="resource_10";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=51.972672;
+ b=34.364311;
+ angle=281.88538;
+ id=211;
+ atlOffset=24.784958;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={4608.9536,47.294952,6907.3477};
+ name="resource_2";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=74.769104;
+ b=46.792278;
+ angle=320.11829;
+ id=122;
+ atlOffset=24.93462;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={6836.9419,63.028564,6717.687};
+ name="resource_3";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=47.13047;
+ angle=281.88538;
+ id=135;
+ atlOffset=24.907688;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={6170.6523,62.671005,7588.8853};
+ name="resource_4";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=44.153847;
+ b=48.682899;
+ angle=180.22874;
+ id=136;
+ atlOffset=24.968193;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={7503.6934,84.778198,4912.6758};
+ name="resource_6";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=34.811058;
+ b=34.364311;
+ angle=292.0361;
+ id=141;
+ atlOffset=24.968197;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={7264.8252,30.230194,3751.6431};
+ name="resource_8";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=92.706749;
+ b=83.818871;
+ angle=359.92911;
+ id=209;
+ atlOffset=25.834967;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={2220.1301,49.251251,7395.7134};
+ name="resource_9";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=60.015854;
+ b=38.063274;
+ angle=281.88538;
+ id=210;
+ atlOffset=24.363857;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={1399.634,2.5109999,7399.4219};
+ name="reso_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.496;
+ b=13.036;
+ angle=104.24695;
+ id=269;
+ atlOffset=0.0003426075;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={4648.459,23.781,6939.7822};
+ name="reso_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.496;
+ b=13.036;
+ angle=48.666992;
+ id=270;
+ atlOffset=-1.335144e-005;
+ };
+ class Item10
+ {
+ dataType="Layer";
+ name="Factories";
+ class Entities
+ {
+ items=6;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={1676.8789,7.1300001,5542.083};
+ name="factory";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorOrange";
+ a=48.23391;
+ b=64.200623;
+ angle=349.7236;
+ id=2;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={4880.5518,34.564274,7143.6343};
+ name="factory_1";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorOrange";
+ a=44.645691;
+ b=76.16835;
+ angle=320.94269;
+ id=123;
+ atlOffset=0.18236542;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={7036.0254,8.6422958,5721.0391};
+ name="factory_2";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorOrange";
+ a=61.469276;
+ b=91.140617;
+ angle=28.159204;
+ id=134;
+ atlOffset=-1.1736374;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={4910.3218,34.771999,7097.9849};
+ name="fact_1_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.496;
+ b=13.036;
+ angle=48.666992;
+ id=271;
+ atlOffset=-0.00010299683;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={7036.0757,11.563978,5765.0483};
+ name="fact_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.496;
+ b=11.538742;
+ angle=28.279589;
+ id=274;
+ atlOffset=-0.071720123;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={1678.4561,7.1300001,5566.1011};
+ name="fact_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=9.3446674;
+ b=11.539;
+ angle=83.315842;
+ id=275;
+ };
+ };
+ id=272;
+ atlOffset=-46.750244;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={5427.8452,36.214279,3475.4954};
+ name="resource_5";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=150.1561;
+ b=100.8366;
+ angle=292.8999;
+ id=137;
+ atlOffset=23.614279;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={6310.1411,30.053932,4770.8174};
+ name="resource_7";
+ markerType="ELLIPSE";
+ type="Empty";
+ colorName="ColorBrown";
+ a=69.968704;
+ b=76.622749;
+ angle=228.59032;
+ id=158;
+ atlOffset=25.352036;
+ };
};
- id=256;
- type="Land_Cargo_Patrol_V4_F";
- atlOffset=0.0026073456;
+ id=268;
+ atlOffset=53.832367;
};
- class Item101
+ class Item91
{
dataType="Layer";
- name="Outposts";
+ name="Airfports";
class Entities
{
- items=19;
+ items=24;
class Item0
{
dataType="Marker";
- position[]={3739.729,-7.6830001,4851.084};
- name="outp_3_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.496;
- b=13.036;
- angle=116.033;
- id=257;
- atlOffset=-23.722893;
+ position[]={3024.5549,14.69,4333.6865};
+ name="airp_1_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=243;
};
class Item1
{
dataType="Marker";
- position[]={4374.8516,65.53186,6630.457};
- name="outpost_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=35.475227;
- b=37.37513;
- angle=119.03481;
- id=121;
- atlOffset=44.96637;
+ position[]={2957.5935,14.69,4183.0469};
+ name="airp_1_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=248;
};
class Item2
{
dataType="Marker";
- position[]={4898.874,52.779789,720.89624};
- name="outpost_10";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=107.89522;
- b=161.41794;
- angle=90.683784;
- id=202;
- atlOffset=45.632519;
+ position[]={1874.51,12.419,4799.0889};
+ name="airp_3_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=246;
+ atlOffset=-0.00010967255;
};
class Item3
{
dataType="Marker";
- position[]={5142.7827,55.316368,6023.8721};
- name="outpost_2";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=44.519325;
- b=47.903667;
- angle=136.63515;
- id=124;
- atlOffset=44.96637;
+ position[]={1812.287,12.41,4893.8804};
+ name="airp_3_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ id=247;
};
class Item4
{
dataType="Marker";
- position[]={3731.907,60.426365,4883.9443};
- name="outpost_3";
- markerType="RECTANGLE";
+ position[]={4645.0332,38.018002,1319.4414};
+ name="airport_2";
+ markerType="ELLIPSE";
type="Empty";
- colorName="ColorGreen";
- a=41.753052;
- b=37.37513;
- angle=114.06979;
- id=125;
- atlOffset=44.966366;
+ colorName="ColorEAST";
+ a=360.85574;
+ b=242.26671;
+ angle=89.304955;
+ id=127;
+ atlOffset=20.928001;
};
class Item5
{
dataType="Marker";
- position[]={9046.54,104.87637,6004.8291};
- name="outpost_4";
- markerType="RECTANGLE";
+ position[]={1743.1516,33.338001,4827.8022};
+ name="airport_3";
+ markerType="ELLIPSE";
type="Empty";
- colorName="ColorGreen";
- a=44.42963;
- b=130.77122;
- angle=168.85548;
- id=131;
- atlOffset=44.966373;
+ colorName="ColorEAST";
+ a=117.07976;
+ b=213.5576;
+ angle=94.254211;
+ id=128;
+ atlOffset=20.928001;
};
class Item6
{
dataType="Marker";
- position[]={8841.5352,180.08636,6129.6963};
- name="outpost_5";
- markerType="RECTANGLE";
+ position[]={466.6673,8.787446,358.72314};
+ name="airport_4";
+ markerType="ELLIPSE";
type="Empty";
+ colorName="ColorEAST";
+ a=273.11526;
+ b=281.46762;
+ angle=89.924965;
+ id=234;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={3013.2468,14.512,4196.4004};
+ name="detectPlayer";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=141.64407;
+ b=336.23666;
+ angle=31.019993;
+ id=140;
+ atlOffset=-0.1779995;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={8875.5361,4.8220005,4839.5718};
+ name="detectPlayer_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=124.12324;
+ b=156.49829;
+ angle=1.0200374;
+ id=142;
+ atlOffset=1.0337131;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={9606.3525,5,4914.6206};
+ name="detectPlayer_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=109.853;
+ b=84.629974;
+ angle=359.79218;
+ id=143;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={4589.8452,17.09,859.77271};
+ name="detectPlayer_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=109.853;
+ b=253.32314;
+ angle=359.79218;
+ id=200;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={4926.8027,17.09,1103.3167};
+ name="detectPlayer_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=109.853;
+ b=292.11807;
+ angle=314.63162;
+ id=201;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={2994.0081,-9.0351009,4230.438};
+ name="airp_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
colorName="ColorGreen";
- a=76.77066;
- b=37.37513;
- angle=179.67282;
- id=132;
- atlOffset=44.96637;
+ a=23.413891;
+ b=13.036;
+ angle=119.23458;
+ id=242;
+ atlOffset=-23.725101;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={9233.9014,5,4845.6558};
+ name="airport";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorEAST";
+ a=148.07298;
+ b=320.45807;
+ angle=89.925354;
+ id=0;
};
- class Item7
+ class Item14
{
dataType="Marker";
- position[]={2816.0447,194.20055,7877.333};
- name="outpost_8";
+ position[]={3063.5786,35.61792,4273.3955};
+ name="airport_1";
markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=49.033043;
- b=64.149734;
- angle=179.27458;
- id=156;
- atlOffset=44.839493;
+ colorName="ColorEAST";
+ a=226.811;
+ b=113.39554;
+ angle=121.86916;
+ id=126;
+ atlOffset=20.927921;
};
- class Item8
+ class Item15
{
dataType="Marker";
- position[]={9253.416,62.026367,5145.6909};
- name="outpost_9";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorGreen";
- a=58.205769;
- b=40.860683;
- angle=90.683784;
- id=157;
- atlOffset=44.96637;
+ position[]={4781.7739,40.814999,1424.745};
+ name="airp_2_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ angle=328.74692;
+ id=285;
+ atlOffset=23.724998;
};
- class Item9
+ class Item16
{
dataType="Marker";
- position[]={5072.8408,13.456,6039.4941};
- name="outp_2_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=21.083;
- b=10.351;
- angle=124.91899;
- id=259;
- atlOffset=0.6110363;
+ position[]={4544.1309,40.814999,1212.955};
+ name="airp_2_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ angle=328.74692;
+ id=286;
+ atlOffset=23.724998;
};
- class Item10
+ class Item17
{
dataType="Marker";
- position[]={9028.2471,46.042,6046.2861};
- name="outp_4_vehicle";
+ position[]={4563.5269,17.09,1095.5393};
+ name="airp_2_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=26.857;
- b=10.307;
- angle=89.650002;
- id=260;
- atlOffset=-20.43644;
+ a=10.765129;
+ b=8.1544609;
+ angle=89.855125;
+ id=287;
};
- class Item11
+ class Item18
{
dataType="Marker";
- position[]={9055.375,44.542969,6045.6963};
- name="outp_4_vehicle_1";
+ position[]={4777.729,17.09,1211.0724};
+ name="airp_2_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=26.857;
- b=10.307;
- angle=91.258873;
- id=262;
- atlOffset=-20.338295;
+ a=10.765129;
+ b=8.1544609;
+ angle=44.752724;
+ id=295;
};
- class Item12
+ class Item19
{
dataType="Marker";
- position[]={9266.2891,17.059999,5118.4312};
- name="outp_9_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=19.487;
- b=5.724;
- angle=0.61699969;
- id=263;
+ position[]={391.77301,32.324001,453.20599};
+ name="airp_4_mortar_4";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ angle=328.74692;
+ id=297;
+ atlOffset=23.725462;
};
- class Item13
+ class Item20
{
dataType="Marker";
- position[]={7824.52,217.645,6896.438};
- name="outp_6_mortar";
+ position[]={9355.793,5,4802.3599};
+ name="airp_mortar_2";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=14.473;
b=13.825;
- id=264;
- atlOffset=0.00044250488;
+ angle=74.174973;
+ id=298;
};
- class Item14
+ class Item21
{
dataType="Marker";
- position[]={9254.0684,145.606,6024.4766};
- name="outpost";
+ position[]={9179.5898,10.095,4776.2856};
+ name="airp_mortar_3";
markerType="ELLIPSE";
- type="Empty";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=14.473;
+ b=13.825;
+ angle=74.174973;
+ id=299;
+ atlOffset=5.0950003;
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={9305.5244,5,4879.0215};
+ name="airp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
colorName="ColorGreen";
- a=67.4021;
- b=88.879227;
- angle=99.203995;
- id=130;
- atlOffset=44.966003;
+ a=23.414;
+ b=13.036;
+ angle=180.14229;
+ id=300;
};
- class Item15
+ class Item23
{
dataType="Marker";
- position[]={5728.3301,99.069,4240.7578};
- name="outpost_11";
- markerType="ELLIPSE";
- type="Empty";
+ position[]={1847.658,-11.315,4810.9458};
+ name="airp_3_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
colorName="ColorGreen";
- a=55.234207;
- b=88.771461;
- angle=180.39397;
- id=208;
- atlOffset=44.959;
+ a=12.922;
+ b=7.3150001;
+ angle=89.929001;
+ id=352;
+ atlOffset=-23.724998;
};
- class Item16
+ };
+ id=276;
+ atlOffset=13.611166;
+ };
+ class Item92
+ {
+ dataType="Layer";
+ name="Seaports";
+ class Entities
+ {
+ items=5;
+ class Item0
{
dataType="Marker";
- position[]={7860.5967,257.4444,6993.2944};
- name="outpost_6";
- markerType="ELLIPSE";
+ position[]={6092.9604,3.9160156,4884.9072};
+ name="seaport_1";
+ markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=127.78634;
- b=139.33255;
- angle=61.681442;
- id=133;
- atlOffset=43.77684;
+ colorName="ColorBlue";
+ a=72.381622;
+ b=83.836197;
+ angle=0.64454061;
+ id=118;
+ atlOffset=-0.68398428;
};
- class Item17
+ class Item1
{
dataType="Marker";
- position[]={4112.1362,401.95099,8046.6763};
- name="outpost_7";
- markerType="ELLIPSE";
+ position[]={3791.2571,3.1015625,823.21167};
+ name="seaport_2";
+ markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=52.469822;
- b=69.335587;
- angle=119.035;
- id=144;
- atlOffset=46.06662;
+ colorName="ColorBlue";
+ a=145.2323;
+ b=153.64438;
+ angle=290.15149;
+ id=119;
+ atlOffset=-0.81843758;
};
- class Item18
+ class Item2
{
dataType="Marker";
- position[]={8858.1904,46.956001,4771.8765};
- name="outpost_12";
- markerType="ELLIPSE";
+ position[]={1953.5848,5.2261763,4885.2139};
+ name="seaport_3";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBlue";
+ a=78.267166;
+ b=76.173935;
+ angle=330.8866;
+ id=129;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={5756.4092,-5.321588,6238.4331};
+ name="seaport_4";
+ markerType="RECTANGLE";
+ type="Empty";
+ colorName="ColorBlue";
+ a=98.078941;
+ b=83.836197;
+ angle=65.808563;
+ id=159;
+ atlOffset=-10.562359;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={4472.418,4.2741041,2944.1504};
+ name="seaport_5";
+ markerType="RECTANGLE";
type="Empty";
- colorName="ColorGreen";
- a=75.85791;
- b=63.35891;
- angle=90.683983;
- id=311;
- atlOffset=44.966;
+ colorName="ColorBlue";
+ a=98.013321;
+ b=101.58385;
+ angle=311.6795;
+ id=177;
};
};
- id=258;
- atlOffset=141.31024;
- };
- class Item102
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2800.8835,150.04987,7837.4761};
- angles[]={6.2791886,1.5746711,6.2491965};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=265;
- type="Land_HelipadSquare_F";
- };
- class Item103
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5727.5259,54.110001,4292.5586};
- angles[]={0,3.1410565,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=266;
- type="Land_HelipadSquare_F";
+ id=277;
+ atlOffset=27.005886;
};
- class Item104
+ class Item93
{
dataType="Layer";
- name="Resources";
+ name="Roadblocks";
class Entities
{
- items=13;
+ items=19;
class Item0
{
dataType="Marker";
- position[]={1422.6705,29.839157,7367.5142};
- name="resource_1";
+ position[]={1616,18.817999,6350};
+ name="control";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=51.972672;
- b=47.111237;
- angle=281.88538;
- id=120;
- atlOffset=24.693537;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=88;
+
};
class Item1
{
dataType="Marker";
- position[]={5274.0278,225.81081,7857.4761};
- name="resource_10";
+ position[]={4048.137,16.283482,4891.9023};
+ name="control_1";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=51.972672;
- b=34.364311;
- angle=281.88538;
- id=211;
- atlOffset=24.784958;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=188;
+ atlOffset=-0.77007866;
};
class Item2
{
dataType="Marker";
- position[]={4608.9536,47.294952,6907.3477};
- name="resource_2";
+ position[]={7079.4277,30.212574,6757.9155};
+ name="control_10";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=74.769104;
- b=46.792278;
- angle=320.11829;
- id=122;
- atlOffset=24.93462;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=197;
+ atlOffset=-0.77007866;
};
class Item3
{
dataType="Marker";
- position[]={6836.9419,63.028564,6717.687};
- name="resource_3";
+ position[]={6402.2871,39.684525,4382.2109};
+ name="control_11";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=47.13047;
- angle=281.88538;
- id=135;
- atlOffset=24.907688;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=198;
+ atlOffset=-0.77007675;
};
class Item4
{
dataType="Marker";
- position[]={6170.6523,62.671005,7588.8853};
- name="resource_4";
+ position[]={7025.4971,9.5864372,3838.6333};
+ name="control_12";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=44.153847;
- b=48.682899;
- angle=180.22874;
- id=136;
- atlOffset=24.968193;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=199;
+ atlOffset=-0.77007771;
};
class Item5
{
dataType="Marker";
- position[]={7503.6934,84.778198,4912.6758};
- name="resource_6";
+ position[]={4438.334,15.954399,699.72186};
+ name="control_13";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=34.811058;
- b=34.364311;
- angle=292.0361;
- id=141;
- atlOffset=24.968197;
+ type="rectangle";
+ a=34.417679;
+ b=15;
+ angle=231.22296;
+ id=203;
};
class Item6
{
dataType="Marker";
- position[]={7264.8252,30.230194,3751.6431};
- name="resource_8";
+ position[]={5110.1812,8.2443142,816.16058};
+ name="control_14";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=92.706749;
- b=83.818871;
- angle=359.92911;
- id=209;
- atlOffset=25.834967;
+ type="rectangle";
+ a=27.764128;
+ b=15;
+ angle=218.96999;
+ id=204;
+ atlOffset=-0.76836967;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={3458.4607,6.5873747,4405.1655};
+ name="control_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=205;
+ atlOffset=-0.77007866;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={6566.355,6.59904,6334.2402};
+ name="control_16";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=206;
+ atlOffset=-0.77007866;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={3361.1038,15.766315,6487.2876};
+ name="control_17";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=207;
+ atlOffset=-0.77007866;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={4974.1914,25.133081,2197.0903};
+ name="control_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=189;
+ atlOffset=-0.77007866;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={7610.9258,5.0599217,5607.2227};
+ name="control_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=190;
+ atlOffset=-0.77007818;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={8221.4023,9.2798529,5766.9619};
+ name="control_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=191;
+ atlOffset=-0.77007771;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={8567.4111,6.7299218,5149.6719};
+ name="control_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=192;
+ atlOffset=-0.77007818;
};
- class Item7
+ class Item14
{
dataType="Marker";
- position[]={2220.1301,49.251251,7395.7134};
- name="resource_9";
+ position[]={1892.3354,34.66436,7167.3887};
+ name="control_6";
markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBrown";
- a=60.015854;
- b=38.063274;
- angle=281.88538;
- id=210;
- atlOffset=24.363857;
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=193;
+ atlOffset=-0.77007675;
};
- class Item8
+ class Item15
{
dataType="Marker";
- position[]={1399.634,2.5109999,7399.4219};
- name="reso_1_vehicle";
+ position[]={2561.439,101.47334,7669.9229};
+ name="control_7";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=14.496;
- b=13.036;
- angle=104.24695;
- id=269;
- atlOffset=0.0003426075;
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=194;
+ atlOffset=-0.77008057;
};
- class Item9
+ class Item16
{
dataType="Marker";
- position[]={4648.459,23.781,6939.7822};
- name="reso_2_vehicle";
+ position[]={5179.3794,29.174879,7282.5156};
+ name="control_8";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=14.496;
- b=13.036;
- angle=48.666992;
- id=270;
- atlOffset=-1.335144e-005;
- };
- class Item10
- {
- dataType="Layer";
- name="Factories";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Marker";
- position[]={1676.8789,7.1300001,5542.083};
- name="factory";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorOrange";
- a=48.23391;
- b=64.200623;
- angle=349.7236;
- id=2;
- };
- class Item1
- {
- dataType="Marker";
- position[]={4880.5518,34.564274,7143.6343};
- name="factory_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorOrange";
- a=44.645691;
- b=76.16835;
- angle=320.94269;
- id=123;
- atlOffset=0.18236542;
- };
- class Item2
- {
- dataType="Marker";
- position[]={7036.0254,8.6422958,5721.0391};
- name="factory_2";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorOrange";
- a=61.469276;
- b=91.140617;
- angle=28.15921;
- id=134;
- atlOffset=-1.1736374;
- };
- class Item3
- {
- dataType="Marker";
- position[]={4910.3218,34.771999,7097.9849};
- name="fact_1_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.496;
- b=13.036;
- angle=48.666992;
- id=271;
- atlOffset=-0.00010299683;
- };
- class Item4
- {
- dataType="Marker";
- position[]={7036.0757,11.563978,5765.0483};
- name="fact_2_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.496;
- b=11.538742;
- angle=28.279594;
- id=274;
- atlOffset=-0.071720123;
- };
- class Item5
- {
- dataType="Marker";
- position[]={1678.4561,7.1300001,5566.1011};
- name="fact_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=9.3446674;
- b=11.539;
- angle=83.315842;
- id=275;
- };
- };
- id=272;
- atlOffset=-46.750244;
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=195;
+ atlOffset=-0.77007866;
};
- class Item11
+ class Item17
{
dataType="Marker";
- position[]={5427.8452,36.214279,3475.4954};
- name="resource_5";
- markerType="ELLIPSE";
- type="Empty";
- colorName="ColorBrown";
- a=150.1561;
- b=100.8366;
- angle=292.8999;
- id=137;
- atlOffset=23.614279;
+ position[]={6537.5107,28.41358,7603.8623};
+ name="control_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=15;
+ b=15;
+ angle=231.22296;
+ id=196;
+ atlOffset=-0.77007866;
};
- class Item12
+ class Item18
{
dataType="Marker";
- position[]={6310.1411,30.053932,4770.8174};
- name="resource_7";
- markerType="ELLIPSE";
- type="Empty";
- colorName="ColorBrown";
- a=69.968704;
- b=76.622749;
- angle=228.59036;
- id=158;
- atlOffset=25.352036;
+ position[]={4400.8374,15.719203,1348.9581};
+ name="control_18";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=34.417679;
+ b=15;
+ angle=270.44904;
+ id=296;
};
};
- id=268;
- atlOffset=53.832367;
+ id=278;
+ atlOffset=52.914986;
+ };
+ class Item94
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={869.13599,9.9300003,5442.1558};
+ };
+ name="HC_commanderX";
+ id=280;
+ type="HighCommand";
+ };
+ class Item95
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={872.53564,9.9300003,5442.061};
+ };
+ id=281;
+ type="HighCommandSubordinate";
+ };
+ class Item96
+ {
+ dataType="Marker";
+ position[]={3468.0591,7.256,4396.9609};
+ name="road";
+ type="hd_arrow";
+ id=282;
+ atlOffset=4.2438507e-005;
+ };
+ class Item97
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9206.3066,9.9050007,4976.3516};
+ angles[]={0,3.1415927,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=303;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item98
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9201.9326,5.7634072,4980.3555};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=304;
+ type="Land_HBarrierWall6_F";
+ };
+ class Item99
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.3047,5.7634072,4980.6177};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=305;
+ type="Land_HBarrierWall6_F";
+ };
+ class Item100
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8929.5586,9.9050007,4976.1611};
+ angles[]={0,2.1118484,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=306;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item101
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9467.5967,9.8829174,4971.104};
+ angles[]={0,3.7873645,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=307;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=-4.7683716e-007;
+ };
+ class Item102
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9470.7158,6.1985631,4974.9194};
+ angles[]={0.017997233,3.7873645,6.2651882};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=309;
+ type="Land_HBarrier_Big_F";
+ };
+ class Item103
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8925.4609,6.21,4979.0303};
+ angles[]={0,2.1118484,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=310;
+ type="Land_HBarrier_Big_F";
+ };
+ class Item104
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9116.3701,9.9050007,4822.1743};
+ angles[]={0,0.72487926,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=312;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item105
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9112.7998,6.1949596,4818.6699};
+ angles[]={6.2751846,0.72487926,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=313;
+ type="Land_HBarrier_Big_F";
+ };
+ class Item106
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9400.792,9.6539993,4815.2905};
+ angles[]={0,5.3304138,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=314;
+ type="Land_Cargo_Patrol_V3_F";
+ atlOffset=4.7683716e-007;
+ };
+ class Item107
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9404.6572,5.3677812,4812.1147};
+ angles[]={6.1993828,5.3304138,6.1954112};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=315;
+ type="Land_HBarrier_Big_F";
+ };
+ class Item108
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9248.1621,8.699235,4743.2109};
+ angles[]={0,0.029731244,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=316;
+ type="Land_Cargo_Patrol_V3_F";
+ };
+ class Item109
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9247.665,3.9983017,4738.2334};
+ angles[]={6.0761933,0.029731244,0.025994543};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=317;
+ type="Land_HBarrier_Big_F";
+ atlOffset=2.3841858e-007;
+ };
+ class Item110
+ {
+ dataType="Marker";
+ position[]={4982.8779,17.352125,5946.2769};
+ name="road_1";
+ type="hd_arrow";
+ id=318;
+ atlOffset=4.196167e-005;
+ };
+ class Item111
+ {
+ dataType="Marker";
+ position[]={6186.1226,4.5815167,7140.0923};
+ name="road_2";
+ type="hd_arrow";
+ id=319;
+ atlOffset=4.2438507e-005;
+ };
+ class Item112
+ {
+ dataType="Marker";
+ position[]={6407.4814,27.562088,7624.4834};
+ name="road_3";
+ type="hd_arrow";
+ id=320;
+ atlOffset=4.196167e-005;
+ };
+ class Item113
+ {
+ dataType="Marker";
+ position[]={6755.207,46.149174,6451.499};
+ name="road_4";
+ type="hd_arrow";
+ id=321;
+ atlOffset=4.196167e-005;
+ };
+ class Item114
+ {
+ dataType="Marker";
+ position[]={6669.332,9.7615795,7019.2314};
+ name="road_5";
+ type="hd_arrow";
+ id=322;
+ atlOffset=4.196167e-005;
+ };
+ class Item115
+ {
+ dataType="Marker";
+ position[]={6487.5713,5.1223044,6285.8096};
+ name="road_6";
+ type="hd_arrow";
+ id=323;
+ atlOffset=4.2438507e-005;
+ };
+ class Item116
+ {
+ dataType="Marker";
+ position[]={6076.0132,36.164722,5983.7061};
+ name="road_7";
+ type="hd_arrow";
+ id=324;
+ atlOffset=4.196167e-005;
+ };
+ class Item117
+ {
+ dataType="Marker";
+ position[]={5709.9146,9.3883533,5943.8403};
+ name="road_8";
+ type="hd_arrow";
+ id=325;
+ atlOffset=4.2915344e-005;
+ };
+ class Item118
+ {
+ dataType="Marker";
+ position[]={5800.8984,5.9700422,5545.0903};
+ name="road_9";
+ type="hd_arrow";
+ id=326;
+ atlOffset=4.2438507e-005;
};
- class Item105
+ class Item119
{
- dataType="Object";
- class PositionInfo
- {
- position[]={4853.9849,33.866829,7132.9248};
- angles[]={6.261188,4.0101862,6.251195};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=273;
- type="Land_HelipadSquare_F";
+ dataType="Marker";
+ position[]={6332.7788,22.075169,5732.4326};
+ name="road_10";
+ type="hd_arrow";
+ id=327;
+ atlOffset=4.196167e-005;
+ };
+ class Item120
+ {
+ dataType="Marker";
+ position[]={7389.5063,55.06031,6148.1665};
+ name="road_11";
+ type="hd_arrow";
+ id=328;
+ atlOffset=4.196167e-005;
+ };
+ class Item121
+ {
+ dataType="Marker";
+ position[]={7105.0298,12.872475,5777.6113};
+ name="road_12";
+ type="hd_arrow";
+ id=329;
+ atlOffset=4.2915344e-005;
+ };
+ class Item122
+ {
+ dataType="Marker";
+ position[]={8727.0811,105.12666,6250.9473};
+ name="road_13";
+ type="hd_arrow";
+ id=330;
+ atlOffset=5.3405762e-005;
+ };
+ class Item123
+ {
+ dataType="Marker";
+ position[]={8909.3047,23.660042,5291.5479};
+ name="road_14";
+ type="hd_arrow";
+ id=331;
+ atlOffset=4.196167e-005;
+ };
+ class Item124
+ {
+ dataType="Marker";
+ position[]={8264.3213,18.447327,5824.7241};
+ name="road_15";
+ type="hd_arrow";
+ id=332;
+ atlOffset=4.196167e-005;
+ };
+ class Item125
+ {
+ dataType="Marker";
+ position[]={7639.145,47.649624,4703.9355};
+ name="road_16";
+ type="hd_arrow";
+ id=333;
+ atlOffset=4.196167e-005;
+ };
+ class Item126
+ {
+ dataType="Marker";
+ position[]={6851.7676,42.503872,4757.21};
+ name="road_17";
+ type="hd_arrow";
+ id=334;
+ atlOffset=4.196167e-005;
+ };
+ class Item127
+ {
+ dataType="Marker";
+ position[]={6373.2373,38.162395,4359.1152};
+ name="road_18";
+ type="hd_arrow";
+ id=335;
+ atlOffset=4.196167e-005;
+ };
+ class Item128
+ {
+ dataType="Marker";
+ position[]={5335.3003,7.1832151,3627.9927};
+ name="road_19";
+ type="hd_arrow";
+ id=336;
+ atlOffset=4.2438507e-005;
+ };
+ class Item129
+ {
+ dataType="Marker";
+ position[]={4986.2813,25.105524,2205.9534};
+ name="road_20";
+ type="hd_arrow";
+ id=337;
+ atlOffset=4.196167e-005;
+ };
+ class Item130
+ {
+ dataType="Marker";
+ position[]={4195.4937,15.27523,5266.2251};
+ name="road_21";
+ type="hd_arrow";
+ id=338;
+ atlOffset=4.2915344e-005;
+ };
+ class Item131
+ {
+ dataType="Marker";
+ position[]={1545.5944,7.1300426,5697.5244};
+ name="road_22";
+ type="hd_arrow";
+ id=339;
+ atlOffset=4.2438507e-005;
+ };
+ class Item132
+ {
+ dataType="Marker";
+ position[]={1740.4181,40.745392,6775.5947};
+ name="road_23";
+ type="hd_arrow";
+ id=340;
+ atlOffset=4.196167e-005;
+ };
+ class Item133
+ {
+ dataType="Marker";
+ position[]={2241.3816,19.702797,7326.8418};
+ name="road_24";
+ type="hd_arrow";
+ id=341;
+ atlOffset=4.196167e-005;
+ };
+ class Item134
+ {
+ dataType="Marker";
+ position[]={2298.2693,2.9884403,8497.6543};
+ name="road_25";
+ type="hd_arrow";
+ id=342;
+ atlOffset=4.2438507e-005;
+ };
+ class Item135
+ {
+ dataType="Marker";
+ position[]={3297.8071,19.438557,6441.5225};
+ name="road_26";
+ type="hd_arrow";
+ id=343;
+ atlOffset=4.196167e-005;
+ };
+ class Item136
+ {
+ dataType="Marker";
+ position[]={4271.5156,20.920042,6582.3096};
+ name="road_27";
+ type="hd_arrow";
+ id=344;
+ atlOffset=4.196167e-005;
+ };
+ class Item137
+ {
+ dataType="Marker";
+ position[]={5187.7246,29.679436,7277.5586};
+ name="road_28";
+ type="hd_arrow";
+ id=345;
+ atlOffset=4.196167e-005;
+ };
+ class Item138
+ {
+ dataType="Marker";
+ position[]={5357.751,163.60167,7726.731};
+ name="road_29";
+ type="hd_arrow";
+ id=346;
+ atlOffset=4.5776367e-005;
+ };
+ class Item139
+ {
+ dataType="Marker";
+ position[]={7061.0146,9.0371151,3841.2427};
+ name="road_30";
+ type="hd_arrow";
+ id=347;
+ atlOffset=4.196167e-005;
+ };
+ class Item140
+ {
+ dataType="Marker";
+ position[]={4385.0557,30.939602,1348.6993};
+ name="spawnpoint_2";
+ type="hd_start";
+ angle=28.14724;
+ id=348;
+ atlOffset=15.667422;
+ };
+ class Item141
+ {
+ dataType="Marker";
+ position[]={1780.5658,28.087421,4922.3477};
+ name="spawnpoint_3";
+ type="hd_start";
+ angle=28.14724;
+ id=349;
+ atlOffset=15.667421;
+ };
+ class Item142
+ {
+ dataType="Marker";
+ position[]={521.91888,24.427422,333.45093};
+ name="spawnpoint_4";
+ type="hd_start";
+ angle=28.14724;
+ id=350;
+ atlOffset=15.667421;
+ };
+ class Item143
+ {
+ dataType="Marker";
+ position[]={9207.2539,20.667,4988.5352};
+ name="spawnpoint";
+ type="hd_start";
+ angle=28.146988;
+ id=351;
+ atlOffset=15.667;
+ };
+ class Item144
+ {
+ dataType="Marker";
+ position[]={4920.5439,0.38800001,5730.7168};
+ name="island_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=5190.1421;
+ b=5239.7939;
+ angle=55.783981;
+ id=353;
+ atlOffset=-19.74058;
+ };
+ class Item145
+ {
+ dataType="Marker";
+ position[]={479.26917,0,378.30554};
+ name="island_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=405.41153;
+ b=418.44135;
+ id=354;
+ atlOffset=-8.79;
};
- class Item106
+ class Item146
{
- dataType="Layer";
- name="Airfports";
+ dataType="Group";
+ side="Independent";
class Entities
{
- items=24;
+ items=38;
class Item0
{
- dataType="Marker";
- position[]={3024.5549,14.69,4333.6865};
- name="airp_1_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=243;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={898.62616,12.140828,5451.0303};
+ };
+ side="Independent";
+ flags=3;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=356;
+ type="I_G_Soldier_TL_F";
+ atlOffset=2.2093887;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
class Item1
{
- dataType="Marker";
- position[]={2957.5935,14.69,4183.0469};
- name="airp_1_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=248;
- };
- class Item2
- {
- dataType="Marker";
- position[]={1874.51,12.419,4799.0889};
- name="airp_3_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=246;
- atlOffset=-0.00010967255;
- };
- class Item3
- {
- dataType="Marker";
- position[]={1812.287,12.41,4893.8804};
- name="airp_3_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- id=247;
- };
- class Item4
- {
- dataType="Marker";
- position[]={4645.0332,38.018002,1319.4414};
- name="airport_2";
- markerType="ELLIPSE";
- type="Empty";
- colorName="ColorEAST";
- a=360.85574;
- b=242.26671;
- angle=89.304955;
- id=127;
- atlOffset=20.928001;
- };
- class Item5
- {
- dataType="Marker";
- position[]={1743.1516,33.338001,4827.8022};
- name="airport_3";
- markerType="ELLIPSE";
- type="Empty";
- colorName="ColorEAST";
- a=117.07976;
- b=213.5576;
- angle=94.254211;
- id=128;
- atlOffset=20.928001;
- };
- class Item6
- {
- dataType="Marker";
- position[]={466.6673,8.787446,358.72314};
- name="airport_4";
- markerType="ELLIPSE";
- type="Empty";
- colorName="ColorEAST";
- a=273.11526;
- b=281.46762;
- angle=89.924965;
- id=234;
- };
- class Item7
- {
- dataType="Marker";
- position[]={3013.2468,14.512,4196.4004};
- name="detectPlayer";
- markerType="RECTANGLE";
- type="rectangle";
- a=141.64407;
- b=336.23666;
- angle=31.019993;
- id=140;
- atlOffset=-0.1779995;
- };
- class Item8
- {
- dataType="Marker";
- position[]={8875.5361,4.8220005,4839.5718};
- name="detectPlayer_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=124.12324;
- b=156.49829;
- angle=1.0200374;
- id=142;
- atlOffset=1.0337131;
- };
- class Item9
- {
- dataType="Marker";
- position[]={9606.3525,5,4914.6206};
- name="detectPlayer_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=109.853;
- b=84.629974;
- angle=359.79218;
- id=143;
- };
- class Item10
- {
- dataType="Marker";
- position[]={4589.8452,17.09,859.77271};
- name="detectPlayer_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=109.853;
- b=253.32314;
- angle=359.79218;
- id=200;
- };
- class Item11
- {
- dataType="Marker";
- position[]={4926.8027,17.09,1103.3167};
- name="detectPlayer_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=109.853;
- b=292.11807;
- angle=314.63162;
- id=201;
- };
- class Item12
- {
- dataType="Marker";
- position[]={2994.0081,-9.0351009,4230.438};
- name="airp_1_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=23.413891;
- b=13.036;
- angle=119.23458;
- id=242;
- atlOffset=-23.725101;
- };
- class Item13
- {
- dataType="Marker";
- position[]={9233.9014,5,4845.6558};
- name="airport";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorEAST";
- a=148.07298;
- b=320.45807;
- angle=89.925354;
- id=0;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.42108,11.602518,5448.3271};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=357;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.5630188;
};
- class Item14
+ class Item2
{
- dataType="Marker";
- position[]={3063.5786,35.61792,4273.3955};
- name="airport_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorEAST";
- a=226.811;
- b=113.39554;
- angle=121.86916;
- id=126;
- atlOffset=20.927921;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.55975,11.574219,5450.563};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=358;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.4959488;
};
- class Item15
+ class Item3
{
- dataType="Marker";
- position[]={4781.7739,40.814999,1424.745};
- name="airp_2_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- angle=328.74692;
- id=285;
- atlOffset=23.724998;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.50214,11.502116,5452.8965};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=359;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.405426;
};
- class Item16
+ class Item4
{
- dataType="Marker";
- position[]={4544.1309,40.814999,1212.955};
- name="airp_2_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- angle=328.74692;
- id=286;
- atlOffset=23.724998;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.33905,11.400959,5455.21};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=360;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.3078613;
};
- class Item17
+ class Item5
{
- dataType="Marker";
- position[]={4563.5269,17.09,1095.5393};
- name="airp_2_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=10.765129;
- b=8.1544609;
- angle=89.855125;
- id=287;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.29803,11.274815,5457.6641};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=361;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.2042618;
};
- class Item18
+ class Item6
{
- dataType="Marker";
- position[]={4777.729,17.09,1211.0724};
- name="airp_2_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=10.765129;
- b=8.1544609;
- angle=44.752724;
- id=295;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={903.11249,11.151037,5459.98};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=362;
+ type="I_G_Soldier_F";
+ atlOffset=1.1147766;
};
- class Item19
+ class Item7
{
- dataType="Marker";
- position[]={391.77301,32.324001,453.20599};
- name="airp_4_mortar_4";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- angle=328.74692;
- id=297;
- atlOffset=23.725462;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={902.90546,10.960851,5461.8755};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=363;
+ type="I_G_Soldier_F";
+ atlOffset=1.0294113;
};
- class Item20
+ class Item8
{
- dataType="Marker";
- position[]={9355.793,5,4802.3599};
- name="airp_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- angle=74.174973;
- id=298;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.78046,11.213944,5448.4507};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=364;
+ type="I_G_Soldier_F";
+ atlOffset=1.1350403;
};
- class Item21
+ class Item9
{
- dataType="Marker";
- position[]={9179.5898,10.095,4776.2856};
- name="airp_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=14.473;
- b=13.825;
- angle=74.174973;
- id=299;
- atlOffset=5.0950003;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.77948,11.176581,5450.79};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=365;
+ type="I_G_Soldier_F";
+ atlOffset=1.0546341;
};
- class Item22
+ class Item10
{
- dataType="Marker";
- position[]={9305.5244,5,4879.0215};
- name="airp_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=23.414;
- b=13.036;
- angle=180.14229;
- id=300;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.67303,11.113951,5453.1636};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=366;
+ type="I_G_Soldier_F";
+ atlOffset=0.96520233;
+ };
+ class Item11
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.61444,11.024461,5455.3633};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=367;
+ type="I_G_Soldier_F";
+ atlOffset=0.87738037;
};
- class Item23
+ class Item12
{
- dataType="Marker";
- position[]={1847.658,-11.315,4810.9458};
- name="airp_3_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=12.922;
- b=7.3150001;
- angle=89.929001;
- id=352;
- atlOffset=-23.724998;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.41132,10.894525,5457.7856};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=368;
+ type="I_G_Soldier_F";
+ atlOffset=0.78246307;
};
- };
- id=276;
- atlOffset=13.611166;
- };
- class Item107
- {
- dataType="Layer";
- name="Seaports";
- class Entities
- {
- items=5;
- class Item0
+ class Item13
{
- dataType="Marker";
- position[]={6092.9604,3.9160156,4884.9072};
- name="seaport_1";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBlue";
- a=72.381622;
- b=83.836197;
- angle=0.64454061;
- id=118;
- atlOffset=-0.68398428;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={905.22382,10.739998,5460.1167};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=369;
+ type="I_G_Soldier_F";
+ atlOffset=0.67633057;
};
- class Item1
+ class Item14
{
- dataType="Marker";
- position[]={3791.2571,3.1015625,823.21167};
- name="seaport_2";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBlue";
- a=145.2323;
- b=153.64438;
- angle=290.15149;
- id=119;
- atlOffset=-0.81843758;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={907.88885,11.109521,5448.4868};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=370;
+ type="I_G_Soldier_AR_F";
+ atlOffset=1.0090256;
};
- class Item2
+ class Item15
{
- dataType="Marker";
- position[]={1953.5848,5.2261763,4885.2139};
- name="seaport_3";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBlue";
- a=78.267166;
- b=76.173935;
- angle=330.8866;
- id=129;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={908.05096,11.069618,5450.9268};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=371;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.91348267;
};
- class Item3
+ class Item16
{
- dataType="Marker";
- position[]={5756.4092,-5.321588,6238.4331};
- name="seaport_4";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBlue";
- a=98.078941;
- b=83.836197;
- angle=65.808563;
- id=159;
- atlOffset=-10.562359;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={907.65057,11.013217,5453.3418};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=372;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.8175354;
};
- class Item4
+ class Item17
{
- dataType="Marker";
- position[]={4472.418,4.2741041,2944.1504};
- name="seaport_5";
- markerType="RECTANGLE";
- type="Empty";
- colorName="ColorBlue";
- a=98.013321;
- b=101.58385;
- angle=311.6795;
- id=177;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={907.62714,10.888342,5455.4907};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=373;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.70054626;
};
- };
- id=277;
- atlOffset=27.005886;
- };
- class Item108
- {
- dataType="Layer";
- name="Roadblocks";
- class Entities
- {
- items=19;
- class Item0
+ class Item18
{
- dataType="Marker";
- position[]={1213.9502,-1.5800781,5012.0195};
- name="control";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=88;
- atlOffset=-0.77007812;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={907.42694,10.703317,5457.7319};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=374;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.56147766;
};
- class Item1
+ class Item19
{
- dataType="Marker";
- position[]={4048.137,16.283482,4891.9023};
- name="control_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=188;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={907.34003,10.515191,5460.1909};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=375;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.42988586;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.97772,10.986938,5448.5664};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=376;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.88265228;
};
- class Item2
+ class Item21
{
- dataType="Marker";
- position[]={7079.4277,30.212574,6757.9155};
- name="control_10";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=197;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.84784,10.95783,5450.8843};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=377;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.79734802;
};
- class Item3
+ class Item22
{
- dataType="Marker";
- position[]={6402.2871,39.684525,4382.2109};
- name="control_11";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=198;
- atlOffset=-0.77007675;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.72382,10.863556,5453.6284};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=378;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.64067841;
};
- class Item4
+ class Item23
{
- dataType="Marker";
- position[]={7025.4971,9.5864372,3838.6333};
- name="control_12";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=199;
- atlOffset=-0.77007771;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.54999,10.71688,5455.6372};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=379;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.51522064;
};
- class Item5
+ class Item24
{
- dataType="Marker";
- position[]={4438.334,15.954399,699.72186};
- name="control_13";
- markerType="RECTANGLE";
- type="rectangle";
- a=34.417679;
- b=15;
- angle=231.22296;
- id=203;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.48065,10.50953,5457.8218};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=380;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.35932922;
};
- class Item6
+ class Item25
{
- dataType="Marker";
- position[]={5110.1812,8.2443142,816.16058};
- name="control_14";
- markerType="RECTANGLE";
- type="rectangle";
- a=27.764128;
- b=15;
- angle=218.96999;
- id=204;
- atlOffset=-0.76836967;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={909.37518,10.32379,5460.3125};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=381;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.23212433;
};
- class Item7
+ class Item26
{
- dataType="Marker";
- position[]={3458.4607,6.5873747,4405.1655};
- name="control_15";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=205;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.50507,10.740455,5448.644};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=382;
+ type="I_G_medic_F";
+ atlOffset=0.64479828;
};
- class Item8
+ class Item27
{
- dataType="Marker";
- position[]={6566.355,6.59904,6334.2402};
- name="control_16";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=206;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.32928,10.727345,5450.9238};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=383;
+ type="I_G_medic_F";
+ atlOffset=0.5794611;
};
- class Item9
+ class Item28
{
- dataType="Marker";
- position[]={3361.1038,15.766315,6487.2876};
- name="control_17";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=207;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.28729,10.598125,5453.7954};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=384;
+ type="I_G_medic_F";
+ atlOffset=0.40799809;
};
- class Item10
+ class Item29
{
- dataType="Marker";
- position[]={4974.1914,25.133081,2197.0903};
- name="control_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=189;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.1994,10.468033,5455.6021};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=385;
+ type="I_G_medic_F";
+ atlOffset=0.28740692;
+ };
+ class Item30
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.01581,10.279652,5457.9614};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=386;
+ type="I_G_medic_F";
+ atlOffset=0.14078522;
};
- class Item11
+ class Item31
{
- dataType="Marker";
- position[]={7610.9258,5.0599217,5607.2227};
- name="control_3";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=190;
- atlOffset=-0.77007818;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={911.02655,10.08852,5460.3721};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=387;
+ type="I_G_medic_F";
+ atlOffset=0.0065917969;
};
- class Item12
+ class Item32
{
- dataType="Marker";
- position[]={8221.4023,9.2798529,5766.9619};
- name="control_4";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=191;
- atlOffset=-0.77007771;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={913.30682,10.446096,5448.8091};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=388;
+ type="I_G_engineer_F";
+ atlOffset=0.36595917;
};
- class Item13
+ class Item33
{
- dataType="Marker";
- position[]={8567.4111,6.7299218,5149.6719};
- name="control_5";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=192;
- atlOffset=-0.77007818;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={913.33026,10.394513,5451.1094};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=389;
+ type="I_G_engineer_F";
+ atlOffset=0.27748108;
};
- class Item14
+ class Item34
{
- dataType="Marker";
- position[]={1892.3354,34.66436,7167.3887};
- name="control_6";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=193;
- atlOffset=-0.77007675;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={913.08807,10.277906,5453.8994};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=390;
+ type="I_G_engineer_F";
+ atlOffset=0.13031006;
};
- class Item15
+ class Item35
{
- dataType="Marker";
- position[]={2561.439,101.47334,7669.9229};
- name="control_7";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=194;
- atlOffset=-0.77008057;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={912.83319,10.165681,5455.8472};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=391;
+ type="I_G_engineer_F";
+ atlOffset=0.022331238;
};
- class Item16
+ class Item36
{
- dataType="Marker";
- position[]={5179.3794,29.174879,7282.5156};
- name="control_8";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=195;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={912.63788,9.9975576,5458.0835};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=392;
+ type="I_G_engineer_F";
+ atlOffset=0.06611824;
};
- class Item17
+ class Item37
{
- dataType="Marker";
- position[]={6537.5107,28.41358,7603.8623};
- name="control_9";
- markerType="RECTANGLE";
- type="rectangle";
- a=15;
- b=15;
- angle=231.22296;
- id=196;
- atlOffset=-0.77007866;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={912.53339,9.8152685,5460.5527};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=393;
+ type="I_G_engineer_F";
+ atlOffset=-0.11617088;
};
- class Item18
+ };
+ class Attributes
+ {
+ };
+ id=355;
+ atlOffset=2.2093887;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Marker";
- position[]={4400.8374,15.719203,1348.9581};
- name="control_18";
- markerType="RECTANGLE";
- type="rectangle";
- a=34.417679;
- b=15;
- angle=270.44904;
- id=296;
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Guerillas";
+ };
+ };
};
+ nAttributes=1;
+ };
+ };
+ class Item147
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={385.73734,8.7600002,552.797};
+ angles[]={0,2.3661182,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=394;
+ type="Land_HelipadCircle_F";
+ };
+ class Item148
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={1811.0693,12.41,4835.5352};
+ angles[]={0,3.1415927,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
};
- id=278;
- atlOffset=52.915527;
+ id=395;
+ type="Land_HelipadCircle_F";
};
- class Item109
+ class Item149
{
dataType="Object";
class PositionInfo
{
- position[]={576.50085,8.7600002,425.40857};
- angles[]={0,4.7175293,0};
+ position[]={1777.9683,12.41,4835.4785};
+ angles[]={0,3.1415927,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=279;
- type="Land_HelipadSquare_F";
+ id=396;
+ type="Land_HelipadCircle_F";
};
- class Item110
+ class Item150
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={869.13599,9.9300003,5442.1558};
+ position[]={1745.5701,12.41,4836.251};
+ angles[]={0,3.1415927,0};
};
- name="HC_commanderX";
- id=280;
- type="HighCommand";
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=397;
+ type="Land_HelipadCircle_F";
};
- class Item111
+ class Item151
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={872.53564,9.9300003,5442.061};
+ position[]={1714.0297,12.41,4836.3008};
+ angles[]={0,3.1415927,0};
};
- id=281;
- type="HighCommandSubordinate";
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=398;
+ type="Land_HelipadCircle_F";
};
- class Item112
+ class Item152
{
- dataType="Marker";
- position[]={3468.0591,7.256,4396.9609};
- name="road";
- type="hd_arrow";
- id=282;
- atlOffset=4.2438507e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={3062.5676,14.69,4317.0547};
+ angles[]={0,2.1329734,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=399;
+ type="Land_HelipadCircle_F";
};
- class Item113
+ class Item153
{
dataType="Object";
class PositionInfo
{
- position[]={9174.5,5,4872.5};
+ position[]={3044.9717,14.69,4289.0176};
+ angles[]={0,2.1329734,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=301;
- type="Land_HelipadSquare_F";
+ id=400;
+ type="Land_HelipadCircle_F";
};
- class Item114
+ class Item154
{
dataType="Object";
class PositionInfo
{
- position[]={9199.5,5,4872.5};
+ position[]={3027.0491,14.69,4262.0176};
+ angles[]={0,2.1329734,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=302;
- type="Land_HelipadSquare_F";
+ id=401;
+ type="Land_HelipadCircle_F";
};
- class Item115
+ class Item155
{
dataType="Object";
class PositionInfo
{
- position[]={9206.3066,9.9050007,4976.3516};
- angles[]={0,3.1415927,0};
+ position[]={3010.1948,14.69,4235.3579};
+ angles[]={0,2.1329734,0};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=303;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=4.7683716e-007;
+ id=402;
+ type="Land_HelipadCircle_F";
};
- class Item116
+ class Item156
{
dataType="Object";
class PositionInfo
{
- position[]={9201.9326,5.7634072,4980.3555};
+ position[]={2800.8835,150.04987,7837.4761};
+ angles[]={6.2791886,1.5746711,6.2491965};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=304;
- type="Land_HBarrierWall6_F";
+ id=403;
+ type="Land_HelipadCircle_F";
};
- class Item117
+ class Item157
{
dataType="Object";
class PositionInfo
{
- position[]={9210.3047,5.7634072,4980.6177};
+ position[]={5727.5259,54.110001,4292.5586};
+ angles[]={0,3.1410565,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=305;
- type="Land_HBarrierWall6_F";
+ id=404;
+ type="Land_HelipadCircle_F";
};
- class Item118
+ class Item158
{
dataType="Object";
class PositionInfo
{
- position[]={8929.5586,9.9050007,4976.1611};
- angles[]={0,2.1118484,0};
+ position[]={4853.9849,33.866829,7132.9248};
+ angles[]={6.261188,4.0101862,6.251195};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=306;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=4.7683716e-007;
+ id=405;
+ type="Land_HelipadCircle_F";
};
- class Item119
+ class Item159
{
dataType="Object";
class PositionInfo
{
- position[]={9467.5967,9.8829174,4971.104};
- angles[]={0,3.7873645,0};
+ position[]={576.50085,8.7600002,425.40857};
+ angles[]={0,4.7175293,0};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=307;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=-4.7683716e-007;
+ id=406;
+ type="Land_HelipadCircle_F";
};
- class Item120
+ class Item160
{
dataType="Object";
class PositionInfo
{
- position[]={9470.7158,6.1985631,4974.9194};
- angles[]={0.017997233,3.7873645,6.2651882};
+ position[]={9174.5,5,4872.5};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=309;
- type="Land_HBarrier_Big_F";
+ id=407;
+ type="Land_HelipadCircle_F";
};
- class Item121
+ class Item161
{
dataType="Object";
class PositionInfo
{
- position[]={8925.4609,6.21,4979.0303};
- angles[]={0,2.1118484,0};
+ position[]={9199.5,5,4872.5};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=310;
- type="Land_HBarrier_Big_F";
+ id=408;
+ type="Land_HelipadCircle_F";
};
- class Item122
+ class Item162
{
dataType="Object";
class PositionInfo
{
- position[]={9116.3701,9.9050007,4822.1743};
- angles[]={0,0.72487926,0};
+ position[]={5261.3325,202.914,7811.0913};
+ angles[]={6.2644358,4.6879864,0};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
};
- id=312;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=4.7683716e-007;
+ id=409;
+ type="CamoNet_BLUFOR_F";
+ atlOffset=0.00082397461;
};
- class Item123
+ class Item163
{
dataType="Object";
class PositionInfo
{
- position[]={9112.7998,6.1949596,4818.6699};
- angles[]={6.2751846,0.72487926,0.0019834081};
+ position[]={5286.9395,202.80562,7812.5166};
+ angles[]={0.018749893,1.5355018,0};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=313;
- type="Land_HBarrier_Big_F";
+ id=410;
+ type="CamoNet_BLUFOR_open_F";
+ };
+ class Item164
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={5310.854,202.53488,7811.4009};
+ };
+ areaSize[]={5,0,5};
+ flags=1;
+ id=411;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=0.45507813;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=15;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item165
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5313.9712,216.94789,7810.8418};
+ };
+ side="Empty";
+ flags=1;
+ class Attributes
+ {
+ description="Church_of_Bob";
+ disableSimulation=1;
+ };
+ id=415;
+ type="Land_OrthodoxChurch_03_F";
+ atlOffset=0.30000305;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="DoorStates";
+ expression="['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "ARRAY"
+ };
+ };
+ class value
+ {
+ items=3;
+ class Item0
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=10;
+ };
+ };
+ class Item1
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ class Item2
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
- class Item124
+ class Item166
{
- dataType="Object";
+ dataType="Logic";
class PositionInfo
{
- position[]={9400.792,9.6539993,4815.2905};
- angles[]={0,5.3304138,0};
+ position[]={1525.2518,10.905,4816.7456};
+ angles[]={0,0.066690445,0};
};
- side="Empty";
- flags=5;
- class Attributes
+ areaSize[]={49.50235,0,34.702629};
+ flags=1;
+ id=416;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=-1.5050001;
+ class CustomAttributes
{
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=4;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
};
- id=314;
- type="Land_Cargo_Patrol_V3_F";
- atlOffset=4.7683716e-007;
};
- class Item125
+ class Item167
{
dataType="Object";
class PositionInfo
{
- position[]={9404.6572,5.3677812,4812.1147};
- angles[]={6.1993828,5.3304138,6.1954112};
+ position[]={5321.7832,202.08481,7810.0786};
};
side="Empty";
flags=4;
class Attributes
{
};
- id=315;
- type="Land_HBarrier_Big_F";
+ id=419;
+ type="BloodPool_01_Large_Old_F";
};
- class Item126
+ class Item168
{
dataType="Object";
class PositionInfo
{
- position[]={9248.1621,8.699235,4743.2109};
- angles[]={0,0.029731244,0};
+ position[]={5320.3599,202.08481,7811.6895};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
};
- id=316;
- type="Land_Cargo_Patrol_V3_F";
+ id=420;
+ type="BloodSplatter_01_Large_Old_F";
};
- class Item127
+ class Item169
{
dataType="Object";
class PositionInfo
{
- position[]={9247.665,3.9983017,4738.2334};
- angles[]={6.0761933,0.029731244,0.025994543};
+ position[]={5320.0093,202.08481,7810.1333};
};
side="Empty";
flags=4;
class Attributes
{
- };
- id=317;
- type="Land_HBarrier_Big_F";
- atlOffset=2.3841858e-007;
- };
- class Item128
- {
- dataType="Marker";
- position[]={4982.8779,17.352125,5946.2769};
- name="road_1";
- type="hd_arrow";
- id=318;
- atlOffset=4.196167e-005;
- };
- class Item129
- {
- dataType="Marker";
- position[]={6186.1226,4.5815167,7140.0923};
- name="road_2";
- type="hd_arrow";
- id=319;
- atlOffset=4.2438507e-005;
- };
- class Item130
- {
- dataType="Marker";
- position[]={6407.4814,27.562088,7624.4834};
- name="road_3";
- type="hd_arrow";
- id=320;
- atlOffset=4.196167e-005;
- };
- class Item131
- {
- dataType="Marker";
- position[]={6755.207,46.149174,6451.499};
- name="road_4";
- type="hd_arrow";
- id=321;
- atlOffset=4.196167e-005;
- };
- class Item132
- {
- dataType="Marker";
- position[]={6669.332,9.7615795,7019.2314};
- name="road_5";
- type="hd_arrow";
- id=322;
- atlOffset=4.196167e-005;
- };
- class Item133
- {
- dataType="Marker";
- position[]={6487.5713,5.1223044,6285.8096};
- name="road_6";
- type="hd_arrow";
- id=323;
- atlOffset=4.2438507e-005;
- };
- class Item134
- {
- dataType="Marker";
- position[]={6076.0132,36.164722,5983.7061};
- name="road_7";
- type="hd_arrow";
- id=324;
- atlOffset=4.196167e-005;
- };
- class Item135
- {
- dataType="Marker";
- position[]={5709.9146,9.3883533,5943.8403};
- name="road_8";
- type="hd_arrow";
- id=325;
- atlOffset=4.2915344e-005;
- };
- class Item136
- {
- dataType="Marker";
- position[]={5800.8984,5.9700422,5545.0903};
- name="road_9";
- type="hd_arrow";
- id=326;
- atlOffset=4.2438507e-005;
- };
- class Item137
- {
- dataType="Marker";
- position[]={6332.7788,22.075169,5732.4326};
- name="road_10";
- type="hd_arrow";
- id=327;
- atlOffset=4.196167e-005;
- };
- class Item138
- {
- dataType="Marker";
- position[]={7389.5063,55.06031,6148.1665};
- name="road_11";
- type="hd_arrow";
- id=328;
- atlOffset=4.196167e-005;
- };
- class Item139
- {
- dataType="Marker";
- position[]={7105.0298,12.872475,5777.6113};
- name="road_12";
- type="hd_arrow";
- id=329;
- atlOffset=4.2915344e-005;
- };
- class Item140
- {
- dataType="Marker";
- position[]={8727.0811,105.12666,6250.9473};
- name="road_13";
- type="hd_arrow";
- id=330;
- atlOffset=5.3405762e-005;
- };
- class Item141
- {
- dataType="Marker";
- position[]={8909.3047,23.660042,5291.5479};
- name="road_14";
- type="hd_arrow";
- id=331;
- atlOffset=4.196167e-005;
- };
- class Item142
- {
- dataType="Marker";
- position[]={8264.3213,18.447327,5824.7241};
- name="road_15";
- type="hd_arrow";
- id=332;
- atlOffset=4.196167e-005;
- };
- class Item143
- {
- dataType="Marker";
- position[]={7639.145,47.649624,4703.9355};
- name="road_16";
- type="hd_arrow";
- id=333;
- atlOffset=4.196167e-005;
- };
- class Item144
- {
- dataType="Marker";
- position[]={6851.7676,42.503872,4757.21};
- name="road_17";
- type="hd_arrow";
- id=334;
- atlOffset=4.196167e-005;
- };
- class Item145
- {
- dataType="Marker";
- position[]={6373.2373,38.162395,4359.1152};
- name="road_18";
- type="hd_arrow";
- id=335;
- atlOffset=4.196167e-005;
- };
- class Item146
- {
- dataType="Marker";
- position[]={5335.3003,7.1832151,3627.9927};
- name="road_19";
- type="hd_arrow";
- id=336;
- atlOffset=4.2438507e-005;
- };
- class Item147
- {
- dataType="Marker";
- position[]={4986.2813,25.105524,2205.9534};
- name="road_20";
- type="hd_arrow";
- id=337;
- atlOffset=4.196167e-005;
+ };
+ id=421;
+ type="BloodSpray_01_Old_F";
};
- class Item148
+ class Item170
{
- dataType="Marker";
- position[]={4195.4937,15.27523,5266.2251};
- name="road_21";
- type="hd_arrow";
- id=338;
- atlOffset=4.2915344e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5324.8911,202.32077,7811.6128};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=422;
+ type="BloodSpray_01_Old_F";
};
- class Item149
+ class Item171
{
- dataType="Marker";
- position[]={1545.5944,7.1300426,5697.5244};
- name="road_22";
- type="hd_arrow";
- id=339;
- atlOffset=4.2438507e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5320.1855,202.08481,7810.3115};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=423;
+ type="BloodPool_01_Medium_Old_F";
};
- class Item150
+ class Item172
{
- dataType="Marker";
- position[]={1740.4181,40.745392,6775.5947};
- name="road_23";
- type="hd_arrow";
- id=340;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5320.9956,202.08481,7810.9888};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=424;
+ type="BloodSplatter_01_Medium_Old_F";
};
- class Item151
+ class Item173
{
- dataType="Marker";
- position[]={2241.3816,19.702797,7326.8418};
- name="road_24";
- type="hd_arrow";
- id=341;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5319.73,202.08481,7810.1831};
+ angles[]={0,5.1304188,-0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=425;
+ type="BloodPool_01_Large_Old_F";
};
- class Item152
+ class Item174
{
- dataType="Marker";
- position[]={2298.2693,2.9884403,8497.6543};
- name="road_25";
- type="hd_arrow";
- id=342;
- atlOffset=4.2438507e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5317.604,202.08481,7810.8511};
+ angles[]={-0,4.7121,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=426;
+ type="BloodTrail_01_New_F";
};
- class Item153
+ class Item175
{
- dataType="Marker";
- position[]={3297.8071,19.438557,6441.5225};
- name="road_26";
- type="hd_arrow";
- id=343;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5311.1152,202.08481,7810.769};
+ angles[]={0,1.5448875,-0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=427;
+ type="BloodTrail_01_New_F";
};
- class Item154
+ class Item176
{
- dataType="Marker";
- position[]={4271.5156,20.920042,6582.3096};
- name="road_27";
- type="hd_arrow";
- id=344;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5314.1353,202.08481,7810.8242};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=429;
+ type="BloodSplatter_01_Small_Old_F";
};
- class Item155
+ class Item177
{
- dataType="Marker";
- position[]={5187.7246,29.679436,7277.5586};
- name="road_28";
- type="hd_arrow";
- id=345;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5310.2734,201.50009,7818.5068};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ createAsSimpleObject=1;
+ disableSimulation=1;
+ };
+ id=430;
+ type="Land_Bodybag_01_black_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
};
- class Item156
+ class Item178
{
- dataType="Marker";
- position[]={5357.751,163.60167,7726.731};
- name="road_29";
- type="hd_arrow";
- id=346;
- atlOffset=4.5776367e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5309.3291,201.49428,7818.4639};
+ angles[]={-0,3.2690907,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ createAsSimpleObject=1;
+ disableSimulation=1;
+ };
+ id=431;
+ type="Land_Bodybag_01_black_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
};
- class Item157
+ class Item179
{
- dataType="Marker";
- position[]={7061.0146,9.0371151,3841.2427};
- name="road_30";
- type="hd_arrow";
- id=347;
- atlOffset=4.196167e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5308.3784,201.49239,7818.4688};
+ angles[]={-0,3.0712996,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ createAsSimpleObject=1;
+ disableSimulation=1;
+ };
+ id=432;
+ type="Land_Bodybag_01_black_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
};
- class Item158
+ class Item180
{
- dataType="Marker";
- position[]={4385.0557,30.939602,1348.6993};
- name="spawnpoint_2";
- type="hd_start";
- angle=28.14724;
- id=348;
- atlOffset=15.667422;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5307.394,201.49042,7818.3818};
+ angles[]={-0,0.096998058,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ createAsSimpleObject=1;
+ disableSimulation=1;
+ };
+ id=433;
+ type="Land_Bodybag_01_black_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
};
- class Item159
+ class Item181
{
- dataType="Marker";
- position[]={1780.5658,28.087421,4922.3477};
- name="spawnpoint_3";
- type="hd_start";
- angle=28.14724;
- id=349;
- atlOffset=15.667421;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5303.0474,201.35501,7818.813};
+ angles[]={-0,4.6790991,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=434;
+ type="BloodTrail_01_Old_F";
};
- class Item160
+ class Item182
{
- dataType="Marker";
- position[]={521.91888,24.427422,333.45093};
- name="spawnpoint_4";
- type="hd_start";
- angle=28.14724;
- id=350;
- atlOffset=15.667421;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5309.8296,201.36467,7818.5015};
+ angles[]={-0,0,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=435;
+ type="BloodPool_01_Large_Old_F";
};
- class Item161
+ class Item183
{
- dataType="Marker";
- position[]={9207.2539,20.667,4988.5352};
- name="spawnpoint";
- type="hd_start";
- angle=28.146994;
- id=351;
- atlOffset=15.667;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5308.8252,201.36266,7817.9565};
+ angles[]={-0,0,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=436;
+ type="BloodPool_01_Large_Old_F";
};
- class Item162
+ class Item184
{
- dataType="Marker";
- position[]={4920.5439,0.38800001,5730.7168};
- name="island_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=5190.1421;
- b=5239.7939;
- angle=55.783993;
- id=353;
- atlOffset=-19.74058;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5308.897,201.36281,7818.8315};
+ angles[]={-0,0,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=437;
+ type="BloodPool_01_Large_Old_F";
};
- class Item163
+ class Item185
{
- dataType="Marker";
- position[]={479.26917,0,378.30554};
- name="island_2";
- markerType="RECTANGLE";
- type="rectangle";
- a=405.41153;
- b=418.44135;
- id=354;
- atlOffset=-8.79;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5307.8369,201.36069,7818.4717};
+ angles[]={-0,0,0.0019834081};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ };
+ id=438;
+ type="BloodPool_01_Large_New_F";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -8413,7 +6084,7 @@ class Mission
class Item1
{
linkID=1;
- item0=23;
+ item0=356;
item1=280;
class CustomData
{
@@ -8423,7 +6094,7 @@ class Mission
class Item2
{
linkID=2;
- item0=27;
+ item0=357;
item1=280;
class CustomData
{
@@ -8433,7 +6104,7 @@ class Mission
class Item3
{
linkID=3;
- item0=28;
+ item0=358;
item1=280;
class CustomData
{
@@ -8443,7 +6114,7 @@ class Mission
class Item4
{
linkID=4;
- item0=29;
+ item0=359;
item1=280;
class CustomData
{
@@ -8453,7 +6124,7 @@ class Mission
class Item5
{
linkID=5;
- item0=30;
+ item0=360;
item1=280;
class CustomData
{
@@ -8463,7 +6134,7 @@ class Mission
class Item6
{
linkID=6;
- item0=31;
+ item0=361;
item1=280;
class CustomData
{
@@ -8473,7 +6144,7 @@ class Mission
class Item7
{
linkID=7;
- item0=32;
+ item0=362;
item1=280;
class CustomData
{
@@ -8483,7 +6154,7 @@ class Mission
class Item8
{
linkID=8;
- item0=33;
+ item0=363;
item1=280;
class CustomData
{
@@ -8493,7 +6164,7 @@ class Mission
class Item9
{
linkID=9;
- item0=34;
+ item0=364;
item1=280;
class CustomData
{
@@ -8503,7 +6174,7 @@ class Mission
class Item10
{
linkID=10;
- item0=35;
+ item0=365;
item1=280;
class CustomData
{
@@ -8513,7 +6184,7 @@ class Mission
class Item11
{
linkID=11;
- item0=36;
+ item0=366;
item1=280;
class CustomData
{
@@ -8523,7 +6194,7 @@ class Mission
class Item12
{
linkID=12;
- item0=37;
+ item0=367;
item1=280;
class CustomData
{
@@ -8533,7 +6204,7 @@ class Mission
class Item13
{
linkID=13;
- item0=38;
+ item0=368;
item1=280;
class CustomData
{
@@ -8543,7 +6214,7 @@ class Mission
class Item14
{
linkID=14;
- item0=39;
+ item0=369;
item1=280;
class CustomData
{
@@ -8553,7 +6224,7 @@ class Mission
class Item15
{
linkID=15;
- item0=40;
+ item0=370;
item1=280;
class CustomData
{
@@ -8563,7 +6234,7 @@ class Mission
class Item16
{
linkID=16;
- item0=41;
+ item0=371;
item1=280;
class CustomData
{
@@ -8573,7 +6244,7 @@ class Mission
class Item17
{
linkID=17;
- item0=42;
+ item0=372;
item1=280;
class CustomData
{
@@ -8583,7 +6254,7 @@ class Mission
class Item18
{
linkID=18;
- item0=43;
+ item0=373;
item1=280;
class CustomData
{
@@ -8593,7 +6264,7 @@ class Mission
class Item19
{
linkID=19;
- item0=44;
+ item0=374;
item1=280;
class CustomData
{
@@ -8603,7 +6274,7 @@ class Mission
class Item20
{
linkID=20;
- item0=45;
+ item0=375;
item1=280;
class CustomData
{
@@ -8613,7 +6284,7 @@ class Mission
class Item21
{
linkID=21;
- item0=46;
+ item0=376;
item1=280;
class CustomData
{
@@ -8623,7 +6294,7 @@ class Mission
class Item22
{
linkID=22;
- item0=47;
+ item0=377;
item1=280;
class CustomData
{
@@ -8633,7 +6304,7 @@ class Mission
class Item23
{
linkID=23;
- item0=48;
+ item0=378;
item1=280;
class CustomData
{
@@ -8643,7 +6314,7 @@ class Mission
class Item24
{
linkID=24;
- item0=49;
+ item0=379;
item1=280;
class CustomData
{
@@ -8653,7 +6324,7 @@ class Mission
class Item25
{
linkID=25;
- item0=50;
+ item0=380;
item1=280;
class CustomData
{
@@ -8663,7 +6334,7 @@ class Mission
class Item26
{
linkID=26;
- item0=51;
+ item0=381;
item1=280;
class CustomData
{
@@ -8673,7 +6344,7 @@ class Mission
class Item27
{
linkID=27;
- item0=52;
+ item0=382;
item1=280;
class CustomData
{
@@ -8683,7 +6354,7 @@ class Mission
class Item28
{
linkID=28;
- item0=53;
+ item0=383;
item1=280;
class CustomData
{
@@ -8693,7 +6364,7 @@ class Mission
class Item29
{
linkID=29;
- item0=54;
+ item0=384;
item1=280;
class CustomData
{
@@ -8703,7 +6374,7 @@ class Mission
class Item30
{
linkID=30;
- item0=55;
+ item0=385;
item1=280;
class CustomData
{
@@ -8713,7 +6384,7 @@ class Mission
class Item31
{
linkID=31;
- item0=56;
+ item0=386;
item1=280;
class CustomData
{
@@ -8723,7 +6394,7 @@ class Mission
class Item32
{
linkID=32;
- item0=57;
+ item0=387;
item1=280;
class CustomData
{
@@ -8733,7 +6404,7 @@ class Mission
class Item33
{
linkID=33;
- item0=58;
+ item0=388;
item1=280;
class CustomData
{
@@ -8743,7 +6414,7 @@ class Mission
class Item34
{
linkID=34;
- item0=59;
+ item0=389;
item1=280;
class CustomData
{
@@ -8753,7 +6424,7 @@ class Mission
class Item35
{
linkID=35;
- item0=60;
+ item0=390;
item1=280;
class CustomData
{
@@ -8763,7 +6434,7 @@ class Mission
class Item36
{
linkID=36;
- item0=61;
+ item0=391;
item1=280;
class CustomData
{
@@ -8773,7 +6444,7 @@ class Mission
class Item37
{
linkID=37;
- item0=62;
+ item0=392;
item1=280;
class CustomData
{
@@ -8783,227 +6454,7 @@ class Mission
class Item38
{
linkID=38;
- item0=63;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=64;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=65;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=66;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=67;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=68;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=69;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=70;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=71;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=72;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=73;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=74;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=75;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=76;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=77;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=78;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=79;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=80;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=81;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=82;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=83;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=84;
- item1=280;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=85;
+ item0=393;
item1=280;
class CustomData
{
diff --git a/Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg b/Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg
index 00fa929b3b..e3ae725e0d 100644
Binary files a/Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg and b/Map-Templates/Antistasi-WotP.Tanoa/PIC.jpg differ
diff --git a/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm b/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm
index 97adfed343..55dacc13a6 100755
--- a/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm
+++ b/Map-Templates/Antistasi-WotP.Tanoa/mission.sqm
@@ -8,7 +8,7 @@ class EditorData
toggles=1541;
class ItemIDProvider
{
- nextID=878;
+ nextID=917;
};
class MarkerIDProvider
{
@@ -16,30 +16,31 @@ class EditorData
};
class LayerIndexProvider
{
- nextID=328;
+ nextID=343;
};
class Camera
{
- pos[]={9181.2354,246.07274,8692.4609};
- dir[]={0,-0.70710683,0.70710683};
- up[]={0,0.70710677,0.70710677};
- aside[]={0.99999994,0,-0};
+ pos[]={2363.1646,98.648026,13077.162};
+ dir[]={-0.52608681,-0.62945706,0.57186168};
+ up[]={-0.42616853,0.77702999,0.46324876};
+ aside[]={0.73595208,-4.4936314e-008,0.67704064};
};
};
binarizationWanted=0;
addons[]=
{
- "A3_Characters_F_Exp",
- "A3_Weapons_F",
"A3_Ui_F",
"A3_Weapons_F_Ammoboxes",
"A3_Structures_F_EPC_Civ_InfoBoards",
- "A3_Modules_F",
+
+
"A3_Characters_F",
+ "A3_Modules_F",
"A3_Structures_F_Exp_Military_Flags",
"A3_Structures_F_Mil_Flags",
"A3_Ui_F_Exp",
"A3_Structures_F_Ind_Transmitter_Tower",
+ "A3_Characters_F_Exp",
"A3_Props_F_Enoch_Military_Camps",
"A3_Modules_F_Curator_Curator",
"A3_Structures_F_Mil_TentHangar",
@@ -48,7 +49,8 @@ addons[]=
"A3_Structures_F_Ind_AirPort",
"A3_Structures_F_Enoch_Military_Barracks",
"A3_Structures_F_Exp_Military_ContainerBases",
- "A3_Modules_F_Hc"
+ "A3_Modules_F_Hc",
+ "A3_Weapons_F"
};
class AddonsMetaData
{
@@ -57,8 +59,8 @@ class AddonsMetaData
items=13;
class Item0
{
- className="A3_Characters_F_Exp";
- name="Arma 3 Apex - Characters and Clothing";
+ className="A3_Ui_F";
+ name="Arma 3 - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
@@ -71,15 +73,15 @@ class AddonsMetaData
};
class Item2
{
- className="A3_Ui_F";
- name="Arma 3 - User Interface";
+ className="A3_Structures_F_EPC";
+ name="Arma 3 Win Episode - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
class Item3
{
- className="A3_Structures_F_EPC";
- name="Arma 3 Win Episode - Buildings and Structures";
+ className="A3_Characters_F";
+ name="Arma 3 Alpha - Characters and Clothing";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
@@ -92,39 +94,46 @@ class AddonsMetaData
};
class Item5
{
- className="A3_Characters_F";
- name="Arma 3 Alpha - Characters and Clothing";
- author="Bohemia Interactive";
- url="https://www.arma3.com";
- };
- class Item6
- {
+
+
+
+
+
+
+
className="A3_Structures_F_Exp";
name="Arma 3 Apex - Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item7
+ class Item6
{
className="A3_Structures_F_Mil";
name="Arma 3 - Military Buildings and Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item8
+ class Item7
{
className="A3_Ui_F_Exp";
name="Arma 3 Apex - User Interface";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
- class Item9
+ class Item8
{
className="A3_Structures_F_Ind";
name="Arma 3 - Industrial Structures";
author="Bohemia Interactive";
url="https://www.arma3.com";
};
+ class Item9
+ {
+ className="A3_Characters_F_Exp";
+ name="Arma 3 Apex - Characters and Clothing";
+ author="Bohemia Interactive";
+ url="https://www.arma3.com";
+ };
class Item10
{
className="A3_Props_F_Enoch";
@@ -166,149 +175,158 @@ class Mission
items=235;
class Item0
{
- dataType="Group";
- side="Independent";
- class Entities
+ dataType="Marker";
+ position[]={9197.1318,220.47301,8731.667};
+ name="Synd_HQ";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorPink";
+ a=50;
+ b=50;
+ id=2;
+ atlOffset=0.00028991699;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={9198.4648,2.7037606e+012,8733.8457};
+ name="respawn_guerrila";
+ text="Your Headquarters";
+ type="hd_flag";
+ colorName="ColorGUER";
+ id=3;
+ atlOffset=2.7037606e+012;
+ };
+ class Item2
+ {
+ dataType="Object";
+ class PositionInfo
{
- items=60;
- class Item0
+ position[]={9202.0508,220.95984,8732.7168};
+ angles[]={6.2086601,0,6.2219238};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="vehicleBox";
+ };
+ id=5;
+ type="Box_East_AmmoVeh_F";
+ atlOffset=-0.014007568;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={9198.8262,220.12206,8727.9844};
- };
- side="Independent";
- flags=6;
- class Attributes
- {
- skill=1;
- name="commanderX";
- description="Default Commander";
- isPlayer=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=311;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
+ property="ammoBox";
+ expression="[_this,_value] call bis_fnc_initAmmoBox;";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male01FRE";
+ "STRING"
};
};
+ value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item1
+ nAttributes=2;
+ };
+ };
+ class Item3
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9195.4922,221.96152,8734.6768};
+ angles[]={6.0934858,5.6506429,6.179565};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="mapX";
+ };
+ id=7;
+ type="MapBoard_seismic_F";
+ atlOffset=-0.0070037842;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={9202.082,219.9032,8724.7266};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=360;
- type="I_C_Soldier_Para_4_F";
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=1;
};
};
- class Item2
+ nAttributes=1;
+ };
+ };
+ class Item4
+ {
+ dataType="Group";
+ side="Independent";
+ class Entities
+ {
+ items=1;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={9213.0352,219.15091,8715.0146};
- angles[]={0,6.2412972,0};
+ position[]={9193.0303,220.73914,8731.5938};
+ angles[]={0,2.2023785,0};
};
side="Independent";
- flags=5;
+ flags=7;
class Attributes
{
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
+ name="petros";
};
- id=654;
- type="I_C_Soldier_Para_4_F";
- atlOffset=-0.046646118;
+ id=8;
+ type="I_G_officer_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="face";
+ expression="_this setface _value;";
class Value
{
class data
@@ -317,40 +335,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=0.97000003;
+ value="";
};
};
};
- nAttributes=1;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9216.1094,218.68268,8715.25};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=656;
- type="I_C_Soldier_Para_5_F";
- atlOffset=-0.044662476;
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -369,171 +361,319 @@ class Mission
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item4
+ };
+ class Attributes
+ {
+ };
+ id=9;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={9219.04,218.23302,8714.9014};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=658;
- type="I_C_Soldier_Para_3_F";
- atlOffset=-0.042282104;
- class CustomAttributes
+ property="groupID";
+ expression="_this setGroupID [_value];";
+ class Value
{
- class Attribute0
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
+ "STRING"
};
};
+ value="Petros";
};
- nAttributes=1;
};
};
- class Item5
+ nAttributes=1;
+ };
+ };
+ class Item5
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9194.8828,220.23752,8724.9854};
+ angles[]={6.2671871,0,6.2166171};
+ };
+ name="server";
+ id=11;
+ type="Logic";
+ };
+ class Item6
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9196.457,220.16054,8723.5732};
+ angles[]={6.2671871,0,6.2511969};
+ };
+ name="garrison";
+ id=12;
+ type="Logic";
+ };
+ class Item7
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9198.2441,220.09081,8722.1523};
+ angles[]={0.013332055,0,6.2511969};
+ };
+ name="spawner";
+ id=13;
+ type="Logic";
+ };
+ class Item8
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9190.6504,220.42833,8722.2852};
+ angles[]={0,0,6.2192717};
+ };
+ name="hc";
+ isPlayable=1;
+ id=14;
+ type="HeadlessClient_F";
+ atlOffset=1.5258789e-005;
+ };
+ class Item9
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9200.1191,220.03395,8720.8213};
+ angles[]={0.013327583,0,6.2405477};
+ };
+ name="roadsX";
+ id=17;
+ type="Logic";
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={11310.948,20.257759,5900.9492};
+ name="control";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=30;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={11383.694,2.8701169e+036,5275.6128};
+ name="control_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=31;
+ atlOffset=2.8701169e+036;
+ };
+ class Item12
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9201.4346,224.5863,8736.7021};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ name="flagX";
+ };
+ id=175;
+ type="Flag_Syndikat_F";
+ atlOffset=-0.031982422;
+ };
+ class Item13
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9201.5352,219.98785,8719.7373};
+ angles[]={0.018657569,0,6.2352238};
+ };
+ name="timer";
+ id=284;
+ type="Logic";
+ atlOffset=1.5258789e-005;
+ };
+ class Item14
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9202.1182,220.80991,8728.042};
+ angles[]={6.2618575,0,6.2219238};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="boxX";
+ };
+ id=4;
+ type="IG_supplyCrate_F";
+ atlOffset=-0.01600647;
+ class CustomAttributes
+ {
+ class Attribute0
{
- dataType="Object";
- class PositionInfo
- {
- position[]={9221.9385,217.76714,8715.0791};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=660;
- type="I_C_Soldier_Para_8_F";
- atlOffset=-0.042007446;
- class CustomAttributes
+ property="ammoBox";
+ expression="[_this,_value] call bis_fnc_initAmmoBox;";
+ class Value
{
- class Attribute0
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
+ "STRING"
};
};
+ value="";
};
- nAttributes=1;
};
};
- class Item6
+ class Attribute1
{
- dataType="Object";
- class PositionInfo
- {
- position[]={9224.9268,217.29105,8715.2998};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=662;
- type="I_C_Soldier_Para_6_F";
- atlOffset=-0.034622192;
- class CustomAttributes
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
{
- class Attribute0
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "BOOL"
};
};
+ value=0;
};
- nAttributes=1;
};
};
- class Item7
+ nAttributes=2;
+ };
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={6773.5918,1.2565496e+029,7555.8301};
+ name="spawnPoint";
+ type="mil_start";
+ angle=25.434;
+ id=336;
+ atlOffset=1.2565496e+029;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={1736.8215,1.2565496e+029,12781.881};
+ name="spawnPoint_1";
+ type="mil_start";
+ angle=173.55841;
+ id=337;
+ atlOffset=1.2565496e+029;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={11473.074,1.2565496e+029,13115.996};
+ name="spawnPoint_2";
+ type="mil_start";
+ angle=269.59601;
+ id=338;
+ atlOffset=1.2565496e+029;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={11553.529,1.2565496e+029,3081.9141};
+ name="spawnPoint_3";
+ type="mil_start";
+ angle=308.33148;
+ id=339;
+ atlOffset=1.2565496e+029;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={2265.8037,1.2565496e+029,3407.0894};
+ name="spawnPoint_4";
+ type="mil_start";
+ angle=64.13488;
+ id=340;
+ atlOffset=1.2565496e+029;
+ };
+ class Item20
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12752.012,40.864891,14220.89};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=344;
+ type="Flag_NATO_F";
+ atlOffset=0.056999207;
+ };
+ class Item21
+ {
+ dataType="Marker";
+ position[]={12752.037,40.074604,14199.098};
+ name="respawn_west";
+ type="flag_CTRG";
+ id=345;
+ };
+ class Item22
+ {
+ dataType="Group";
+ side="West";
+ class Entities
+ {
+ items=6;
+ class Item0
{
dataType="Object";
class PositionInfo
{
- position[]={9209.0781,219.71281,8714.7148};
- angles[]={0,0.090093896,0};
+ position[]={12751.78,38.133686,14212.558};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=6;
class Attributes
{
+ rank="SERGEANT";
+ init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
+ name="pvp_blue_1";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=664;
- type="I_C_Soldier_Para_7_F";
- atlOffset=-0.044662476;
+ id=705;
+ type="B_recon_TL_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -542,40 +682,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=0.98000002;
+ value="Male11ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item8
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9215.2559,218.97414,8709.7188};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=666;
- type="I_C_Soldier_Para_4_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -590,39 +704,37 @@ class Mission
"SCALAR"
};
};
- value=0.97000003;
+ value=0.94999999;
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item9
+ class Item1
{
dataType="Object";
class PositionInfo
{
- position[]={9218.3301,218.41643,8709.9541};
+ position[]={12746.78,38.988949,14207.558};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=4;
class Attributes
{
- description="AT Launcher";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
+ name="pvp_blue_2";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=668;
- type="I_C_Soldier_Para_5_F";
+ id=706;
+ type="B_recon_medic_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -631,40 +743,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=1;
+ value="Male06ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item10
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9221.2607,217.9128,8709.6055};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=670;
- type="I_C_Soldier_Para_3_F";
- atlOffset=0.010543823;
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -679,40 +765,38 @@ class Mission
"SCALAR"
};
};
- value=1.02;
+ value=0.95999998;
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item11
+ class Item2
{
dataType="Object";
class PositionInfo
{
- position[]={9224.1592,217.38159,8709.7832};
+ position[]={12741.78,39.620373,14202.558};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=4;
class Attributes
{
- description="Engineer";
+ rank="SERGEANT";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
+ name="pvp_blue_5";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=672;
- type="I_C_Soldier_Para_8_F";
- atlOffset=0.014144897;
+ id=707;
+ type="B_recon_LAT_F";
+ atlOffset=-3.8146973e-006;
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -721,40 +805,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=0.95999998;
+ value="Male03ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item12
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9227.1475,216.83351,8710.0039};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=674;
- type="I_C_Soldier_Para_6_F";
- atlOffset=0.014190674;
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -769,39 +827,37 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=0.95999998;
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item13
+ class Item3
{
dataType="Object";
class PositionInfo
{
- position[]={9211.2988,219.7475,8709.4189};
- angles[]={0,0.090093896,0};
+ position[]={12751.751,39.319187,14205.111};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=4;
class Attributes
{
+ rank="SERGEANT";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
+ name="pvp_blue_6";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=676;
- type="I_C_Soldier_Para_7_F";
+ id=708;
+ type="B_recon_LAT_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -810,172 +866,14 @@ class Mission
{
type[]=
{
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item14
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9216.9883,218.56767,8704.8672};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=678;
- type="I_C_Soldier_Para_4_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9220.0625,217.93648,8705.1025};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=680;
- type="I_C_Soldier_Para_5_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item16
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9222.9932,217.33908,8704.7539};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=682;
- type="I_C_Soldier_Para_3_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
+ "STRING"
};
};
- value=1.02;
+ value="Male03ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item17
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9225.8916,216.78543,8704.9316};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=684;
- type="I_C_Soldier_Para_8_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -994,35 +892,34 @@ class Mission
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item18
+ class Item4
{
dataType="Object";
class PositionInfo
{
- position[]={9228.8799,216.22507,8705.1523};
+ position[]={12756.78,38.956776,14207.558};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=4;
class Attributes
{
- description="Grenadier";
+ skill=0.44999999;
+ rank="CORPORAL";
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
+ name="pvp_blue_4";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=686;
- type="I_C_Soldier_Para_6_F";
+ id=709;
+ type="B_recon_M_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -1031,39 +928,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=0.98000002;
+ value="Male02ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item19
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9213.0313,219.41595,8704.5674};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=688;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -1078,39 +950,37 @@ class Mission
"SCALAR"
};
};
- value=0.98000002;
+ value=1.02;
};
};
};
- nAttributes=1;
+ nAttributes=2;
};
};
- class Item20
+ class Item5
{
dataType="Object";
class PositionInfo
{
- position[]={9208.0869,219.59343,8724.6133};
+ position[]={12762.576,37.910946,14210.993};
};
- side="Independent";
- flags=5;
+ side="West";
+ flags=4;
class Attributes
{
- description="Paramedic";
+ skill=0.40000001;
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_blue_3";
isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
};
- id=362;
- type="I_C_Soldier_Para_3_F";
+ id=710;
+ type="B_recon_F";
class CustomAttributes
{
class Attribute0
{
- property="pitch";
- expression="_this setpitch _value;";
+ property="speaker";
+ expression="_this setspeaker _value;";
class Value
{
class data
@@ -1119,39 +989,14 @@ class Mission
{
type[]=
{
- "SCALAR"
+ "STRING"
};
};
- value=1.02;
+ value="Male07ENG";
};
};
};
- nAttributes=1;
- };
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9210.9854,219.25606,8724.791};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=363;
- type="I_C_Soldier_Para_8_F";
- class CustomAttributes
- {
- class Attribute0
+ class Attribute1
{
property="pitch";
expression="_this setpitch _value;";
@@ -1170,2581 +1015,7 @@ class Mission
};
};
};
- nAttributes=1;
- };
- };
- class Item22
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9213.9736,218.826,8725.0117};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=364;
- type="I_C_Soldier_Para_6_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item23
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9208.7842,219.58228,8732.6152};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=459;
- type="I_C_Soldier_Para_4_F";
- atlOffset=-0.0206604;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item24
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9211.8584,219.21495,8732.8506};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=461;
- type="I_C_Soldier_Para_5_F";
- atlOffset=-0.012680054;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item25
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9214.7891,218.84361,8732.502};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=463;
- type="I_C_Soldier_Para_3_F";
- atlOffset=-0.0090179443;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item26
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9217.6875,218.58643,8732.6797};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=465;
- type="I_C_Soldier_Para_8_F";
- atlOffset=0.0059967041;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item27
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9220.6758,218.37024,8732.9004};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=467;
- type="I_C_Soldier_Para_6_F";
- atlOffset=0.0019989014;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item28
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9209.4844,220.00462,8736.8926};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=471;
- type="I_C_Soldier_Para_4_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item29
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9212.5586,219.77544,8737.1279};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=473;
- type="I_C_Soldier_Para_5_F";
- atlOffset=0.013320923;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item30
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9215.4893,219.43719,8736.7793};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=475;
- type="I_C_Soldier_Para_3_F";
- atlOffset=0.010314941;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item31
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9218.3877,219.21072,8736.957};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=477;
- type="I_C_Soldier_Para_8_F";
- atlOffset=0.010665894;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item32
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9221.376,219.07388,8737.1777};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=479;
- type="I_C_Soldier_Para_6_F";
- atlOffset=0.011184692;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item33
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9205.5273,220.3063,8736.5928};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=481;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item34
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9209.9092,220.56894,8740.293};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=483;
- type="I_C_Soldier_Para_4_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item35
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9212.9834,220.45323,8740.5283};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=485;
- type="I_C_Soldier_Para_5_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item36
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9215.9141,220.16454,8740.1797};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=487;
- type="I_C_Soldier_Para_3_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item37
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9218.8125,220.01382,8740.3574};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=489;
- type="I_C_Soldier_Para_8_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item38
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9221.8008,219.81172,8740.5781};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=491;
- type="I_C_Soldier_Para_6_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item39
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9205.9521,220.69756,8739.9932};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=493;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item40
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9210.8184,221.38371,8744.166};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=495;
- type="I_C_Soldier_Para_4_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item41
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9213.8926,221.44388,8744.4014};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=497;
- type="I_C_Soldier_Para_5_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item42
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9216.8232,221.22467,8744.0527};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=499;
- type="I_C_Soldier_Para_3_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item43
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9219.7217,221.07176,8744.2305};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=501;
- type="I_C_Soldier_Para_8_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item44
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9222.71,220.85945,8744.4512};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=503;
- type="I_C_Soldier_Para_6_F";
- atlOffset=1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item45
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9206.8613,221.35008,8743.8662};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=505;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item46
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9210.0391,219.40041,8729.0645};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=630;
- type="I_C_Soldier_Para_4_F";
- atlOffset=0.03465271;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item47
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9213.1133,218.95108,8729.2998};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=632;
- type="I_C_Soldier_Para_5_F";
- atlOffset=0.028015137;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item48
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9216.0439,218.50383,8728.9512};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=634;
- type="I_C_Soldier_Para_3_F";
- atlOffset=0.0073394775;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item49
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9218.9424,218.19337,8729.1289};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=636;
- type="I_C_Soldier_Para_8_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item50
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9221.9307,217.97067,8729.3496};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=638;
- type="I_C_Soldier_Para_6_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item51
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9206.082,219.82283,8728.7646};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=640;
- type="I_C_Soldier_Para_7_F";
- atlOffset=0.024963379;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item52
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9223.043,217.66847,8724.5742};
- angles[]={0,6.2412972,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Machinegunner";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=642;
- type="I_C_Soldier_Para_4_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.97000003;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item53
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9226.1172,217.35556,8724.8096};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=644;
- type="I_C_Soldier_Para_5_F";
- atlOffset=0.0020141602;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item54
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9229.0479,217.05486,8724.4609};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Paramedic";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=646;
- type="I_C_Soldier_Para_3_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item55
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9231.9463,216.79662,8724.6387};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Engineer";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=648;
- type="I_C_Soldier_Para_8_F";
- atlOffset=0.0082244873;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item56
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9234.9346,216.52435,8724.8594};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="Grenadier";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=650;
- type="I_C_Soldier_Para_6_F";
- atlOffset=0.014678955;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item57
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9219.0859,218.09396,8724.2744};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=652;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item58
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9205.1563,219.80769,8724.9619};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- description="AT Launcher";
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=361;
- type="I_C_Soldier_Para_5_F";
- atlOffset=-1.5258789e-005;
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item59
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9204.8271,219.99605,8732.3154};
- angles[]={0,0.090093896,0};
- };
- side="Independent";
- flags=5;
- class Attributes
- {
- isPlayable=1;
- class Inventory
- {
- map="ItemMap";
- };
- };
- id=468;
- type="I_C_Soldier_Para_7_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
- };
- };
- };
- nAttributes=1;
- };
- };
- };
- class Attributes
- {
- };
- id=0;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Command";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item1
- {
- dataType="Marker";
- position[]={9197.1318,220.47301,8731.667};
- name="Synd_HQ";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorPink";
- a=50;
- b=50;
- id=2;
- atlOffset=0.00028991699;
- };
- class Item2
- {
- dataType="Marker";
- position[]={9198.4648,2.7037606e+012,8733.8457};
- name="respawn_guerrila";
- text="Your Headquarters";
- type="hd_flag";
- colorName="ColorGUER";
- id=3;
- atlOffset=2.7037606e+012;
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9202.0508,220.95984,8732.7168};
- angles[]={6.2086601,0,6.2219238};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="vehicleBox";
- };
- id=5;
- type="Box_East_AmmoVeh_F";
- atlOffset=-0.014007568;
- class CustomAttributes
- {
- class Attribute0
- {
- property="ammoBox";
- expression="[_this,_value] call bis_fnc_initAmmoBox;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]";
- };
- };
- };
- class Attribute1
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9195.4922,221.96152,8734.6768};
- angles[]={6.0934858,5.6506429,6.179565};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="mapX";
- };
- id=7;
- type="MapBoard_seismic_F";
- atlOffset=-0.0070037842;
- class CustomAttributes
- {
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item5
- {
- dataType="Group";
- side="Independent";
- class Entities
- {
- items=1;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9193.0303,220.73914,8731.5938};
- angles[]={0,2.2023785,0};
- };
- side="Independent";
- flags=7;
- class Attributes
- {
- name="petros";
- };
- id=8;
- type="I_C_Soldier_Camo_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="face";
- expression="_this setface _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1;
- };
- };
- };
- nAttributes=2;
- };
- };
- };
- class Attributes
- {
- };
- id=9;
- class CustomAttributes
- {
- class Attribute0
- {
- property="groupID";
- expression="_this setGroupID [_value];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Petros";
- };
- };
- };
- nAttributes=1;
- };
- };
- class Item6
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9194.8828,220.23752,8724.9854};
- angles[]={6.2671871,0,6.2166171};
- };
- name="server";
- id=11;
- type="Logic";
- };
- class Item7
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9196.457,220.16054,8723.5732};
- angles[]={6.2671871,0,6.2511969};
- };
- name="garrison";
- id=12;
- type="Logic";
- };
- class Item8
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9198.2441,220.09081,8722.1523};
- angles[]={0.013332055,0,6.2511969};
- };
- name="spawner";
- id=13;
- type="Logic";
- };
- class Item9
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9190.6504,220.42833,8722.2852};
- angles[]={0,0,6.2192717};
- };
- name="hc";
- isPlayable=1;
- id=14;
- type="HeadlessClient_F";
- atlOffset=1.5258789e-005;
- };
- class Item10
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9200.1191,220.03395,8720.8213};
- angles[]={0.013327583,0,6.2405477};
- };
- name="roadsX";
- id=17;
- type="Logic";
- };
- class Item11
- {
- dataType="Marker";
- position[]={11310.948,20.257759,5900.9492};
- name="control";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=30;
- };
- class Item12
- {
- dataType="Marker";
- position[]={11383.694,2.8701169e+036,5275.6128};
- name="control_1";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=31;
- atlOffset=2.8701169e+036;
- };
- class Item13
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9201.4346,224.5863,8736.7021};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- name="flagX";
- };
- id=175;
- type="Flag_Syndikat_F";
- atlOffset=-0.031982422;
- };
- class Item14
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9201.5352,219.98785,8719.7373};
- angles[]={0.018657569,0,6.2352238};
- };
- name="timer";
- id=284;
- type="Logic";
- atlOffset=1.5258789e-005;
- };
- class Item15
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9202.1182,220.80991,8728.042};
- angles[]={6.2618575,0,6.2219238};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- name="boxX";
- };
- id=4;
- type="IG_supplyCrate_F";
- atlOffset=-0.01600647;
- class CustomAttributes
- {
- class Attribute0
- {
- property="ammoBox";
- expression="[_this,_value] call bis_fnc_initAmmoBox;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute1
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item16
- {
- dataType="Marker";
- position[]={6773.5918,1.2565496e+029,7555.8301};
- name="spawnPoint";
- type="mil_start";
- angle=25.434;
- id=336;
- atlOffset=1.2565496e+029;
- };
- class Item17
- {
- dataType="Marker";
- position[]={1736.8215,1.2565496e+029,12781.881};
- name="spawnPoint_1";
- type="mil_start";
- angle=173.55841;
- id=337;
- atlOffset=1.2565496e+029;
- };
- class Item18
- {
- dataType="Marker";
- position[]={11473.074,1.2565496e+029,13115.996};
- name="spawnPoint_2";
- type="mil_start";
- angle=269.59601;
- id=338;
- atlOffset=1.2565496e+029;
- };
- class Item19
- {
- dataType="Marker";
- position[]={11553.529,1.2565496e+029,3081.9141};
- name="spawnPoint_3";
- type="mil_start";
- angle=308.33148;
- id=339;
- atlOffset=1.2565496e+029;
- };
- class Item20
- {
- dataType="Marker";
- position[]={2265.8037,1.2565496e+029,3407.0894};
- name="spawnPoint_4";
- type="mil_start";
- angle=64.13488;
- id=340;
- atlOffset=1.2565496e+029;
- };
- class Item21
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12752.012,40.864891,14220.89};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- init="if !(isMultiplayer) then {deleteVehicle this}";
- };
- id=344;
- type="Flag_NATO_F";
- atlOffset=0.056999207;
- };
- class Item22
- {
- dataType="Marker";
- position[]={12752.037,40.074604,14199.098};
- name="respawn_west";
- type="flag_CTRG";
- id=345;
- };
- class Item23
- {
- dataType="Group";
- side="West";
- class Entities
- {
- items=6;
- class Item0
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12751.78,38.133686,14212.558};
- };
- side="West";
- flags=6;
- class Attributes
- {
- rank="SERGEANT";
- init="groupPlayersNATO = group this; this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 0];";
- name="pvp_blue_1";
- isPlayable=1;
- };
- id=705;
- type="B_recon_TL_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male11ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.94999999;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item1
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12746.78,38.988949,14207.558};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 1];";
- name="pvp_blue_2";
- isPlayable=1;
- };
- id=706;
- type="B_recon_medic_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male06ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item2
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12741.78,39.620373,14202.558};
- };
- side="West";
- flags=4;
- class Attributes
- {
- rank="SERGEANT";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 4];";
- name="pvp_blue_5";
- isPlayable=1;
- };
- id=707;
- type="B_recon_LAT_F";
- atlOffset=-3.8146973e-006;
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item3
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12751.751,39.319187,14205.111};
- };
- side="West";
- flags=4;
- class Attributes
- {
- rank="SERGEANT";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 5];";
- name="pvp_blue_6";
- isPlayable=1;
- };
- id=708;
- type="B_recon_LAT_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item4
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12756.78,38.956776,14207.558};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.44999999;
- rank="CORPORAL";
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 3];";
- name="pvp_blue_4";
- isPlayable=1;
- };
- id=709;
- type="B_recon_M_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=1.02;
- };
- };
- };
- nAttributes=2;
- };
- };
- class Item5
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12762.576,37.910946,14210.993};
- };
- side="West";
- flags=4;
- class Attributes
- {
- skill=0.40000001;
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_blue_3";
- isPlayable=1;
- };
- id=710;
- type="B_recon_F";
- class CustomAttributes
- {
- class Attribute0
- {
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male07ENG";
- };
- };
- };
- class Attribute1
- {
- property="pitch";
- expression="_this setpitch _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.95999998;
- };
- };
- };
- nAttributes=2;
+ nAttributes=2;
};
};
};
@@ -3753,7 +1024,7 @@ class Mission
};
id=346;
};
- class Item24
+ class Item23
{
dataType="Object";
class PositionInfo
@@ -3770,7 +1041,7 @@ class Mission
type="Land_TTowerBig_2_F";
atlOffset=-0.0070114136;
};
- class Item25
+ class Item24
{
dataType="Marker";
position[]={6600.8726,10.616028,7316.522};
@@ -3782,7 +1053,7 @@ class Mission
id=386;
atlOffset=0.56116867;
};
- class Item26
+ class Item25
{
dataType="Marker";
position[]={8978.1318,2.9196179,6711.1514};
@@ -3794,7 +1065,7 @@ class Mission
id=387;
atlOffset=-0.0047571659;
};
- class Item27
+ class Item26
{
dataType="Marker";
position[]={4554.4268,3.3344629,8796.4805};
@@ -3806,7 +1077,7 @@ class Mission
id=388;
atlOffset=0.0053319931;
};
- class Item28
+ class Item27
{
dataType="Marker";
position[]={5010.2993,6.9463086,9717.1338};
@@ -3818,7 +1089,7 @@ class Mission
id=389;
atlOffset=-0.0013327599;
};
- class Item29
+ class Item28
{
dataType="Marker";
position[]={6783.1919,66.965408,10516.366};
@@ -3830,7 +1101,7 @@ class Mission
id=390;
atlOffset=0.030654907;
};
- class Item30
+ class Item29
{
dataType="Marker";
position[]={5477.9604,4.1778955,11384.883};
@@ -3841,7 +1112,7 @@ class Mission
b=50;
id=391;
};
- class Item31
+ class Item30
{
dataType="Marker";
position[]={6619.8584,15.548132,13042.848};
@@ -3853,7 +1124,7 @@ class Mission
id=392;
atlOffset=0.030707359;
};
- class Item32
+ class Item31
{
dataType="Marker";
position[]={8926.5557,151.49054,11748.316};
@@ -3865,7 +1136,7 @@ class Mission
id=393;
atlOffset=0.086380005;
};
- class Item33
+ class Item32
{
dataType="Marker";
position[]={8269.2715,7.7076759,13659.497};
@@ -3877,7 +1148,7 @@ class Mission
id=394;
atlOffset=-0.017329216;
};
- class Item34
+ class Item33
{
dataType="Marker";
position[]={11271.37,9.6891108,13114.998};
@@ -3889,7 +1160,7 @@ class Mission
id=395;
atlOffset=0.025326729;
};
- class Item35
+ class Item34
{
dataType="Marker";
position[]={14146.736,14.14368,11823.99};
@@ -3901,7 +1172,7 @@ class Mission
id=396;
atlOffset=0.011997223;
};
- class Item36
+ class Item35
{
dataType="Marker";
position[]={12579.705,43.978226,8079.9775};
@@ -3913,7 +1184,7 @@ class Mission
id=397;
atlOffset=0.061321259;
};
- class Item37
+ class Item36
{
dataType="Marker";
position[]={11795.972,8.2485685,6705.1025};
@@ -3925,7 +1196,7 @@ class Mission
id=398;
atlOffset=0.018662453;
};
- class Item38
+ class Item37
{
dataType="Marker";
position[]={11243.428,22.984892,3305.29};
@@ -3937,7 +1208,7 @@ class Mission
id=399;
atlOffset=-0.011983871;
};
- class Item39
+ class Item38
{
dataType="Marker";
position[]={4815.9033,13.932686,5106.6157};
@@ -3949,7 +1220,7 @@ class Mission
id=400;
atlOffset=-0.0066642761;
};
- class Item40
+ class Item39
{
dataType="Marker";
position[]={3993.7673,23.998205,5735.2402};
@@ -3961,7 +1232,7 @@ class Mission
id=401;
atlOffset=0.0093154907;
};
- class Item41
+ class Item40
{
dataType="Marker";
position[]={10773.011,107.41172,9557.2959};
@@ -3973,7 +1244,7 @@ class Mission
id=402;
atlOffset=-0.061325073;
};
- class Item42
+ class Item41
{
dataType="Marker";
position[]={8341.5801,18.074375,9767.4131};
@@ -3985,7 +1256,7 @@ class Mission
id=403;
atlOffset=0.010663986;
};
- class Item43
+ class Item42
{
dataType="Marker";
position[]={1831.4775,15.602764,12332.693};
@@ -3997,7 +1268,7 @@ class Mission
id=404;
atlOffset=0.018662453;
};
- class Item44
+ class Item43
{
dataType="Marker";
position[]={10050.675,-3.9290747e+009,8565.627};
@@ -4009,7 +1280,7 @@ class Mission
id=405;
atlOffset=-3.9290749e+009;
};
- class Item45
+ class Item44
{
dataType="Marker";
position[]={9156.2266,242.70625,9204.126};
@@ -4020,7 +1291,7 @@ class Mission
b=400;
id=406;
};
- class Item46
+ class Item45
{
dataType="Marker";
position[]={8663.5928,-3.9290749e+009,7137.2651};
@@ -4032,7 +1303,7 @@ class Mission
id=407;
atlOffset=-3.9290749e+009;
};
- class Item47
+ class Item46
{
dataType="Marker";
position[]={10020.399,-3.9290749e+009,7098.7363};
@@ -4044,7 +1315,7 @@ class Mission
id=408;
atlOffset=-3.9290749e+009;
};
- class Item48
+ class Item47
{
dataType="Marker";
position[]={12015.701,-3.9290749e+009,7428.9941};
@@ -4056,7 +1327,7 @@ class Mission
id=409;
atlOffset=-3.9290752e+009;
};
- class Item49
+ class Item48
{
dataType="Marker";
position[]={11727.472,-3.9290747e+009,8859.6553};
@@ -4068,7 +1339,7 @@ class Mission
id=410;
atlOffset=-3.9290749e+009;
};
- class Item50
+ class Item49
{
dataType="Marker";
position[]={12605.63,-3.9290747e+009,9548.5293};
@@ -4080,7 +1351,7 @@ class Mission
id=411;
atlOffset=-3.9290749e+009;
};
- class Item51
+ class Item50
{
dataType="Marker";
position[]={13530.334,-3.9290747e+009,10324.287};
@@ -4092,7 +1363,7 @@ class Mission
id=412;
atlOffset=-3.9290749e+009;
};
- class Item52
+ class Item51
{
dataType="Marker";
position[]={12481.513,-3.9290747e+009,11047.294};
@@ -4104,7 +1375,7 @@ class Mission
id=413;
atlOffset=-3.9290749e+009;
};
- class Item53
+ class Item52
{
dataType="Marker";
position[]={11649.902,-3.9290747e+009,11922.351};
@@ -4116,7 +1387,7 @@ class Mission
id=414;
atlOffset=-3.9290749e+009;
};
- class Item54
+ class Item53
{
dataType="Marker";
position[]={8944.0605,-3.9290747e+009,12552.267};
@@ -4128,7 +1399,7 @@ class Mission
id=415;
atlOffset=-3.9290749e+009;
};
- class Item55
+ class Item54
{
dataType="Marker";
position[]={7929.3696,-3.9290747e+009,11683.418};
@@ -4140,7 +1411,7 @@ class Mission
id=416;
atlOffset=-3.9290749e+009;
};
- class Item56
+ class Item55
{
dataType="Marker";
position[]={6486.46,-3.9290747e+009,11832.364};
@@ -4152,7 +1423,7 @@ class Mission
id=417;
atlOffset=-3.9290749e+009;
};
- class Item57
+ class Item56
{
dataType="Marker";
position[]={6874.3394,-3.9290747e+009,9703.6836};
@@ -4164,7 +1435,7 @@ class Mission
id=418;
atlOffset=-3.9290749e+009;
};
- class Item58
+ class Item57
{
dataType="Marker";
position[]={5785.7461,0,8326.9873};
@@ -4176,7 +1447,7 @@ class Mission
id=419;
atlOffset=-73.637177;
};
- class Item59
+ class Item58
{
dataType="Marker";
position[]={1388.0699,4.3460913e+018,7795.9229};
@@ -4188,7 +1459,7 @@ class Mission
id=420;
atlOffset=4.3460913e+018;
};
- class Item60
+ class Item59
{
dataType="Marker";
position[]={5457.0317,4.3460913e+018,3490.8818};
@@ -4200,7 +1471,7 @@ class Mission
id=421;
atlOffset=4.3460913e+018;
};
- class Item61
+ class Item60
{
dataType="Marker";
position[]={2160.438,5.6670865e+024,2712.7371};
@@ -4212,7 +1483,7 @@ class Mission
id=422;
atlOffset=5.6670865e+024;
};
- class Item62
+ class Item61
{
dataType="Marker";
position[]={10814.768,4.3460913e+018,10971.475};
@@ -4224,7 +1495,7 @@ class Mission
id=423;
atlOffset=4.3460913e+018;
};
- class Item63
+ class Item62
{
dataType="Marker";
position[]={9996.4326,4.3460913e+018,10809.105};
@@ -4236,7 +1507,7 @@ class Mission
id=424;
atlOffset=4.3460913e+018;
};
- class Item64
+ class Item63
{
dataType="Marker";
position[]={10416.426,4.3460913e+018,10257.053};
@@ -4248,7 +1519,7 @@ class Mission
id=425;
atlOffset=4.3460913e+018;
};
- class Item65
+ class Item64
{
dataType="Marker";
position[]={7509.6929,4.3460913e+018,10823.432};
@@ -4260,7 +1531,7 @@ class Mission
id=426;
atlOffset=4.3460913e+018;
};
- class Item66
+ class Item65
{
dataType="Marker";
position[]={8739.9014,4.3460913e+018,8277.6982};
@@ -4272,7 +1543,7 @@ class Mission
id=427;
atlOffset=4.3460913e+018;
};
- class Item67
+ class Item66
{
dataType="Marker";
position[]={11365.444,4.3460913e+018,6725.4893};
@@ -4284,7 +1555,7 @@ class Mission
id=428;
atlOffset=4.3460913e+018;
};
- class Item68
+ class Item67
{
dataType="Marker";
position[]={13033.241,4.3460913e+018,8255.6816};
@@ -4296,7 +1567,7 @@ class Mission
id=429;
atlOffset=4.3460913e+018;
};
- class Item69
+ class Item68
{
dataType="Marker";
position[]={13803.839,4.3460913e+018,11241.76};
@@ -4308,7 +1579,7 @@ class Mission
id=430;
atlOffset=4.3460913e+018;
};
- class Item70
+ class Item69
{
dataType="Marker";
position[]={7913.7773,4.3460913e+018,12797.205};
@@ -4320,7 +1591,7 @@ class Mission
id=431;
atlOffset=4.3460913e+018;
};
- class Item71
+ class Item70
{
dataType="Marker";
position[]={6636.9756,4.3460913e+018,8634.1777};
@@ -4332,7 +1603,7 @@ class Mission
id=432;
atlOffset=4.3460913e+018;
};
- class Item72
+ class Item71
{
dataType="Marker";
position[]={5481.6724,4.3460913e+018,9581.9346};
@@ -4344,7 +1615,7 @@ class Mission
id=433;
atlOffset=4.3460913e+018;
};
- class Item73
+ class Item72
{
dataType="Marker";
position[]={2963.6758,4.3460913e+018,5885.062};
@@ -4356,7 +1627,7 @@ class Mission
id=434;
atlOffset=4.3460913e+018;
};
- class Item74
+ class Item73
{
dataType="Marker";
position[]={4366.7974,4.3460913e+018,4221.1406};
@@ -4368,7 +1639,7 @@ class Mission
id=435;
atlOffset=4.3460913e+018;
};
- class Item75
+ class Item74
{
dataType="Marker";
position[]={7331.5747,5.7289289e+023,7982.5522};
@@ -4377,7 +1648,7 @@ class Mission
id=509;
atlOffset=5.7289289e+023;
};
- class Item76
+ class Item75
{
dataType="Marker";
position[]={8899.6436,5.7289289e+023,10191.442};
@@ -4386,7 +1657,7 @@ class Mission
id=510;
atlOffset=5.7289289e+023;
};
- class Item77
+ class Item76
{
dataType="Marker";
position[]={8301.5781,5.7289289e+023,13578.238};
@@ -4395,7 +1666,7 @@ class Mission
id=511;
atlOffset=5.7289289e+023;
};
- class Item78
+ class Item77
{
dataType="Marker";
position[]={10214.967,5.7289289e+023,13433.782};
@@ -4404,7 +1675,7 @@ class Mission
id=512;
atlOffset=5.7289289e+023;
};
- class Item79
+ class Item78
{
dataType="Marker";
position[]={11369.707,5.7289289e+023,13113.29};
@@ -4413,7 +1684,7 @@ class Mission
id=513;
atlOffset=5.7289289e+023;
};
- class Item80
+ class Item79
{
dataType="Marker";
position[]={10947.353,5.7289289e+023,9575.9385};
@@ -4422,7 +1693,7 @@ class Mission
id=514;
atlOffset=5.7289289e+023;
};
- class Item81
+ class Item80
{
dataType="Marker";
position[]={10454.875,5.7289289e+023,11003.146};
@@ -4431,7 +1702,7 @@ class Mission
id=515;
atlOffset=5.7289289e+023;
};
- class Item82
+ class Item81
{
dataType="Marker";
position[]={9069.6123,5.7289289e+023,7909.2813};
@@ -4440,7 +1711,7 @@ class Mission
id=517;
atlOffset=5.7289289e+023;
};
- class Item83
+ class Item82
{
dataType="Marker";
position[]={7633.4141,5.7289289e+023,7131.103};
@@ -4449,7 +1720,7 @@ class Mission
id=518;
atlOffset=5.7289289e+023;
};
- class Item84
+ class Item83
{
dataType="Marker";
position[]={10740.525,5.7289289e+023,6589.7715};
@@ -4458,7 +1729,7 @@ class Mission
id=519;
atlOffset=5.7289289e+023;
};
- class Item85
+ class Item84
{
dataType="Marker";
position[]={12672.212,5.7289289e+023,6876.0225};
@@ -4467,7 +1738,7 @@ class Mission
id=520;
atlOffset=5.7289289e+023;
};
- class Item86
+ class Item85
{
dataType="Marker";
position[]={14005.407,5.7289289e+023,8007.8247};
@@ -4476,7 +1747,7 @@ class Mission
id=521;
atlOffset=5.7289289e+023;
};
- class Item87
+ class Item86
{
dataType="Marker";
position[]={5363.8252,5.7289289e+023,8276.5537};
@@ -4485,7 +1756,7 @@ class Mission
id=522;
atlOffset=5.7289289e+023;
};
- class Item88
+ class Item87
{
dataType="Marker";
position[]={6443.1035,5.7289289e+023,10687.489};
@@ -4494,7 +1765,7 @@ class Mission
id=523;
atlOffset=5.7289289e+023;
};
- class Item89
+ class Item88
{
dataType="Marker";
position[]={5380.3657,5.7289289e+023,11796.427};
@@ -4503,7 +1774,7 @@ class Mission
id=524;
atlOffset=5.7289289e+023;
};
- class Item90
+ class Item89
{
dataType="Marker";
position[]={6805.6309,5.7289289e+023,13251.575};
@@ -4512,7 +1783,7 @@ class Mission
id=525;
atlOffset=5.7289289e+023;
};
- class Item91
+ class Item90
{
dataType="Marker";
position[]={12758.003,5.7289289e+023,12488.387};
@@ -4521,7 +1792,7 @@ class Mission
id=526;
atlOffset=5.7289289e+023;
};
- class Item92
+ class Item91
{
dataType="Marker";
position[]={5308.6919,-1.0306302e-022,10124.372};
@@ -4530,7 +1801,7 @@ class Mission
id=529;
atlOffset=4.71;
};
- class Item93
+ class Item92
{
dataType="Marker";
position[]={5641.4346,0.8378551,10479.436};
@@ -4539,7 +1810,7 @@ class Mission
id=530;
atlOffset=4.7303185;
};
- class Item94
+ class Item93
{
dataType="Marker";
position[]={6272.2969,2.4648523,12865.763};
@@ -4548,7 +1819,7 @@ class Mission
id=531;
atlOffset=4.6979456;
};
- class Item95
+ class Item94
{
dataType="Marker";
position[]={6853.5254,2.0206542,13443.509};
@@ -4557,7 +1828,7 @@ class Mission
id=532;
atlOffset=4.6707497;
};
- class Item96
+ class Item95
{
dataType="Marker";
position[]={7873.2524,1.3554394,13623.727};
@@ -4566,7 +1837,7 @@ class Mission
id=533;
atlOffset=4.6953979;
};
- class Item97
+ class Item96
{
dataType="Marker";
position[]={8408.4746,1.0033226,13792.548};
@@ -4575,7 +1846,7 @@ class Mission
id=534;
atlOffset=4.6766748;
};
- class Item98
+ class Item97
{
dataType="Marker";
position[]={9645.5713,2.123208,13640.646};
@@ -4584,7 +1855,7 @@ class Mission
id=535;
atlOffset=4.6660109;
};
- class Item99
+ class Item98
{
dataType="Marker";
position[]={9945.1426,-0.86934042,13637.755};
@@ -4593,7 +1864,7 @@ class Mission
id=536;
atlOffset=4.7030864;
};
- class Item100
+ class Item99
{
dataType="Marker";
position[]={13297.544,-11.959624,12461.898};
@@ -4602,7 +1873,7 @@ class Mission
id=537;
atlOffset=4.7446585;
};
- class Item101
+ class Item100
{
dataType="Marker";
position[]={13577.749,-12.489322,12137.162};
@@ -4611,7 +1882,7 @@ class Mission
id=538;
atlOffset=4.7007017;
};
- class Item102
+ class Item101
{
dataType="Marker";
position[]={14533.363,2.089431,8877.585};
@@ -4620,7 +1891,7 @@ class Mission
id=539;
atlOffset=4.6865377;
};
- class Item103
+ class Item102
{
dataType="Marker";
position[]={14071.688,2.3151612,8278.2979};
@@ -4629,7 +1900,7 @@ class Mission
id=540;
atlOffset=4.6981125;
};
- class Item104
+ class Item103
{
dataType="Marker";
position[]={12923.383,2.3799708,7276.2222};
@@ -4638,7 +1909,7 @@ class Mission
id=541;
atlOffset=4.7113333;
};
- class Item105
+ class Item104
{
dataType="Marker";
position[]={10809.46,0.0095715523,6147.105};
@@ -4647,7 +1918,7 @@ class Mission
id=542;
atlOffset=4.7994547;
};
- class Item106
+ class Item105
{
dataType="Marker";
position[]={1676.7452,0.38597298,11951.487};
@@ -4656,7 +1927,7 @@ class Mission
id=543;
atlOffset=4.7086663;
};
- class Item107
+ class Item106
{
dataType="Marker";
position[]={3146.6555,-1.2572956,10978.803};
@@ -4665,7 +1936,7 @@ class Mission
id=544;
atlOffset=4.6714544;
};
- class Item108
+ class Item107
{
dataType="Marker";
position[]={2637.2192,2.2185743,7458.7847};
@@ -4674,7 +1945,7 @@ class Mission
id=545;
atlOffset=4.6379724;
};
- class Item109
+ class Item108
{
dataType="Marker";
position[]={3442.2932,1.0303638,6833.6133};
@@ -4683,7 +1954,7 @@ class Mission
id=546;
atlOffset=4.753304;
};
- class Item110
+ class Item109
{
dataType="Marker";
position[]={2702.9531,3.4872913,5579.9297};
@@ -4692,7 +1963,7 @@ class Mission
id=547;
atlOffset=4.6869841;
};
- class Item111
+ class Item110
{
dataType="Marker";
position[]={1624.1685,3.6172795,6185.1455};
@@ -4701,7 +1972,7 @@ class Mission
id=548;
atlOffset=4.7326717;
};
- class Item112
+ class Item111
{
dataType="Marker";
position[]={888.85211,-1.5593648,7784.0225};
@@ -4710,7 +1981,7 @@ class Mission
id=549;
atlOffset=4.7259989;
};
- class Item113
+ class Item112
{
dataType="Marker";
position[]={7244.1997,3.1549413,4256.5703};
@@ -4719,7 +1990,7 @@ class Mission
id=550;
atlOffset=4.6397901;
};
- class Item114
+ class Item113
{
dataType="Marker";
position[]={5615.5518,-1.4814858,3938.2827};
@@ -4728,7 +1999,7 @@ class Mission
id=551;
atlOffset=4.6607027;
};
- class Item115
+ class Item114
{
dataType="Marker";
position[]={3659.6934,2.4331355,2033.28};
@@ -4737,7 +2008,7 @@ class Mission
id=552;
atlOffset=4.834157;
};
- class Item116
+ class Item115
{
dataType="Marker";
position[]={1425.8173,4.0735149,3056.3782};
@@ -4746,7 +2017,7 @@ class Mission
id=553;
atlOffset=4.6793442;
};
- class Item117
+ class Item116
{
dataType="Marker";
position[]={2182.48,3.3729064,4670.2998};
@@ -4755,7 +2026,7 @@ class Mission
id=554;
atlOffset=4.5817604;
};
- class Item118
+ class Item117
{
dataType="Marker";
position[]={11145.637,-1.5138278,5338.1733};
@@ -4764,7 +2035,7 @@ class Mission
id=555;
atlOffset=4.7113333;
};
- class Item119
+ class Item118
{
dataType="Marker";
position[]={11833.501,-2.2860084,2692.196};
@@ -4773,7 +2044,7 @@ class Mission
id=556;
atlOffset=4.7364573;
};
- class Item120
+ class Item119
{
dataType="Marker";
position[]={13020.104,3.3825684,2064.5928};
@@ -4782,7 +2053,7 @@ class Mission
id=557;
atlOffset=4.71;
};
- class Item121
+ class Item120
{
dataType="Marker";
position[]={10297.78,2.143883,2599.2866};
@@ -4791,7 +2062,7 @@ class Mission
id=558;
atlOffset=4.7993512;
};
- class Item122
+ class Item121
{
dataType="Marker";
position[]={8807.7529,1.4429951,3579.0894};
@@ -4800,7 +2071,7 @@ class Mission
id=559;
atlOffset=4.7993507;
};
- class Item123
+ class Item122
{
dataType="Marker";
position[]={8890.8428,-0.14791965,4771.9819};
@@ -4809,7 +2080,7 @@ class Mission
id=560;
atlOffset=4.6476417;
};
- class Item124
+ class Item123
{
dataType="Marker";
position[]={9450.9326,0.96115494,4252.1318};
@@ -4818,7 +2089,7 @@ class Mission
id=561;
atlOffset=4.6119142;
};
- class Item125
+ class Item124
{
dataType="Marker";
position[]={7324.7451,-1.9039157e-016,5456.5688};
@@ -4827,7 +2098,7 @@ class Mission
id=562;
atlOffset=15.577591;
};
- class Item126
+ class Item125
{
dataType="Marker";
position[]={13425.588,-16.980122,5743.4419};
@@ -4836,7 +2107,7 @@ class Mission
id=564;
atlOffset=15.401009;
};
- class Item127
+ class Item126
{
dataType="Marker";
position[]={14792.189,-42.48135,13713.367};
@@ -4845,7 +2116,7 @@ class Mission
id=565;
atlOffset=15.637577;
};
- class Item128
+ class Item127
{
dataType="Marker";
position[]={11752.373,-6.2777367,14266.281};
@@ -4854,7 +2125,7 @@ class Mission
id=566;
atlOffset=15.591917;
};
- class Item129
+ class Item128
{
dataType="Marker";
position[]={9617.6104,-12.346392,14578.438};
@@ -4863,7 +2134,7 @@ class Mission
id=567;
atlOffset=15.602919;
};
- class Item130
+ class Item129
{
dataType="Marker";
position[]={4766.6724,-12.531301,12960.007};
@@ -4872,7 +2143,7 @@ class Mission
id=568;
atlOffset=15.577592;
};
- class Item131
+ class Item130
{
dataType="Marker";
position[]={386.15823,-33.727009,12656.868};
@@ -4881,7 +2152,7 @@ class Mission
id=569;
atlOffset=15.575165;
};
- class Item132
+ class Item131
{
dataType="Marker";
position[]={216.76779,-40.681499,3569.2603};
@@ -4890,7 +2161,7 @@ class Mission
id=570;
atlOffset=15.597591;
};
- class Item133
+ class Item132
{
dataType="Marker";
position[]={6971.8569,-20.113533,2673.792};
@@ -4899,7 +2170,7 @@ class Mission
id=571;
atlOffset=15.572243;
};
- class Item134
+ class Item133
{
dataType="Marker";
position[]={13770.102,-7.7526512,3487.022};
@@ -4908,7 +2179,7 @@ class Mission
id=572;
atlOffset=15.567667;
};
- class Item135
+ class Item134
{
dataType="Marker";
position[]={3626.8403,-3.1850529,10294.673};
@@ -4917,7 +2188,7 @@ class Mission
id=573;
atlOffset=15.532999;
};
- class Item136
+ class Item135
{
dataType="Logic";
class PositionInfo
@@ -4930,7 +2201,7 @@ class Mission
type="Logic";
atlOffset=1.5258789e-005;
};
- class Item137
+ class Item136
{
dataType="Logic";
class PositionInfo
@@ -4943,7 +2214,7 @@ class Mission
type="Logic";
atlOffset=1.5258789e-005;
};
- class Item138
+ class Item137
{
dataType="Marker";
position[]={13539.497,0,922.39398};
@@ -4952,7 +2223,7 @@ class Mission
id=601;
atlOffset=46.832657;
};
- class Item139
+ class Item138
{
dataType="Marker";
position[]={862.94202,0,14749.403};
@@ -4961,7 +2232,7 @@ class Mission
id=602;
atlOffset=58.83152;
};
- class Item140
+ class Item139
{
dataType="Marker";
position[]={5347.9351,26.059,14574.517};
@@ -4970,7 +2241,7 @@ class Mission
id=607;
atlOffset=0.00040054321;
};
- class Item141
+ class Item140
{
dataType="Group";
side="East";
@@ -5237,3055 +2508,4063 @@ class Mission
type="O_T_Recon_LAT_F";
class CustomAttributes
{
- class Attribute0
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male02CHI";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0.98000002;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ class Item5
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5349.4072,26.890818,14578.076};
+ };
+ side="East";
+ flags=4;
+ class Attributes
+ {
+ init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
+ name="pvp_red_3";
+ isPlayable=1;
+ };
+ id=704;
+ type="O_T_Recon_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male03PER";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=0.98000002;
+ };
+ };
+ };
+ nAttributes=2;
+ };
+ };
+ };
+ class Attributes
+ {
+ };
+ id=617;
+ };
+ class Item141
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5338.4258,27.61157,14580.147};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ init="if !(isMultiplayer) then {deleteVehicle this}";
+ };
+ id=689;
+ type="Flag_Viper_F";
+ };
+ class Item142
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9191.6787,220.34976,8721.3008};
+ angles[]={0,0,6.2192717};
+ };
+ name="hc_1";
+ isPlayable=1;
+ id=690;
+ type="HeadlessClient_F";
+ atlOffset=-0.02305603;
+ };
+ class Item143
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9192.624,220.31035,8720.4785};
+ angles[]={0,0,6.2192717};
+ };
+ name="hc_2";
+ isPlayable=1;
+ id=691;
+ type="HeadlessClient_F";
+ atlOffset=-0.024688721;
+ };
+ class Item144
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9198.2598,220.81984,8730.8447};
+ angles[]={6.2086601,0,6.179565};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ name="fireX";
+ };
+ id=695;
+ type="Land_TentSolar_01_olive_F";
+ atlOffset=-0.046585083;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="allowDamage";
+ expression="_this allowdamage _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=1;
+ };
+ };
+ class Item145
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9181.2354,221.07274,8717.4609};
+ };
+ id=697;
+ type="ModuleCurator_F";
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="ModuleCurator_F_Owner";
+ expression="_this setVariable ['Owner',_value,true];";
+ class Value
+ {
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male02CHI";
+ "STRING"
};
};
+ value="#adminLogged";
};
- class Attribute1
+ };
+ };
+ class Attribute1
+ {
+ property="ModuleCurator_F_Forced";
+ expression="_this setVariable ['Forced',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "SCALAR"
};
};
+ value=0;
};
- nAttributes=2;
};
};
- class Item5
+ class Attribute2
{
- dataType="Object";
- class PositionInfo
- {
- position[]={5349.4072,26.890818,14578.076};
- };
- side="East";
- flags=4;
- class Attributes
- {
- init="this setVariable [""pvp"",true]; this setVariable [""pvpPlayerUnitNumber"", 2];";
- name="pvp_red_3";
- isPlayable=1;
- };
- id=704;
- type="O_T_Recon_F";
- class CustomAttributes
+ property="ModuleCurator_F_Name";
+ expression="_this setVariable ['Name',_value,true];";
+ class Value
{
- class Attribute0
+ class data
{
- property="speaker";
- expression="_this setspeaker _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="Male03PER";
+ "STRING"
};
};
+ value="";
};
- class Attribute1
+ };
+ };
+ class Attribute3
+ {
+ property="ModuleCurator_F_Addons";
+ expression="_this setVariable ['Addons',_value,true];";
+ class Value
+ {
+ class data
{
- property="pitch";
- expression="_this setpitch _value;";
- class Value
+ class type
{
- class data
+ type[]=
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0.98000002;
+ "SCALAR"
};
};
+ value=3;
};
- nAttributes=2;
};
};
+ nAttributes=4;
+ };
+ };
+ class Item146
+ {
+ dataType="Marker";
+ position[]={1841.3149,102.9043,12046.82};
+ name="island_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ fillName="Border";
+ a=9.4702606;
+ b=8.9108276;
+ angle=28.575001;
+ drawBorder=1;
+ id=712;
+ atlOffset=98.114136;
+ };
+ class Item147
+ {
+ dataType="Marker";
+ position[]={5478.9111,3.6075108,4052.4224};
+ name="island_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ fillName="Border";
+ a=24.489929;
+ b=20.66391;
+ angle=315.12689;
+ drawBorder=1;
+ id=713;
+ };
+ class Item148
+ {
+ dataType="Marker";
+ position[]={11311.72,65.052895,5980.4702};
+ name="island_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ fillName="Border";
+ a=9.3255672;
+ b=9.510232;
+ angle=317.90918;
+ drawBorder=1;
+ id=715;
+ atlOffset=45.788303;
+ };
+ class Item149
+ {
+ dataType="Logic";
+ class PositionInfo
+ {
+ position[]={9204.4336,219.98885,8716.6611};
+ };
+ name="pathfinding";
+ id=716;
+ type="Logic";
+ };
+ class Item150
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7050.9468,6.7499647,7335.7593};
+ angles[]={0,2.9675355,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=717;
+ type="Land_TentHangar_V1_F";
+ atlOffset=-2.3841858e-007;
+ };
+ class Item151
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7088.8213,6.7499647,7342.3657};
+ angles[]={0,2.9553149,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=718;
+ type="Land_TentHangar_V1_F";
+ atlOffset=-2.3841858e-007;
+ };
+ class Item152
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7075.6816,2.6600001,7527.4683};
+ angles[]={0,4.546566,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=719;
+ type="Land_HelipadCircle_F";
+ };
+ class Item153
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7070.4927,2.6600001,7559.4204};
+ angles[]={0,4.5376377,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=720;
+ type="Land_HelipadCircle_F";
+ };
+ class Item154
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7065.9546,2.6600001,7590.9922};
+ angles[]={0,4.5735841,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=721;
+ type="Land_HelipadCircle_F";
+ };
+ class Item155
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={7115.7563,2.6600001,7283.2007};
+ angles[]={0,4.5007348,0};
};
+ side="Empty";
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=617;
+ id=722;
+ type="Land_HelipadSquare_F";
};
- class Item142
+ class Item156
{
dataType="Object";
class PositionInfo
{
- position[]={5338.4258,27.61157,14580.147};
+ position[]={7123.6592,2.8917217,7240.6343};
+ angles[]={0.031988446,4.4998274,0.087773547};
};
side="Empty";
flags=4;
class Attributes
{
- init="if !(isMultiplayer) then {deleteVehicle this}";
+ disableSimulation=1;
};
- id=689;
- type="Flag_Viper_F";
+ id=723;
+ type="Land_HelipadSquare_F";
+ atlOffset=-1.6450882e-005;
};
- class Item143
+ class Item157
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={9191.6787,220.34976,8721.3008};
- angles[]={0,0,6.2192717};
+ position[]={7160.9316,7.5650005,7517.9922};
+ angles[]={0,4.0108824,0};
};
- name="hc_1";
- isPlayable=1;
- id=690;
- type="HeadlessClient_F";
- atlOffset=-0.02305603;
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=724;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=2.3841858e-007;
};
- class Item144
+ class Item158
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={9192.624,220.31035,8720.4785};
- angles[]={0,0,6.2192717};
+ position[]={7196.1831,7.5650005,7312.3477};
+ angles[]={0,5.048665,0};
};
- name="hc_2";
- isPlayable=1;
- id=691;
- type="HeadlessClient_F";
- atlOffset=-0.024688721;
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=725;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=2.3841858e-007;
};
- class Item145
+ class Item159
{
dataType="Object";
class PositionInfo
{
- position[]={9198.2598,220.81984,8730.8447};
- angles[]={6.2086601,0,6.179565};
+ position[]={2118.0347,18.913456,13319.102};
+ angles[]={0,4.0310268,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=731;
+ type="Land_Hangar_F";
+ atlOffset=-9.5367432e-007;
+ };
+ class Item160
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2209.4944,13.45,13328.559};
+ angles[]={0,5.6138611,0};
};
side="Empty";
flags=4;
class Attributes
{
- name="fireX";
+ disableSimulation=1;
};
- id=695;
- type="Land_TentSolar_01_olive_F";
- atlOffset=-0.046585083;
- class CustomAttributes
+ id=732;
+ type="Land_HelipadCircle_F";
+ };
+ class Item161
+ {
+ dataType="Object";
+ class PositionInfo
{
- class Attribute0
- {
- property="allowDamage";
- expression="_this allowdamage _value;";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "BOOL"
- };
- };
- value=0;
- };
- };
- };
- nAttributes=1;
+ position[]={2189.7917,13.45,13313.013};
+ angles[]={0,5.6138611,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
};
+ id=733;
+ type="Land_HelipadCircle_F";
};
- class Item146
+ class Item162
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={9181.2354,221.07274,8717.4609};
+ position[]={2168.5449,13.45,13296.759};
+ angles[]={0,5.6138611,0};
};
- id=697;
- type="ModuleCurator_F";
- class CustomAttributes
+ side="Empty";
+ flags=4;
+ class Attributes
{
- class Attribute0
- {
- property="ModuleCurator_F_Owner";
- expression="_this setVariable ['Owner',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="#adminLogged";
- };
- };
- };
- class Attribute1
- {
- property="ModuleCurator_F_Forced";
- expression="_this setVariable ['Forced',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=0;
- };
- };
- };
- class Attribute2
- {
- property="ModuleCurator_F_Name";
- expression="_this setVariable ['Name',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "STRING"
- };
- };
- value="";
- };
- };
- };
- class Attribute3
- {
- property="ModuleCurator_F_Addons";
- expression="_this setVariable ['Addons',_value,true];";
- class Value
- {
- class data
- {
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=2;
- };
- };
- };
- nAttributes=4;
+ disableSimulation=1;
};
+ id=734;
+ type="Land_HelipadCircle_F";
};
- class Item147
+ class Item163
{
- dataType="Marker";
- position[]={1841.3149,102.9043,12046.82};
- name="island_1";
- markerType="RECTANGLE";
- type="rectangle";
- fillName="Border";
- a=9.4702606;
- b=8.9108276;
- angle=28.575001;
- drawBorder=1;
- id=712;
- atlOffset=98.114136;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2145.8528,13.45,13279.898};
+ angles[]={0,5.6138611,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=735;
+ type="Land_HelipadCircle_F";
};
- class Item148
+ class Item164
{
- dataType="Marker";
- position[]={5478.9111,3.6075108,4052.4224};
- name="island_2";
- markerType="RECTANGLE";
- type="rectangle";
- fillName="Border";
- a=24.489929;
- b=20.66391;
- angle=315.12689;
- drawBorder=1;
- id=713;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11872.619,7.25,13125.095};
+ angles[]={0,3.464617,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=740;
+ type="Land_HelipadCircle_F";
};
- class Item149
+ class Item165
{
- dataType="Marker";
- position[]={11311.72,65.052895,5980.4702};
- name="island_4";
- markerType="RECTANGLE";
- type="rectangle";
- fillName="Border";
- a=9.3255672;
- b=9.510232;
- angle=317.90918;
- drawBorder=1;
- id=715;
- atlOffset=45.788303;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={11901.304,7.25,13117.043};
+ angles[]={0,3.4385626,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=741;
+ type="Land_HelipadCircle_F";
};
- class Item150
+ class Item166
{
- dataType="Logic";
+ dataType="Object";
class PositionInfo
{
- position[]={9204.4336,219.98885,8716.6611};
+ position[]={11932.635,7.25,13106.668};
+ angles[]={0,3.4305913,0};
};
- name="pathfinding";
- id=716;
- type="Logic";
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=742;
+ type="Land_HelipadCircle_F";
};
- class Item151
+ class Item167
{
dataType="Object";
class PositionInfo
{
- position[]={7050.9468,6.7499647,7335.7593};
- angles[]={0,2.9675355,0};
+ position[]={11683.627,7.25,13180.04};
+ angles[]={0,3.4033186,0};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=717;
- type="Land_TentHangar_V1_F";
- atlOffset=-2.3841858e-007;
+ id=743;
+ type="Land_HelipadSquare_F";
};
- class Item152
+ class Item168
{
dataType="Object";
class PositionInfo
{
- position[]={7088.8213,6.7499647,7342.3657};
- angles[]={0,2.9553149,0};
+ position[]={11639.054,7.25,13193.707};
+ angles[]={0,3.431047,0};
};
side="Empty";
- flags=5;
+ flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=718;
- type="Land_TentHangar_V1_F";
- atlOffset=-2.3841858e-007;
+ id=744;
+ type="Land_HelipadSquare_F";
};
- class Item153
+ class Item169
{
dataType="Object";
class PositionInfo
{
- position[]={7075.6816,2.6600001,7527.4683};
- angles[]={0,4.546566,0};
+ position[]={11606.576,5.2469416,3129.0417};
+ angles[]={6.2485328,0.59444803,0.010664274};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=719;
+ id=748;
type="Land_HelipadCircle_F";
};
- class Item154
+ class Item170
{
dataType="Object";
class PositionInfo
{
- position[]={7070.4927,2.6600001,7559.4204};
- angles[]={0,4.5376377,0};
+ position[]={11585.058,5.56318,3144.6782};
+ angles[]={6.2378831,0.59444803,0.018663859};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=720;
+ id=749;
type="Land_HelipadCircle_F";
};
- class Item155
+ class Item171
{
dataType="Object";
class PositionInfo
{
- position[]={7065.9546,2.6600001,7590.9922};
- angles[]={0,4.5735841,0};
+ position[]={11562.694,6.0594273,3160.8347};
+ angles[]={6.2299027,0.59444803,0.0080009829};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=721;
+ id=750;
type="Land_HelipadCircle_F";
+ atlOffset=1.2874603e-005;
};
- class Item156
+ class Item172
{
dataType="Object";
class PositionInfo
{
- position[]={7115.7563,2.6600001,7283.2007};
- angles[]={0,4.5007348,0};
+ position[]={11778.776,4.8600001,3005.4443};
+ angles[]={0,0.66808051,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=722;
+ id=751;
type="Land_HelipadSquare_F";
};
- class Item157
+ class Item173
{
dataType="Object";
class PositionInfo
{
- position[]={7123.6592,2.8917217,7240.6343};
- angles[]={0.031988446,4.4998274,0.087773547};
+ position[]={11796.58,4.8600001,2992.4148};
+ angles[]={0,0.66808051,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=723;
+ id=752;
type="Land_HelipadSquare_F";
};
- class Item158
+ class Item174
{
dataType="Object";
class PositionInfo
{
- position[]={7160.9316,7.5650005,7517.9922};
- angles[]={0,4.0108824,0};
+ position[]={11810.881,9.7534237,2970.6555};
+ angles[]={0,4.4622369,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=724;
+ id=755;
type="Land_Cargo_Patrol_V1_F";
- atlOffset=2.3841858e-007;
+ atlOffset=-0.0015764236;
};
- class Item159
+ class Item175
{
dataType="Object";
class PositionInfo
{
- position[]={7196.1831,7.5650005,7312.3477};
- angles[]={0,5.048665,0};
+ position[]={11542.744,11.210489,3168.2876};
+ angles[]={0,3.221839,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=725;
+ id=756;
type="Land_Cargo_Patrol_V1_F";
- atlOffset=2.3841858e-007;
+ atlOffset=-0.0015764236;
};
- class Item160
+ class Item176
{
dataType="Object";
class PositionInfo
{
- position[]={2118.0347,18.913456,13319.102};
- angles[]={0,4.0310268,0};
+ position[]={2341.4968,17.039965,3558.5403};
+ angles[]={0,2.8887093,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=731;
- type="Land_Hangar_F";
- atlOffset=-9.5367432e-007;
+ id=757;
+ type="Land_TentHangar_V1_F";
};
- class Item161
+ class Item177
{
dataType="Object";
class PositionInfo
{
- position[]={2209.4944,13.45,13328.559};
- angles[]={0,5.6138611,0};
+ position[]={2298.3521,17.039965,3546.6008};
+ angles[]={0,2.8694155,0};
+ };
+ side="Empty";
+ flags=5;
+ class Attributes
+ {
+ };
+ id=758;
+ type="Land_TentHangar_V1_F";
+ };
+ class Item178
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={2230.2756,12.95,3527.6526};
+ angles[]={0,6.0015883,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=732;
+ id=760;
type="Land_HelipadCircle_F";
};
- class Item162
+ class Item179
{
dataType="Object";
class PositionInfo
{
- position[]={2189.7917,13.45,13313.013};
- angles[]={0,5.6138611,0};
+ position[]={2199.8513,12.95,3517.9182};
+ angles[]={0,6.0015883,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=733;
+ id=761;
type="Land_HelipadCircle_F";
};
- class Item163
+ class Item180
{
dataType="Object";
class PositionInfo
{
- position[]={2168.5449,13.45,13296.759};
- angles[]={0,5.6138611,0};
+ position[]={2166.7224,12.95,3508.4084};
+ angles[]={0,5.9873734,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
+ };
+ id=762;
+ type="Land_HelipadSquare_F";
+ };
+ class Item181
+ {
+ dataType="Layer";
+ name="Airports";
+ class Entities
+ {
+ items=23;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={2082.5779,12.95,3480.6121};
+ name="airp_4_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=45.602001;
+ b=6;
+ angle=161.92497;
+ id=763;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={2321,13.45,13334};
+ name="airp_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.358407;
+ b=6;
+ angle=322.73132;
+ id=737;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={2166.5,12.422852,13215.5};
+ name="airp_1_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=10.667797;
+ b=6;
+ angle=139.59312;
+ id=738;
+ atlOffset=-1.0271482;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={1951.7731,14.75293,12937.271};
+ name="airp_1_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.137188;
+ b=6;
+ angle=144.11099;
+ id=739;
+ atlOffset=-0.94707012;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={11690.477,6.9499998,13099.836};
+ name="airp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=22.386;
+ b=6;
+ angle=17.517;
+ id=745;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={11756,7.2300782,13160};
+ name="airp_2_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=15.436396;
+ b=6;
+ angle=197.55237;
+ id=746;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={11742.105,4.6900001,3020.073};
+ name="airp_3_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=22.386;
+ b=6;
+ angle=37.32;
+ id=753;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={11674.66,4.8726125,3077.374};
+ name="airp_3_vehicle_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=22.386;
+ b=6;
+ angle=38.979134;
+ id=754;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={6929,2.6600001,7399.5};
+ name="airp_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.198;
+ b=6;
+ angle=258.38794;
+ id=726;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={7096.5,2.6600001,7418.5};
+ name="airp_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=17.527323;
+ b=6;
+ angle=80.001793;
+ id=728;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={2129.4917,39.575615,13164.805};
+ name="airport_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=350;
+ b=200;
+ angle=323.39874;
+ id=174;
+ atlOffset=26.129467;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={11847.49,0,13130.965};
+ name="airport_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=437.10519;
+ b=123.27355;
+ angle=195.18698;
+ id=179;
+ atlOffset=-6.9499998;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={11660.928,0,3161.4478};
+ name="airport_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=427.43869;
+ b=124.13167;
+ angle=216.99487;
+ id=180;
+ atlOffset=-5.2667356;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={2201.4783,12.95,3502.1121};
+ name="airport_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorEAST";
+ a=322.32379;
+ b=130.21062;
+ angle=163.07294;
+ id=181;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={7064.5781,2.5280001,7365.9419};
+ name="airport";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorEAST";
+ a=282.12701;
+ b=395.642;
+ angle=348.02991;
+ id=698;
+ atlOffset=-0.13199997;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={6836.5,2.6600001,7308.5};
+ name="airp_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ angle=219.04875;
+ id=730;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={7062.4751,2.6600001,7408.6851};
+ name="airp_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=729;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={11787.7,7.25,13150.864};
+ name="airp_2_mortar";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=747;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={2270.7209,13.45,13383.008};
+ name="airp_1_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=736;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={2229.8899,13.078,13205.34};
+ name="airp_1_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=867;
+ atlOffset=5.7220459e-006;
+ };
+ class Item20
+ {
+ dataType="Marker";
+ position[]={6884,2.6600001,7444.5};
+ name="airp_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=5.7296791;
+ b=5.1925688;
+ angle=219.04875;
+ id=868;
+ };
+ class Item21
+ {
+ dataType="Marker";
+ position[]={2144.5,12.95,3503.5};
+ name="airp_4_mortar_1";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=869;
+ };
+ class Item22
+ {
+ dataType="Marker";
+ position[]={2099,12.791338,3416};
+ name="airp_4_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=6.594471;
+ angle=349.46933;
+ id=870;
+ };
};
- id=734;
- type="Land_HelipadCircle_F";
+ id=764;
+ atlOffset=23.520412;
};
- class Item164
+ class Item182
{
dataType="Object";
class PositionInfo
{
- position[]={2145.8528,13.45,13279.898};
- angles[]={0,5.6138611,0};
+ position[]={7519.7168,7.4899998,8550.5068};
+ angles[]={0,5.4845257,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=735;
+ id=767;
type="Land_HelipadCircle_F";
};
- class Item165
+ class Item183
{
dataType="Object";
class PositionInfo
{
- position[]={11872.619,7.25,13125.095};
- angles[]={0,3.464617,0};
+ position[]={7533.5332,7.4899998,8565.3223};
+ angles[]={0,5.4845257,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=740;
+ id=768;
type="Land_HelipadCircle_F";
};
- class Item166
+ class Item184
{
dataType="Object";
class PositionInfo
{
- position[]={11901.304,7.25,13117.043};
- angles[]={0,3.4385626,0};
+ position[]={4259.3701,3.7740436,8446.542};
+ angles[]={6.2458706,1.635178,0.037314966};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=741;
+ id=773;
type="Land_HelipadCircle_F";
+ atlOffset=-3.361702e-005;
};
- class Item167
+ class Item185
{
dataType="Object";
class PositionInfo
{
- position[]={11932.635,7.25,13106.668};
- angles[]={0,3.4305913,0};
+ position[]={4259.2207,3.591131,8475.3389};
+ angles[]={6.2751846,1.635178,0.053282689};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=742;
+ id=774;
type="Land_HelipadCircle_F";
+ atlOffset=-3.361702e-005;
};
- class Item168
+ class Item186
{
dataType="Object";
class PositionInfo
{
- position[]={11683.627,7.25,13180.04};
- angles[]={0,3.4033186,0};
+ position[]={2273.7751,13.084597,6331.0508};
+ angles[]={0.0053265258,0.32548028,0.0080009829};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
+ };
+ id=782;
+ type="Land_HelipadCircle_F";
+ };
+ class Item187
+ {
+ dataType="Layer";
+ name="Factories";
+ class Entities
+ {
+ items=17;
+ class Item0
+ {
+ dataType="Marker";
+ position[]={7445.1372,7.4899998,8500.6172};
+ name="fact_1_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=9.9700003;
+ b=6;
+ angle=312.59784;
+ id=769;
+ };
+ class Item1
+ {
+ dataType="Marker";
+ position[]={7484.8467,7.5199485,8558.6182};
+ name="fact_1_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.312172;
+ b=6;
+ angle=273.98151;
+ id=770;
+ atlOffset=0.003098011;
+ };
+ class Item2
+ {
+ dataType="Marker";
+ position[]={7396.4849,7.3853054,8420.4336};
+ name="fact_1_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.312172;
+ b=6;
+ angle=239.0217;
+ id=771;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={4178.7085,3.582,8387.6611};
+ name="fact_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=23.026833;
+ b=6;
+ angle=153.95737;
+ id=775;
+ atlOffset=0.165838;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={4350.9448,4.8281031,8427.7354};
+ name="fact_2_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=14.283346;
+ b=6;
+ angle=336.34869;
+ id=776;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={14073.85,2.55,12204.248};
+ name="fact_3_vehicle_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=16.402;
+ b=6;
+ angle=237.97299;
+ id=777;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={2331.697,13.262,6355.2012};
+ name="fact_4_vehicle_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.349;
+ b=6;
+ angle=121.61598;
+ id=780;
+ atlOffset=0.00028610229;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={2222.3784,10.86062,6319.5674};
+ name="fact_4_vehicle_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=13.349;
+ b=6;
+ angle=196.2906;
+ id=781;
+ atlOffset=-9.5367432e-007;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={8488.6934,19.43,10226.28};
+ name="fact_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=19.924;
+ b=6;
+ angle=213.43794;
+ id=765;
+ };
+ class Item9
+ {
+ dataType="Marker";
+ position[]={8417.9219,19.43,10247.556};
+ name="fact_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=19.924;
+ b=6;
+ angle=193.40956;
+ id=766;
+ };
+ class Item10
+ {
+ dataType="Marker";
+ position[]={8353.2129,1.7197507e+027,10323.416};
+ name="factory";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=150;
+ b=100;
+ angle=216.15884;
+ id=20;
+ atlOffset=1.7197507e+027;
+ };
+ class Item11
+ {
+ dataType="Marker";
+ position[]={7444.499,-2.1337248e-018,8541.7168};
+ name="factory_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=150;
+ b=80;
+ angle=137.121;
+ id=19;
+ atlOffset=-7.4899998;
+ };
+ class Item12
+ {
+ dataType="Marker";
+ position[]={4243.7529,5.0194619e+018,8418.4688};
+ name="factory_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=100;
+ b=100;
+ angle=330.80289;
+ id=206;
+ atlOffset=5.0194619e+018;
+ };
+ class Item13
+ {
+ dataType="Marker";
+ position[]={13987.172,1.7197507e+027,12131.255};
+ name="factory_3";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=150;
+ b=100;
+ angle=146.02443;
+ id=207;
+ atlOffset=1.7197507e+027;
+ };
+ class Item14
+ {
+ dataType="Marker";
+ position[]={2287.6694,-2.6757813,6328.0137};
+ name="factory_4";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorOrange";
+ a=74.983437;
+ b=69.612907;
+ angle=218.74934;
+ id=208;
+ atlOffset=-15.887868;
+ };
+ class Item15
+ {
+ dataType="Marker";
+ position[]={7366.6309,7.4899998,8521.2539};
+ name="fact_1_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=772;
+ };
+ class Item16
+ {
+ dataType="Marker";
+ position[]={14044.953,2.55,12266.816};
+ name="fact_3_mortar_3";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=779;
+ };
};
- id=743;
- type="Land_HelipadSquare_F";
+ id=783;
+ atlOffset=1.2091998e+026;
};
- class Item169
+ class Item188
{
dataType="Object";
class PositionInfo
{
- position[]={11639.054,7.25,13193.707};
- angles[]={0,3.431047,0};
+ position[]={11060.741,350.38,11495.545};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=744;
- type="Land_HelipadSquare_F";
+ id=784;
+ type="Land_HelipadCircle_F";
};
- class Item170
+ class Item189
{
dataType="Object";
class PositionInfo
{
- position[]={11606.576,5.2469416,3129.0417};
- angles[]={6.2485328,0.59444803,0.010664274};
+ position[]={11087.933,350.3909,11495.816};
+ angles[]={0,0,6.2698579};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=748;
+ id=785;
type="Land_HelipadCircle_F";
};
- class Item171
+ class Item190
{
dataType="Object";
class PositionInfo
{
- position[]={11585.058,5.56318,3144.6782};
- angles[]={6.2378831,0.59444803,0.018663859};
+ position[]={11117.95,350.38623,11494.217};
+ angles[]={6.2698579,0,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=749;
+ id=786;
type="Land_HelipadCircle_F";
};
- class Item172
+ class Item191
{
dataType="Object";
class PositionInfo
{
- position[]={11562.694,6.0594273,3160.8347};
- angles[]={6.2299027,0.59444803,0.0080009829};
+ position[]={2670.8662,171.66029,12313.188};
+ angles[]={6.2778587,5.7454958,6.2485366};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=750;
+ id=792;
type="Land_HelipadCircle_F";
- atlOffset=1.2874603e-005;
+ atlOffset=-1.5258789e-005;
};
- class Item173
+ class Item192
{
dataType="Object";
class PositionInfo
{
- position[]={11778.776,4.8600001,3005.4443};
- angles[]={0,0.66808051,0};
+ position[]={12033.552,3.3906534,2559.0791};
+ angles[]={0,1.4497226,6.2299027};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=751;
- type="Land_HelipadSquare_F";
+ id=794;
+ type="Land_HelipadCircle_F";
+ atlOffset=0.00010633469;
};
- class Item174
+ class Item193
{
dataType="Object";
class PositionInfo
{
- position[]={11796.58,4.8600001,2992.4148};
- angles[]={0,0.66808051,0};
+ position[]={12155.941,3.4873364,2567.0125};
+ angles[]={6.2299027,2.4072502,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=752;
- type="Land_HelipadSquare_F";
+ id=795;
+ type="Land_HelipadCircle_F";
};
- class Item175
+ class Item194
{
dataType="Object";
class PositionInfo
{
- position[]={11810.881,9.7534237,2970.6555};
- angles[]={0,4.4622369,0};
+ position[]={12044.137,8.3234653,2390.395};
+ angles[]={0,5.7403111,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=755;
+ id=798;
type="Land_Cargo_Patrol_V1_F";
- atlOffset=-0.0015764236;
+ atlOffset=-0.04157877;
};
- class Item176
+ class Item195
{
dataType="Object";
class PositionInfo
{
- position[]={11542.744,11.210489,3168.2876};
- angles[]={0,3.221839,0};
+ position[]={12177.229,7.2554002,2474.8184};
+ angles[]={0,3.0827606,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=756;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=-0.0015764236;
+ id=799;
+ type="Land_Cargo_HQ_V1_F";
};
- class Item177
+ class Item196
{
dataType="Object";
class PositionInfo
{
- position[]={2341.4968,17.039965,3558.5403};
- angles[]={0,2.8887093,0};
+ position[]={12035.339,8.6425495,2517.1138};
+ angles[]={0,1.2595772,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=757;
- type="Land_TentHangar_V1_F";
+ id=800;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=0.15754938;
};
- class Item178
+ class Item197
{
dataType="Object";
class PositionInfo
{
- position[]={2298.3521,17.039965,3546.6008};
- angles[]={0,2.8694155,0};
+ position[]={12187.53,8.4850006,2579.3708};
+ angles[]={0,4.020155,0};
};
side="Empty";
flags=5;
class Attributes
{
};
- id=758;
- type="Land_TentHangar_V1_F";
+ id=801;
+ type="Land_Cargo_Patrol_V1_F";
+ atlOffset=4.7683716e-007;
};
- class Item179
+ class Item198
{
dataType="Object";
class PositionInfo
{
- position[]={2230.2756,12.95,3527.6526};
- angles[]={0,6.0015883,0};
+ position[]={7262.9946,123.39986,12740.502};
+ angles[]={0.071874976,0.90742207,6.2751846};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=760;
- type="Land_HelipadCircle_F";
+ id=803;
+ type="Land_HelipadSquare_F";
+ atlOffset=-7.6293945e-006;
};
- class Item180
+ class Item199
{
dataType="Object";
class PositionInfo
{
- position[]={2199.8513,12.95,3517.9182};
- angles[]={0,6.0015883,0};
+ position[]={12851.293,182.14136,8577.5762};
+ angles[]={6.2618566,0,0.069220692};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=761;
+ id=806;
type="Land_HelipadCircle_F";
};
- class Item181
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2166.7224,12.95,3508.4084};
- angles[]={0,5.9873734,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=762;
- type="Land_HelipadSquare_F";
- };
- class Item182
+ class Item200
{
dataType="Layer";
- name="Airports";
+ name="Outposts";
class Entities
{
- items=23;
+ items=29;
class Item0
{
dataType="Marker";
- position[]={2082.5779,12.95,3480.6121};
- name="airp_4_vehicle_2";
+ position[]={2718.575,168.16901,12342.113};
+ name="outp_10_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=45.602001;
+ a=14.724;
b=6;
- angle=161.92497;
- id=763;
+ angle=325.74292;
+ id=793;
+ atlOffset=0.81913757;
};
class Item1
{
dataType="Marker";
- position[]={2308.5254,11.62353,13191.676};
- name="airp_1_vehicle";
+ position[]={7336.9668,126.718,12805.1};
+ name="outp_12_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.358407;
+ a=14.724;
b=6;
- angle=322.73132;
- id=737;
+ angle=112.57198;
+ id=802;
+ atlOffset=0.81963348;
};
class Item2
{
dataType="Marker";
- position[]={2255.4504,11.599365,13196.549};
- name="airp_1_vehicle_1";
+ position[]={10140.121,406.99799,11776.5};
+ name="outp_1_vehicle_2";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=21.990999;
+ b=6;
+ angle=171.41898;
+ id=789;
+ atlOffset=1.5009155;
+ };
+ class Item3
+ {
+ dataType="Marker";
+ position[]={7431.458,193.395,9736.1191};
+ name="outp_2_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.469999;
+ b=6;
+ angle=145.61197;
+ id=804;
+ atlOffset=-0.00012207031;
+ };
+ class Item4
+ {
+ dataType="Marker";
+ position[]={6011.8682,56.337002,10395.732};
+ name="outp_3_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.469999;
+ b=6;
+ angle=188.01497;
+ id=805;
+ atlOffset=-0.00036239624;
+ };
+ class Item5
+ {
+ dataType="Marker";
+ position[]={11008.649,181.319,4184.3911};
+ name="outp_6_vehicle";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.469999;
+ b=6;
+ angle=315.9469;
+ id=807;
+ atlOffset=0.00032043457;
+ };
+ class Item6
+ {
+ dataType="Marker";
+ position[]={4713.7671,84.865997,3139.3601};
+ name="outp_7_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=20.469999;
+ b=6;
+ angle=251.30298;
+ id=808;
+ atlOffset=0.00024414063;
+ };
+ class Item7
+ {
+ dataType="Marker";
+ position[]={2414.5701,64.331001,7197.937};
+ name="outp_9_vehicle_1";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=12.2;
+ b=6;
+ angle=264.005;
+ id=809;
+ atlOffset=-0.00011444092;
+ };
+ class Item8
+ {
+ dataType="Marker";
+ position[]={11002.235,351.39801,11468.392};
+ name="outp_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=10.667797;
+ a=14.358;
b=6;
- angle=119.60728;
- id=738;
- atlOffset=-0.94572163;
+ angle=180;
+ id=787;
+ atlOffset=3.0517578e-005;
};
- class Item3
+ class Item9
{
dataType="Marker";
- position[]={1951.7731,14.75293,12937.271};
- name="airp_1_vehicle_2";
+ position[]={10988.86,350.38004,11520.33};
+ name="outp_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=20.137188;
+ a=14.358;
b=6;
- angle=144.11099;
- id=739;
- atlOffset=-0.94707012;
+ angle=312.20087;
+ id=788;
+ atlOffset=3.0517578e-005;
};
- class Item4
+ class Item10
{
dataType="Marker";
- position[]={11690.477,6.9499998,13099.836};
- name="airp_2_vehicle";
+ position[]={11054.033,0,11494.828};
+ name="outpost";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=22.386;
- b=6;
- angle=17.517;
- id=745;
+ a=181.69092;
+ b=97.355957;
+ id=22;
+ atlOffset=-350.38;
};
- class Item5
+ class Item11
{
dataType="Marker";
- position[]={11579.28,6.9499998,13135.668};
- name="airp_2_vehicle_1";
+ position[]={10028.207,404.91211,11771.499};
+ name="outpost_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=15.436396;
- b=6;
- angle=200.63635;
- id=746;
+ a=125.02881;
+ b=102.70508;
+ id=182;
+ atlOffset=-4.9578857;
};
- class Item6
+ class Item12
{
dataType="Marker";
- position[]={11742.105,4.6900001,3020.073};
- name="airp_3_vehicle_2";
+ position[]={2684.5491,170.41325,12322.022};
+ name="outpost_10";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=22.386;
- b=6;
- angle=37.32;
- id=753;
+ a=58.491611;
+ b=67.653107;
+ angle=239.394;
+ id=191;
};
- class Item7
+ class Item13
{
dataType="Marker";
- position[]={11674.66,4.8726125,3077.374};
- name="airp_3_vehicle_3";
+ position[]={12114.387,3.5452611,2488.3894};
+ name="outpost_11";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=22.386;
- b=6;
- angle=38.979134;
- id=754;
+ a=155.1949;
+ b=122.86704;
+ angle=157.00845;
+ id=197;
};
- class Item8
+ class Item14
{
dataType="Marker";
- position[]={6817.563,2.6600001,7412.7202};
- name="airp_vehicle";
+ position[]={7304.1992,0,12805.312};
+ name="outpost_12";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=20.198;
- b=6;
- angle=258.38794;
- id=726;
+ a=97.160553;
+ b=100.47148;
+ angle=245.058;
+ id=359;
+ atlOffset=-122.38188;
};
- class Item9
+ class Item15
{
dataType="Marker";
- position[]={6852.8701,2.6600001,7407.5981};
- name="airp_vehicle_1";
+ position[]={11031.42,4.3460913e+018,8466.3398};
+ name="outpost_13";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=17.527323;
- b=6;
- angle=80.001793;
- id=728;
+ a=109.69287;
+ b=88.17334;
+ id=385;
+ atlOffset=4.3460913e+018;
};
- class Item10
+ class Item16
{
dataType="Marker";
- position[]={2129.4917,39.575615,13164.805};
- name="airport_1";
+ position[]={9033.7139,162.623,13305.167};
+ name="outpost_14";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=350;
- b=200;
- angle=323.39874;
- id=174;
- atlOffset=26.129467;
+ colorName="ColorGreen";
+ a=87.72081;
+ b=64.236038;
+ angle=104.0977;
+ id=603;
+ atlOffset=1.165863;
};
- class Item11
+ class Item17
{
dataType="Marker";
- position[]={11847.49,0,13130.965};
- name="airport_2";
+ position[]={7487.0332,1.782996e+012,9652.8242};
+ name="outpost_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=437.10519;
- b=123.27355;
- angle=195.18698;
- id=179;
- atlOffset=-6.9499998;
+ colorName="ColorGreen";
+ a=80;
+ b=80;
+ id=183;
+ atlOffset=1.782996e+012;
};
- class Item12
+ class Item18
{
dataType="Marker";
- position[]={11660.928,0,3161.4478};
- name="airport_3";
+ position[]={6007.9375,-1.3937988,10428.126};
+ name="outpost_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=427.43869;
- b=124.13167;
- angle=216.99487;
- id=180;
- atlOffset=-5.2667356;
+ colorName="ColorGreen";
+ a=67.992432;
+ b=50;
+ id=184;
+ atlOffset=-63.580448;
};
- class Item13
+ class Item19
{
dataType="Marker";
- position[]={2201.4783,12.95,3502.1121};
- name="airport_4";
+ position[]={12879.342,0,8577.498};
+ name="outpost_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorEAST";
- a=322.32379;
- b=130.21062;
- angle=163.07294;
- id=181;
+ colorName="ColorGreen";
+ a=56.727051;
+ b=53.245117;
+ id=185;
+ atlOffset=-182.60187;
};
- class Item14
+ class Item20
{
dataType="Marker";
- position[]={7064.5781,2.5280001,7365.9419};
- name="airport";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorEAST";
- a=282.12701;
- b=395.642;
- angle=348.02991;
- id=698;
- atlOffset=-0.13199997;
+ position[]={6628.6401,1.8181432e+019,7856.3931};
+ name="outpost_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=50;
+ b=50;
+ angle=130.597;
+ id=186;
+ atlOffset=1.8181432e+019;
};
- class Item15
+ class Item21
{
dataType="Marker";
- position[]={6836.5,2.6600001,7308.5};
- name="airp_mortar_1";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- angle=219.04875;
- id=730;
+ position[]={11019.162,4.4101563,4213.5776};
+ name="outpost_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=62.983974;
+ b=64.560669;
+ angle=247.431;
+ id=187;
+ atlOffset=-178.11049;
};
- class Item16
+ class Item22
{
dataType="Marker";
- position[]={7062.4751,2.6600001,7408.6851};
- name="airp_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=729;
+ position[]={4696.688,0,3163.7839};
+ name="outpost_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=50;
+ b=50;
+ angle=161.63795;
+ id=188;
+ atlOffset=-88.578438;
};
- class Item17
+ class Item23
{
dataType="Marker";
- position[]={11787.7,7.25,13150.864};
- name="airp_2_mortar";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=747;
+ position[]={2672.458,0,2583.1741};
+ name="outpost_8";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=50;
+ b=50;
+ angle=126.466;
+ id=189;
+ atlOffset=-214.47472;
};
- class Item18
+ class Item24
{
dataType="Marker";
- position[]={2270.7209,13.45,13383.008};
- name="airp_1_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=736;
+ position[]={2394.196,4.4619592e-021,7234.3418};
+ name="outpost_9";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=70;
+ b=50;
+ id=190;
+ atlOffset=-67.663582;
};
- class Item19
+ class Item25
{
dataType="Marker";
- position[]={2229.8899,13.078,13205.34};
- name="airp_1_mortar_1";
+ position[]={10045.5,409.87,11767.539};
+ name="outp_1_mortar_2";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=8.2089996;
b=8.0620003;
- id=867;
- atlOffset=5.7220459e-006;
+ id=790;
};
- class Item20
+ class Item26
{
dataType="Marker";
- position[]={6884,2.6600001,7444.5};
- name="airp_mortar_2";
+ position[]={12122.822,7.4299998,2468.9666};
+ name="outp_11_mortar_1";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
- a=5.7296791;
- b=5.1925688;
- angle=219.04875;
- id=868;
+ a=8.2089996;
+ b=8.0620003;
+ id=797;
};
- class Item21
+ class Item27
{
dataType="Marker";
- position[]={2144.5,12.95,3503.5};
- name="airp_4_mortar_1";
+ position[]={12091.459,7.4299998,2502.563};
+ name="outp_11_mortar";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=8.2089996;
b=8.0620003;
- id=869;
+ id=796;
};
- class Item22
+ class Item28
{
dataType="Marker";
- position[]={2099,12.791338,3416};
- name="airp_4_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=6.594471;
- angle=349.46942;
- id=870;
+ position[]={2557.0723,-27.044952,9039.1172};
+ name="outpost_15";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorGreen";
+ a=70;
+ b=50;
+ angle=258.68814;
+ id=863;
+ atlOffset=-67.663582;
};
};
- id=764;
- atlOffset=23.520565;
+ id=810;
+ atlOffset=3.5775875e+016;
};
- class Item183
+ class Item201
{
dataType="Object";
class PositionInfo
{
- position[]={7519.7168,7.4899998,8550.5068};
- angles[]={0,5.4845257,0};
+ position[]={11141.023,94.625191,7902.5029};
+ angles[]={5.9783278,4.7552395,0.039979152};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=767;
+ id=811;
type="Land_HelipadCircle_F";
+ atlOffset=-0.0001449585;
};
- class Item184
+ class Item202
{
dataType="Object";
class PositionInfo
{
- position[]={7533.5332,7.4899998,8565.3223};
- angles[]={0,5.4845257,0};
+ position[]={11139.286,91.022621,7880.4648};
+ angles[]={6.0077043,4.7321076,0.02666023};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=768;
+ id=812;
type="Land_HelipadCircle_F";
};
- class Item185
+ class Item203
{
dataType="Object";
class PositionInfo
{
- position[]={4259.3701,3.7740436,8446.542};
- angles[]={6.2458706,1.635178,0.037314966};
+ position[]={11714.315,18.959999,7010.1431};
+ angles[]={0,0.91150618,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=773;
+ id=817;
type="Land_HelipadCircle_F";
};
- class Item186
+ class Item204
{
dataType="Object";
class PositionInfo
{
- position[]={4259.2207,3.591131,8475.3389};
- angles[]={6.2751846,1.635178,0.053282689};
+ position[]={11705.21,150.04536,10195.911};
+ angles[]={6.2671833,5.1947112,0.082482211};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=774;
+ id=819;
type="Land_HelipadCircle_F";
+ atlOffset=6.1035156e-005;
};
- class Item187
+ class Item205
{
dataType="Object";
class PositionInfo
{
- position[]={2273.7751,13.084597,6331.0508};
- angles[]={0.0053265258,0.32548028,0.0080009829};
+ position[]={11722.11,150.0403,10226.516};
+ angles[]={0.0026744273,5.1947112,0.074531749};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=782;
+ id=820;
type="Land_HelipadCircle_F";
+ atlOffset=6.1035156e-005;
};
- class Item188
+ class Item206
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12312.503,190.05493,10256.695};
+ angles[]={6.2805109,1.4752672,0.12205864};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=821;
+ type="Land_HelipadCircle_F";
+ };
+ class Item207
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={12306.923,189.97144,10281.584};
+ angles[]={0.013332055,1.0587685,0.018663859};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=822;
+ type="Land_HelipadCircle_F";
+ };
+ class Item208
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8876.1436,4.79598,6636.1196};
+ angles[]={6.1901217,4.5056667,6.2378831};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=826;
+ type="Land_HelipadCircle_F";
+ atlOffset=-2.0027161e-005;
+ };
+ class Item209
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={8880.1641,3.0980871,6615.8203};
+ angles[]={6.2378845,4.4743004,0.0053265258};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=827;
+ type="Land_HelipadCircle_F";
+ };
+ class Item210
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9402.4121,41.704609,7568.0669};
+ angles[]={6.2805333,1.5771431,0.0026520467};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=829;
+ type="Land_HelipadSquare_F";
+ atlOffset=-3.8146973e-006;
+ };
+ class Item211
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5540.3779,4.1103911,11985.606};
+ angles[]={0,3.7989879,0.018660666};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=832;
+ type="Land_HelipadSquare_F";
+ atlOffset=-3.3378601e-006;
+ };
+ class Item212
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={5461.8545,4.04,11894.1};
+ angles[]={0,5.2854819,0};
+ };
+ side="Empty";
+ flags=4;
+ class Attributes
+ {
+ disableSimulation=1;
+ };
+ id=833;
+ type="Land_HelipadCircle_F";
+ };
+ class Item213
{
dataType="Layer";
- name="Factories";
+ name="Resources";
class Entities
{
- items=17;
+ items=20;
class Item0
{
dataType="Marker";
- position[]={7445.1372,7.4899998,8500.6172};
- name="fact_1_vehicle";
+ position[]={12391.104,30.995001,7877.248};
+ name="reso_1_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=9.9700003;
+ a=20.469999;
b=6;
- angle=312.59784;
- id=769;
+ angle=259.88397;
+ id=814;
+ atlOffset=-0.00071144104;
};
class Item1
{
dataType="Marker";
- position[]={7484.8467,7.5199485,8558.6182};
- name="fact_1_vehicle_1";
+ position[]={11749.992,18.261,6918.334};
+ name="reso_2_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.312172;
+ a=9.9069996;
b=6;
- angle=273.98151;
- id=770;
- atlOffset=0.003098011;
+ angle=328.56592;
+ id=815;
+ atlOffset=0.78619957;
};
class Item2
{
- dataType="Marker";
- position[]={7396.4849,7.3853054,8420.4336};
- name="fact_1_vehicle_2";
+ dataType="Marker";
+ position[]={11746.982,16.769958,6888.104};
+ name="reso_2_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.312172;
+ a=9.9069996;
b=6;
- angle=239.0217;
- id=771;
+ angle=234.88091;
+ id=816;
+ atlOffset=0.97342968;
};
class Item3
{
dataType="Marker";
- position[]={4178.7085,3.582,8387.6611};
- name="fact_2_vehicle";
+ position[]={5515.2959,4.8260002,11968.466};
+ name="reso_6_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=23.026833;
+ a=19.632999;
b=6;
- angle=153.95737;
- id=775;
- atlOffset=0.165838;
+ angle=309.76492;
+ id=831;
+ atlOffset=0.78600025;
};
class Item4
{
dataType="Marker";
- position[]={4350.9448,4.8281031,8427.7354};
- name="fact_2_vehicle_1";
+ position[]={11785.289,158.909,10265.006};
+ name="reso_3_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.283346;
+ a=31.993;
b=6;
- angle=336.34869;
- id=776;
+ angle=186.02695;
+ id=818;
+ atlOffset=1.7094421;
};
class Item5
{
dataType="Marker";
- position[]={14073.85,2.55,12204.248};
- name="fact_3_vehicle_3";
+ position[]={12274.201,182.89944,10371.215};
+ name="reso_3_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=16.402;
+ a=17.872005;
b=6;
- angle=237.97299;
- id=777;
+ angle=166.72569;
+ id=823;
+ atlOffset=1.7094421;
};
class Item6
{
dataType="Marker";
- position[]={2331.697,13.262,6355.2012};
- name="fact_4_vehicle_3";
+ position[]={8879.5566,6.1360002,6686.6128};
+ name="reso_4_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=13.349;
+ a=21.087;
b=6;
- angle=121.61598;
- id=780;
- atlOffset=0.00028610229;
+ angle=161.105;
+ id=828;
+ atlOffset=0.96119213;
};
class Item7
{
dataType="Marker";
- position[]={2222.3784,10.86062,6319.5674};
- name="fact_4_vehicle_4";
+ position[]={9463.8105,42.598999,7531.5508};
+ name="reso_5_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=13.349;
+ a=27.031;
b=6;
- angle=196.2906;
- id=781;
- atlOffset=-9.5367432e-007;
+ angle=275.254;
+ id=830;
+ atlOffset=0.73569107;
};
class Item8
{
dataType="Marker";
- position[]={8488.6934,19.43,10226.28};
- name="fact_vehicle";
+ position[]={8857.1807,187.39999,11861.73};
+ name="reso_7_vehicle_3";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=19.924;
+ a=15.85;
b=6;
- angle=213.43794;
- id=765;
+ angle=184.02693;
+ id=834;
+ atlOffset=1.6584015;
};
class Item9
{
dataType="Marker";
- position[]={8417.9219,19.43,10247.556};
- name="fact_vehicle_1";
+ position[]={11195.073,91.431,7890.6592};
+ name="reso_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=19.924;
+ a=20.469999;
b=6;
- angle=193.40956;
- id=766;
+ angle=191.44501;
+ id=813;
+ atlOffset=-0.00035095215;
};
class Item10
{
dataType="Marker";
- position[]={8353.2129,1.7197507e+027,10323.416};
- name="factory";
+ position[]={11063.061,-5.561666e-034,7914.4282};
+ name="resource";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=150;
+ colorName="ColorBrown";
+ a=200;
b=100;
- angle=216.15884;
- id=20;
- atlOffset=1.7197507e+027;
+ angle=190.62489;
+ id=21;
+ atlOffset=-94.23735;
};
class Item11
{
dataType="Marker";
- position[]={7444.499,-2.1337248e-018,8541.7168};
- name="factory_1";
+ position[]={12399.69,-2.4187405e-033,7829.9102};
+ name="resource_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=150;
- b=80;
- angle=137.121;
- id=19;
- atlOffset=-7.4899998;
+ colorName="ColorBrown";
+ a=100;
+ b=50;
+ angle=84.14196;
+ id=199;
+ atlOffset=-32.302212;
};
class Item12
{
dataType="Marker";
- position[]={4243.7529,5.0194619e+018,8418.4688};
- name="factory_2";
+ position[]={11742.922,0,6933.8647};
+ name="resource_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
+ colorName="ColorBrown";
a=100;
- b=100;
- angle=330.80289;
- id=206;
- atlOffset=5.0194619e+018;
+ b=50;
+ angle=241.38098;
+ id=200;
+ atlOffset=-18.562902;
};
class Item13
{
dataType="Marker";
- position[]={13987.172,1.7197507e+027,12131.255};
- name="factory_3";
+ position[]={11914.527,2.8714324e+037,10292.789};
+ name="resource_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=150;
- b=100;
- angle=146.02443;
- id=207;
- atlOffset=1.7197507e+027;
+ colorName="ColorBrown";
+ a=300;
+ b=414.61935;
+ angle=274.83386;
+ id=201;
+ atlOffset=2.8714324e+037;
};
class Item14
{
dataType="Marker";
- position[]={2287.6694,-2.6757813,6328.0137};
- name="factory_4";
+ position[]={8830.1475,2.8714324e+037,6643.9351};
+ name="resource_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorOrange";
- a=74.983437;
- b=69.612907;
- angle=218.74934;
- id=208;
- atlOffset=-15.887868;
+ colorName="ColorBrown";
+ a=100;
+ b=80;
+ angle=162.50697;
+ id=202;
+ atlOffset=2.8714324e+037;
};
class Item15
{
dataType="Marker";
- position[]={7366.6309,7.4899998,8521.2539};
- name="fact_1_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=772;
+ position[]={9424.9971,2.8714324e+037,7499.625};
+ name="resource_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=60;
+ b=80;
+ angle=178.66571;
+ id=203;
+ atlOffset=2.8714324e+037;
};
class Item16
{
dataType="Marker";
- position[]={14044.953,2.55,12266.816};
- name="fact_3_mortar_3";
+ position[]={5495.6045,2.8714324e+037,11951.959};
+ name="resource_6";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=74.848274;
+ angle=215.83766;
+ id=204;
+ atlOffset=2.8714324e+037;
+ };
+ class Item17
+ {
+ dataType="Marker";
+ position[]={8864.4775,0,11920.42};
+ name="resource_7";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorBrown";
+ a=50;
+ b=50;
+ angle=67.956985;
+ id=205;
+ atlOffset=-183.87277;
+ };
+ class Item18
+ {
+ dataType="Marker";
+ position[]={12207.41,202.92799,10504.671};
+ name="reso_3_mortar_4";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=8.2089996;
b=8.0620003;
- id=779;
+ id=825;
+ atlOffset=-9.1552734e-005;
+ };
+ class Item19
+ {
+ dataType="Marker";
+ position[]={12131.879,216.38901,10361.087};
+ name="reso_3_mortar_2";
+ markerType="ELLIPSE";
+ type="ellipse";
+ colorName="ColorYellow";
+ a=8.2089996;
+ b=8.0620003;
+ id=824;
+ atlOffset=-0.00012207031;
};
};
- id=783;
- atlOffset=1.2091998e+026;
- };
- class Item189
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11060.741,350.38,11495.545};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=784;
- type="Land_HelipadCircle_F";
- };
- class Item190
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11087.933,350.3909,11495.816};
- angles[]={0,0,6.2698579};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=785;
- type="Land_HelipadCircle_F";
+ id=836;
+ atlOffset=3.3649598e+036;
};
- class Item191
+ class Item214
{
dataType="Object";
class PositionInfo
{
- position[]={11117.95,350.38623,11494.217};
- angles[]={6.2698579,0,0};
+ position[]={5378.1025,2.21,10130.181};
+ angles[]={0,3.1346879,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=786;
- type="Land_HelipadCircle_F";
+ id=839;
+ type="Land_HelipadSquare_F";
};
- class Item192
+ class Item215
{
dataType="Object";
class PositionInfo
{
- position[]={2670.8662,171.66029,12313.188};
- angles[]={6.2778587,5.7454958,6.2485366};
+ position[]={5406.3584,2.21,10130.243};
+ angles[]={0,3.1628277,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=792;
- type="Land_HelipadCircle_F";
+ id=840;
+ type="Land_HelipadSquare_F";
};
- class Item193
+ class Item216
{
dataType="Object";
class PositionInfo
{
- position[]={12033.552,3.3906534,2559.0791};
- angles[]={0,1.4497226,6.2299027};
+ position[]={9803.9082,2.3099999,13617.943};
+ angles[]={0,1.7441468,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=794;
- type="Land_HelipadCircle_F";
- atlOffset=0.00010633469;
+ id=843;
+ type="Land_HelipadSquare_F";
};
- class Item194
+ class Item217
{
dataType="Object";
class PositionInfo
{
- position[]={12155.941,3.4873364,2567.0125};
- angles[]={6.2299027,2.4072502,0};
+ position[]={13233.026,2.55,12496.956};
+ angles[]={0,5.7113914,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=795;
- type="Land_HelipadCircle_F";
- };
- class Item195
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12044.137,8.3234653,2390.395};
- angles[]={0,5.7403111,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=798;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=-0.04157877;
- };
- class Item196
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12177.229,7.2554002,2474.8184};
- angles[]={0,3.0827606,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=799;
- type="Land_Cargo_HQ_V1_F";
- };
- class Item197
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12035.339,8.6425495,2517.1138};
- angles[]={0,1.2595772,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=800;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=0.15754938;
- };
- class Item198
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12187.53,8.4850006,2579.3708};
- angles[]={0,4.020155,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=801;
- type="Land_Cargo_Patrol_V1_F";
- atlOffset=4.7683716e-007;
+ id=847;
+ type="Land_HelipadSquare_F";
};
- class Item199
+ class Item218
{
dataType="Object";
class PositionInfo
{
- position[]={7262.9946,123.39986,12740.502};
- angles[]={0.071874976,0.90742207,6.2751846};
+ position[]={13265.007,2.55,12517.328};
+ angles[]={0,5.7113914,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=803;
+ id=848;
type="Land_HelipadSquare_F";
};
- class Item200
+ class Item219
{
dataType="Object";
class PositionInfo
{
- position[]={12851.293,182.14136,8577.5762};
- angles[]={6.2618566,0,0.069220692};
+ position[]={13300.098,2.55,12539.419};
+ angles[]={0,5.7505007,0};
};
side="Empty";
flags=4;
class Attributes
{
+ disableSimulation=1;
};
- id=806;
- type="Land_HelipadCircle_F";
+ id=849;
+ type="Land_HelipadSquare_F";
};
- class Item201
+ class Item220
{
dataType="Layer";
- name="Outposts";
+ name="Seaports";
class Entities
{
- items=29;
- class Item0
- {
- dataType="Marker";
- position[]={2718.575,168.16901,12342.113};
- name="outp_10_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.724;
- b=6;
- angle=325.74292;
- id=793;
- atlOffset=0.81913757;
- };
- class Item1
- {
- dataType="Marker";
- position[]={7336.9668,126.718,12805.1};
- name="outp_12_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.724;
- b=6;
- angle=112.57198;
- id=802;
- atlOffset=0.81963348;
- };
- class Item2
- {
- dataType="Marker";
- position[]={10140.121,406.99799,11776.5};
- name="outp_1_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=21.990999;
- b=6;
- angle=171.41898;
- id=789;
- atlOffset=1.5009155;
- };
- class Item3
- {
- dataType="Marker";
- position[]={7431.458,193.395,9736.1191};
- name="outp_2_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=145.61197;
- id=804;
- atlOffset=-0.00012207031;
- };
- class Item4
- {
- dataType="Marker";
- position[]={6011.8682,56.337002,10395.732};
- name="outp_3_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=188.01497;
- id=805;
- atlOffset=-0.00036239624;
- };
- class Item5
- {
- dataType="Marker";
- position[]={11008.649,181.319,4184.3911};
- name="outp_6_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=315.9469;
- id=807;
- atlOffset=0.00032043457;
- };
- class Item6
- {
- dataType="Marker";
- position[]={4713.7671,84.865997,3139.3601};
- name="outp_7_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=251.30298;
- id=808;
- atlOffset=0.00024414063;
- };
- class Item7
- {
- dataType="Marker";
- position[]={2414.5701,64.331001,7197.937};
- name="outp_9_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=12.2;
- b=6;
- angle=264.005;
- id=809;
- atlOffset=-0.00011444092;
- };
- class Item8
+ items=19;
+ class Item0
{
dataType="Marker";
- position[]={11002.235,351.39801,11468.392};
- name="outp_vehicle";
+ position[]={9926.2949,3.096,13545.935};
+ name="seap_1_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.358;
+ a=8.1630001;
b=6;
- angle=180;
- id=787;
- atlOffset=3.0517578e-005;
+ angle=5.967;
+ id=844;
+ atlOffset=0.78600001;
};
- class Item9
+ class Item1
{
dataType="Marker";
- position[]={10988.86,350.38004,11520.33};
- name="outp_vehicle_1";
+ position[]={10045.477,3.096,13537.958};
+ name="seap_1_vehicle_3";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=14.358;
+ a=14.69718;
b=6;
- angle=312.20087;
- id=788;
- atlOffset=3.0517578e-005;
- };
- class Item10
- {
- dataType="Marker";
- position[]={11054.033,0,11494.828};
- name="outpost";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=181.69092;
- b=97.355957;
- id=22;
- atlOffset=-350.38;
+ angle=2.9611008;
+ id=846;
+ atlOffset=0.78600001;
};
- class Item11
+ class Item2
{
dataType="Marker";
- position[]={10028.207,404.91211,11771.499};
- name="outpost_1";
+ position[]={13175.366,3.336,12401.689};
+ name="seap_2_vehicle_4";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=125.02881;
- b=102.70508;
- id=182;
- atlOffset=-4.9578857;
+ a=25.462;
+ b=6;
+ angle=239.75392;
+ id=850;
+ atlOffset=0.78600001;
};
- class Item12
+ class Item3
{
dataType="Marker";
- position[]={2684.5491,170.41325,12322.022};
- name="outpost_10";
+ position[]={13363.21,3.336,12134.26};
+ name="seap_2_vehicle_5";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=58.491611;
- b=67.653107;
- angle=239.394;
- id=191;
+ a=48.355259;
+ b=6;
+ angle=201.9048;
+ id=852;
+ atlOffset=0.78600001;
};
- class Item13
+ class Item4
{
dataType="Marker";
- position[]={12114.387,3.5452611,2488.3894};
- name="outpost_11";
+ position[]={11692.045,3.846,2759.4641};
+ name="seap_3_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=155.1949;
- b=122.86704;
- angle=157.00845;
- id=197;
+ a=18.922001;
+ b=6;
+ angle=87.263;
+ id=853;
+ atlOffset=0.78600001;
};
- class Item14
+ class Item5
{
dataType="Marker";
- position[]={7304.1992,0,12805.312};
- name="outpost_12";
+ position[]={5559.8042,2.289,4033.8689};
+ name="seap_4_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=97.160553;
- b=100.47148;
- angle=245.058;
- id=359;
- atlOffset=-122.38188;
+ a=11.104;
+ b=6;
+ angle=135.69296;
+ id=854;
+ atlOffset=0.76751328;
};
- class Item15
+ class Item6
{
dataType="Marker";
- position[]={11031.42,4.3460913e+018,8466.3398};
- name="outpost_13";
+ position[]={5637.5068,2.1575131,4027.7695};
+ name="seap_4_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=109.69287;
- b=88.17334;
- id=385;
- atlOffset=4.3460913e+018;
+ a=8.779129;
+ b=6;
+ angle=312.65286;
+ id=855;
+ atlOffset=0.76751316;
};
- class Item16
+ class Item7
{
dataType="Marker";
- position[]={9033.7139,162.623,13305.167};
- name="outpost_14";
+ position[]={1719.467,2.171,11975.972};
+ name="seap_5_vehicle_2";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=87.72081;
- b=64.236038;
- angle=104.0977;
- id=603;
- atlOffset=1.165863;
+ a=17.912001;
+ b=6;
+ angle=62.794994;
+ id=856;
+ atlOffset=0.74228048;
};
- class Item17
+ class Item8
{
dataType="Marker";
- position[]={7487.0332,1.782996e+012,9652.8242};
- name="outpost_2";
+ position[]={1698.0518,2.1695347,12010.122};
+ name="seap_5_vehicle_3";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=80;
- b=80;
- id=183;
- atlOffset=1.782996e+012;
+ a=17.912001;
+ b=6;
+ angle=60.981033;
+ id=857;
+ atlOffset=0.74228048;
};
- class Item18
+ class Item9
{
dataType="Marker";
- position[]={6007.9375,-1.3937988,10428.126};
- name="outpost_3";
+ position[]={5463.04,2.9960001,10068.318};
+ name="seap_vehicle";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=67.992432;
- b=50;
- id=184;
- atlOffset=-63.580448;
+ a=18.954;
+ b=6;
+ angle=162.29193;
+ id=837;
+ atlOffset=0.78600001;
};
- class Item19
+ class Item10
{
dataType="Marker";
- position[]={12879.342,0,8577.498};
- name="outpost_4";
+ position[]={5199.0396,4.2420912,10007.934};
+ name="seap_vehicle_1";
markerType="RECTANGLE";
type="rectangle";
colorName="ColorGreen";
- a=56.727051;
- b=53.245117;
- id=185;
- atlOffset=-182.60187;
+ a=12.638967;
+ b=6;
+ angle=281.4566;
+ id=838;
+ atlOffset=0.81891489;
};
- class Item20
+ class Item11
{
dataType="Marker";
- position[]={6628.6401,1.8181432e+019,7856.3931};
- name="outpost_5";
+ position[]={5361.0322,2.21,10077.443};
+ name="seaport";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=50;
- b=50;
- angle=130.597;
- id=186;
- atlOffset=1.8181432e+019;
+ colorName="ColorWEST";
+ a=168.77954;
+ b=117.86035;
+ id=23;
};
- class Item21
+ class Item12
{
dataType="Marker";
- position[]={11019.162,4.4101563,4213.5776};
- name="outpost_6";
+ position[]={9914.6182,0,13590.578};
+ name="seaport_1";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=62.983974;
- b=64.560669;
- angle=247.431;
- id=187;
- atlOffset=-178.11049;
+ colorName="ColorWEST";
+ a=164.80374;
+ b=79.520996;
+ angle=8.9005032;
+ id=192;
+ atlOffset=-2.3099999;
};
- class Item22
+ class Item13
{
dataType="Marker";
- position[]={4696.688,0,3163.7839};
- name="outpost_7";
+ position[]={13334.84,0,12379.788};
+ name="seaport_2";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=50;
- b=50;
- angle=161.63795;
- id=188;
- atlOffset=-88.578438;
+ colorName="ColorWEST";
+ a=200;
+ b=200;
+ angle=237.51813;
+ id=193;
+ atlOffset=-2.55;
};
- class Item23
+ class Item14
{
dataType="Marker";
- position[]={2672.458,0,2583.1741};
- name="outpost_8";
+ position[]={11774.358,0.85009766,2744.5486};
+ name="seaport_3";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=50;
- b=50;
- angle=126.466;
- id=189;
- atlOffset=-214.47472;
+ colorName="ColorWEST";
+ a=150;
+ b=100;
+ id=194;
+ atlOffset=-2.2099023;
};
- class Item24
+ class Item15
{
dataType="Marker";
- position[]={2394.196,4.4619592e-021,7234.3418};
- name="outpost_9";
+ position[]={5594.9302,1.39,3996.49};
+ name="seaport_4";
markerType="RECTANGLE";
type="rectangle";
- colorName="ColorGreen";
- a=70;
- b=50;
- id=190;
- atlOffset=-67.663582;
+ colorName="ColorWEST";
+ a=100;
+ b=75;
+ angle=128.368;
+ id=195;
};
- class Item25
+ class Item16
{
dataType="Marker";
- position[]={10045.5,409.87,11767.539};
- name="outp_1_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=790;
+ position[]={1741.0649,-3.6915083,11959.301};
+ name="seaport_5";
+ markerType="RECTANGLE";
+ type="rectangle";
+ colorName="ColorWEST";
+ a=80;
+ b=100;
+ angle=254.67094;
+ id=196;
+ atlOffset=-5.5342383;
};
- class Item26
+ class Item17
{
dataType="Marker";
- position[]={12122.822,7.4299998,2468.9666};
- name="outp_11_mortar_1";
+ position[]={9929.4102,-6.7270002,13681.669};
+ name="seap_1_mortar_3";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=8.2089996;
b=8.0620003;
- id=797;
+ id=842;
+ atlOffset=0.0004119873;
};
- class Item27
+ class Item18
{
dataType="Marker";
- position[]={12091.459,7.4299998,2502.563};
- name="outp_11_mortar";
+ position[]={5359.3052,2.21,10229.499};
+ name="seap_mortar_2";
markerType="ELLIPSE";
type="ellipse";
colorName="ColorYellow";
a=8.2089996;
b=8.0620003;
- id=796;
- };
- class Item28
- {
- dataType="Marker";
- position[]={2557.0723,-27.044952,9039.1172};
- name="outpost_15";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=70;
- b=50;
- angle=258.68814;
- id=863;
- atlOffset=-67.663582;
+ id=841;
};
};
- id=810;
- atlOffset=3.5775875e+016;
- };
- class Item202
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11141.023,94.625191,7902.5029};
- angles[]={5.9783278,4.7552395,0.039979152};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=811;
- type="Land_HelipadCircle_F";
+ id=858;
+ atlOffset=-33.276302;
};
- class Item203
+ class Item221
{
dataType="Object";
class PositionInfo
{
- position[]={11139.286,91.022621,7880.4648};
- angles[]={6.0077043,4.7321076,0.02666023};
+ position[]={2564.1733,48.122353,9042.0791};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=812;
- type="Land_HelipadCircle_F";
+ id=859;
+ type="Land_ControlTower_01_F";
+ atlOffset=0.022064209;
};
- class Item204
+ class Item222
{
dataType="Object";
class PositionInfo
{
- position[]={11714.315,18.959999,7010.1431};
- angles[]={0,0.91150618,0};
+ position[]={2550.2605,44.226475,9069.4053};
+ angles[]={0,2.2690396,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=817;
- type="Land_HelipadCircle_F";
+ id=860;
+ type="Land_Cargo_Patrol_V4_F";
};
- class Item205
+ class Item223
{
dataType="Object";
class PositionInfo
{
- position[]={11705.21,150.04536,10195.911};
- angles[]={6.2671833,5.1947112,0.082482211};
+ position[]={2544.3628,44.636456,9039.5664};
+ angles[]={0,1.6726182,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=819;
- type="Land_HelipadCircle_F";
- atlOffset=6.1035156e-005;
+ id=861;
+ type="Land_Cargo_Patrol_V4_F";
};
- class Item206
+ class Item224
{
- dataType="Object";
- class PositionInfo
- {
- position[]={11722.11,150.0403,10226.516};
- angles[]={0.0026744273,5.1947112,0.074531749};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=820;
- type="Land_HelipadCircle_F";
- atlOffset=6.1035156e-005;
+ dataType="Marker";
+ position[]={2113,4.3460913e+018,8374};
+ name="control_52";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=32.497253;
+ b=37.803223;
+ id=864;
+ atlOffset=4.3460913e+018;
};
- class Item207
+ class Item225
{
- dataType="Object";
- class PositionInfo
- {
- position[]={12312.503,190.05493,10256.695};
- angles[]={6.2805109,1.4752672,0.12205864};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=821;
- type="Land_HelipadCircle_F";
+ dataType="Marker";
+ position[]={4903.9785,4.3228164,8530.4082};
+ name="seaSpawn_33";
+ type="Empty";
+ id=865;
+ atlOffset=4.7259989;
};
- class Item208
+ class Item226
{
- dataType="Object";
- class PositionInfo
- {
- position[]={12306.923,189.97144,10281.584};
- angles[]={0.013332055,1.0587685,0.018663859};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=822;
- type="Land_HelipadCircle_F";
+ dataType="Marker";
+ position[]={5010.6436,4.7579079,8473.7617};
+ name="seaSpawn_34";
+ type="Empty";
+ id=866;
+ atlOffset=4.7259989;
};
- class Item209
+ class Item227
{
dataType="Object";
class PositionInfo
{
- position[]={8876.1436,4.79598,6636.1196};
- angles[]={6.1901217,4.5056667,6.2378831};
+ position[]={12234.5,11.859666,12939};
+ angles[]={0,0.30171326,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=826;
- type="Land_HelipadCircle_F";
+ id=871;
+ type="Land_Cargo_Patrol_V4_F";
};
- class Item210
+ class Item228
{
- dataType="Object";
+ dataType="Logic";
class PositionInfo
{
- position[]={8880.1641,3.0980871,6615.8203};
- angles[]={6.2378845,4.4743004,0.0053265258};
+ position[]={12232.098,6.9521437,12930.928};
};
- side="Empty";
- flags=4;
- class Attributes
+ areaSize[]={5,-1,5};
+ flags=1;
+ id=872;
+ type="ModuleHideTerrainObjects_F";
+ atlOffset=4.7683716e-007;
+ class CustomAttributes
{
+ class Attribute0
+ {
+ property="#filter";
+ expression="_this setVariable [""#filter"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=4;
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="#hideLocally";
+ expression="_this setVariable [""#hideLocally"",_value]";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "BOOL"
+ };
+ };
+ value=0;
+ };
+ };
+ };
+ nAttributes=2;
};
- id=827;
- type="Land_HelipadCircle_F";
};
- class Item211
+ class Item229
{
dataType="Object";
class PositionInfo
{
- position[]={9402.4121,41.704609,7568.0669};
- angles[]={6.2805333,1.5771431,0.0026520467};
+ position[]={11667,11.855,13097.5};
+ angles[]={0,0.34413719,0};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=829;
- type="Land_HelipadSquare_F";
+ id=873;
+ type="Land_Cargo_Patrol_V4_F";
+ atlOffset=-4.7683716e-007;
};
- class Item212
+ class Item230
+ {
+ dataType="Marker";
+ position[]={12588.62,12.005551,12606.07};
+ name="control_53";
+ markerType="RECTANGLE";
+ type="rectangle";
+ a=50;
+ b=50;
+ id=874;
+ atlOffset=0.025326729;
+ };
+ class Item231
{
dataType="Object";
class PositionInfo
{
- position[]={5540.3779,4.1103911,11985.606};
- angles[]={0,3.7989879,0.018660666};
+ position[]={2566.0698,55.171875,9016.1328};
};
side="Empty";
- flags=4;
+ flags=5;
class Attributes
{
};
- id=832;
- type="Land_HelipadSquare_F";
+ id=875;
+ type="Land_Communication_F";
+ atlOffset=0.0031356812;
};
- class Item213
+ class Item232
{
- dataType="Object";
+ dataType="Logic";
class PositionInfo
{
- position[]={5461.8545,4.04,11894.1};
- angles[]={0,5.2854819,0};
+ position[]={9185.168,220.84666,8724.4121};
};
- side="Empty";
- flags=4;
- class Attributes
+ name="HC_commanderX";
+ id=876;
+ type="HighCommand";
+ };
+ class Item233
+ {
+ dataType="Logic";
+ class PositionInfo
{
+ position[]={9188.5684,220.62469,8724.3184};
};
- id=833;
- type="Land_HelipadCircle_F";
+ id=877;
+ type="HighCommandSubordinate";
};
- class Item214
+ class Item234
{
- dataType="Layer";
- name="Resources";
+ dataType="Group";
+ side="Independent";
class Entities
{
- items=20;
+ items=38;
class Item0
{
- dataType="Marker";
- position[]={12391.104,30.995001,7877.248};
- name="reso_1_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=259.88397;
- id=814;
- atlOffset=-0.00071144104;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9203.3613,222.14798,8730.3389};
+ };
+ side="Independent";
+ flags=3;
+ class Attributes
+ {
+ name="commanderX";
+ description="Default Commander";
+ isPlayer=1;
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=879;
+ type="I_G_Soldier_TL_F";
+ atlOffset=2.2093964;
+ class CustomAttributes
+ {
+ class Attribute0
+ {
+ property="speaker";
+ expression="_this setspeaker _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "STRING"
+ };
+ };
+ value="Male04GRE";
+ };
+ };
+ };
+ class Attribute1
+ {
+ property="pitch";
+ expression="_this setpitch _value;";
+ class Value
+ {
+ class data
+ {
+ class type
+ {
+ type[]=
+ {
+ "SCALAR"
+ };
+ };
+ value=1;
+ };
+ };
+ };
+ nAttributes=2;
+ };
};
class Item1
{
- dataType="Marker";
- position[]={11749.992,18.261,6918.334};
- name="reso_2_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=9.9069996;
- b=6;
- angle=328.56592;
- id=815;
- atlOffset=0.78619957;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9208.1563,221.14172,8727.6357};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=880;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.5630188;
};
class Item2
{
- dataType="Marker";
- position[]={11746.982,16.769958,6888.104};
- name="reso_2_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=9.9069996;
- b=6;
- angle=234.88091;
- id=816;
- atlOffset=0.97342968;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9208.2949,221.06287,8729.8711};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=881;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.4959564;
};
class Item3
{
- dataType="Marker";
- position[]={5515.2959,4.8260002,11968.466};
- name="reso_6_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=19.632999;
- b=6;
- angle=309.76492;
- id=831;
- atlOffset=0.78600025;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9208.2373,221.05836,8732.2041};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=882;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.405426;
};
class Item4
{
- dataType="Marker";
- position[]={11785.289,158.909,10265.006};
- name="reso_3_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=31.993;
- b=6;
- angle=186.02695;
- id=818;
- atlOffset=1.7094421;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9208.0742,221.1158,8734.5186};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=883;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.3078613;
};
class Item5
{
- dataType="Marker";
- position[]={12274.201,182.89944,10371.215};
- name="reso_3_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=17.872005;
- b=6;
- angle=166.72569;
- id=823;
- atlOffset=1.7094421;
- };
- class Item6
- {
- dataType="Marker";
- position[]={8879.5566,6.1360002,6686.6128};
- name="reso_4_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=21.087;
- b=6;
- angle=161.105;
- id=828;
- atlOffset=0.96119213;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9208.0332,221.33676,8736.9717};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=884;
+ type="I_G_Soldier_TL_F";
+ atlOffset=1.2042694;
+ };
+ class Item6
+ {
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9207.8477,221.58014,8739.2881};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=885;
+ type="I_G_Soldier_F";
+ atlOffset=1.1147766;
};
class Item7
{
- dataType="Marker";
- position[]={9463.8105,42.598999,7531.5508};
- name="reso_5_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=27.031;
- b=6;
- angle=275.254;
- id=830;
- atlOffset=0.73569107;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9207.6406,221.82883,8741.1836};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=886;
+ type="I_G_Soldier_F";
+ atlOffset=1.0294037;
};
class Item8
{
- dataType="Marker";
- position[]={8857.1807,187.39999,11861.73};
- name="reso_7_vehicle_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=15.85;
- b=6;
- angle=184.02693;
- id=834;
- atlOffset=1.6584015;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.5156,220.43211,8727.7588};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=887;
+ type="I_G_Soldier_F";
+ atlOffset=1.1350403;
};
class Item9
{
- dataType="Marker";
- position[]={11195.073,91.431,7890.6592};
- name="reso_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=20.469999;
- b=6;
- angle=191.44501;
- id=813;
- atlOffset=-0.00035095215;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.5146,220.35355,8730.0986};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=888;
+ type="I_G_Soldier_F";
+ atlOffset=1.0546265;
};
class Item10
{
- dataType="Marker";
- position[]={11063.061,-5.561666e-034,7914.4282};
- name="resource";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=200;
- b=100;
- angle=190.62489;
- id=21;
- atlOffset=-94.23735;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.4082,220.36182,8732.4717};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=889;
+ type="I_G_Soldier_F";
+ atlOffset=0.9651947;
};
class Item11
{
- dataType="Marker";
- position[]={12399.69,-2.4187405e-033,7829.9102};
- name="resource_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=100;
- b=50;
- angle=84.14196;
- id=199;
- atlOffset=-32.302212;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.3496,220.46887,8734.6709};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=890;
+ type="I_G_Soldier_F";
+ atlOffset=0.87738037;
};
class Item12
{
- dataType="Marker";
- position[]={11742.922,0,6933.8647};
- name="resource_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=100;
- b=50;
- angle=241.38098;
- id=200;
- atlOffset=-18.562902;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9210.1465,220.75891,8737.0938};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=891;
+ type="I_G_Soldier_F";
+ atlOffset=0.7824707;
};
class Item13
{
- dataType="Marker";
- position[]={11914.527,2.8714324e+037,10292.789};
- name="resource_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=300;
- b=414.61935;
- angle=274.83386;
- id=201;
- atlOffset=2.8714324e+037;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9209.959,221.08394,8739.4248};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=892;
+ type="I_G_Soldier_F";
+ atlOffset=0.67633057;
};
class Item14
{
- dataType="Marker";
- position[]={8830.1475,2.8714324e+037,6643.9351};
- name="resource_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=100;
- b=80;
- angle=162.50697;
- id=202;
- atlOffset=2.8714324e+037;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.624,220.00247,8727.7949};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=893;
+ type="I_G_Soldier_AR_F";
+ atlOffset=1.0090179;
};
class Item15
{
- dataType="Marker";
- position[]={9424.9971,2.8714324e+037,7499.625};
- name="resource_5";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=60;
- b=80;
- angle=178.66571;
- id=203;
- atlOffset=2.8714324e+037;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.7861,219.89005,8730.2354};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=894;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.91348267;
};
class Item16
{
- dataType="Marker";
- position[]={5495.6045,2.8714324e+037,11951.959};
- name="resource_6";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=74.848274;
- angle=215.83766;
- id=204;
- atlOffset=2.8714324e+037;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.3857,219.9718,8732.6494};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=895;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.8175354;
};
class Item17
{
- dataType="Marker";
- position[]={8864.4775,0,11920.42};
- name="resource_7";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorBrown";
- a=50;
- b=50;
- angle=67.956985;
- id=205;
- atlOffset=-183.87277;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.3623,220.08032,8734.7988};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=896;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.70054626;
};
class Item18
{
- dataType="Marker";
- position[]={12207.41,202.92799,10504.671};
- name="reso_3_mortar_4";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=825;
- atlOffset=-9.1552734e-005;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.1621,220.34303,8737.04};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=897;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.56147766;
};
class Item19
{
- dataType="Marker";
- position[]={12131.879,216.38901,10361.087};
- name="reso_3_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=824;
- atlOffset=-0.00012207031;
- };
- };
- id=836;
- atlOffset=3.3649598e+036;
- };
- class Item215
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5378.1025,2.21,10130.181};
- angles[]={0,3.1346879,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=839;
- type="Land_HelipadSquare_F";
- };
- class Item216
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={5406.3584,2.21,10130.243};
- angles[]={0,3.1628277,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=840;
- type="Land_HelipadSquare_F";
- };
- class Item217
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={9803.9082,2.3099999,13617.943};
- angles[]={0,1.7441468,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=843;
- type="Land_HelipadSquare_F";
- };
- class Item218
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13233.026,2.55,12496.956};
- angles[]={0,5.7113914,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=847;
- type="Land_HelipadSquare_F";
- };
- class Item219
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13265.007,2.55,12517.328};
- angles[]={0,5.7113914,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=848;
- type="Land_HelipadSquare_F";
- };
- class Item220
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={13300.098,2.55,12539.419};
- angles[]={0,5.7505007,0};
- };
- side="Empty";
- flags=4;
- class Attributes
- {
- };
- id=849;
- type="Land_HelipadSquare_F";
- };
- class Item221
- {
- dataType="Layer";
- name="Seaports";
- class Entities
- {
- items=19;
- class Item0
- {
- dataType="Marker";
- position[]={9926.2949,3.096,13545.935};
- name="seap_1_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=8.1630001;
- b=6;
- angle=5.967;
- id=844;
- atlOffset=0.78600001;
- };
- class Item1
- {
- dataType="Marker";
- position[]={10045.477,3.096,13537.958};
- name="seap_1_vehicle_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=14.69718;
- b=6;
- angle=2.9611008;
- id=846;
- atlOffset=0.78600001;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9212.0752,220.68071,8739.499};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=898;
+ type="I_G_Soldier_AR_F";
+ atlOffset=0.42988586;
};
- class Item2
+ class Item20
{
- dataType="Marker";
- position[]={13175.366,3.336,12401.689};
- name="seap_2_vehicle_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=25.462;
- b=6;
- angle=239.75392;
- id=850;
- atlOffset=0.78600001;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.7129,219.5574,8727.874};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=899;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.88264465;
};
- class Item3
+ class Item21
{
- dataType="Marker";
- position[]={13363.21,3.336,12134.26};
- name="seap_2_vehicle_5";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=48.355259;
- b=6;
- angle=201.90482;
- id=852;
- atlOffset=0.78600001;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.583,219.52907,8730.1924};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=900;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.79734802;
};
- class Item4
+ class Item22
{
- dataType="Marker";
- position[]={11692.045,3.846,2759.4641};
- name="seap_3_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=18.922001;
- b=6;
- angle=87.263;
- id=853;
- atlOffset=0.78600001;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.459,219.56421,8732.9365};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=901;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.64067078;
};
- class Item5
+ class Item23
{
- dataType="Marker";
- position[]={5559.8042,2.289,4033.8689};
- name="seap_4_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=11.104;
- b=6;
- angle=135.69296;
- id=854;
- atlOffset=0.76751328;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.2852,219.73557,8734.9453};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=902;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.51522827;
};
- class Item6
+ class Item24
{
- dataType="Marker";
- position[]={5637.5068,2.1575131,4027.7695};
- name="seap_4_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=8.779129;
- b=6;
- angle=312.65286;
- id=855;
- atlOffset=0.76751316;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.2158,219.9711,8737.1299};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=903;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.35932922;
};
- class Item7
+ class Item25
{
- dataType="Marker";
- position[]={1719.467,2.171,11975.972};
- name="seap_5_vehicle_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=17.912001;
- b=6;
- angle=62.794994;
- id=856;
- atlOffset=0.74228048;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9214.1104,220.40939,8739.6201};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=904;
+ type="I_G_Soldier_GL_F";
+ atlOffset=0.23213196;
};
- class Item8
+ class Item26
{
- dataType="Marker";
- position[]={1698.0518,2.1695347,12010.122};
- name="seap_5_vehicle_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=17.912001;
- b=6;
- angle=60.981033;
- id=857;
- atlOffset=0.74228048;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9216.2402,219.08359,8727.9521};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=905;
+ type="I_G_medic_F";
+ atlOffset=0.64479065;
};
- class Item9
+ class Item27
{
- dataType="Marker";
- position[]={5463.04,2.9960001,10068.318};
- name="seap_vehicle";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=18.954;
- b=6;
- angle=162.29193;
- id=837;
- atlOffset=0.78600001;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9216.0645,219.12,8730.2314};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=906;
+ type="I_G_medic_F";
+ atlOffset=0.57945251;
};
- class Item10
+ class Item28
{
- dataType="Marker";
- position[]={5199.0396,4.2420912,10007.934};
- name="seap_vehicle_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorGreen";
- a=12.638967;
- b=6;
- angle=281.4566;
- id=838;
- atlOffset=0.81891489;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9216.0225,219.18832,8733.1035};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=907;
+ type="I_G_medic_F";
+ atlOffset=0.4079895;
};
- class Item11
+ class Item29
{
- dataType="Marker";
- position[]={5361.0322,2.21,10077.443};
- name="seaport";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=168.77954;
- b=117.86035;
- id=23;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9215.9346,219.33868,8734.9102};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=908;
+ type="I_G_medic_F";
+ atlOffset=0.28741455;
};
- class Item12
+ class Item30
{
- dataType="Marker";
- position[]={9914.6182,0,13590.578};
- name="seaport_1";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=164.80374;
- b=79.520996;
- angle=8.9005032;
- id=192;
- atlOffset=-2.3099999;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9215.751,219.63004,8737.2695};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=909;
+ type="I_G_medic_F";
+ atlOffset=0.14077759;
};
- class Item13
+ class Item31
{
- dataType="Marker";
- position[]={13334.84,0,12379.788};
- name="seaport_2";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=200;
- b=200;
- angle=237.51813;
- id=193;
- atlOffset=-2.55;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9215.7617,220.05086,8739.6807};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=910;
+ type="I_G_medic_F";
+ atlOffset=0.0065917969;
};
- class Item14
+ class Item32
{
- dataType="Marker";
- position[]={11774.358,0.85009766,2744.5486};
- name="seaport_3";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=150;
- b=100;
- id=194;
- atlOffset=-2.2099023;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9218.042,218.59781,8728.1172};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=911;
+ type="I_G_engineer_F";
+ atlOffset=0.3659668;
};
- class Item15
+ class Item33
{
- dataType="Marker";
- position[]={5594.9302,1.39,3996.49};
- name="seaport_4";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=100;
- b=75;
- angle=128.368;
- id=195;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9218.0654,218.61351,8730.417};
+ };
+ side="Independent";
+ flags=1;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=912;
+ type="I_G_engineer_F";
+ atlOffset=0.27748108;
};
- class Item16
+ class Item34
{
- dataType="Marker";
- position[]={1741.0649,-3.6915083,11959.301};
- name="seaport_5";
- markerType="RECTANGLE";
- type="rectangle";
- colorName="ColorWEST";
- a=80;
- b=100;
- angle=254.67094;
- id=196;
- atlOffset=-5.5342383;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9217.8232,218.75163,8733.208};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=913;
+ type="I_G_engineer_F";
+ atlOffset=0.13031006;
};
- class Item17
+ class Item35
{
- dataType="Marker";
- position[]={9929.4102,-6.7270002,13681.669};
- name="seap_1_mortar_3";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=842;
- atlOffset=0.0004119873;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9217.5684,218.96051,8735.1553};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=914;
+ type="I_G_engineer_F";
+ atlOffset=0.022323608;
};
- class Item18
+ class Item36
{
- dataType="Marker";
- position[]={5359.3052,2.21,10229.499};
- name="seap_mortar_2";
- markerType="ELLIPSE";
- type="ellipse";
- colorName="ColorYellow";
- a=8.2089996;
- b=8.0620003;
- id=841;
+ dataType="Object";
+ class PositionInfo
+ {
+ position[]={9217.373,219.23962,8737.3916};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
+ {
+ map="ItemMap";
+ };
+ };
+ id=915;
+ type="I_G_engineer_F";
+ atlOffset=-0.11579895;
};
- };
- id=858;
- atlOffset=-33.276302;
- };
- class Item222
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2564.1733,48.122353,9042.0791};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=859;
- type="Land_ControlTower_01_F";
- atlOffset=0.022064209;
- };
- class Item223
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2550.2605,44.226475,9069.4053};
- angles[]={0,2.2690396,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=860;
- type="Land_Cargo_Patrol_V4_F";
- };
- class Item224
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2544.3628,44.636456,9039.5664};
- angles[]={0,1.6726182,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=861;
- type="Land_Cargo_Patrol_V4_F";
- };
- class Item225
- {
- dataType="Marker";
- position[]={2113,4.3460913e+018,8374};
- name="control_52";
- markerType="RECTANGLE";
- type="rectangle";
- a=32.497253;
- b=37.803223;
- id=864;
- atlOffset=4.3460913e+018;
- };
- class Item226
- {
- dataType="Marker";
- position[]={4903.9785,4.3228164,8530.4082};
- name="seaSpawn_33";
- type="Empty";
- id=865;
- atlOffset=4.7259989;
- };
- class Item227
- {
- dataType="Marker";
- position[]={5010.6436,4.7579079,8473.7617};
- name="seaSpawn_34";
- type="Empty";
- id=866;
- atlOffset=4.7259989;
- };
- class Item228
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={12234.5,11.859666,12939};
- angles[]={0,0.30171326,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=871;
- type="Land_Cargo_Patrol_V4_F";
- };
- class Item229
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={12232.098,6.9521437,12930.928};
- };
- areaSize[]={5,-1,5};
- flags=1;
- id=872;
- type="ModuleHideTerrainObjects_F";
- atlOffset=4.7683716e-007;
- class CustomAttributes
- {
- class Attribute0
+ class Item37
{
- property="#filter";
- expression="_this setVariable [""#filter"",_value]";
- class Value
+ dataType="Object";
+ class PositionInfo
{
- class data
+ position[]={9217.2686,219.73956,8739.8604};
+ };
+ side="Independent";
+ flags=5;
+ class Attributes
+ {
+ isPlayable=1;
+ class Inventory
{
- class type
- {
- type[]=
- {
- "SCALAR"
- };
- };
- value=4;
+ map="ItemMap";
};
};
+ id=916;
+ type="I_G_engineer_F";
+ atlOffset=-0.25114441;
};
- class Attribute1
+ };
+ class Attributes
+ {
+ };
+ id=878;
+ atlOffset=2.2093964;
+ class CustomAttributes
+ {
+ class Attribute0
{
- property="#hideLocally";
- expression="_this setVariable [""#hideLocally"",_value]";
+ property="groupID";
+ expression="_this setGroupID [_value];";
class Value
{
class data
@@ -8294,92 +6573,26 @@ class Mission
{
type[]=
{
- "BOOL"
+ "STRING"
};
};
- value=0;
+ value="Guerillas";
};
};
};
- nAttributes=2;
- };
- };
- class Item230
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={11667,11.855,13097.5};
- angles[]={0,0.34413719,0};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=873;
- type="Land_Cargo_Patrol_V4_F";
- atlOffset=-4.7683716e-007;
- };
- class Item231
- {
- dataType="Marker";
- position[]={12588.62,12.005551,12606.07};
- name="control_53";
- markerType="RECTANGLE";
- type="rectangle";
- a=50;
- b=50;
- id=874;
- atlOffset=0.025326729;
- };
- class Item232
- {
- dataType="Object";
- class PositionInfo
- {
- position[]={2566.0698,55.171875,9016.1328};
- };
- side="Empty";
- flags=5;
- class Attributes
- {
- };
- id=875;
- type="Land_Communication_F";
- atlOffset=0.0031356812;
- };
- class Item233
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9185.168,220.84666,8724.4121};
- };
- name="HC_commanderX";
- id=876;
- type="HighCommand";
- };
- class Item234
- {
- dataType="Logic";
- class PositionInfo
- {
- position[]={9188.5684,220.62469,8724.3184};
+ nAttributes=1;
};
- id=877;
- type="HighCommandSubordinate";
};
};
class Connections
{
class LinkIDProvider
{
- nextID=61;
+ nextID=39;
};
class Links
{
- items=61;
+ items=39;
class Item0
{
linkID=0;
@@ -8393,7 +6606,7 @@ class Mission
class Item1
{
linkID=1;
- item0=311;
+ item0=879;
item1=876;
class CustomData
{
@@ -8403,7 +6616,7 @@ class Mission
class Item2
{
linkID=2;
- item0=360;
+ item0=880;
item1=876;
class CustomData
{
@@ -8413,7 +6626,7 @@ class Mission
class Item3
{
linkID=3;
- item0=654;
+ item0=881;
item1=876;
class CustomData
{
@@ -8423,7 +6636,7 @@ class Mission
class Item4
{
linkID=4;
- item0=656;
+ item0=882;
item1=876;
class CustomData
{
@@ -8433,7 +6646,7 @@ class Mission
class Item5
{
linkID=5;
- item0=658;
+ item0=883;
item1=876;
class CustomData
{
@@ -8443,7 +6656,7 @@ class Mission
class Item6
{
linkID=6;
- item0=660;
+ item0=884;
item1=876;
class CustomData
{
@@ -8453,7 +6666,7 @@ class Mission
class Item7
{
linkID=7;
- item0=662;
+ item0=885;
item1=876;
class CustomData
{
@@ -8463,7 +6676,7 @@ class Mission
class Item8
{
linkID=8;
- item0=664;
+ item0=886;
item1=876;
class CustomData
{
@@ -8473,7 +6686,7 @@ class Mission
class Item9
{
linkID=9;
- item0=666;
+ item0=887;
item1=876;
class CustomData
{
@@ -8483,7 +6696,7 @@ class Mission
class Item10
{
linkID=10;
- item0=668;
+ item0=888;
item1=876;
class CustomData
{
@@ -8493,7 +6706,7 @@ class Mission
class Item11
{
linkID=11;
- item0=670;
+ item0=889;
item1=876;
class CustomData
{
@@ -8503,7 +6716,7 @@ class Mission
class Item12
{
linkID=12;
- item0=672;
+ item0=890;
item1=876;
class CustomData
{
@@ -8513,7 +6726,7 @@ class Mission
class Item13
{
linkID=13;
- item0=674;
+ item0=891;
item1=876;
class CustomData
{
@@ -8523,7 +6736,7 @@ class Mission
class Item14
{
linkID=14;
- item0=676;
+ item0=892;
item1=876;
class CustomData
{
@@ -8533,7 +6746,7 @@ class Mission
class Item15
{
linkID=15;
- item0=678;
+ item0=893;
item1=876;
class CustomData
{
@@ -8543,7 +6756,7 @@ class Mission
class Item16
{
linkID=16;
- item0=680;
+ item0=894;
item1=876;
class CustomData
{
@@ -8553,7 +6766,7 @@ class Mission
class Item17
{
linkID=17;
- item0=682;
+ item0=895;
item1=876;
class CustomData
{
@@ -8563,7 +6776,7 @@ class Mission
class Item18
{
linkID=18;
- item0=684;
+ item0=896;
item1=876;
class CustomData
{
@@ -8573,7 +6786,7 @@ class Mission
class Item19
{
linkID=19;
- item0=686;
+ item0=897;
item1=876;
class CustomData
{
@@ -8583,7 +6796,7 @@ class Mission
class Item20
{
linkID=20;
- item0=688;
+ item0=898;
item1=876;
class CustomData
{
@@ -8593,7 +6806,7 @@ class Mission
class Item21
{
linkID=21;
- item0=362;
+ item0=899;
item1=876;
class CustomData
{
@@ -8603,7 +6816,7 @@ class Mission
class Item22
{
linkID=22;
- item0=363;
+ item0=900;
item1=876;
class CustomData
{
@@ -8613,7 +6826,7 @@ class Mission
class Item23
{
linkID=23;
- item0=364;
+ item0=901;
item1=876;
class CustomData
{
@@ -8623,7 +6836,7 @@ class Mission
class Item24
{
linkID=24;
- item0=459;
+ item0=902;
item1=876;
class CustomData
{
@@ -8633,7 +6846,7 @@ class Mission
class Item25
{
linkID=25;
- item0=461;
+ item0=903;
item1=876;
class CustomData
{
@@ -8643,7 +6856,7 @@ class Mission
class Item26
{
linkID=26;
- item0=463;
+ item0=904;
item1=876;
class CustomData
{
@@ -8653,7 +6866,7 @@ class Mission
class Item27
{
linkID=27;
- item0=465;
+ item0=905;
item1=876;
class CustomData
{
@@ -8663,7 +6876,7 @@ class Mission
class Item28
{
linkID=28;
- item0=467;
+ item0=906;
item1=876;
class CustomData
{
@@ -8673,7 +6886,7 @@ class Mission
class Item29
{
linkID=29;
- item0=471;
+ item0=907;
item1=876;
class CustomData
{
@@ -8683,7 +6896,7 @@ class Mission
class Item30
{
linkID=30;
- item0=473;
+ item0=908;
item1=876;
class CustomData
{
@@ -8693,7 +6906,7 @@ class Mission
class Item31
{
linkID=31;
- item0=475;
+ item0=909;
item1=876;
class CustomData
{
@@ -8703,7 +6916,7 @@ class Mission
class Item32
{
linkID=32;
- item0=477;
+ item0=910;
item1=876;
class CustomData
{
@@ -8713,7 +6926,7 @@ class Mission
class Item33
{
linkID=33;
- item0=479;
+ item0=911;
item1=876;
class CustomData
{
@@ -8723,7 +6936,7 @@ class Mission
class Item34
{
linkID=34;
- item0=481;
+ item0=912;
item1=876;
class CustomData
{
@@ -8733,7 +6946,7 @@ class Mission
class Item35
{
linkID=35;
- item0=483;
+ item0=913;
item1=876;
class CustomData
{
@@ -8743,7 +6956,7 @@ class Mission
class Item36
{
linkID=36;
- item0=485;
+ item0=914;
item1=876;
class CustomData
{
@@ -8753,7 +6966,7 @@ class Mission
class Item37
{
linkID=37;
- item0=487;
+ item0=915;
item1=876;
class CustomData
{
@@ -8763,227 +6976,7 @@ class Mission
class Item38
{
linkID=38;
- item0=489;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item39
- {
- linkID=39;
- item0=491;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item40
- {
- linkID=40;
- item0=493;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item41
- {
- linkID=41;
- item0=495;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item42
- {
- linkID=42;
- item0=497;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item43
- {
- linkID=43;
- item0=499;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item44
- {
- linkID=44;
- item0=501;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item45
- {
- linkID=45;
- item0=503;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item46
- {
- linkID=46;
- item0=505;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item47
- {
- linkID=47;
- item0=630;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item48
- {
- linkID=48;
- item0=632;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item49
- {
- linkID=49;
- item0=634;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item50
- {
- linkID=50;
- item0=636;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item51
- {
- linkID=51;
- item0=638;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item52
- {
- linkID=52;
- item0=640;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item53
- {
- linkID=53;
- item0=642;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item54
- {
- linkID=54;
- item0=644;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item55
- {
- linkID=55;
- item0=646;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item56
- {
- linkID=56;
- item0=648;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item57
- {
- linkID=57;
- item0=650;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item58
- {
- linkID=58;
- item0=652;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item59
- {
- linkID=59;
- item0=361;
- item1=876;
- class CustomData
- {
- type="Sync";
- };
- };
- class Item60
- {
- linkID=60;
- item0=468;
+ item0=916;
item1=876;
class CustomData
{
diff --git a/Map-Templates/Antistasi-WotP.Tanoa/roadsDB.sqf b/Map-Templates/Antistasi-WotP.Tanoa/roadsDBTanoa.sqf
similarity index 100%
rename from Map-Templates/Antistasi-WotP.Tanoa/roadsDB.sqf
rename to Map-Templates/Antistasi-WotP.Tanoa/roadsDBTanoa.sqf
diff --git a/README.md b/README.md
index b26e5f2222..8082febdae 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,10 @@
-
+
-
+