Jump to content

[Dev/Test/Beta] LL FourPlay community F4SE plugin v43 2023 05 06


Recommended Posts

I cannot test right now, but please use this code and "quote" the IntToHex result. I am worried there are extra spaces somewhere :

	Int adder=0x001000000
    int counter = 0
    int result = 0x080000000
    While counter<512
        dlog("Result: ["+Result+"] IntToHexString(Result): ["+IntToHexString(Result)+"] HexToInt(IntToHex(Result)): ["+HexStringToInt(IntToHexString(Result)))+"]"
        counter+=1
        Result+=adder
        wait(0.05)
    endWhile

 

Link to comment
16 minutes ago, jaam said:

I cannot test right now, but please use this code and "quote" the IntToHex result. I am worried there are extra spaces somewhere :

 

I found the problem - it's my fault.  I used strtol() to do the string to SInt32 conversion, and the function returns SInt32.  Unfortunately that was actually the wrong thing to do, because strtol() assumes that any hex number is positive, so if you pass "0x80000000" it treats it as a signed integer overflow and returns LONG_MAX, which is 2147483647.

 

If the function instead uses strtoul() and returns UInt32, then if the most significant bit is set Papyrus will interpret it as a negative number.

 

Here is a version that works correctly:

 

UInt32 HexStringToInt(StaticFunctionTag* base, BSFixedString theString)
{
    return(strtoul(theString.c_str(), nullptr, 16));
}

vm->RegisterFunction(
    new NativeFunction1<StaticFunctionTag, UInt32, BSFixedString>("HexStringToInt", pluginName, HexStringToInt, vm));

 

No change needed in the Papyrus side.

 

Edited by EgoBallistic
Link to comment
On 7/10/2023 at 4:01 PM, EgoBallistic said:

 

I found the problem - it's my fault.  I used strtol() to do the string to SInt32 conversion, and the function returns SInt32.  Unfortunately that was actually the wrong thing to do, because strtol() assumes that any hex number is positive, so if you pass "0x80000000" it treats it as a signed integer overflow and returns LONG_MAX, which is 2147483647.

 

If the function instead uses strtoul() and returns UInt32, then if the most significant bit is set Papyrus will interpret it as a negative number.

 

Here is a version that works correctly:

 

UInt32 HexStringToInt(StaticFunctionTag* base, BSFixedString theString)
{
    return(strtoul(theString.c_str(), nullptr, 16));
}

vm->RegisterFunction(
    new NativeFunction1<StaticFunctionTag, UInt32, BSFixedString>("HexStringToInt", pluginName, HexStringToInt, vm));

 

No change needed in the Papyrus side.

 

 

Try this DLL

 

Edited by jaam
Obsolete
Link to comment

I haven't compiled this yet... I'm just putting it here...

vm->RegisterFunction(
        new NativeFunction3 <StaticFunctionTag, void, BGSListForm *, VMArray<BSFixedString>, VMArray<UInt32>>("AddToFormlist", pluginName, AddToFormlist, vm));

void AddToFormlist(StaticFunctionTag* base, BGSListForm* FormList, VMArray<BSFixedString> modNames, VMArray<UInt32> formIDs)
{
	BSFixedString modName;
	UInt32 formID;
	TESForm* formPtr;

	if (modNames.Length() != formIDs.Length() || !FormList)
		return;

	// Get the highest index from the existing FormList
	UInt32 highestIndex = 0;
	if (FormList->forms.count > 0)
		highestIndex = FormList->forms.count - 1;

	UInt32 mln = modNames.Length();
	for (UInt32 i = 0; i < mln; i++)
	{
		modNames.Get(&modName, i);
		formIDs.Get(&formID, i);
		formPtr = GetFormFromPlugin(base, modName, formID);
		if (formPtr)
		{
			FormList->forms.InsertAt(highestIndex + 1 + i, formPtr);
			FormList->scriptAdded++;
		}
	}
}

Just an idea. I import from a series of files to a group of formlists.

I'm still trying to get Visual Studio set up... I've been using VSCode until now, and it's just not enough.

Edited by tzenrick
Formatting was wonky...
Link to comment
47 minutes ago, tzenrick said:

Just an idea. I import from a series of files to a group of formlists.

 

There is already a function PopulateFormlist() that does this.  Also, you don't need to look for the highest index like that, you can just do

 

            FormList->forms.Push(formPtr);
            FormList->scriptAdded++;

Link to comment
39 minutes ago, tzenrick said:

I'm still shit at C. The way I was reading PopulateFormlist, was that it would overwrite from 0.

 

I'm about to go use the fuck out of this.

 

Also keep in mind that if you only want to do it once when the game is loaded, rather than at various points during gameplay, that's a key feature of RobCo Patcher (in-memory edits to arbitrary forms of various kinds). You can use it for conflict-free no-plugin additions of forms from any plugin to formlists and leveled lists in any other plugin, among many other things. All you need is its DLL and text files describing what changes you want it to make.

Link to comment

I think GetFormFromPlugin() is shitting its pants when the filename contains spaces...

 

I was trying to use populateformlist() to do this and kept having all of my part counts come up wrong, so maybe it's having the same problem.

 

 

edit:

 

UInt32 GetFullFormID(StaticFunctionTag *base, BSFixedString modName, UInt32 formID)

 

Seems to be the guilty function.

 

image.thumb.png.a9319e6e6bce8cf6aec71b3fcd250757.png

Edited by tzenrick
Link to comment
11 hours ago, tzenrick said:

Or am I just using it wrong?

 

I don't know, but it works in my testing:

 

	Keyword KDeviceTest1 = LL_FourPlay.GetFormFromPlugin("Commonwealth Captives.esp", 0x002ECC) as Keyword
	Debug.Trace("Keyword Test 1: " + KDeviceTest1)
	Keyword KDeviceTest2 = LL_FourPlay.GetFormFromPlugin("Unofficial Fallout 4 Patch.esp", 0x00D242) as Keyword
	Debug.Trace("Keyword Test 2: " + KDeviceTest2)
	Keyword KDeviceTest3 = LL_FourPlay.GetFormFromPlugin("AAF_Violate.esp", 0x005CC3) as Keyword
	Debug.Trace("Keyword Test 3: " + KDeviceTest3)

 

Result:

 

[07/14/2023 - 09:07:22AM] Keyword Test 1: [Keyword <EBCC_LinkFurniture (F1002ECC)>]
[07/14/2023 - 09:07:22AM] Keyword Test 2: [Keyword <UFO4P_WeaponTypeKnife (0700D242)>]
[07/14/2023 - 09:07:23AM] Keyword Test 3: [Keyword <AFV_Aggressor (F0005CC3)>]

 

Link to comment

It's partly my INI I'm reading from, and partly that it doesn't behave the same as GetFormFromFile(). GetFormFromFile() seems to "fix" the FormID Int, while GetFormFromPlugin() doesn't.

 

I fixed my INI.

 

 

Form TempItem=GetFormFromPlugin(ChildKeys[ChildKeysCounter],FormValue)
Form TempItem2=GetFormFromFile(FormValue,ChildKeys[ChildKeysCounter])
dlog("ScanINI() "+ChildKeys[ChildKeysCounter]+"="+FormValue+"____"+TempItem+"____"+TempItem2)
 
 
[07/14/2023 - 05:37:49PM] [..Shuffler]ScanINI() Adding OutfitShuffler\fco - fully customizable outfits.esp.ini
[07/14/2023 - 05:37:49PM] [..Shuffler]ScanINI() fco - fully customizable outfits.esp=50333884____None____[Form < (2D0008BC)>]
[07/14/2023 - 05:37:49PM] [..Shuffler]ScanINI() fco - fully customizable outfits.esp=50333723____None____[Form < (2D00081B)>]
[07/14/2023 - 05:37:49PM] [..Shuffler]ScanINI() fco - fully customizable outfits.esp=50334198____None____[Form < (2D0009F6)>]
Link to comment

PopulateFormList() doesn't behave the same as AddForm(), either.  Every added item disappears on reload. There's no persistence.

 

Is this intended behavior?

 

Using PopulateFormList()-PreSave:

[07/15/2023 - 09:45:31AM] [..Shuffler][FormList < (30000810)>] Form: XXAccessory Count: 24 Chance: 10
[FormList < (30000811)>] Form: XXArmAddon Count: 57 Chance: 100
[FormList < (30000812)>] Form: XXBack Count: 3 Chance: 40
[FormList < (30000813)>] Form: XXBackpack Count: 0 Chance: 0
[FormList < (30000814)>] Form: XXBeard Count: 1 Chance: 0
[FormList < (30000815)>] Form: XXBelt Count: 24 Chance: 10
[FormList < (30000816)>] Form: XXBottom Count: 275 Chance: 100
[FormList < (30000817)>] Form: XXEarrings Count: 3 Chance: 0
[FormList < (30000818)>] Form: XXFront Count: 7 Chance: 40
[FormList < (30000819)>] Form: XXFullBody Count: 370 Chance: 10
[FormList < (3000081A)>] Form: XXGlasses Count: 58 Chance: 50
[FormList < (3000081E)>] Form: XXHair Count: 263 Chance: 100
[FormList < (30000820)>] Form: XXJacket Count: 0 Chance: 0
[FormList < (30000821)>] Form: XXLeftArmArmor Count: 0 Chance: 0
[FormList < (30000822)>] Form: XXLeftLegArmor Count: 0 Chance: 0
[FormList < (30000823)>] Form: XXLegs Count: 0 Chance: 0
[FormList < (30000824)>] Form: XXLongHair Count: 0 Chance: 0
[FormList < (30000828)>] Form: XXMouth Count: 0 Chance: 0
[FormList < (30000829)>] Form: XXNeck Count: 122 Chance: 100
[FormList < (3000082A)>] Form: XXRightArmArmor Count: 0 Chance: 0
[FormList < (3000082B)>] Form: XXRightLegArmor Count: 0 Chance: 0
[FormList < (3000082C)>] Form: XXRing Count: 0 Chance: 0
[FormList < (3000082D)>] Form: XXSafeItems Count: 534 Chance: 0
[FormList < (3000082E)>] Form: XXShoes Count: 113 Chance: 100
[FormList < (3000082F)>] Form: XXShoulder Count: 0 Chance: 0
[FormList < (30000830)>] Form: XXTop Count: 481 Chance: 100
[FormList < (30000831)>] Form: XXTorsoArmor Count: 0 Chance: 0
[FormList < (30000834)>] Form: XYAccessory Count: 5 Chance: 10
[FormList < (30000835)>] Form: XYArmAddon Count: 0 Chance: 100
[FormList < (30000836)>] Form: XYBack Count: 0 Chance: 40
[FormList < (30000837)>] Form: XYBackpack Count: 7 Chance: 0
[FormList < (30000838)>] Form: XYBeard Count: 0 Chance: 0
[FormList < (30000839)>] Form: XYBelt Count: 10 Chance: 10
[FormList < (3000083A)>] Form: XYBottom Count: 67 Chance: 100
[FormList < (3000083B)>] Form: XYEarrings Count: 0 Chance: 0
[FormList < (3000083C)>] Form: XYFront Count: 0 Chance: 40
[FormList < (3000083D)>] Form: XYFullBody Count: 43 Chance: 10
[FormList < (3000083E)>] Form: XYGlasses Count: 0 Chance: 50
[FormList < (3000083F)>] Form: XYHair Count: 0 Chance: 100
[FormList < (30000801)>] Form: XYJacket Count: 0 Chance: 0
[FormList < (30000802)>] Form: XYLeftArmArmor Count: 0 Chance: 0
[FormList < (30000803)>] Form: XYLeftLegArmor Count: 0 Chance: 0
[FormList < (30000804)>] Form: XYLegs Count: 0 Chance: 0
[FormList < (30000805)>] Form: XYLongHair Count: 0 Chance: 0
[FormList < (30000806)>] Form: XYMouth Count: 0 Chance: 0
[FormList < (30000807)>] Form: XYNeck Count: 20 Chance: 100
[FormList < (30000808)>] Form: XYRightArmArmor Count: 0 Chance: 0
[FormList < (30000809)>] Form: XYRightLegArmor Count: 0 Chance: 0
[FormList < (3000080A)>] Form: XYRing Count: 0 Chance: 0
[FormList < (3000080B)>] Form: XYSafeItems Count: 518 Chance: 0
[FormList < (3000080C)>] Form: XYShoes Count: 78 Chance: 100
[FormList < (3000080D)>] Form: XYShoulder Count: 0 Chance: 0
[FormList < (3000080E)>] Form: XYTop Count: 76 Chance: 100
[FormList < (3000080F)>] Form: XYTorsoArmor Count: 0 Chance: 0
[FormList < (30000840)>] Form: WeaponsList Count: 19 Chance: -1
[FormList < (30000858)>] Form: OSRestrictedFurniture Count: 268 Chance: -1
[07/15/2023 - 09:45:31AM] [..Shuffler][Keyword <ActorTypeHuman (0002CB72)>] Added to Races
[07/15/2023 - 09:45:31AM] [..Shuffler][Keyword <ActorTypeGhoul (000EAFB7)>] Added to Races
[07/15/2023 - 09:45:31AM] [..Shuffler]Outfit Scan completed in 210.711014 seconds.

Using PopulateFormList()-Reload:

[07/15/2023 - 09:47:29AM] [..Shuffler][FormList < (30000810)>] Form: XXAccessory Count: 0 Chance: 10
[FormList < (30000811)>] Form: XXArmAddon Count: 0 Chance: 100
[FormList < (30000812)>] Form: XXBack Count: 0 Chance: 40
[FormList < (30000813)>] Form: XXBackpack Count: 0 Chance: 0
[FormList < (30000814)>] Form: XXBeard Count: 0 Chance: 0
[FormList < (30000815)>] Form: XXBelt Count: 0 Chance: 10
[FormList < (30000816)>] Form: XXBottom Count: 0 Chance: 100
[FormList < (30000817)>] Form: XXEarrings Count: 0 Chance: 0
[FormList < (30000818)>] Form: XXFront Count: 0 Chance: 40
[FormList < (30000819)>] Form: XXFullBody Count: 0 Chance: 10
[FormList < (3000081A)>] Form: XXGlasses Count: 0 Chance: 50
[FormList < (3000081E)>] Form: XXHair Count: 0 Chance: 100
[FormList < (30000820)>] Form: XXJacket Count: 0 Chance: 0
[FormList < (30000821)>] Form: XXLeftArmArmor Count: 0 Chance: 0
[FormList < (30000822)>] Form: XXLeftLegArmor Count: 0 Chance: 0
[FormList < (30000823)>] Form: XXLegs Count: 0 Chance: 0
[FormList < (30000824)>] Form: XXLongHair Count: 0 Chance: 0
[FormList < (30000828)>] Form: XXMouth Count: 0 Chance: 0
[FormList < (30000829)>] Form: XXNeck Count: 0 Chance: 100
[FormList < (3000082A)>] Form: XXRightArmArmor Count: 0 Chance: 0
[FormList < (3000082B)>] Form: XXRightLegArmor Count: 0 Chance: 0
[FormList < (3000082C)>] Form: XXRing Count: 0 Chance: 0
[FormList < (3000082D)>] Form: XXSafeItems Count: 0 Chance: 0
[FormList < (3000082E)>] Form: XXShoes Count: 0 Chance: 100
[FormList < (3000082F)>] Form: XXShoulder Count: 0 Chance: 0
[FormList < (30000830)>] Form: XXTop Count: 0 Chance: 100
[FormList < (30000831)>] Form: XXTorsoArmor Count: 0 Chance: 0
[FormList < (30000834)>] Form: XYAccessory Count: 0 Chance: 10
[FormList < (30000835)>] Form: XYArmAddon Count: 0 Chance: 100
[FormList < (30000836)>] Form: XYBack Count: 0 Chance: 40
[FormList < (30000837)>] Form: XYBackpack Count: 0 Chance: 0
[FormList < (30000838)>] Form: XYBeard Count: 0 Chance: 0
[FormList < (30000839)>] Form: XYBelt Count: 0 Chance: 10
[FormList < (3000083A)>] Form: XYBottom Count: 0 Chance: 100
[FormList < (3000083B)>] Form: XYEarrings Count: 0 Chance: 0
[FormList < (3000083C)>] Form: XYFront Count: 0 Chance: 40
[FormList < (3000083D)>] Form: XYFullBody Count: 0 Chance: 10
[FormList < (3000083E)>] Form: XYGlasses Count: 0 Chance: 50
[FormList < (3000083F)>] Form: XYHair Count: 0 Chance: 100
[FormList < (30000801)>] Form: XYJacket Count: 0 Chance: 0
[FormList < (30000802)>] Form: XYLeftArmArmor Count: 0 Chance: 0
[FormList < (30000803)>] Form: XYLeftLegArmor Count: 0 Chance: 0
[FormList < (30000804)>] Form: XYLegs Count: 0 Chance: 0
[FormList < (30000805)>] Form: XYLongHair Count: 0 Chance: 0
[FormList < (30000806)>] Form: XYMouth Count: 0 Chance: 0
[FormList < (30000807)>] Form: XYNeck Count: 0 Chance: 100
[FormList < (30000808)>] Form: XYRightArmArmor Count: 0 Chance: 0
[FormList < (30000809)>] Form: XYRightLegArmor Count: 0 Chance: 0
[FormList < (3000080A)>] Form: XYRing Count: 0 Chance: 0
[FormList < (3000080B)>] Form: XYSafeItems Count: 0 Chance: 0
[FormList < (3000080C)>] Form: XYShoes Count: 0 Chance: 100
[FormList < (3000080D)>] Form: XYShoulder Count: 0 Chance: 0
[FormList < (3000080E)>] Form: XYTop Count: 0 Chance: 100
[FormList < (3000080F)>] Form: XYTorsoArmor Count: 0 Chance: 0
[FormList < (30000840)>] Form: WeaponsList Count: 0 Chance: -1
[FormList < (30000858)>] Form: OSRestrictedFurniture Count: 0 Chance: -1
[07/15/2023 - 09:47:29AM] [..Shuffler]Building Outfit Array
[07/15/2023 - 09:47:33AM] [..Shuffler]Outfit Array built in 4.196999 seconds.
[07/15/2023 - 09:47:33AM] [..Shuffler]Rescanning outfit pieces

Using AddForm()-PreSave:

[07/15/2023 - 10:02:26AM] [..Shuffler][FormList < (30000810)>] Form: XXAccessory Count: 24 Chance: 10
[FormList < (30000811)>] Form: XXArmAddon Count: 57 Chance: 100
[FormList < (30000812)>] Form: XXBack Count: 3 Chance: 40
[FormList < (30000813)>] Form: XXBackpack Count: 0 Chance: 0
[FormList < (30000814)>] Form: XXBeard Count: 1 Chance: 0
[FormList < (30000815)>] Form: XXBelt Count: 24 Chance: 10
[FormList < (30000816)>] Form: XXBottom Count: 274 Chance: 100
[FormList < (30000817)>] Form: XXEarrings Count: 3 Chance: 0
[FormList < (30000818)>] Form: XXFront Count: 7 Chance: 40
[FormList < (30000819)>] Form: XXFullBody Count: 369 Chance: 10
[FormList < (3000081A)>] Form: XXGlasses Count: 58 Chance: 50
[FormList < (3000081E)>] Form: XXHair Count: 262 Chance: 100
[FormList < (30000820)>] Form: XXJacket Count: 0 Chance: 0
[FormList < (30000821)>] Form: XXLeftArmArmor Count: 0 Chance: 0
[FormList < (30000822)>] Form: XXLeftLegArmor Count: 0 Chance: 0
[FormList < (30000823)>] Form: XXLegs Count: 0 Chance: 0
[FormList < (30000824)>] Form: XXLongHair Count: 0 Chance: 0
[FormList < (30000828)>] Form: XXMouth Count: 0 Chance: 0
[FormList < (30000829)>] Form: XXNeck Count: 115 Chance: 100
[FormList < (3000082A)>] Form: XXRightArmArmor Count: 0 Chance: 0
[FormList < (3000082B)>] Form: XXRightLegArmor Count: 0 Chance: 0
[FormList < (3000082C)>] Form: XXRing Count: 0 Chance: 0
[FormList < (3000082D)>] Form: XXSafeItems Count: 515 Chance: 0
[FormList < (3000082E)>] Form: XXShoes Count: 113 Chance: 100
[FormList < (3000082F)>] Form: XXShoulder Count: 0 Chance: 0
[FormList < (30000830)>] Form: XXTop Count: 479 Chance: 100
[FormList < (30000831)>] Form: XXTorsoArmor Count: 0 Chance: 0
[FormList < (30000834)>] Form: XYAccessory Count: 5 Chance: 10
[FormList < (30000835)>] Form: XYArmAddon Count: 0 Chance: 100
[FormList < (30000836)>] Form: XYBack Count: 0 Chance: 40
[FormList < (30000837)>] Form: XYBackpack Count: 7 Chance: 0
[FormList < (30000838)>] Form: XYBeard Count: 0 Chance: 0
[FormList < (30000839)>] Form: XYBelt Count: 10 Chance: 10
[FormList < (3000083A)>] Form: XYBottom Count: 67 Chance: 100
[FormList < (3000083B)>] Form: XYEarrings Count: 0 Chance: 0
[FormList < (3000083C)>] Form: XYFront Count: 0 Chance: 40
[FormList < (3000083D)>] Form: XYFullBody Count: 43 Chance: 10
[FormList < (3000083E)>] Form: XYGlasses Count: 0 Chance: 50
[FormList < (3000083F)>] Form: XYHair Count: 0 Chance: 100
[FormList < (30000801)>] Form: XYJacket Count: 0 Chance: 0
[FormList < (30000802)>] Form: XYLeftArmArmor Count: 0 Chance: 0
[FormList < (30000803)>] Form: XYLeftLegArmor Count: 0 Chance: 0
[FormList < (30000804)>] Form: XYLegs Count: 0 Chance: 0
[FormList < (30000805)>] Form: XYLongHair Count: 0 Chance: 0
[FormList < (30000806)>] Form: XYMouth Count: 0 Chance: 0
[FormList < (30000807)>] Form: XYNeck Count: 14 Chance: 100
[FormList < (30000808)>] Form: XYRightArmArmor Count: 0 Chance: 0
[FormList < (30000809)>] Form: XYRightLegArmor Count: 0 Chance: 0
[FormList < (3000080A)>] Form: XYRing Count: 0 Chance: 0
[FormList < (3000080B)>] Form: XYSafeItems Count: 499 Chance: 0
[FormList < (3000080C)>] Form: XYShoes Count: 78 Chance: 100
[FormList < (3000080D)>] Form: XYShoulder Count: 0 Chance: 0
[FormList < (3000080E)>] Form: XYTop Count: 76 Chance: 100
[FormList < (3000080F)>] Form: XYTorsoArmor Count: 0 Chance: 0
[FormList < (30000840)>] Form: WeaponsList Count: 11 Chance: -1
[FormList < (30000858)>] Form: OSRestrictedFurniture Count: 265 Chance: -1
[07/15/2023 - 10:02:26AM] [..Shuffler][Keyword <ActorTypeHuman (0002CB72)>] Added to Races
[07/15/2023 - 10:02:26AM] [..Shuffler][Keyword <ActorTypeGhoul (000EAFB7)>] Added to Races
[07/15/2023 - 10:02:26AM] [..Shuffler]Outfit Scan completed in 373.010010 seconds.

Using AddForm()-Reload:

[07/15/2023 - 10:05:34AM] [..Shuffler]Total Outfit Items = 2852. ScanNPCs() - Processed 0 Actors in 1.478996 seconds. Actors = 
[07/15/2023 - 10:05:43AM] [..Shuffler][FormList < (30000810)>] Form: XXAccessory Count: 24 Chance: 10
[FormList < (30000811)>] Form: XXArmAddon Count: 57 Chance: 100
[FormList < (30000812)>] Form: XXBack Count: 3 Chance: 40
[FormList < (30000813)>] Form: XXBackpack Count: 0 Chance: 0
[FormList < (30000814)>] Form: XXBeard Count: 1 Chance: 0
[FormList < (30000815)>] Form: XXBelt Count: 24 Chance: 10
[FormList < (30000816)>] Form: XXBottom Count: 274 Chance: 100
[FormList < (30000817)>] Form: XXEarrings Count: 3 Chance: 0
[FormList < (30000818)>] Form: XXFront Count: 7 Chance: 40
[FormList < (30000819)>] Form: XXFullBody Count: 369 Chance: 10
[FormList < (3000081A)>] Form: XXGlasses Count: 58 Chance: 50
[FormList < (3000081E)>] Form: XXHair Count: 262 Chance: 100
[FormList < (30000820)>] Form: XXJacket Count: 0 Chance: 0
[FormList < (30000821)>] Form: XXLeftArmArmor Count: 0 Chance: 0
[FormList < (30000822)>] Form: XXLeftLegArmor Count: 0 Chance: 0
[FormList < (30000823)>] Form: XXLegs Count: 0 Chance: 0
[FormList < (30000824)>] Form: XXLongHair Count: 0 Chance: 0
[FormList < (30000828)>] Form: XXMouth Count: 0 Chance: 0
[FormList < (30000829)>] Form: XXNeck Count: 115 Chance: 100
[FormList < (3000082A)>] Form: XXRightArmArmor Count: 0 Chance: 0
[FormList < (3000082B)>] Form: XXRightLegArmor Count: 0 Chance: 0
[FormList < (3000082C)>] Form: XXRing Count: 0 Chance: 0
[FormList < (3000082D)>] Form: XXSafeItems Count: 515 Chance: 0
[FormList < (3000082E)>] Form: XXShoes Count: 113 Chance: 100
[FormList < (3000082F)>] Form: XXShoulder Count: 0 Chance: 0
[FormList < (30000830)>] Form: XXTop Count: 479 Chance: 100
[FormList < (30000831)>] Form: XXTorsoArmor Count: 0 Chance: 0
[FormList < (30000834)>] Form: XYAccessory Count: 5 Chance: 10
[FormList < (30000835)>] Form: XYArmAddon Count: 0 Chance: 100
[FormList < (30000836)>] Form: XYBack Count: 0 Chance: 40
[FormList < (30000837)>] Form: XYBackpack Count: 7 Chance: 0
[FormList < (30000838)>] Form: XYBeard Count: 0 Chance: 0
[FormList < (30000839)>] Form: XYBelt Count: 10 Chance: 10
[FormList < (3000083A)>] Form: XYBottom Count: 67 Chance: 100
[FormList < (3000083B)>] Form: XYEarrings Count: 0 Chance: 0
[FormList < (3000083C)>] Form: XYFront Count: 0 Chance: 40
[FormList < (3000083D)>] Form: XYFullBody Count: 43 Chance: 10
[FormList < (3000083E)>] Form: XYGlasses Count: 0 Chance: 50
[FormList < (3000083F)>] Form: XYHair Count: 0 Chance: 100
[FormList < (30000801)>] Form: XYJacket Count: 0 Chance: 0
[FormList < (30000802)>] Form: XYLeftArmArmor Count: 0 Chance: 0
[FormList < (30000803)>] Form: XYLeftLegArmor Count: 0 Chance: 0
[FormList < (30000804)>] Form: XYLegs Count: 0 Chance: 0
[FormList < (30000805)>] Form: XYLongHair Count: 0 Chance: 0
[FormList < (30000806)>] Form: XYMouth Count: 0 Chance: 0
[FormList < (30000807)>] Form: XYNeck Count: 14 Chance: 100
[FormList < (30000808)>] Form: XYRightArmArmor Count: 0 Chance: 0
[FormList < (30000809)>] Form: XYRightLegArmor Count: 0 Chance: 0
[FormList < (3000080A)>] Form: XYRing Count: 0 Chance: 0
[FormList < (3000080B)>] Form: XYSafeItems Count: 499 Chance: 0
[FormList < (3000080C)>] Form: XYShoes Count: 78 Chance: 100
[FormList < (3000080D)>] Form: XYShoulder Count: 0 Chance: 0
[FormList < (3000080E)>] Form: XYTop Count: 76 Chance: 100
[FormList < (3000080F)>] Form: XYTorsoArmor Count: 0 Chance: 0
[FormList < (30000840)>] Form: WeaponsList Count: 11 Chance: -1
[FormList < (30000858)>] Form: OSRestrictedFurniture Count: 265 Chance: -1
[07/15/2023 - 10:05:45AM] [..Shuffler][Actor < (2203795A)>]Dr. Alice Jones[Actor < (2203795A)>] is disabled.
[07/15/2023 - 10:05:45AM] [..Shuffler]Total Outfit Items = 2852. ScanNPCs() - Processed 0 Actors in 1.449997 seconds. Actors = 

 

Link to comment
3 hours ago, tzenrick said:

PopulateFormList() doesn't behave the same as AddForm(), either.  Every added item disappears on reload. There's no persistence.

 

It is not persistent unfortunately.

 

When I tested this, I added debug code to log the contents of a FormList, then reverted the FormList and logged the contents again, then did a PopulateFormList call and logged those contents.  It always did what I expected, in that each time I saved and reloaded, the forms were still there before the revert.  However, this FormList already existed in my save, and that seems to have hidden the issue.

 

Today I tested again on a brand new save, and there the FormList is empty each time the game loads.  It seems that if the formlist was ever modified with AddForm(), then PopulateFormList will be persistent, but not otherwise.

 

I have fixed the function so that it uses the game engine's BGSListForm::AddScriptAddedForm(BGSListForm *this, struct TESForm *akForm) function instead of manually adding the form to the FormList and that is indeed persistent in all cases.  This fix will be in the next release.

Link to comment
8 minutes ago, EgoBallistic said:

 

Not sure what you mean by that.

Below 0x08000000, GetFormFromFile will consistently "correct" for an invalid index, 0x08000000 or higher always returns NONE.

Even below 0x08000000 GetFormFromPlugin, is inconsistent.

 

It's worth a note on the documentation to do the (FormValueInt % 0x01000000), that's all. It seems to correct for both behaviors, and mostly worth noting, so another idiot like me doesn't spend 2 days trying to figure out this behavior, because that's still faster than checking 2-3k values in 137 ini files for incorrect indexes...

 

ScriptName dummy extends Quest

import game
import LL_FourPlay

event OnInit()
    int i = 0   
    String Logger
    while (i < 0x100)
        int FormVal=0x01000000*i
        FormVal+=0x800
        String OriginalName=OriginalPluginName(GetForm(FormVal))
		if (OriginalName!="")&&(GetFormFromFile(0x800,OriginalName)==None||GetFormFromPlugin(OriginalName, 0x800)==None||GetFormFromFile(0x01000800,OriginalName)==None||GetFormFromPlugin(OriginalName, 0x01000800)==None||GetFormFromFile(FormVal,OriginalName)==None||GetFormFromPlugin(OriginalName, FormVal)==None)
			Logger+="\n          OriginalPluginName:"+OriginalName+\
			"\n                  FormVal(H):"+IntToHexString(FormVal)+\
			"\n                  FormVal(D):"+FormVal

			If GetFormFromFile(0x800,OriginalName)==None
				Logger+="\n       GetFormFromFile:0x800:"+GetFormFromFile(0x800,OriginalName)
			endif

			if GetFormFromPlugin(OriginalName, 0x800)==None
				Logger+="\n     GetFormFromPlugin:0x800:"+GetFormFromPlugin(OriginalName, 0x800)
			endif

			if GetFormFromFile(0x01000800,OriginalName)==None
				Logger+="\n  GetFormFromFile:0x01000800:"+OriginalName+":"+GetFormFromFile(0x01000800,OriginalName)
			endif

			if GetFormFromPlugin(OriginalName, 0x01000800)==None
				Logger+="\nGetFormFromPlugin:0x01000800:"+OriginalName+":"+GetFormFromPlugin(OriginalName, 0x01000800)
			endif

			if GetFormFromFile(FormVal,OriginalName)==None
				Logger+="\n     GetFormFromFile:"+IntToHexString(FormVal)+":"+GetFormFromFile(FormVal,OriginalName)
			endif

			if GetFormFromPlugin(OriginalName, FormVal)==None
				Logger+="\n   GetFormFromPlugin:"+IntToHexString(FormVal)+":"+GetFormFromPlugin(OriginalName, FormVal)
			endif
			Logger+="\n"
		endif
    	i+=1
    endwhile
    Debug.TraceUser("OutfitShuffler",Logger)
endevent

 

          OriginalPluginName:DLCWorkshop02.esm
                  FormVal(H):4000800
                  FormVal(D):67110912
GetFormFromPlugin:0x01000800:DLCWorkshop02.esm:None

          OriginalPluginName:INVB_OverlayFramework.esp
                  FormVal(H):c000800
                  FormVal(D):201328640
GetFormFromPlugin:0x01000800:INVB_OverlayFramework.esp:None

          OriginalPluginName:SettlementKeywords.esm
                  FormVal(H):14000800
                  FormVal(D):335546368
GetFormFromPlugin:0x01000800:SettlementKeywords.esm:None

          OriginalPluginName:Commonwealth Captives.esp
                  FormVal(H):18000800
                  FormVal(D):402655232
GetFormFromPlugin:0x01000800:Commonwealth Captives.esp:None

          OriginalPluginName:BoundInPublic.esp
                  FormVal(H):20000800
                  FormVal(D):536872960
GetFormFromPlugin:0x01000800:BoundInPublic.esp:None

          OriginalPluginName:ZebrinasWorkshopDevices.esp
                  FormVal(H):2c000800
                  FormVal(D):738199552
GetFormFromPlugin:0x01000800:ZebrinasWorkshopDevices.esp:None

          OriginalPluginName:OutfitShuffler.esp
                  FormVal(H):30000800
                  FormVal(D):805308416
GetFormFromPlugin:0x01000800:OutfitShuffler.esp:None

          OriginalPluginName:ModdersRoom.esp
                  FormVal(H):34000800
                  FormVal(D):872417280
GetFormFromPlugin:0x01000800:ModdersRoom.esp:None

          OriginalPluginName:KSHairdos.esp
                  FormVal(H):88000800
                  FormVal(D):-2013263872
GetFormFromPlugin:0x01000800:KSHairdos.esp:None
     GetFormFromFile:88000800:None

          OriginalPluginName:GCM.esp
                  FormVal(H):8d000800
                  FormVal(D):-1929377792
     GetFormFromFile:8d000800:None

          OriginalPluginName:HN66Fo4_Rings.esp
                  FormVal(H):91000800
                  FormVal(D):-1862268928
     GetFormFromFile:91000800:None

          OriginalPluginName:HN66Fo4_Nails.esp
                  FormVal(H):93000800
                  FormVal(D):-1828714496
     GetFormFromFile:93000800:None

          OriginalPluginName:HN66Fo4_EarringsV1.esp
                  FormVal(H):94000800
                  FormVal(D):-1811937280
GetFormFromPlugin:0x01000800:HN66Fo4_EarringsV1.esp:None
     GetFormFromFile:94000800:None

          OriginalPluginName:LooksMenu Customization Compendium.esp
                  FormVal(H):9a000800
                  FormVal(D):-1711273984
GetFormFromPlugin:0x01000800:LooksMenu Customization Compendium.esp:None
     GetFormFromFile:9a000800:None

          OriginalPluginName:AtomicRadio.esp
                  FormVal(H):b1000800
                  FormVal(D):-1325398016
     GetFormFromFile:b1000800:None

          OriginalPluginName:SettleObjExpandPack.esp
                  FormVal(H):b8000800
                  FormVal(D):-1207957504
GetFormFromPlugin:0x01000800:SettleObjExpandPack.esp:None
     GetFormFromFile:b8000800:None

          OriginalPluginName:PowerArmorLiteReplacer.esp
                  FormVal(H):ba000800
                  FormVal(D):-1174403072
GetFormFromPlugin:0x01000800:PowerArmorLiteReplacer.esp:None
     GetFormFromFile:ba000800:None

          OriginalPluginName:TCD.esp
                  FormVal(H):bf000800
                  FormVal(D):-1090516992
     GetFormFromFile:bf000800:None

          OriginalPluginName:CCWigs.esp
                  FormVal(H):d3000800
                  FormVal(D):-754972672
     GetFormFromFile:d3000800:None

          OriginalPluginName:dcc-bp-lol.esp
                  FormVal(H):d5000800
                  FormVal(D):-721418240
     GetFormFromFile:d5000800:None

          OriginalPluginName:Pastel Wigs.esp
                  FormVal(H):d7000800
                  FormVal(D):-687863808
     GetFormFromFile:d7000800:None

 

Link to comment
19 hours ago, tzenrick said:

 

Thinking about it a little more, I haven't checked it against Light Plugins yet...

And I've decided I'm just coding around the whole situation, for every circumstance.

 

PluginInfo[] LightPluginInfoArray
String[] LightPluginsArray
Function CachePluginNames()
	int i
	While i<LightPluginInfoArray.Length
		LightPluginsArray.Add(LightPluginInfoArray[i].Name)
		i+=1
	endwhile
endfunction
If LightPluginsArray.Find(ThisPlugin) > -1
	FormValue=FormValue % 0x1000
else
	FormValue=FormValue % 0x1000000
endif

Remember Kids: If your first xEdit script spits out garbage that has to be translated on input, you will be coding around it forever, to maintain backward compatibility, instead of just regenerating all the INI files, from your new better xEdit script... (Because then I have to go through and recategorize every item in the INI files, and jesus fuck that took 4 days the first time...)

 

Don't be like me kids.

Link to comment
2 hours ago, tzenrick said:

And I've decided I'm just coding around the whole situation, for every circumstance.

 

That's not a bad idea in general.  But you are correct, GetFormFromPlugin() was not properly handling form IDs > 0xFFFFFF, e.g. form IDs that include a plugin index.  It handled form IDs from ESL flagged plugins correctly, because it always does formID &= 0xFFF; but it didn't do the equivalent formID &= 0xFFFFFF; for non-ESL plugins.  This is fixed in the next version.

Link to comment
2 hours ago, EgoBallistic said:

That's not a bad idea in general.

I built a whole function around it. It takes a pluginName.esX and either a string 0x value, or an Int. Converts, cleans, trims, and finally pulls a form.

String[] LightPluginsArray
Form Function GetCorrectedForm(String ThisPlugin, Var FormValue)
	OutfitShuffler OS
	OS=OutfitShufflerMainQuest as OutfitShuffler
	LightPluginsArray=OS.LightPluginsArray
	Int FormValueInt=FormValue as Int
	String FormValueString=FormValue as String
	Form ReturnForm=None
	If LightPluginsArray[0]==""
		LightPluginsArray.Clear()
		PluginInfo[] LightPluginInfoArray = new PluginInfo[0]
		LightPluginInfoArray=Game.GetInstalledLightPlugins() as PluginInfo[]
		dlog("Building LightPluginsArray: "+LightPluginInfoArray.Length)
		int i
		While i<LightPluginInfoArray.Length
			String LightPluginName=LightPluginInfoArray[i].name
			dlog("LightPluginName:"+LightPluginName)
			LightPluginsArray[i]=LightPluginName
			i+=1
		endwhile
	endif
	If ThisPlugin!=""
		If StringFind(FormValueString as String, "x", 0)>0
			FormValueString=StringSubstring(FormValueString,2)
			FormValueInt=HexStringToInt(FormValueString)
		endif
		If LightPluginsArray.Find(ThisPlugin) > -1
			FormValueInt=FormValueInt % 0x1000
		else
			FormValueInt=FormValueInt % 0x1000000
		endif
	endif
	ReturnForm=GetFormFromPlugin(ThisPlugin, FormValueInt)
	If returnform==None
		dlog("GetCorrectedForm("+ThisPlugin+","+FormValue+"("+FormValueInt+")) returned NONE")
	endif
	Return ReturnForm
endfunction

 

Link to comment

Update v46:

- Fixed Hex to int conversion

- Catch with the latest F4SE sources (v0.6.23)

- Fixed HexStringToInt() so that values above 0x00FFFFFF are handled correctly

- Fixed PopulateFormList() so that formlist additions are persistent between saves

 

 

Link to comment

Hi,

Not sure if this is the best place to ask, but for some reason I get CTDs trying to load a saved game whenever I have this plugin enabled and buffout's memory manager disabled. (To use Baka Scrapheap's instead.)

 

I've been trying to figure out what could be the cause, and it seems random at times but the latest version definitely crashes the game more than the previous v43/v44 versions. (v43/v44 still crashes but it happens less often...?)

 

Fallout 4 v1.10.163
Buffout 4 v1.31.1 Feb 28 2023 00:32:02

Unhandled exception at 0x7FF80A71CF19 KERNELBASE.dll+002CF19	nop [rax+rax*1], eax

	[Compatibility]
		F4EE: true
	[Debug]
		Symcache: c:symcache
		WaitForDebugger: false
	[Fixes]
		ActorIsHostileToActor: true
		CellInit: true
		CreateD3DAndSwapChain: true
		EncounterZoneReset: true
		GreyMovies: true
		MagicEffectApplyEvent: true
		MovementPlanner: true
		PackageAllocateLocation: true
		PipboyLightInvFix: false
		SafeExit: true
		TESObjectREFRGetEncounterZone: true
		UnalignedLoad: true
		UtilityShader: true
		WorkBenchSwap: true
	[Patches]
		Achievements: true
		BSMTAManager: true
		BSPreCulledObjects: true
		BSTextureStreamerLocalHeap: true
		HavokMemorySystem: true
		INISettingCollection: true
		InputSwitch: false
		MaxStdIO: 2048
		MemoryManager: false
		MemoryManagerDebug: false
		ScaleformAllocator: true
		SmallBlockAllocator: true
		WorkshopMenu: true
	[Warnings]
		CreateTexture2D: true
		ImageSpaceAdapter: true

SYSTEM SPECS:
	OS: Microsoft Windows 10 Pro v10.0.19041
	CPU: AuthenticAMD AMD Ryzen 7 5800X3D 8-Core Processor           
	GPU #1: AMD Navi 31 [Radeon RX 7900 XT/7900 XTX]
	GPU #2: Microsoft Basic Render Driver
	GPU #3: Microsoft Basic Render Driver
	PHYSICAL MEMORY: 12.79 GB/31.90 GB


PROBABLE CALL STACK:
	[ 0] 0x7FF80A71CF19           KERNELBASE.dll+002CF19
	[ 1] 0x02E5B208ECBC LL_fourPlay_1_10_163.dll+001ECBC
	[ 2] 0x02E5B208B5A1 LL_fourPlay_1_10_163.dll+001B5A1
	[ 3] 0x02E5B207170A LL_fourPlay_1_10_163.dll+000170A
	[ 4] 0x02E5B2074D20 LL_fourPlay_1_10_163.dll+0004D20
	[ 5] 0x02E5B2074F96 LL_fourPlay_1_10_163.dll+0004F96
	[ 6] 0x02E5B2075548 LL_fourPlay_1_10_163.dll+0005548
	[ 7] 0x02E5B2077A1A LL_fourPlay_1_10_163.dll+0007A1A
	[ 8] 0x02E5B207F6DF LL_fourPlay_1_10_163.dll+000F6DF
	[ 9] 0x7FF69994D767             Fallout4.exe+270D767	test al, al |  BSScript::NF_util::NativeFunctionBase::Call(BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&,BSScript::ErrorLogger&,BSScript::Internal::VirtualMachine&,bool)_270D767 -> 571037+0x217	test al, al
	[10] 0x7FF69997F224             Fallout4.exe+273F224	mov r15, [rbp-0x38] |  BSScript::Internal::VirtualMachine::AttemptFunctionCall(BSScript::Stack*,BSTSmartPointer<BSScript::Internal::IFuncCallQuery,BSTSmartPointerIntrusiveRefCount>&,bool)_273F224 -> 1500402+0xA14	mov r15, [rbp-0x38]
	[11] 0x7FF6999801FF             Fallout4.exe+27401FF	call 0x00007FF698D558F0 |  BSScript::Internal::VirtualMachine::ProcessMessageQueue(float,uint&,uint&)_27401FF -> 412932+0x1BF	call 0x00007FF698D558F0
	[12] 0x7FF699971C37             Fallout4.exe+2731C37	lea r8, [rbp+0x50] |  BSScript::Internal::VirtualMachine::Update(float)_2731C37 -> 1146038+0x477	lea r8, [rbp+0x50]
	[13] 0x7FF6985B2378             Fallout4.exe+1372378	mov r15, [rsp+0x50] |  GameVM::Update(float)_1372378 -> 759508+0x228	mov r15, [rsp+0x50]
	[14] 0x7FF697EFD875             Fallout4.exe+0CBD875	mov ecx, [0x00007FF69CCABCDC] |  JobListManager::VMUpdate(void*)_CBD875 -> 507275+0x15	mov ecx, [0x00007FF69CCABCDC]
	[15] 0x7FF698D90F26             Fallout4.exe+1B50F26	mov ecx, [rbx+0x0C] |  BSJobs::JobListLocal::RunJobsInternal(uint,BSJobs::ThreadJobListState&,bool)_1B50F26 -> 329005+0xC6	mov ecx, [rbx+0x0C]
	[16] 0x7FF698D91432             Fallout4.exe+1B51432	mov r14d, eax |  BSJobs::JobThread::RunJob(void)_1B51432 -> 194800+0x202	mov r14d, eax
	[17] 0x7FF698D93F67             Fallout4.exe+1B53F67	movzx eax, byte ptr [rbx+0xA74] |  BSJobs::JobThread::ThreadProc(void)_1B53F67 -> 1492866+0x67	movzx eax, byte ptr [rbx+0xA74]
	[18] 0x7FF698D5CFED             Fallout4.exe+1B1CFED	mov rcx, [0x00007FF69CD9BD38] |  BSThread::CallThreadProc(void)_1B1CFED -> 1079791+0x3D	mov rcx, [0x00007FF69CD9BD38]
	[19] 0x7FF80C7F7614             KERNEL32.DLL+0017614
	[20] 0x7FF80CD226B1                ntdll.dll+00526B1

REGISTERS:
	RAX 0x0                (size_t) [0]
	RCX 0x48               (size_t) [72]
	RDX 0x0                (size_t) [0]
	RBX 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0	add [rax], al)
	RSP 0xF63ABF6610       (char*) "0"
	RBP 0xF63ABF6750       (void*)
	RSI 0x0                (size_t) [0]
	RDI 0x5                (size_t) [5]
	R8  0x0                (size_t) [0]
	R9  0x0                (size_t) [0]
	R10 0x7FF80CCF5BA1     (void* -> ntdll.dll+0025BA1	test eax, eax)
	R11 0x2E5AFED0000      (void*)
	R12 0xF63ABF68A0       (void*)
	R13 0xF63ABFE9B0       (void*)
	R14 0xF63ABF6958       (void*)
	R15 0xF63ABF68A8       (void*)

 

This is the full crash log:

Spoiler

Fallout 4 v1.10.163
Buffout 4 v1.31.1 Feb 28 2023 00:32:02

Unhandled exception at 0x7FF80A71CF19 KERNELBASE.dll+002CF19    nop [rax+rax*1], eax

    [Compatibility]
        F4EE: true
    [Debug]
        Symcache: c:symcache
        WaitForDebugger: false
    [Fixes]
        ActorIsHostileToActor: true
        CellInit: true
        CreateD3DAndSwapChain: true
        EncounterZoneReset: true
        GreyMovies: true
        MagicEffectApplyEvent: true
        MovementPlanner: true
        PackageAllocateLocation: true
        PipboyLightInvFix: false
        SafeExit: true
        TESObjectREFRGetEncounterZone: true
        UnalignedLoad: true
        UtilityShader: true
        WorkBenchSwap: true
    [Patches]
        Achievements: true
        BSMTAManager: true
        BSPreCulledObjects: true
        BSTextureStreamerLocalHeap: true
        HavokMemorySystem: true
        INISettingCollection: true
        InputSwitch: false
        MaxStdIO: 2048
        MemoryManager: false
        MemoryManagerDebug: false
        ScaleformAllocator: true
        SmallBlockAllocator: true
        WorkshopMenu: true
    [Warnings]
        CreateTexture2D: true
        ImageSpaceAdapter: true

SYSTEM SPECS:
    OS: Microsoft Windows 10 Pro v10.0.19041
    CPU: AuthenticAMD AMD Ryzen 7 5800X3D 8-Core Processor           
    GPU #1: AMD Navi 31 [Radeon RX 7900 XT/7900 XTX]
    GPU #2: Microsoft Basic Render Driver
    GPU #3: Microsoft Basic Render Driver
    PHYSICAL MEMORY: 12.79 GB/31.90 GB


PROBABLE CALL STACK:
    [ 0] 0x7FF80A71CF19           KERNELBASE.dll+002CF19
    [ 1] 0x02E5B208ECBC LL_fourPlay_1_10_163.dll+001ECBC
    [ 2] 0x02E5B208B5A1 LL_fourPlay_1_10_163.dll+001B5A1
    [ 3] 0x02E5B207170A LL_fourPlay_1_10_163.dll+000170A
    [ 4] 0x02E5B2074D20 LL_fourPlay_1_10_163.dll+0004D20
    [ 5] 0x02E5B2074F96 LL_fourPlay_1_10_163.dll+0004F96
    [ 6] 0x02E5B2075548 LL_fourPlay_1_10_163.dll+0005548
    [ 7] 0x02E5B2077A1A LL_fourPlay_1_10_163.dll+0007A1A
    [ 8] 0x02E5B207F6DF LL_fourPlay_1_10_163.dll+000F6DF
    [ 9] 0x7FF69994D767             Fallout4.exe+270D767    test al, al |  BSScript::NF_util::NativeFunctionBase::Call(BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&,BSScript::ErrorLogger&,BSScript::Internal::VirtualMachine&,bool)_270D767 -> 571037+0x217    test al, al
    [10] 0x7FF69997F224             Fallout4.exe+273F224    mov r15, [rbp-0x38] |  BSScript::Internal::VirtualMachine::AttemptFunctionCall(BSScript::Stack*,BSTSmartPointer<BSScript::Internal::IFuncCallQuery,BSTSmartPointerIntrusiveRefCount>&,bool)_273F224 -> 1500402+0xA14    mov r15, [rbp-0x38]
    [11] 0x7FF6999801FF             Fallout4.exe+27401FF    call 0x00007FF698D558F0 |  BSScript::Internal::VirtualMachine::ProcessMessageQueue(float,uint&,uint&)_27401FF -> 412932+0x1BF    call 0x00007FF698D558F0
    [12] 0x7FF699971C37             Fallout4.exe+2731C37    lea r8, [rbp+0x50] |  BSScript::Internal::VirtualMachine::Update(float)_2731C37 -> 1146038+0x477    lea r8, [rbp+0x50]
    [13] 0x7FF6985B2378             Fallout4.exe+1372378    mov r15, [rsp+0x50] |  GameVM::Update(float)_1372378 -> 759508+0x228    mov r15, [rsp+0x50]
    [14] 0x7FF697EFD875             Fallout4.exe+0CBD875    mov ecx, [0x00007FF69CCABCDC] |  JobListManager::VMUpdate(void*)_CBD875 -> 507275+0x15    mov ecx, [0x00007FF69CCABCDC]
    [15] 0x7FF698D90F26             Fallout4.exe+1B50F26    mov ecx, [rbx+0x0C] |  BSJobs::JobListLocal::RunJobsInternal(uint,BSJobs::ThreadJobListState&,bool)_1B50F26 -> 329005+0xC6    mov ecx, [rbx+0x0C]
    [16] 0x7FF698D91432             Fallout4.exe+1B51432    mov r14d, eax |  BSJobs::JobThread::RunJob(void)_1B51432 -> 194800+0x202    mov r14d, eax
    [17] 0x7FF698D93F67             Fallout4.exe+1B53F67    movzx eax, byte ptr [rbx+0xA74] |  BSJobs::JobThread::ThreadProc(void)_1B53F67 -> 1492866+0x67    movzx eax, byte ptr [rbx+0xA74]
    [18] 0x7FF698D5CFED             Fallout4.exe+1B1CFED    mov rcx, [0x00007FF69CD9BD38] |  BSThread::CallThreadProc(void)_1B1CFED -> 1079791+0x3D    mov rcx, [0x00007FF69CD9BD38]
    [19] 0x7FF80C7F7614             KERNEL32.DLL+0017614
    [20] 0x7FF80CD226B1                ntdll.dll+00526B1

REGISTERS:
    RAX 0x0                (size_t) [0]
    RCX 0x48               (size_t) [72]
    RDX 0x0                (size_t) [0]
    RBX 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0    add [rax], al)
    RSP 0xF63ABF6610       (char*) "0"
    RBP 0xF63ABF6750       (void*)
    RSI 0x0                (size_t) [0]
    RDI 0x5                (size_t) [5]
    R8  0x0                (size_t) [0]
    R9  0x0                (size_t) [0]
    R10 0x7FF80CCF5BA1     (void* -> ntdll.dll+0025BA1    test eax, eax)
    R11 0x2E5AFED0000      (void*)
    R12 0xF63ABF68A0       (void*)
    R13 0xF63ABFE9B0       (void*)
    R14 0xF63ABF6958       (void*)
    R15 0xF63ABF68A8       (void*)

STACK:
    [RSP+0   ] 0x30               (size_t) [48]
    [RSP+8   ] 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0    add [rax], al)
    [RSP+10  ] 0x0                (size_t) [0]
    [RSP+18  ] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+20  ] 0x1E06D7363        (size_t) [8060236643]
    [RSP+28  ] 0x0                (size_t) [0]
    [RSP+30  ] 0x7FF80A71CF19     (void* -> KERNELBASE.dll+002CF19    nop [rax+rax*1], eax)
    [RSP+38  ] 0x4                (size_t) [4]
    [RSP+40  ] 0x19930520         (size_t) [429065504]
    [RSP+48  ] 0xF63ABF6780       (std::out_of_range*)
    [RSP+50  ] 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0    add [rax], al)
    [RSP+58  ] 0x2E5B2070000      (void*)
    [RSP+60  ] 0xF63ABFE9B0       (void*)
    [RSP+68  ] 0xF63ABF68A0       (void*)
    [RSP+70  ] 0x0                (size_t) [0]
    [RSP+78  ] 0xF63ABF6750       (void*)
    [RSP+80  ] 0xF63ABF6760       (void*)
    [RSP+88  ] 0x7FF80CD04A5F     (void* -> ntdll.dll+0034A5F    mov rax, [rsp+0x28])
    [RSP+90  ] 0x5                (size_t) [5]
    [RSP+98  ] 0xF600000000       (size_t) [1056561954816]
    [RSP+A0  ] 0x18               (size_t) [24]
    [RSP+A8  ] 0xF63ABF6780       (std::out_of_range*)
    [RSP+B0  ] 0x2E5B20CB000      (void* -> LL_fourPlay_1_10_163.dll+005B000    adc [rax], dl)
    [RSP+B8  ] 0x2E5B2070000      (void*)
    [RSP+C0  ] 0x2567A8E8DA2F     (size_t) [41127145691695]
    [RSP+C8  ] 0x18               (size_t) [24]
    [RSP+D0  ] 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0    add [rax], al)
    [RSP+D8  ] 0x2E5B208ECBC      (void* -> LL_fourPlay_1_10_163.dll+001ECBC    mov rbx, [rsp+0x78])
    [RSP+E0  ] 0x2E5B20B0C28      (char*) "invalid string position"
    [RSP+E8  ] 0x2E5B208CED6      (void* -> LL_fourPlay_1_10_163.dll+001CED6    mov byte ptr [rsi+0x10], 0x01)
    [RSP+F0  ] 0x2E5B20B0C28      (char*) "invalid string position"
    [RSP+F8  ] 0xF63ABF6780       (std::out_of_range*)
    [RSP+100 ] 0x1E06D7363        (size_t) [8060236643]
    [RSP+108 ] 0x0                (size_t) [0]
    [RSP+110 ] 0x0                (size_t) [0]
    [RSP+118 ] 0x4                (size_t) [4]
    [RSP+120 ] 0x19930520         (size_t) [429065504]
    [RSP+128 ] 0xF63ABF6780       (std::out_of_range*)
    [RSP+130 ] 0x2E5B20BF3D0      (void* -> LL_fourPlay_1_10_163.dll+004F3D0    add [rax], al)
    [RSP+138 ] 0x2E5B2070000      (void*)
    [RSP+140 ] 0xF63ABF6840       (void*)
    [RSP+148 ] 0x2E5B208B5A1      (void* -> LL_fourPlay_1_10_163.dll+001B5A1    int3)
    [RSP+150 ] 0x2E5B2070000      (void*)
    [RSP+158 ] 0xF63ABF6810       (void*)
    [RSP+160 ] 0x0                (size_t) [0]
    [RSP+168 ] 0x7FF698D83C21     (void* -> Fallout4.exe+1B43C21    test eax, eax |  `anonymous_namespace'::FindEntry<char>(BSStringPool::Entry*&,char*,ushort,bool)_1B43C21)
    [RSP+170 ] 0x2E5B20A9A10      (void* -> LL_fourPlay_1_10_163.dll+0039A10    shl byte ptr [rax+rcx*1+0x2E5B2], 0x00)
    [RSP+178 ] 0x2E713512690      (char*) "invalid string position"
    [RSP+180 ] 0x1                (size_t) [1]
    [RSP+188 ] 0x7FF699931062     (void* -> Fallout4.exe+26F1062    jmp 0x00007FF699931259 |  BSScript::Variable::Assign(BSScript::Variable&)_26F1062)
    [RSP+190 ] 0x2E5B20B0C50      (void* -> LL_fourPlay_1_10_163.dll+0040C50    add [rax], al)
    [RSP+198 ] 0x2E5B207170A      (void* -> LL_fourPlay_1_10_163.dll+000170A    int3)
    [RSP+1A0 ] 0x2E5B20B0C28      (char*) "invalid string position"
    [RSP+1A8 ] 0x7FF69A04F340     (void* -> Fallout4.exe+2E0F340    add [rax], al |  aDiveBombChance_2E0F340)
    [RSP+1B0 ] 0x7FF69CE27580     (void* -> Fallout4.exe+5BE7580    add [rax], al |  aDiveBombChance_5BE7580)
    [RSP+1B8 ] 0xF63ABFE9B0       (void*)
    [RSP+1C0 ] 0xF63ABF6810       (void*)
    [RSP+1C8 ] 0x2E5B2074D20      (void* -> LL_fourPlay_1_10_163.dll+0004D20    cmp qword ptr [rbp-0x20], 0x00)
    [RSP+1D0 ] 0x5                (size_t) [5]
    [RSP+1D8 ] 0x0                (size_t) [0]
    [RSP+1E0 ] 0x0                (size_t) [0]
    [RSP+1E8 ] 0x7FF699930A14     (void* -> Fallout4.exe+26F0A14    jmp 0x00007FF699930AA6 |  BSScript::Variable::Cleanup(void)_26F0A14)
    [RSP+1F0 ] 0xF63ABF6800       (void*)
    [RSP+1F8 ] 0xFFFFFFFFFFFFFFFE (size_t) [uint: 18446744073709551614 int: -2]
    [RSP+200 ] 0xF63ABF8270       (void*)
    [RSP+208 ] 0xF63ABFE9B0       (void*)
    [RSP+210 ] 0x5                (size_t) [5]
    [RSP+218 ] 0xF                (size_t) [15]
    [RSP+220 ] 0x522C34341BDB     (size_t) [90349807868891]
    [RSP+228 ] 0xF63ABF6980       (void*)
    [RSP+230 ] 0x2E67837A600      (void*)
    [RSP+238 ] 0x2E66B746800      (void*)
    [RSP+240 ] 0xF63ABFE9D8       (void*)
    [RSP+248 ] 0x1                (size_t) [1]
    [RSP+250 ] 0x0                (size_t) [0]
    [RSP+258 ] 0xF63ABF6958       (void*)
    [RSP+260 ] 0xF63ABF6980       (void*)
    [RSP+268 ] 0x2E5B2074F96      (void* -> LL_fourPlay_1_10_163.dll+0004F96    movzx edi, al)
    [RSP+270 ] 0xF63ABF6940       (char*) "0x00002F1F=Fallout4.esm"
    [RSP+278 ] 0x2E67CAF4E50      (char*) "Gender.Female"
    [RSP+280 ] 0x2                (size_t) [2]
    [RSP+288 ] 0x408D2D3C         (size_t) [1082993980]
    [RSP+290 ] 0x2E6685B5FE0      (void*)
    [RSP+298 ] 0x2E6685B5FE0      (void*)
    [RSP+2A0 ] 0x0                (size_t) [0]
    [RSP+2A8 ] 0x2E85F6F1470      (void*)
    [RSP+2B0 ] 0x2E85F6F14A0      (void*)
    [RSP+2B8 ] 0x2E85F6F14A0      (void*)
    [RSP+2C0 ] 0x0                (size_t) [0]
    [RSP+2C8 ] 0x0                (size_t) [0]
    [RSP+2D0 ] 0x2E85F6F16F0      (void*)
    [RSP+2D8 ] 0x2E85F6F1720      (void*)
    [RSP+2E0 ] 0x2E85F6F1720      (void*)
    [RSP+2E8 ] 0x0                (size_t) [0]
    [RSP+2F0 ] 0xFFFFFFFFFFFFFFFE (size_t) [uint: 18446744073709551614 int: -2]
    [RSP+2F8 ] 0x0                (size_t) [0]
    [RSP+300 ] 0x3232303130307830 (size_t) [3617006438551943216]
    [RSP+308 ] 0x6F6C6C61463D3934 (size_t) [8028911400740796724]
    [RSP+310 ] 0x6D73652E347475   (size_t) [30807650865542261]
    [RSP+318 ] 0x3339373030307830 (size_t) [3691042049713272880]
    [RSP+320 ] 0x6F6C6C61463D3530 (size_t) [8028911400740795696]
    [RSP+328 ] 0x6D73652E347475   (size_t) [30807650865542261]
    [RSP+330 ] 0x4632303030307830 (size_t) [5058158315015534640]
    [RSP+338 ] 0x6F6C6C61463D4631 (size_t) [8028911400740800049]
    [RSP+340 ] 0x6D73652E347475   (size_t) [30807650865542261]
    [RSP+348 ] 0xF63ABF8270       (void*)
    [RSP+350 ] 0xF63ABF82F0       (void*)
    [RSP+358 ] 0x0                (size_t) [0]
    [RSP+360 ] 0x0                (size_t) [0]
    [RSP+368 ] 0x0                (size_t) [0]
    [RSP+370 ] 0x0                (size_t) [0]
    [RSP+378 ] 0x0                (size_t) [0]
    [RSP+380 ] 0x0                (size_t) [0]
    [RSP+388 ] 0x0                (size_t) [0]
    [RSP+390 ] 0x0                (size_t) [0]
    [RSP+398 ] 0x0                (size_t) [0]
    [RSP+3A0 ] 0x0                (size_t) [0]
    [RSP+3A8 ] 0x0                (size_t) [0]
    [RSP+3B0 ] 0x0                (size_t) [0]
    [RSP+3B8 ] 0x0                (size_t) [0]
    [RSP+3C0 ] 0x0                (size_t) [0]
    [RSP+3C8 ] 0x0                (size_t) [0]
    [RSP+3D0 ] 0x0                (size_t) [0]
    [RSP+3D8 ] 0x0                (size_t) [0]
    [RSP+3E0 ] 0x0                (size_t) [0]
    [RSP+3E8 ] 0x0                (size_t) [0]
    [RSP+3F0 ] 0x0                (size_t) [0]
    [RSP+3F8 ] 0x0                (size_t) [0]
    [RSP+400 ] 0x0                (size_t) [0]
    [RSP+408 ] 0x0                (size_t) [0]
    [RSP+410 ] 0x0                (size_t) [0]
    [RSP+418 ] 0x0                (size_t) [0]
    [RSP+420 ] 0x0                (size_t) [0]
    [RSP+428 ] 0x0                (size_t) [0]
    [RSP+430 ] 0x0                (size_t) [0]
    [RSP+438 ] 0x0                (size_t) [0]
    [RSP+440 ] 0x0                (size_t) [0]
    [RSP+448 ] 0x0                (size_t) [0]
    [RSP+450 ] 0x0                (size_t) [0]
    [RSP+458 ] 0x0                (size_t) [0]
    [RSP+460 ] 0x0                (size_t) [0]
    [RSP+468 ] 0x0                (size_t) [0]
    [RSP+470 ] 0x0                (size_t) [0]
    [RSP+478 ] 0x0                (size_t) [0]
    [RSP+480 ] 0x0                (size_t) [0]
    [RSP+488 ] 0x0                (size_t) [0]
    [RSP+490 ] 0x0                (size_t) [0]
    [RSP+498 ] 0x0                (size_t) [0]
    [RSP+4A0 ] 0x0                (size_t) [0]
    [RSP+4A8 ] 0x0                (size_t) [0]
    [RSP+4B0 ] 0x0                (size_t) [0]
    [RSP+4B8 ] 0x0                (size_t) [0]
    [RSP+4C0 ] 0x0                (size_t) [0]
    [RSP+4C8 ] 0x0                (size_t) [0]
    [RSP+4D0 ] 0x0                (size_t) [0]
    [RSP+4D8 ] 0x0                (size_t) [0]
    [RSP+4E0 ] 0x0                (size_t) [0]
    [RSP+4E8 ] 0x0                (size_t) [0]
    [RSP+4F0 ] 0x0                (size_t) [0]
    [RSP+4F8 ] 0x0                (size_t) [0]
    [RSP+500 ] 0x0                (size_t) [0]
    [RSP+508 ] 0x0                (size_t) [0]
    [RSP+510 ] 0x0                (size_t) [0]
    [RSP+518 ] 0x0                (size_t) [0]
    [RSP+520 ] 0x0                (size_t) [0]
    [RSP+528 ] 0x0                (size_t) [0]
    [RSP+530 ] 0x0                (size_t) [0]
    [RSP+538 ] 0x0                (size_t) [0]
    [RSP+540 ] 0x0                (size_t) [0]
    [RSP+548 ] 0x0                (size_t) [0]
    [RSP+550 ] 0x0                (size_t) [0]
    [RSP+558 ] 0x0                (size_t) [0]
    [RSP+560 ] 0x0                (size_t) [0]
    [RSP+568 ] 0x0                (size_t) [0]
    [RSP+570 ] 0x0                (size_t) [0]
    [RSP+578 ] 0x0                (size_t) [0]
    [RSP+580 ] 0x0                (size_t) [0]
    [RSP+588 ] 0x0                (size_t) [0]
    [RSP+590 ] 0x0                (size_t) [0]
    [RSP+598 ] 0x0                (size_t) [0]
    [RSP+5A0 ] 0x0                (size_t) [0]
    [RSP+5A8 ] 0x0                (size_t) [0]
    [RSP+5B0 ] 0x0                (size_t) [0]
    [RSP+5B8 ] 0x0                (size_t) [0]
    [RSP+5C0 ] 0x0                (size_t) [0]
    [RSP+5C8 ] 0x0                (size_t) [0]
    [RSP+5D0 ] 0x0                (size_t) [0]
    [RSP+5D8 ] 0x0                (size_t) [0]
    [RSP+5E0 ] 0x0                (size_t) [0]
    [RSP+5E8 ] 0x0                (size_t) [0]
    [RSP+5F0 ] 0x0                (size_t) [0]
    [RSP+5F8 ] 0x0                (size_t) [0]
    [RSP+600 ] 0x0                (size_t) [0]
    [RSP+608 ] 0x0                (size_t) [0]
    [RSP+610 ] 0x0                (size_t) [0]
    [RSP+618 ] 0x0                (size_t) [0]
    [RSP+620 ] 0x0                (size_t) [0]
    [RSP+628 ] 0x0                (size_t) [0]
    [RSP+630 ] 0x0                (size_t) [0]
    [RSP+638 ] 0x0                (size_t) [0]
    [RSP+640 ] 0x0                (size_t) [0]
    [RSP+648 ] 0x0                (size_t) [0]
    [RSP+650 ] 0x0                (size_t) [0]
    [RSP+658 ] 0x0                (size_t) [0]
    [RSP+660 ] 0x3FDFB35633D6BF95 (size_t) [4602594527014207381]
    [RSP+668 ] 0x9                (size_t) [9]
    [RSP+670 ] 0xC                (size_t) [12]
    [RSP+678 ] 0x0                (size_t) [0]
    [RSP+680 ] 0x41B5C6F2419946CE (size_t) [4734909327034894030]
    [RSP+688 ] 0x408D2D3C         (size_t) [1082993980]
    [RSP+690 ] 0x41686B4A4170D3CA (size_t) [4713134976712889290]
    [RSP+698 ] 0x3F0000004012C623 (size_t) [4539628425464432163]
    [RSP+6A0 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+6A8 ] 0x3F000000C0079454 (size_t) [4539628427611182164]
    [RSP+6B0 ] 0x0                (size_t) [0]
    [RSP+6B8 ] 0x0                (size_t) [0]
    [RSP+6C0 ] 0xC0CA9162C12F19F8 (size_t) [uint: 13892075853911628280 int: -4554668219797923336]
    [RSP+6C8 ] 0x34E00000BE331CF0 (size_t) [3810045287946460400]
    [RSP+6D0 ] 0xC1686B4AC170D3CA (size_t) [uint: 13936507015715148746 int: -4510237057994402870]
    [RSP+6D8 ] 0x3F000007C012C623 (size_t) [4539628457676686883]
    [RSP+6E0 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+6E8 ] 0x3F000000C0079454 (size_t) [4539628427611182164]
    [RSP+6F0 ] 0x0                (size_t) [0]
    [RSP+6F8 ] 0x0                (size_t) [0]
    [RSP+700 ] 0xC0CA9162419946CE (size_t) [uint: 13892075851771102926 int: -4554668221938448690]
    [RSP+708 ] 0x34800000BE331CF0 (size_t) [3783023690182237424]
    [RSP+710 ] 0xC1686B4A4170D3CA (size_t) [uint: 13936507013567665098 int: -4510237060141886518]
    [RSP+718 ] 0x3F000004C012C623 (size_t) [4539628444791784995]
    [RSP+720 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+728 ] 0x3F000000C0079454 (size_t) [4539628427611182164]
    [RSP+730 ] 0x0                (size_t) [0]
    [RSP+738 ] 0x0                (size_t) [0]
    [RSP+740 ] 0x41B5C6F2419946CE (size_t) [4734909327034894030]
    [RSP+748 ] 0x34000000BE331CF0 (size_t) [3746994893163273456]
    [RSP+750 ] 0x41686B4A4170D3CA (size_t) [4713134976712889290]
    [RSP+758 ] 0x3F000002C012C623 (size_t) [4539628436201850403]
    [RSP+760 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+768 ] 0x3F000000C0079454 (size_t) [4539628427611182164]
    [RSP+770 ] 0x0                (size_t) [0]
    [RSP+778 ] 0x0                (size_t) [0]
    [RSP+780 ] 0x41B5C6F2419946CE (size_t) [4734909327034894030]
    [RSP+788 ] 0xB5800000BFF6E022 (size_t) [uint: 13078453321104547874 int: -5368290752605003742]
    [RSP+790 ] 0x41686B4A4170D3CA (size_t) [4713134976712889290]
    [RSP+798 ] 0x3F000002C012C623 (size_t) [4539628436201850403]
    [RSP+7A0 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+7A8 ] 0x3F000012BEBAB090 (size_t) [4539628504898777232]
    [RSP+7B0 ] 0x0                (size_t) [0]
    [RSP+7B8 ] 0x0                (size_t) [0]
    [RSP+7C0 ] 0xC0CA9162C12F19F8 (size_t) [uint: 13892075853911628280 int: -4554668219797923336]
    [RSP+7C8 ] 0xB5300000BFF6E022 (size_t) [uint: 13055935322967695394 int: -5390808750741856222]
    [RSP+7D0 ] 0xC1686B4AC170D3CA (size_t) [uint: 13936507015715148746 int: -4510237057994402870]
    [RSP+7D8 ] 0x3F000007C012C623 (size_t) [4539628457676686883]
    [RSP+7E0 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+7E8 ] 0x3F000012BEBAB090 (size_t) [4539628504898777232]
    [RSP+7F0 ] 0x0                (size_t) [0]
    [RSP+7F8 ] 0x0                (size_t) [0]
    [RSP+800 ] 0xC0CA9162C12F19F8 (size_t) [uint: 13892075853911628280 int: -4554668219797923336]
    [RSP+808 ] 0x34C00000408D2D3C (size_t) [3801038086583692604]
    [RSP+810 ] 0xC1686B4AC170D3CA (size_t) [uint: 13936507015715148746 int: -4510237057994402870]
    [RSP+818 ] 0x3F0000064012C623 (size_t) [4539628451234235939]
    [RSP+820 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+828 ] 0x3F000000C0079454 (size_t) [4539628427611182164]
    [RSP+830 ] 0x0                (size_t) [0]
    [RSP+838 ] 0x0                (size_t) [0]
    [RSP+840 ] 0xC0CA9162419946CE (size_t) [uint: 13892075851771102926 int: -4554668221938448690]
    [RSP+848 ] 0xB5600000BFF6E022 (size_t) [uint: 13069446121849806882 int: -5377297951859744734]
    [RSP+850 ] 0xC1686B4A4170D3CA (size_t) [uint: 13936507013567665098 int: -4510237060141886518]
    [RSP+858 ] 0x3F000004C012C623 (size_t) [4539628444791784995]
    [RSP+860 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+868 ] 0x3F000012BEBAB090 (size_t) [4539628504898777232]
    [RSP+870 ] 0x0                (size_t) [0]
    [RSP+878 ] 0x0                (size_t) [0]
    [RSP+880 ] 0x41B5C6F2419946CE (size_t) [4734909327034894030]
    [RSP+888 ] 0xB5800000BFF6E022 (size_t) [uint: 13078453321104547874 int: -5368290752605003742]
    [RSP+890 ] 0x41686B4A4170D3CA (size_t) [4713134976712889290]
    [RSP+898 ] 0x3F000002C012C623 (size_t) [4539628436201850403]
    [RSP+8A0 ] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+8A8 ] 0x3F000012BEBAB090 (size_t) [4539628504898777232]
    [RSP+8B0 ] 0x0                (size_t) [0]
    [RSP+8B8 ] 0x0                (size_t) [0]
    [RSP+8C0 ] 0x0                (size_t) [0]
    [RSP+8C8 ] 0x0                (size_t) [0]
    [RSP+8D0 ] 0x0                (size_t) [0]
    [RSP+8D8 ] 0x0                (size_t) [0]
    [RSP+8E0 ] 0x0                (size_t) [0]
    [RSP+8E8 ] 0x0                (size_t) [0]
    [RSP+8F0 ] 0x0                (size_t) [0]
    [RSP+8F8 ] 0x0                (size_t) [0]
    [RSP+900 ] 0x0                (size_t) [0]
    [RSP+908 ] 0x0                (size_t) [0]
    [RSP+910 ] 0x0                (size_t) [0]
    [RSP+918 ] 0x0                (size_t) [0]
    [RSP+920 ] 0x0                (size_t) [0]
    [RSP+928 ] 0x0                (size_t) [0]
    [RSP+930 ] 0x0                (size_t) [0]
    [RSP+938 ] 0x0                (size_t) [0]
    [RSP+940 ] 0x0                (size_t) [0]
    [RSP+948 ] 0x0                (size_t) [0]
    [RSP+950 ] 0x0                (size_t) [0]
    [RSP+958 ] 0x0                (size_t) [0]
    [RSP+960 ] 0x0                (size_t) [0]
    [RSP+968 ] 0x0                (size_t) [0]
    [RSP+970 ] 0x0                (size_t) [0]
    [RSP+978 ] 0x0                (size_t) [0]
    [RSP+980 ] 0x0                (size_t) [0]
    [RSP+988 ] 0x0                (size_t) [0]
    [RSP+990 ] 0x0                (size_t) [0]
    [RSP+998 ] 0x0                (size_t) [0]
    [RSP+9A0 ] 0x0                (size_t) [0]
    [RSP+9A8 ] 0x0                (size_t) [0]
    [RSP+9B0 ] 0x0                (size_t) [0]
    [RSP+9B8 ] 0x0                (size_t) [0]
    [RSP+9C0 ] 0x0                (size_t) [0]
    [RSP+9C8 ] 0x0                (size_t) [0]
    [RSP+9D0 ] 0x0                (size_t) [0]
    [RSP+9D8 ] 0x0                (size_t) [0]
    [RSP+9E0 ] 0x0                (size_t) [0]
    [RSP+9E8 ] 0x0                (size_t) [0]
    [RSP+9F0 ] 0x0                (size_t) [0]
    [RSP+9F8 ] 0x0                (size_t) [0]
    [RSP+A00 ] 0x0                (size_t) [0]
    [RSP+A08 ] 0x0                (size_t) [0]
    [RSP+A10 ] 0x0                (size_t) [0]
    [RSP+A18 ] 0x0                (size_t) [0]
    [RSP+A20 ] 0x0                (size_t) [0]
    [RSP+A28 ] 0x0                (size_t) [0]
    [RSP+A30 ] 0x0                (size_t) [0]
    [RSP+A38 ] 0x0                (size_t) [0]
    [RSP+A40 ] 0x0                (size_t) [0]
    [RSP+A48 ] 0x0                (size_t) [0]
    [RSP+A50 ] 0x0                (size_t) [0]
    [RSP+A58 ] 0x0                (size_t) [0]
    [RSP+A60 ] 0x0                (size_t) [0]
    [RSP+A68 ] 0x0                (size_t) [0]
    [RSP+A70 ] 0x0                (size_t) [0]
    [RSP+A78 ] 0x0                (size_t) [0]
    [RSP+A80 ] 0x0                (size_t) [0]
    [RSP+A88 ] 0x0                (size_t) [0]
    [RSP+A90 ] 0x0                (size_t) [0]
    [RSP+A98 ] 0x0                (size_t) [0]
    [RSP+AA0 ] 0x0                (size_t) [0]
    [RSP+AA8 ] 0x0                (size_t) [0]
    [RSP+AB0 ] 0x0                (size_t) [0]
    [RSP+AB8 ] 0x0                (size_t) [0]
    [RSP+AC0 ] 0x0                (size_t) [0]
    [RSP+AC8 ] 0x0                (size_t) [0]
    [RSP+AD0 ] 0x0                (size_t) [0]
    [RSP+AD8 ] 0x0                (size_t) [0]
    [RSP+AE0 ] 0x0                (size_t) [0]
    [RSP+AE8 ] 0x0                (size_t) [0]
    [RSP+AF0 ] 0x0                (size_t) [0]
    [RSP+AF8 ] 0x0                (size_t) [0]
    [RSP+B00 ] 0x0                (size_t) [0]
    [RSP+B08 ] 0x0                (size_t) [0]
    [RSP+B10 ] 0x0                (size_t) [0]
    [RSP+B18 ] 0x0                (size_t) [0]
    [RSP+B20 ] 0x0                (size_t) [0]
    [RSP+B28 ] 0x0                (size_t) [0]
    [RSP+B30 ] 0x0                (size_t) [0]
    [RSP+B38 ] 0x0                (size_t) [0]
    [RSP+B40 ] 0x0                (size_t) [0]
    [RSP+B48 ] 0x0                (size_t) [0]
    [RSP+B50 ] 0x0                (size_t) [0]
    [RSP+B58 ] 0x0                (size_t) [0]
    [RSP+B60 ] 0x0                (size_t) [0]
    [RSP+B68 ] 0x0                (size_t) [0]
    [RSP+B70 ] 0x0                (size_t) [0]
    [RSP+B78 ] 0x0                (size_t) [0]
    [RSP+B80 ] 0x0                (size_t) [0]
    [RSP+B88 ] 0x0                (size_t) [0]
    [RSP+B90 ] 0x0                (size_t) [0]
    [RSP+B98 ] 0x0                (size_t) [0]
    [RSP+BA0 ] 0x0                (size_t) [0]
    [RSP+BA8 ] 0x0                (size_t) [0]
    [RSP+BB0 ] 0x0                (size_t) [0]
    [RSP+BB8 ] 0x0                (size_t) [0]
    [RSP+BC0 ] 0x0                (size_t) [0]
    [RSP+BC8 ] 0x0                (size_t) [0]
    [RSP+BD0 ] 0x0                (size_t) [0]
    [RSP+BD8 ] 0x0                (size_t) [0]
    [RSP+BE0 ] 0x0                (size_t) [0]
    [RSP+BE8 ] 0x0                (size_t) [0]
    [RSP+BF0 ] 0x0                (size_t) [0]
    [RSP+BF8 ] 0x0                (size_t) [0]
    [RSP+C00 ] 0x0                (size_t) [0]
    [RSP+C08 ] 0x0                (size_t) [0]
    [RSP+C10 ] 0x0                (size_t) [0]
    [RSP+C18 ] 0x0                (size_t) [0]
    [RSP+C20 ] 0x0                (size_t) [0]
    [RSP+C28 ] 0x0                (size_t) [0]
    [RSP+C30 ] 0x0                (size_t) [0]
    [RSP+C38 ] 0x0                (size_t) [0]
    [RSP+C40 ] 0x0                (size_t) [0]
    [RSP+C48 ] 0x0                (size_t) [0]
    [RSP+C50 ] 0x0                (size_t) [0]
    [RSP+C58 ] 0x0                (size_t) [0]
    [RSP+C60 ] 0x0                (size_t) [0]
    [RSP+C68 ] 0x0                (size_t) [0]
    [RSP+C70 ] 0x0                (size_t) [0]
    [RSP+C78 ] 0x0                (size_t) [0]
    [RSP+C80 ] 0x0                (size_t) [0]
    [RSP+C88 ] 0x0                (size_t) [0]
    [RSP+C90 ] 0x0                (size_t) [0]
    [RSP+C98 ] 0x0                (size_t) [0]
    [RSP+CA0 ] 0x0                (size_t) [0]
    [RSP+CA8 ] 0x0                (size_t) [0]
    [RSP+CB0 ] 0x0                (size_t) [0]
    [RSP+CB8 ] 0x0                (size_t) [0]
    [RSP+CC0 ] 0x0                (size_t) [0]
    [RSP+CC8 ] 0x0                (size_t) [0]
    [RSP+CD0 ] 0x0                (size_t) [0]
    [RSP+CD8 ] 0x0                (size_t) [0]
    [RSP+CE0 ] 0x0                (size_t) [0]
    [RSP+CE8 ] 0x0                (size_t) [0]
    [RSP+CF0 ] 0x0                (size_t) [0]
    [RSP+CF8 ] 0x0                (size_t) [0]
    [RSP+D00 ] 0x0                (size_t) [0]
    [RSP+D08 ] 0x0                (size_t) [0]
    [RSP+D10 ] 0x0                (size_t) [0]
    [RSP+D18 ] 0x0                (size_t) [0]
    [RSP+D20 ] 0x0                (size_t) [0]
    [RSP+D28 ] 0x0                (size_t) [0]
    [RSP+D30 ] 0x0                (size_t) [0]
    [RSP+D38 ] 0x0                (size_t) [0]
    [RSP+D40 ] 0x0                (size_t) [0]
    [RSP+D48 ] 0x0                (size_t) [0]
    [RSP+D50 ] 0x0                (size_t) [0]
    [RSP+D58 ] 0x0                (size_t) [0]
    [RSP+D60 ] 0x0                (size_t) [0]
    [RSP+D68 ] 0x0                (size_t) [0]
    [RSP+D70 ] 0x0                (size_t) [0]
    [RSP+D78 ] 0x0                (size_t) [0]
    [RSP+D80 ] 0x0                (size_t) [0]
    [RSP+D88 ] 0x0                (size_t) [0]
    [RSP+D90 ] 0x0                (size_t) [0]
    [RSP+D98 ] 0x0                (size_t) [0]
    [RSP+DA0 ] 0x0                (size_t) [0]
    [RSP+DA8 ] 0x0                (size_t) [0]
    [RSP+DB0 ] 0x0                (size_t) [0]
    [RSP+DB8 ] 0x0                (size_t) [0]
    [RSP+DC0 ] 0x0                (size_t) [0]
    [RSP+DC8 ] 0x0                (size_t) [0]
    [RSP+DD0 ] 0x0                (size_t) [0]
    [RSP+DD8 ] 0x0                (size_t) [0]
    [RSP+DE0 ] 0x0                (size_t) [0]
    [RSP+DE8 ] 0x0                (size_t) [0]
    [RSP+DF0 ] 0x0                (size_t) [0]
    [RSP+DF8 ] 0x0                (size_t) [0]
    [RSP+E00 ] 0x0                (size_t) [0]
    [RSP+E08 ] 0x0                (size_t) [0]
    [RSP+E10 ] 0x0                (size_t) [0]
    [RSP+E18 ] 0x0                (size_t) [0]
    [RSP+E20 ] 0x0                (size_t) [0]
    [RSP+E28 ] 0x0                (size_t) [0]
    [RSP+E30 ] 0x0                (size_t) [0]
    [RSP+E38 ] 0x0                (size_t) [0]
    [RSP+E40 ] 0x0                (size_t) [0]
    [RSP+E48 ] 0x0                (size_t) [0]
    [RSP+E50 ] 0x0                (size_t) [0]
    [RSP+E58 ] 0x0                (size_t) [0]
    [RSP+E60 ] 0x0                (size_t) [0]
    [RSP+E68 ] 0x0                (size_t) [0]
    [RSP+E70 ] 0x0                (size_t) [0]
    [RSP+E78 ] 0x0                (size_t) [0]
    [RSP+E80 ] 0x0                (size_t) [0]
    [RSP+E88 ] 0x0                (size_t) [0]
    [RSP+E90 ] 0x0                (size_t) [0]
    [RSP+E98 ] 0x0                (size_t) [0]
    [RSP+EA0 ] 0x0                (size_t) [0]
    [RSP+EA8 ] 0x0                (size_t) [0]
    [RSP+EB0 ] 0x0                (size_t) [0]
    [RSP+EB8 ] 0x0                (size_t) [0]
    [RSP+EC0 ] 0x0                (size_t) [0]
    [RSP+EC8 ] 0x0                (size_t) [0]
    [RSP+ED0 ] 0x0                (size_t) [0]
    [RSP+ED8 ] 0x0                (size_t) [0]
    [RSP+EE0 ] 0x0                (size_t) [0]
    [RSP+EE8 ] 0x0                (size_t) [0]
    [RSP+EF0 ] 0x0                (size_t) [0]
    [RSP+EF8 ] 0x0                (size_t) [0]
    [RSP+F00 ] 0x0                (size_t) [0]
    [RSP+F08 ] 0x0                (size_t) [0]
    [RSP+F10 ] 0x0                (size_t) [0]
    [RSP+F18 ] 0x0                (size_t) [0]
    [RSP+F20 ] 0x0                (size_t) [0]
    [RSP+F28 ] 0x0                (size_t) [0]
    [RSP+F30 ] 0x0                (size_t) [0]
    [RSP+F38 ] 0x0                (size_t) [0]
    [RSP+F40 ] 0x0                (size_t) [0]
    [RSP+F48 ] 0x0                (size_t) [0]
    [RSP+F50 ] 0x0                (size_t) [0]
    [RSP+F58 ] 0x0                (size_t) [0]
    [RSP+F60 ] 0x0                (size_t) [0]
    [RSP+F68 ] 0x0                (size_t) [0]
    [RSP+F70 ] 0x0                (size_t) [0]
    [RSP+F78 ] 0x0                (size_t) [0]
    [RSP+F80 ] 0x0                (size_t) [0]
    [RSP+F88 ] 0x0                (size_t) [0]
    [RSP+F90 ] 0x0                (size_t) [0]
    [RSP+F98 ] 0x0                (size_t) [0]
    [RSP+FA0 ] 0x0                (size_t) [0]
    [RSP+FA8 ] 0x0                (size_t) [0]
    [RSP+FB0 ] 0x0                (size_t) [0]
    [RSP+FB8 ] 0x0                (size_t) [0]
    [RSP+FC0 ] 0x0                (size_t) [0]
    [RSP+FC8 ] 0x0                (size_t) [0]
    [RSP+FD0 ] 0x0                (size_t) [0]
    [RSP+FD8 ] 0x0                (size_t) [0]
    [RSP+FE0 ] 0x0                (size_t) [0]
    [RSP+FE8 ] 0x0                (size_t) [0]
    [RSP+FF0 ] 0x0                (size_t) [0]
    [RSP+FF8 ] 0x0                (size_t) [0]
    [RSP+1000] 0x0                (size_t) [0]
    [RSP+1008] 0x0                (size_t) [0]
    [RSP+1010] 0x0                (size_t) [0]
    [RSP+1018] 0x0                (size_t) [0]
    [RSP+1020] 0x0                (size_t) [0]
    [RSP+1028] 0x0                (size_t) [0]
    [RSP+1030] 0x0                (size_t) [0]
    [RSP+1038] 0x0                (size_t) [0]
    [RSP+1040] 0x0                (size_t) [0]
    [RSP+1048] 0x0                (size_t) [0]
    [RSP+1050] 0x0                (size_t) [0]
    [RSP+1058] 0x0                (size_t) [0]
    [RSP+1060] 0x0                (size_t) [0]
    [RSP+1068] 0x0                (size_t) [0]
    [RSP+1070] 0x0                (size_t) [0]
    [RSP+1078] 0x0                (size_t) [0]
    [RSP+1080] 0x0                (size_t) [0]
    [RSP+1088] 0x0                (size_t) [0]
    [RSP+1090] 0x0                (size_t) [0]
    [RSP+1098] 0x0                (size_t) [0]
    [RSP+10A0] 0x0                (size_t) [0]
    [RSP+10A8] 0x0                (size_t) [0]
    [RSP+10B0] 0x0                (size_t) [0]
    [RSP+10B8] 0x0                (size_t) [0]
    [RSP+10C0] 0x0                (size_t) [0]
    [RSP+10C8] 0x0                (size_t) [0]
    [RSP+10D0] 0x0                (size_t) [0]
    [RSP+10D8] 0x0                (size_t) [0]
    [RSP+10E0] 0x0                (size_t) [0]
    [RSP+10E8] 0x0                (size_t) [0]
    [RSP+10F0] 0x0                (size_t) [0]
    [RSP+10F8] 0x0                (size_t) [0]
    [RSP+1100] 0x0                (size_t) [0]
    [RSP+1108] 0x0                (size_t) [0]
    [RSP+1110] 0x0                (size_t) [0]
    [RSP+1118] 0x0                (size_t) [0]
    [RSP+1120] 0x0                (size_t) [0]
    [RSP+1128] 0x0                (size_t) [0]
    [RSP+1130] 0x0                (size_t) [0]
    [RSP+1138] 0x0                (size_t) [0]
    [RSP+1140] 0x0                (size_t) [0]
    [RSP+1148] 0x0                (size_t) [0]
    [RSP+1150] 0x0                (size_t) [0]
    [RSP+1158] 0x0                (size_t) [0]
    [RSP+1160] 0x0                (size_t) [0]
    [RSP+1168] 0x0                (size_t) [0]
    [RSP+1170] 0x0                (size_t) [0]
    [RSP+1178] 0x0                (size_t) [0]
    [RSP+1180] 0x0                (size_t) [0]
    [RSP+1188] 0x0                (size_t) [0]
    [RSP+1190] 0x0                (size_t) [0]
    [RSP+1198] 0x0                (size_t) [0]
    [RSP+11A0] 0x0                (size_t) [0]
    [RSP+11A8] 0x0                (size_t) [0]
    [RSP+11B0] 0x0                (size_t) [0]
    [RSP+11B8] 0x0                (size_t) [0]
    [RSP+11C0] 0x0                (size_t) [0]
    [RSP+11C8] 0x0                (size_t) [0]
    [RSP+11D0] 0x0                (size_t) [0]
    [RSP+11D8] 0x0                (size_t) [0]
    [RSP+11E0] 0x0                (size_t) [0]
    [RSP+11E8] 0x0                (size_t) [0]
    [RSP+11F0] 0x0                (size_t) [0]
    [RSP+11F8] 0x0                (size_t) [0]
    [RSP+1200] 0x0                (size_t) [0]
    [RSP+1208] 0x0                (size_t) [0]
    [RSP+1210] 0x0                (size_t) [0]
    [RSP+1218] 0x0                (size_t) [0]
    [RSP+1220] 0x0                (size_t) [0]
    [RSP+1228] 0x0                (size_t) [0]
    [RSP+1230] 0x0                (size_t) [0]
    [RSP+1238] 0x0                (size_t) [0]
    [RSP+1240] 0x0                (size_t) [0]
    [RSP+1248] 0x0                (size_t) [0]
    [RSP+1250] 0x0                (size_t) [0]
    [RSP+1258] 0x0                (size_t) [0]
    [RSP+1260] 0x0                (size_t) [0]
    [RSP+1268] 0x0                (size_t) [0]
    [RSP+1270] 0x0                (size_t) [0]
    [RSP+1278] 0x0                (size_t) [0]
    [RSP+1280] 0x0                (size_t) [0]
    [RSP+1288] 0x0                (size_t) [0]
    [RSP+1290] 0x0                (size_t) [0]
    [RSP+1298] 0x0                (size_t) [0]
    [RSP+12A0] 0x0                (size_t) [0]
    [RSP+12A8] 0x0                (size_t) [0]
    [RSP+12B0] 0x0                (size_t) [0]
    [RSP+12B8] 0x0                (size_t) [0]
    [RSP+12C0] 0x0                (size_t) [0]
    [RSP+12C8] 0x0                (size_t) [0]
    [RSP+12D0] 0x0                (size_t) [0]
    [RSP+12D8] 0x0                (size_t) [0]
    [RSP+12E0] 0x0                (size_t) [0]
    [RSP+12E8] 0x0                (size_t) [0]
    [RSP+12F0] 0x0                (size_t) [0]
    [RSP+12F8] 0x0                (size_t) [0]
    [RSP+1300] 0x0                (size_t) [0]
    [RSP+1308] 0x0                (size_t) [0]
    [RSP+1310] 0x0                (size_t) [0]
    [RSP+1318] 0x0                (size_t) [0]
    [RSP+1320] 0x0                (size_t) [0]
    [RSP+1328] 0x0                (size_t) [0]
    [RSP+1330] 0x0                (size_t) [0]
    [RSP+1338] 0x0                (size_t) [0]
    [RSP+1340] 0x0                (size_t) [0]
    [RSP+1348] 0x0                (size_t) [0]
    [RSP+1350] 0x0                (size_t) [0]
    [RSP+1358] 0x0                (size_t) [0]
    [RSP+1360] 0x0                (size_t) [0]
    [RSP+1368] 0x0                (size_t) [0]
    [RSP+1370] 0x0                (size_t) [0]
    [RSP+1378] 0x0                (size_t) [0]
    [RSP+1380] 0x0                (size_t) [0]
    [RSP+1388] 0x0                (size_t) [0]
    [RSP+1390] 0x0                (size_t) [0]
    [RSP+1398] 0x0                (size_t) [0]
    [RSP+13A0] 0x0                (size_t) [0]
    [RSP+13A8] 0x0                (size_t) [0]
    [RSP+13B0] 0x0                (size_t) [0]
    [RSP+13B8] 0x0                (size_t) [0]
    [RSP+13C0] 0x0                (size_t) [0]
    [RSP+13C8] 0x0                (size_t) [0]
    [RSP+13D0] 0x0                (size_t) [0]
    [RSP+13D8] 0x0                (size_t) [0]
    [RSP+13E0] 0x0                (size_t) [0]
    [RSP+13E8] 0x0                (size_t) [0]
    [RSP+13F0] 0x0                (size_t) [0]
    [RSP+13F8] 0x0                (size_t) [0]
    [RSP+1400] 0x0                (size_t) [0]
    [RSP+1408] 0x0                (size_t) [0]
    [RSP+1410] 0x0                (size_t) [0]
    [RSP+1418] 0x0                (size_t) [0]
    [RSP+1420] 0x0                (size_t) [0]
    [RSP+1428] 0x0                (size_t) [0]
    [RSP+1430] 0x0                (size_t) [0]
    [RSP+1438] 0x0                (size_t) [0]
    [RSP+1440] 0xF63ABF7E70       (void*)
    [RSP+1448] 0x0                (size_t) [0]
    [RSP+1450] 0x0                (size_t) [0]
    [RSP+1458] 0x0                (size_t) [0]
    [RSP+1460] 0x0                (size_t) [0]
    [RSP+1468] 0x0                (size_t) [0]
    [RSP+1470] 0x0                (size_t) [0]
    [RSP+1478] 0x0                (size_t) [0]
    [RSP+1480] 0x0                (size_t) [0]
    [RSP+1488] 0x0                (size_t) [0]
    [RSP+1490] 0x0                (size_t) [0]
    [RSP+1498] 0x0                (size_t) [0]
    [RSP+14A0] 0x0                (size_t) [0]
    [RSP+14A8] 0x0                (size_t) [0]
    [RSP+14B0] 0x0                (size_t) [0]
    [RSP+14B8] 0x0                (size_t) [0]
    [RSP+14C0] 0x0                (size_t) [0]
    [RSP+14C8] 0x0                (size_t) [0]
    [RSP+14D0] 0x0                (size_t) [0]
    [RSP+14D8] 0x0                (size_t) [0]
    [RSP+14E0] 0x0                (size_t) [0]
    [RSP+14E8] 0x0                (size_t) [0]
    [RSP+14F0] 0x0                (size_t) [0]
    [RSP+14F8] 0x0                (size_t) [0]
    [RSP+1500] 0x0                (size_t) [0]
    [RSP+1508] 0x0                (size_t) [0]
    [RSP+1510] 0x0                (size_t) [0]
    [RSP+1518] 0x0                (size_t) [0]
    [RSP+1520] 0x0                (size_t) [0]
    [RSP+1528] 0x0                (size_t) [0]
    [RSP+1530] 0x0                (size_t) [0]
    [RSP+1538] 0x0                (size_t) [0]
    [RSP+1540] 0x0                (size_t) [0]
    [RSP+1548] 0x0                (size_t) [0]
    [RSP+1550] 0x0                (size_t) [0]
    [RSP+1558] 0x0                (size_t) [0]
    [RSP+1560] 0x0                (size_t) [0]
    [RSP+1568] 0x0                (size_t) [0]
    [RSP+1570] 0x0                (size_t) [0]
    [RSP+1578] 0x0                (size_t) [0]
    [RSP+1580] 0x0                (size_t) [0]
    [RSP+1588] 0x0                (size_t) [0]
    [RSP+1590] 0x0                (size_t) [0]
    [RSP+1598] 0x0                (size_t) [0]
    [RSP+15A0] 0x0                (size_t) [0]
    [RSP+15A8] 0x0                (size_t) [0]
    [RSP+15B0] 0x0                (size_t) [0]
    [RSP+15B8] 0x0                (size_t) [0]
    [RSP+15C0] 0x0                (size_t) [0]
    [RSP+15C8] 0x0                (size_t) [0]
    [RSP+15D0] 0x0                (size_t) [0]
    [RSP+15D8] 0x0                (size_t) [0]
    [RSP+15E0] 0x0                (size_t) [0]
    [RSP+15E8] 0x0                (size_t) [0]
    [RSP+15F0] 0x0                (size_t) [0]
    [RSP+15F8] 0x0                (size_t) [0]
    [RSP+1600] 0x0                (size_t) [0]
    [RSP+1608] 0x0                (size_t) [0]
    [RSP+1610] 0x0                (size_t) [0]
    [RSP+1618] 0x0                (size_t) [0]
    [RSP+1620] 0x0                (size_t) [0]
    [RSP+1628] 0x0                (size_t) [0]
    [RSP+1630] 0x0                (size_t) [0]
    [RSP+1638] 0x0                (size_t) [0]
    [RSP+1640] 0x0                (size_t) [0]
    [RSP+1648] 0x0                (size_t) [0]
    [RSP+1650] 0x0                (size_t) [0]
    [RSP+1658] 0x0                (size_t) [0]
    [RSP+1660] 0x0                (size_t) [0]
    [RSP+1668] 0x0                (size_t) [0]
    [RSP+1670] 0x0                (size_t) [0]
    [RSP+1678] 0x0                (size_t) [0]
    [RSP+1680] 0x0                (size_t) [0]
    [RSP+1688] 0x0                (size_t) [0]
    [RSP+1690] 0x0                (size_t) [0]
    [RSP+1698] 0x0                (size_t) [0]
    [RSP+16A0] 0x0                (size_t) [0]
    [RSP+16A8] 0x0                (size_t) [0]
    [RSP+16B0] 0x0                (size_t) [0]
    [RSP+16B8] 0x0                (size_t) [0]
    [RSP+16C0] 0x0                (size_t) [0]
    [RSP+16C8] 0x0                (size_t) [0]
    [RSP+16D0] 0x0                (size_t) [0]
    [RSP+16D8] 0x0                (size_t) [0]
    [RSP+16E0] 0x0                (size_t) [0]
    [RSP+16E8] 0x0                (size_t) [0]
    [RSP+16F0] 0x0                (size_t) [0]
    [RSP+16F8] 0x0                (size_t) [0]
    [RSP+1700] 0x0                (size_t) [0]
    [RSP+1708] 0x0                (size_t) [0]
    [RSP+1710] 0x0                (size_t) [0]
    [RSP+1718] 0x0                (size_t) [0]
    [RSP+1720] 0x0                (size_t) [0]
    [RSP+1728] 0x0                (size_t) [0]
    [RSP+1730] 0x0                (size_t) [0]
    [RSP+1738] 0x0                (size_t) [0]
    [RSP+1740] 0x0                (size_t) [0]
    [RSP+1748] 0x0                (size_t) [0]
    [RSP+1750] 0x0                (size_t) [0]
    [RSP+1758] 0x0                (size_t) [0]
    [RSP+1760] 0x3F3834DABF31C66D (size_t) [4555449137200481901]
    [RSP+1768] 0x0                (size_t) [0]
    [RSP+1770] 0xF63ABF6C90       (void*)
    [RSP+1778] 0xF63ABF7DA0       (void*)
    [RSP+1780] 0xF63ABF7E00       (void*)
    [RSP+1788] 0xF63ABF7D70       (void*)
    [RSP+1790] 0xF63ABF6CD0       (void*)
    [RSP+1798] 0xF63ABF7DC0       (void*)
    [RSP+17A0] 0xF63ABF8240       (void*)
    [RSP+17A8] 0xF63ABF7D70       (void*)
    [RSP+17B0] 0xF63ABF6E10       (void*)
    [RSP+17B8] 0xF63ABF7D80       (void*)
    [RSP+17C0] 0xF63ABF81A0       (void*)
    [RSP+17C8] 0xF63ABF7D70       (void*)
    [RSP+17D0] 0x4042DE14         (size_t) [1078124052]
    [RSP+17D8] 0x0                (size_t) [0]
    [RSP+17E0] 0x3F3834DABF31C66D (size_t) [4555449137200481901]
    [RSP+17E8] 0x0                (size_t) [0]
    [RSP+17F0] 0xF63ABF6CD0       (void*)
    [RSP+17F8] 0xF63ABF7E20       (void*)
    [RSP+1800] 0xF63ABF7D80       (void*)
    [RSP+1808] 0xF63ABF7DF0       (void*)
    [RSP+1810] 0xF63ABF6C90       (void*)
    [RSP+1818] 0xF63ABF7E40       (void*)
    [RSP+1820] 0xF63ABF7F40       (void*)
    [RSP+1828] 0xF63ABF7DF0       (void*)
    [RSP+1830] 0xF63ABF6D50       (void*)
    [RSP+1838] 0xF63ABF7E00       (void*)
    [RSP+1840] 0xF63ABF8000       (void*)
    [RSP+1848] 0xF63ABF7DF0       (void*)
    [RSP+1850] 0x4042DE14         (size_t) [1078124052]
    [RSP+1858] 0x0                (size_t) [0]
    [RSP+1860] 0x80000000         (size_t) [2147483648]
    [RSP+1868] 0xBF7FFFFF         (size_t) [3212836863]
    [RSP+1870] 0xF63ABF6DD0       (void*)
    [RSP+1878] 0xF63ABF7EA0       (void*)
    [RSP+1880] 0xF63ABF80A0       (void*)
    [RSP+1888] 0xF63ABF7E70       (void*)
    [RSP+1890] 0xF63ABF6D90       (void*)
    [RSP+1898] 0xF63ABF7EC0       (void*)
    [RSP+18A0] 0xF63ABF8340       (void*)
    [RSP+18A8] 0xF63ABF7E70       (void*)
    [RSP+18B0] 0xF63ABF6E50       (void*)
    [RSP+18B8] 0xF63ABF7E80       (void*)
    [RSP+18C0] 0xF63ABF82A0       (void*)
    [RSP+18C8] 0xF63ABF7E70       (void*)
    [RSP+18D0] 0x3FF6E021         (size_t) [1073143841]
    [RSP+18D8] 0x0                (size_t) [0]
    [RSP+18E0] 0x3F7FFFFF         (size_t) [1065353215]
    [RSP+18E8] 0x80000000         (size_t) [2147483648]
    [RSP+18F0] 0xF63ABF6C90       (void*)
    [RSP+18F8] 0xF63ABF7F20       (void*)
    [RSP+1900] 0xF63ABF8180       (void*)
    [RSP+1908] 0xF63ABF7EF0       (void*)
    [RSP+1910] 0xF63ABF6D10       (void*)
    [RSP+1918] 0xF63ABF7F40       (void*)
    [RSP+1920] 0xF63ABF7F80       (void*)
    [RSP+1928] 0xF63ABF7EF0       (void*)
    [RSP+1930] 0xF63ABF6D50       (void*)
    [RSP+1938] 0xF63ABF7F00       (void*)
    [RSP+1940] 0xF63ABF7E20       (void*)
    [RSP+1948] 0xF63ABF7EF0       (void*)
    [RSP+1950] 0x419946CD         (size_t) [1100564173]
    [RSP+1958] 0x0                (size_t) [0]
    [RSP+1960] 0x3F800000         (size_t) [1065353216]
    [RSP+1968] 0x80000000         (size_t) [2147483648]
    [RSP+1970] 0xF63ABF6D50       (void*)
    [RSP+1978] 0xF63ABF7FA0       (void*)
    [RSP+1980] 0xF63ABF7F20       (void*)
    [RSP+1988] 0xF63ABF7F70       (void*)
    [RSP+1990] 0xF63ABF6D10       (void*)
    [RSP+1998] 0xF63ABF7FC0       (void*)
    [RSP+19A0] 0xF63ABF8300       (void*)
    [RSP+19A8] 0xF63ABF7F70       (void*)
    [RSP+19B0] 0xF63ABF6D90       (void*)
    [RSP+19B8] 0xF63ABF7F80       (void*)
    [RSP+19C0] 0xF63ABF8020       (void*)
    [RSP+19C8] 0xF63ABF7F70       (void*)
    [RSP+19D0] 0x419946CE         (size_t) [1100564174]
    [RSP+19D8] 0x0                (size_t) [0]
    [RSP+19E0] 0x3F3834DABF31C66D (size_t) [4555449137200481901]
    [RSP+19E8] 0x0                (size_t) [0]
    [RSP+19F0] 0xF63ABF6CD0       (void*)
    [RSP+19F8] 0xF63ABF8020       (void*)
    [RSP+1A00] 0xF63ABF7E40       (void*)
    [RSP+1A08] 0xF63ABF7FF0       (void*)
    [RSP+1A10] 0xF63ABF6D50       (void*)
    [RSP+1A18] 0xF63ABF8040       (void*)
    [RSP+1A20] 0xF63ABF7FC0       (void*)
    [RSP+1A28] 0xF63ABF7FF0       (void*)
    [RSP+1A30] 0xF63ABF6D90       (void*)
    [RSP+1A38] 0xF63ABF8000       (void*)
    [RSP+1A40] 0xF63ABF8080       (void*)
    [RSP+1A48] 0xF63ABF7FF0       (void*)
    [RSP+1A50] 0x4042DE14         (size_t) [1078124052]
    [RSP+1A58] 0x0                (size_t) [0]
    [RSP+1A60] 0x3F3834DABF31C66D (size_t) [4555449137200481901]
    [RSP+1A68] 0x0                (size_t) [0]
    [RSP+1A70] 0xF63ABF6CD0       (void*)
    [RSP+1A78] 0xF63ABF80A0       (void*)
    [RSP+1A80] 0xF63ABF8040       (void*)
    [RSP+1A88] 0xF63ABF8070       (void*)
    [RSP+1A90] 0xF63ABF6D90       (void*)
    [RSP+1A98] 0xF63ABF80C0       (void*)
    [RSP+1AA0] 0xF63ABF7E80       (void*)
    [RSP+1AA8] 0xF63ABF8070       (void*)
    [RSP+1AB0] 0xF63ABF6DD0       (void*)
    [RSP+1AB8] 0xF63ABF8080       (void*)
    [RSP+1AC0] 0xF63ABF8120       (void*)
    [RSP+1AC8] 0xF63ABF8070       (void*)
    [RSP+1AD0] 0x4042DE14         (size_t) [1078124052]
    [RSP+1AD8] 0x0                (size_t) [0]
    [RSP+1AE0] 0xBF7FFFFF00000000 (size_t) [uint: 13799029253968232448 int: -4647714819741319168]
    [RSP+1AE8] 0x0                (size_t) [0]
    [RSP+1AF0] 0xF63ABF6D10       (void*)
    [RSP+1AF8] 0xF63ABF8120       (void*)
    [RSP+1B00] 0xF63ABF8200       (void*)
    [RSP+1B08] 0xF63ABF80F0       (void*)
    [RSP+1B10] 0xF63ABF6CD0       (void*)
    [RSP+1B18] 0xF63ABF8140       (void*)
    [RSP+1B20] 0xF63ABF80C0       (void*)
    [RSP+1B28] 0xF63ABF80F0       (void*)
    [RSP+1B30] 0xF63ABF6DD0       (void*)
    [RSP+1B38] 0xF63ABF8100       (void*)
    [RSP+1B40] 0xF63ABF8280       (void*)
    [RSP+1B48] 0xF63ABF80F0       (void*)
    [RSP+1B50] 0x40CA9161         (size_t) [1087017313]
    [RSP+1B58] 0x0                (size_t) [0]
    [RSP+1B60] 0xBE1DE8C63E186564 (size_t) [uint: 13699361579673871716 int: -4747382494035679900]
    [RSP+1B68] 0x3F7A0D51         (size_t) [1064963409]
    [RSP+1B70] 0xF63ABF6D10       (void*)
    [RSP+1B78] 0xF63ABF81A0       (void*)
    [RSP+1B80] 0xF63ABF7F00       (void*)
    [RSP+1B88] 0xF63ABF8170       (void*)
    [RSP+1B90] 0xF63ABF6C90       (void*)
    [RSP+1B98] 0xF63ABF81C0       (void*)
    [RSP+1BA0] 0xF63ABF7DC0       (void*)
    [RSP+1BA8] 0xF63ABF8170       (void*)
    [RSP+1BB0] 0xF63ABF6E10       (void*)
    [RSP+1BB8] 0xF63ABF8180       (void*)
    [RSP+1BC0] 0xF63ABF8220       (void*)
    [RSP+1BC8] 0xF63ABF8170       (void*)
    [RSP+1BD0] 0x406A07F2         (size_t) [1080690674]
    [RSP+1BD8] 0x0                (size_t) [0]
    [RSP+1BE0] 0xBF80000080000000 (size_t) [uint: 13799029260410683392 int: -4647714813298868224]
    [RSP+1BE8] 0x80000000         (size_t) [2147483648]
    [RSP+1BF0] 0xF63ABF6CD0       (void*)
    [RSP+1BF8] 0xF63ABF8220       (void*)
    [RSP+1C00] 0xF63ABF8100       (void*)
    [RSP+1C08] 0xF63ABF81F0       (void*)
    [RSP+1C10] 0xF63ABF6D10       (void*)
    [RSP+1C18] 0xF63ABF8240       (void*)
    [RSP+1C20] 0xF63ABF81C0       (void*)
    [RSP+1C28] 0xF63ABF81F0       (void*)
    [RSP+1C30] 0xF63ABF6E10       (void*)
    [RSP+1C38] 0xF63ABF8200       (void*)
    [RSP+1C40] 0xF63ABF7DA0       (void*)
    [RSP+1C48] 0xF63ABF81F0       (void*)
    [RSP+1C50] 0x40CA9162         (size_t) [1087017314]
    [RSP+1C58] 0x0                (size_t) [0]
    [RSP+1C60] 0xBF7FFFFF00000000 (size_t) [uint: 13799029253968232448 int: -4647714819741319168]
    [RSP+1C68] 0x0                (size_t) [0]
    [RSP+1C70] 0xF63ABF6D10       (void*)
    [RSP+1C78] 0xF63ABF82A0       (void*)
    [RSP+1C80] 0xF63ABF8140       (void*)
    [RSP+1C88] 0xF63ABF8270       (void*)
    [RSP+1C90] 0xF63ABF6DD0       (void*)
    [RSP+1C98] 0xF63ABF82C0       (void*)
    [RSP+1CA0] 0xF63ABF7EC0       (void*)
    [RSP+1CA8] 0xF63ABF8270       (void*)
    [RSP+1CB0] 0xF63ABF6E50       (void*)
    [RSP+1CB8] 0xF63ABF8280       (void*)
    [RSP+1CC0] 0xF63ABF8320       (void*)
    [RSP+1CC8] 0xF63ABF8270       (void*)
    [RSP+1CD0] 0x40CA9161         (size_t) [1087017313]
    [RSP+1CD8] 0x0                (size_t) [0]
    [RSP+1CE0] 0x800000003F800000 (size_t) [uint: 9223372037920129024 int: -9223372035789422592]
    [RSP+1CE8] 0x0                (size_t) [0]
    [RSP+1CF0] 0xF63ABF6D90       (void*)
    [RSP+1CF8] 0xF63ABF8320       (void*)
    [RSP+1D00] 0xF63ABF7FA0       (void*)
    [RSP+1D08] 0xF63ABF82F0       (void*)
    [RSP+1D10] 0xF63ABF6D10       (void*)
    [RSP+1D18] 0xF63ABF8340       (void*)
    [RSP+1D20] 0x2E5F31AC720      (void*)
    [RSP+1D28] 0x2E5F31B07A0      (void*)
    [RSP+1D30] 0xF63ABF8350       (void*)
    [RSP+1D38] 0x8000008000000000 (size_t) [uint: 9223372586610589696 int: -9223371487098961920]
    [RSP+1D40] 0x2E5F31AC720      (void*)
    [RSP+1D48] 0x2E5F31B07C0      (void*)
    [RSP+1D50] 0x2E5F31AC720      (void*)
    [RSP+1D58] 0x2E5F31B0800      (void*)
    [RSP+1D60] 0x2E5F31AC720      (void*)
    [RSP+1D68] 0x2E5F31B08E0      (void*)
    [RSP+1D70] 0x2E5F31AC720      (void*)
    [RSP+1D78] 0x2E5F31B0960      (void*)
    [RSP+1D80] 0x2E5F31AC720      (void*)
    [RSP+1D88] 0x2E5F31B0980      (void*)
    [RSP+1D90] 0x0                (size_t) [0]
    [RSP+1D98] 0x0                (size_t) [0]
    [RSP+1DA0] 0x0                (size_t) [0]
    [RSP+1DA8] 0x0                (size_t) [0]
    [RSP+1DB0] 0x0                (size_t) [0]
    [RSP+1DB8] 0x0                (size_t) [0]
    [RSP+1DC0] 0x0                (size_t) [0]
    [RSP+1DC8] 0x0                (size_t) [0]
    [RSP+1DD0] 0x0                (size_t) [0]
    [RSP+1DD8] 0x0                (size_t) [0]
    [RSP+1DE0] 0x0                (size_t) [0]
    [RSP+1DE8] 0x0                (size_t) [0]
    [RSP+1DF0] 0x0                (size_t) [0]
    [RSP+1DF8] 0x0                (size_t) [0]
    [RSP+1E00] 0x0                (size_t) [0]
    [RSP+1E08] 0x0                (size_t) [0]
    [RSP+1E10] 0x0                (size_t) [0]
    [RSP+1E18] 0x0                (size_t) [0]
    [RSP+1E20] 0x0                (size_t) [0]
    [RSP+1E28] 0x0                (size_t) [0]
    [RSP+1E30] 0x0                (size_t) [0]
    [RSP+1E38] 0x0                (size_t) [0]
    [RSP+1E40] 0x0                (size_t) [0]
    [RSP+1E48] 0x0                (size_t) [0]
    [RSP+1E50] 0x0                (size_t) [0]
    [RSP+1E58] 0x0                (size_t) [0]
    [RSP+1E60] 0x0                (size_t) [0]
    [RSP+1E68] 0x0                (size_t) [0]
    [RSP+1E70] 0x0                (size_t) [0]
    [RSP+1E78] 0x0                (size_t) [0]
    [RSP+1E80] 0x0                (size_t) [0]
    [RSP+1E88] 0x0                (size_t) [0]
    [RSP+1E90] 0x0                (size_t) [0]
    [RSP+1E98] 0x0                (size_t) [0]
    [RSP+1EA0] 0x0                (size_t) [0]
    [RSP+1EA8] 0x0                (size_t) [0]
    [RSP+1EB0] 0x0                (size_t) [0]
    [RSP+1EB8] 0x0                (size_t) [0]
    [RSP+1EC0] 0x0                (size_t) [0]
    [RSP+1EC8] 0x0                (size_t) [0]
    [RSP+1ED0] 0x0                (size_t) [0]
    [RSP+1ED8] 0x0                (size_t) [0]
    [RSP+1EE0] 0x0                (size_t) [0]
    [RSP+1EE8] 0x0                (size_t) [0]
    [RSP+1EF0] 0x0                (size_t) [0]
    [RSP+1EF8] 0x0                (size_t) [0]
    [RSP+1F00] 0x0                (size_t) [0]
    [RSP+1F08] 0x0                (size_t) [0]
    [RSP+1F10] 0x0                (size_t) [0]
    [RSP+1F18] 0x0                (size_t) [0]
    [RSP+1F20] 0x0                (size_t) [0]
    [RSP+1F28] 0x0                (size_t) [0]
    [RSP+1F30] 0x0                (size_t) [0]
    [RSP+1F38] 0x0                (size_t) [0]
    [RSP+1F40] 0x0                (size_t) [0]
    [RSP+1F48] 0x0                (size_t) [0]
    [RSP+1F50] 0x0                (size_t) [0]
    [RSP+1F58] 0x0                (size_t) [0]
    [RSP+1F60] 0x0                (size_t) [0]
    [RSP+1F68] 0x0                (size_t) [0]
    [RSP+1F70] 0x0                (size_t) [0]
    [RSP+1F78] 0x0                (size_t) [0]
    [RSP+1F80] 0x0                (size_t) [0]
    [RSP+1F88] 0x0                (size_t) [0]
    [RSP+1F90] 0x0                (size_t) [0]
    [RSP+1F98] 0x0                (size_t) [0]
    [RSP+1FA0] 0x0                (size_t) [0]
    [RSP+1FA8] 0x0                (size_t) [0]
    [RSP+1FB0] 0x0                (size_t) [0]
    [RSP+1FB8] 0x0                (size_t) [0]
    [RSP+1FC0] 0x0                (size_t) [0]
    [RSP+1FC8] 0x0                (size_t) [0]
    [RSP+1FD0] 0x0                (size_t) [0]
    [RSP+1FD8] 0x0                (size_t) [0]
    [RSP+1FE0] 0x0                (size_t) [0]
    [RSP+1FE8] 0x0                (size_t) [0]
    [RSP+1FF0] 0x0                (size_t) [0]
    [RSP+1FF8] 0x0                (size_t) [0]
    [RSP+2000] 0x0                (size_t) [0]
    [RSP+2008] 0x0                (size_t) [0]
    [RSP+2010] 0x0                (size_t) [0]
    [RSP+2018] 0x0                (size_t) [0]
    [RSP+2020] 0x0                (size_t) [0]
    [RSP+2028] 0x0                (size_t) [0]
    [RSP+2030] 0x0                (size_t) [0]
    [RSP+2038] 0x0                (size_t) [0]
    [RSP+2040] 0x0                (size_t) [0]
    [RSP+2048] 0x0                (size_t) [0]
    [RSP+2050] 0x0                (size_t) [0]
    [RSP+2058] 0x0                (size_t) [0]
    [RSP+2060] 0x0                (size_t) [0]
    [RSP+2068] 0x0                (size_t) [0]
    [RSP+2070] 0x0                (size_t) [0]
    [RSP+2078] 0x0                (size_t) [0]
    [RSP+2080] 0x0                (size_t) [0]
    [RSP+2088] 0x0                (size_t) [0]
    [RSP+2090] 0x0                (size_t) [0]
    [RSP+2098] 0x0                (size_t) [0]
    [RSP+20A0] 0x40CEECFF40CEECFF (size_t) [4669930444677901567]
    [RSP+20A8] 0x40CEECFF40CEECFF (size_t) [4669930444677901567]
    [RSP+20B0] 0x40B7F2254116D74D (size_t) [4663462180985165645]
    [RSP+20B8] 0x3F00000040CEECFF (size_t) [4539628425476762879]
    [RSP+20C0] 0xC0B7F2254116D74D (size_t) [uint: 13886834217839941453 int: -4559909855869610163]
    [RSP+20C8] 0x3F00000140CEECFF (size_t) [4539628429771730175]
    [RSP+20D0] 0xC0B7F225C116D74D (size_t) [uint: 13886834219987425101 int: -4559909853722126515]
    [RSP+20D8] 0x3F00000640CEECFF (size_t) [4539628451246566655]
    [RSP+20E0] 0x40B7F225C116D74D (size_t) [4663462183132649293]
    [RSP+20E8] 0x3F00000340CEECFF (size_t) [4539628438361664767]
    [RSP+20F0] 0x0                (size_t) [0]
    [RSP+20F8] 0xC2E0ACFC3F800000 (size_t) [uint: 14042413837538295808 int: -4404330236171255808]
    [RSP+2100] 0x38D1B717         (size_t) [953267991]
    [RSP+2108] 0x0                (size_t) [0]
    [RSP+2110] 0x30000000         (size_t) [805306368]
    [RSP+2118] 0x6                (size_t) [6]
    [RSP+2120] 0xF63ABF93F0       (void*)
    [RSP+2128] 0x60               (size_t) [96]
    [RSP+2130] 0x7FF69D7834C0     (bhkCollisionFilter*)
    [RSP+2138] 0x7FF698B592A7     (void* -> Fallout4.exe+19192A7    mov rdi, [rsp+0x430] |  hknpHybridAabbTree<uint,uint,hkAabb16>::leafLeafCollision(hknpHybridAabbTree<uint,uint,hkAabb16>::LeafData&,hknpHybridAabbTree<uint,uint,hkAabb16>::LeafData&,hknpHybridAabbTree<uint,uint,hkAabb16>::Node*,hknpHybridAabbTree<uint,uint,hkAabb16>::Node*,hknpHybridAabbTree<uint,uint,hkAabb16>::KeyPair*,int)_19192A7)
    [RSP+2140] 0x46EE40B7         (size_t) [1190019255]
    [RSP+2148] 0x0                (size_t) [0]
    [RSP+2150] 0xFFFF             (size_t) [65535]
    [RSP+2158] 0x46DE404E         (size_t) [1188970574]
    [RSP+2160] 0xF63ABF93F0       (void*)
    [RSP+2168] 0xF600000D24       (size_t) [1056561958180]
    [RSP+2170] 0xF63ABF8BA8       (void*)
    [RSP+2178] 0xF63ABF9F50       (void*)
    [RSP+2180] 0x43B46DE404E40E6  (size_t) [304915320153194726]
    [RSP+2188] 0x46EE40B74152     (size_t) [77989101912402]
    [RSP+2190] 0x3F346E6407D40E3  (size_t) [284649156192846051]
    [RSP+2198] 0x46EB408640EA     (size_t) [77976213799146]
    [RSP+21A0] 0x43A46EB409A40E7  (size_t) [304633901016039655]
    [RSP+21A8] 0x46F0409E40ED     (size_t) [77997690208493]
    [RSP+21B0] 0x3F746E6408340E9  (size_t) [285775056100081897]
    [RSP+21B8] 0x46EA408B40F1     (size_t) [77971919159537]
    [RSP+21C0] 0x46046DF404E4127  (size_t) [315329898586456359]
    [RSP+21C8] 0x46E64054412D     (size_t) [77954735685933]
    [RSP+21D0] 0x4D146E640B04127  (size_t) [347136601025954087]
    [RSP+21D8] 0x46ED40B4412D     (size_t) [77984806748461]
    [RSP+21E0] 0x41046E640B3412D  (size_t) [292811930520994093]
    [RSP+21E8] 0x46EB40B74130     (size_t) [77976217010480]
    [RSP+21F0] 0x45C46DF40594130  (size_t) [314203998680334640]
    [RSP+21F8] 0x46E1405D4134     (size_t) [77933261439284]
    [RSP+2200] 0x43746DF40564132  (size_t) [303789424541843762]
    [RSP+2208] 0x46EB405B4137     (size_t) [77976210981175]
    [RSP+2210] 0x4D346DF40594133  (size_t) [347699520908902707]
    [RSP+2218] 0x46E6405F4138     (size_t) [77954736406840]
    [RSP+2220] 0x48546E04086413E  (size_t) [325744477023387966]
    [RSP+2228] 0x46EB40914149     (size_t) [77976214520137]
    [RSP+2230] 0x4A946DE40934144  (size_t) [335877567595888964]
    [RSP+2238] 0x46E040984149     (size_t) [77928970338633]
    [RSP+2240] 0x40E46E64066414B  (size_t) [292248980562526539]
    [RSP+2248] 0x46ED406B4150     (size_t) [77984801964368]
    [RSP+2250] 0x40F46E64068414E  (size_t) [292530455539368270]
    [RSP+2258] 0x46EB406C4152     (size_t) [77976212095314]
    [RSP+2260] 0x41846E64118FFFF  (size_t) [295063730341347327]
    [RSP+2268] 0x46ED411C412B     (size_t) [77984813564203]
    [RSP+2270] 0x49A46E14103FFFF  (size_t) [331655455837519871]
    [RSP+2278] 0x46E5410C4131     (size_t) [77950452777265]
    [RSP+2280] 0x40246E240F6412C  (size_t) [288871263671566636]
    [RSP+2288] 0x46E441004134     (size_t) [77946157023540]
    [RSP+2290] 0x49846E141084134  (size_t) [331092505884377396]
    [RSP+2298] 0x46EB4110413B     (size_t) [77976222843195]
    [RSP+22A0] 0x43846E141114134  (size_t) [304070908120744244]
    [RSP+22A8] 0x46E341164138     (size_t) [77941863498040]
    [RSP+22B0] 0x41946E640FC413E  (size_t) [295345205316174142]
    [RSP+22B8] 0x46EB41014142     (size_t) [77976221860162]
    [RSP+22C0] 0x44246E640F9413F  (size_t) [306885679361114431]
    [RSP+22C8] 0x46ED40FE4145     (size_t) [77984811598149]
    [RSP+22D0] 0x3F446D040FA4141  (size_t) [284930536688468289]
    [RSP+22D8] 0x46D34103414D     (size_t) [77873142776141]
    [RSP+22E0] 0x45E46DC411A414E  (size_t) [314766935761502542]
    [RSP+22E8] 0x46E3411E4151     (size_t) [77941864022353]
    [RSP+22F0] 0x41246E640E8FFFF  (size_t) [293374880477937663]
    [RSP+22F8] 0x46ED40EE41F0     (size_t) [77984810549744]
    [RSP+2300] 0xFFFF             (size_t) [65535]
    [RSP+2308] 0x0                (size_t) [0]
    [RSP+2310] 0xF63ABFFFFF       (void*)
    [RSP+2318] 0x0                (size_t) [0]
    [RSP+2320] 0x0                (size_t) [0]
    [RSP+2328] 0x0                (size_t) [0]
    [RSP+2330] 0x0                (size_t) [0]
    [RSP+2338] 0x0                (size_t) [0]
    [RSP+2340] 0x0                (size_t) [0]
    [RSP+2348] 0x0                (size_t) [0]
    [RSP+2350] 0xC11DD6F4C00AF58A (size_t) [uint: 13915514770327008650 int: -4531229303382542966]
    [RSP+2358] 0x3F0000063FE8A07C (size_t) [4539628451231473788]
    [RSP+2360] 0xF63ABF9FE0       (void*)
    [RSP+2368] 0x0                (size_t) [0]
    [RSP+2370] 0xC0B7F225C116D74D (size_t) [uint: 13886834219987425101 int: -4559909853722126515]
    [RSP+2378] 0x3F00000640CEECFF (size_t) [4539628451246566655]
    [RSP+2380] 0x44046CF409940E6  (size_t) [306322630617153766]
    [RSP+2388] 0x46E240A340F0     (size_t) [77937560994032]
    [RSP+2390] 0x43E46CF409740E8  (size_t) [305759680663601384]
    [RSP+2398] 0x46E240A240F1     (size_t) [77937560928497]
    [RSP+23A0] 0x43B46CF408640F3  (size_t) [304915255732355315]
    [RSP+23A8] 0x46E1409140FF     (size_t) [77933264847103]
    [RSP+23B0] 0x4C946DD40874105  (size_t) [344884762554876165]
    [RSP+23B8] 0x46DF408D410B     (size_t) [77924674650379]
    [RSP+23C0] 0x57046D040AC410F  (size_t) [391891027833405711]
    [RSP+23C8] 0x46EE40BA411D     (size_t) [77989102108957]
    [RSP+23D0] 0xFFFF             (size_t) [65535]
    [RSP+23D8] 0x0                (size_t) [0]
    [RSP+23E0] 0xFFFF             (size_t) [65535]
    [RSP+23E8] 0x0                (size_t) [0]
    [RSP+23F0] 0x0                (size_t) [0]
    [RSP+23F8] 0x0                (size_t) [0]
    [RSP+2400] 0x0                (size_t) [0]
    [RSP+2408] 0x0                (size_t) [0]
    [RSP+2410] 0x0                (size_t) [0]
    [RSP+2418] 0x0                (size_t) [0]
    [RSP+2420] 0x0                (size_t) [0]
    [RSP+2428] 0x0                (size_t) [0]
    [RSP+2430] 0x0                (size_t) [0]
    [RSP+2438] 0x0                (size_t) [0]
    [RSP+2440] 0x0                (size_t) [0]
    [RSP+2448] 0x0                (size_t) [0]
    [RSP+2450] 0x0                (size_t) [0]
    [RSP+2458] 0x0                (size_t) [0]
    [RSP+2460] 0xC13132F4C09AFEC5 (size_t) [uint: 13920963949963706053 int: -4525780123745845563]
    [RSP+2468] 0xBFE8A07C         (size_t) [3219693692]
    [RSP+2470] 0x411DD6F4400AF58A (size_t) [4692142731324749194]
    [RSP+2478] 0xB4E000004131D8F0 (size_t) [uint: 13033417322704001264 int: -5413326751005550352]
    [RSP+2480] 0x411DD6F4400AF58A (size_t) [4692142731324749194]
    [RSP+2488] 0xB4C00000BFE8A07C (size_t) [uint: 13024410125575168124 int: -5422333948134383492]
    [RSP+2490] 0x3F8933CC41193DC0 (size_t) [4578247448557338048]
    [RSP+2498] 0xB4400000BFE8A07C (size_t) [uint: 12988381328556204156 int: -5458362745153347460]
    [RSP+24A0] 0x0                (size_t) [0]
    [RSP+24A8] 0x0                (size_t) [0]
    [RSP+24B0] 0x0                (size_t) [0]
    [RSP+24B8] 0x0                (size_t) [0]
    [RSP+24C0] 0x0                (size_t) [0]
    [RSP+24C8] 0x0                (size_t) [0]
    [RSP+24D0] 0x0                (size_t) [0]
    [RSP+24D8] 0x0                (size_t) [0]
    [RSP+24E0] 0x0                (size_t) [0]
    [RSP+24E8] 0x0                (size_t) [0]
    [RSP+24F0] 0x0                (size_t) [0]
    [RSP+24F8] 0x0                (size_t) [0]
    [RSP+2500] 0x0                (size_t) [0]
    [RSP+2508] 0x0                (size_t) [0]
    [RSP+2510] 0x3F899352         (size_t) [1065980754]
    [RSP+2518] 0xBF7A2ED4C0452152 (size_t) [uint: 13797391899696636242 int: -4649352174012915374]
    [RSP+2520] 0xF63ABF9F50       (void*)
    [RSP+2528] 0xF63ABFA150       (void*)
    [RSP+2530] 0xF63ABFA1D0       (void*)
    [RSP+2538] 0x0                (size_t) [0]
    [RSP+2540] 0x2E66BB6D3E0      (void*)
    [RSP+2548] 0x7FF699EA30D0     (char*) "Et"
    [RSP+2550] 0x7FF69D7834C0     (bhkCollisionFilter*)
    [RSP+2558] 0x3                (size_t) [3]
    [RSP+2560] 0x2E66BB6D2C0      (void*)
    [RSP+2568] 0x2E5CA56AB50      (void*)
    [RSP+2570] 0x1                (size_t) [1]
    [RSP+2578] 0x7FF698B5A0B2     (void* -> Fallout4.exe+191A0B2    mov rcx, [rsp+0x71E8] |  hknpHybridAabbTree<uint,uint,hkAabb16>::queryTreeCollision(hknpSimulationThreadContext&,hknpCollisionFilter*,hknpHybridAabbTree<uint,uint,hkAabb16>*,hknpHybridAabbTree<uint,uint,hkAabb16>*,hkBlockStream<hknpBodyIdPair>::Writer*,hkAabb16*)_191A0B2)
    [RSP+2580] 0xF63ABFFD80       (char*) "p"
    [RSP+2588] 0x7                (size_t) [7]
    [RSP+2590] 0x2E68986AFC0      (hknpHBPTreeVsTreeTask*)
    [RSP+2598] 0x0                (size_t) [0]
    [RSP+25A0] 0xF63ABF93F0       (void*)
    [RSP+25A8] 0xD24              (size_t) [3364]
    [RSP+25B0] 0x7                (size_t) [7]
    [RSP+25B8] 0x0                (size_t) [0]
    [RSP+25C0] 0x2E5CF57E430      (hknpBSWorld*)
    [RSP+25C8] 0x0                (size_t) [0]
    [RSP+25D0] 0xF63ABF8BF0       (void*)
    [RSP+25D8] 0x8000008000000000 (size_t) [uint: 9223372586610589696 int: -9223371487098961920]
    [RSP+25E0] 0x2E5F31AC720      (void*)
    [RSP+25E8] 0x2E5F31B0A20      (void*)
    [RSP+25F0] 0x2E5F31AC720      (void*)
    [RSP+25F8] 0x2E5F31B0A00      (void*)
    [RSP+2600] 0x2E5F31AC720      (void*)
    [RSP+2608] 0x2E5F31B09C0      (void*)
    [RSP+2610] 0x2E5F31AC720      (void*)
    [RSP+2618] 0x2E5F31B09A0      (void*)
    [RSP+2620] 0x2E5F31AC720      (void*)
    [RSP+2628] 0x2E5F31B0980      (void*)
    [RSP+2630] 0x2E5F31AC720      (void*)
    [RSP+2638] 0x2E5F31B0960      (void*)
    [RSP+2640] 0x2E5F31AC720      (void*)
    [RSP+2648] 0x2E5F31B08E0      (void*)
    [RSP+2650] 0x0                (size_t) [0]
    [RSP+2658] 0x0                (size_t) [0]
    [RSP+2660] 0x0                (size_t) [0]
    [RSP+2668] 0x0                (size_t) [0]
    [RSP+2670] 0x0                (size_t) [0]
    [RSP+2678] 0x0                (size_t) [0]
    [RSP+2680] 0x0                (size_t) [0]
    [RSP+2688] 0x0                (size_t) [0]
    [RSP+2690] 0x0                (size_t) [0]
    [RSP+2698] 0x0                (size_t) [0]
    [RSP+26A0] 0x0                (size_t) [0]
    [RSP+26A8] 0x0                (size_t) [0]
    [RSP+26B0] 0x0                (size_t) [0]
    [RSP+26B8] 0x0                (size_t) [0]
    [RSP+26C0] 0x0                (size_t) [0]
    [RSP+26C8] 0x0                (size_t) [0]
    [RSP+26D0] 0x0                (size_t) [0]
    [RSP+26D8] 0x0                (size_t) [0]
    [RSP+26E0] 0x0                (size_t) [0]
    [RSP+26E8] 0x0                (size_t) [0]
    [RSP+26F0] 0x0                (size_t) [0]
    [RSP+26F8] 0x0                (size_t) [0]
    [RSP+2700] 0x0                (size_t) [0]
    [RSP+2708] 0x0                (size_t) [0]
    [RSP+2710] 0x0                (size_t) [0]
    [RSP+2718] 0x0                (size_t) [0]
    [RSP+2720] 0x0                (size_t) [0]
    [RSP+2728] 0x0                (size_t) [0]
    [RSP+2730] 0x0                (size_t) [0]
    [RSP+2738] 0x0                (size_t) [0]
    [RSP+2740] 0x0                (size_t) [0]
    [RSP+2748] 0x0                (size_t) [0]
    [RSP+2750] 0x0                (size_t) [0]
    [RSP+2758] 0x0                (size_t) [0]
    [RSP+2760] 0x0                (size_t) [0]
    [RSP+2768] 0x0                (size_t) [0]
    [RSP+2770] 0x0                (size_t) [0]
    [RSP+2778] 0x0                (size_t) [0]
    [RSP+2780] 0x0                (size_t) [0]
    [RSP+2788] 0x0                (size_t) [0]
    [RSP+2790] 0x0                (size_t) [0]
    [RSP+2798] 0x0                (size_t) [0]
    [RSP+27A0] 0x0                (size_t) [0]
    [RSP+27A8] 0x0                (size_t) [0]
    [RSP+27B0] 0x0                (size_t) [0]
    [RSP+27B8] 0x0                (size_t) [0]
    [RSP+27C0] 0x0                (size_t) [0]
    [RSP+27C8] 0x0                (size_t) [0]
    [RSP+27D0] 0x0                (size_t) [0]
    [RSP+27D8] 0x0                (size_t) [0]
    [RSP+27E0] 0x0                (size_t) [0]
    [RSP+27E8] 0x0                (size_t) [0]
    [RSP+27F0] 0x0                (size_t) [0]
    [RSP+27F8] 0x0                (size_t) [0]
    [RSP+2800] 0x0                (size_t) [0]
    [RSP+2808] 0x0                (size_t) [0]
    [RSP+2810] 0x0                (size_t) [0]
    [RSP+2818] 0x0                (size_t) [0]
    [RSP+2820] 0x0                (size_t) [0]
    [RSP+2828] 0x0                (size_t) [0]
    [RSP+2830] 0x0                (size_t) [0]
    [RSP+2838] 0x0                (size_t) [0]
    [RSP+2840] 0x411D0DC533D6BF95 (size_t) [4691921527419355029]
    [RSP+2848] 0x6                (size_t) [6]
    [RSP+2850] 0x6                (size_t) [6]
    [RSP+2858] 0x0                (size_t) [0]
    [RSP+2860] 0xC13132F4C09AFEC5 (size_t) [uint: 13920963949963706053 int: -4525780123745845563]
    [RSP+2868] 0xBFE8A07C         (size_t) [3219693692]
    [RSP+2870] 0x0                (size_t) [0]
    [RSP+2878] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+2880] 0x413132F4409AFEC5 (size_t) [4697591910961446597]
    [RSP+2888] 0x3F0000003FE8A07C (size_t) [4539628425461670012]
    [RSP+2890] 0x0                (size_t) [0]
    [RSP+2898] 0x0                (size_t) [0]
    [RSP+28A0] 0x411DD6F4400AF58A (size_t) [4692142731324749194]
    [RSP+28A8] 0xB4E000004131D8F0 (size_t) [uint: 13033417322704001264 int: -5413326751005550352]
    [RSP+28B0] 0x0                (size_t) [0]
    [RSP+28B8] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+28C0] 0xC11DD6F4C00AF58A (size_t) [uint: 13915514770327008650 int: -4531229303382542966]
    [RSP+28C8] 0x3F000007C131D8F0 (size_t) [4539628457695500528]
    [RSP+28D0] 0x0                (size_t) [0]
    [RSP+28D8] 0x0                (size_t) [0]
    [RSP+28E0] 0x411DD6F4400AF58A (size_t) [4692142731324749194]
    [RSP+28E8] 0xB4C00000BFE8A07C (size_t) [uint: 13024410125575168124 int: -5422333948134383492]
    [RSP+28F0] 0x0                (size_t) [0]
    [RSP+28F8] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+2900] 0xC11DD6F4C00AF58A (size_t) [uint: 13915514770327008650 int: -4531229303382542966]
    [RSP+2908] 0x3F0000063FE8A07C (size_t) [4539628451231473788]
    [RSP+2910] 0x0                (size_t) [0]
    [RSP+2918] 0x0                (size_t) [0]
    [RSP+2920] 0x3F8933CC41193DC0 (size_t) [4578247448557338048]
    [RSP+2928] 0xB4400000BFE8A07C (size_t) [uint: 12988381328556204156 int: -5458362745153347460]
    [RSP+2930] 0x0                (size_t) [0]
    [RSP+2938] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+2940] 0xBF8933CCC1193DC0 (size_t) [uint: 13801619487559597504 int: -4645124586149954112]
    [RSP+2948] 0x3F0000033FE8A07C (size_t) [4539628438346571900]
    [RSP+2950] 0x0                (size_t) [0]
    [RSP+2958] 0x0                (size_t) [0]
    [RSP+2960] 0xC01209E6C143FFC0 (size_t) [uint: 13840135491552542656 int: -4606608582157008960]
    [RSP+2968] 0xB48000004131D8F0 (size_t) [uint: 13006395724939778288 int: -5440348348769773328]
    [RSP+2970] 0x0                (size_t) [0]
    [RSP+2978] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+2980] 0x401209E64143FFC0 (size_t) [4616763452550283200]
    [RSP+2988] 0x3F000004C131D8F0 (size_t) [4539628444810598640]
    [RSP+2990] 0x0                (size_t) [0]
    [RSP+2998] 0x0                (size_t) [0]
    [RSP+29A0] 0x411DD6F4400AF58A (size_t) [4692142731324749194]
    [RSP+29A8] 0xB4C00000BFE8A07C (size_t) [uint: 13024410125575168124 int: -5422333948134383492]
    [RSP+29B0] 0x0                (size_t) [0]
    [RSP+29B8] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+29C0] 0xC11DD6F4C00AF58A (size_t) [uint: 13915514770327008650 int: -4531229303382542966]
    [RSP+29C8] 0x3F0000063FE8A07C (size_t) [4539628451231473788]
    [RSP+29D0] 0x0                (size_t) [0]
    [RSP+29D8] 0x0                (size_t) [0]
    [RSP+29E0] 0x0                (size_t) [0]
    [RSP+29E8] 0x0                (size_t) [0]
    [RSP+29F0] 0x0                (size_t) [0]
    [RSP+29F8] 0x0                (size_t) [0]
    [RSP+2A00] 0x0                (size_t) [0]
    [RSP+2A08] 0x0                (size_t) [0]
    [RSP+2A10] 0x0                (size_t) [0]
    [RSP+2A18] 0x0                (size_t) [0]
    [RSP+2A20] 0x0                (size_t) [0]
    [RSP+2A28] 0x0                (size_t) [0]
    [RSP+2A30] 0x0                (size_t) [0]
    [RSP+2A38] 0x0                (size_t) [0]
    [RSP+2A40] 0x0                (size_t) [0]
    [RSP+2A48] 0x0                (size_t) [0]
    [RSP+2A50] 0x0                (size_t) [0]
    [RSP+2A58] 0x0                (size_t) [0]
    [RSP+2A60] 0x0                (size_t) [0]
    [RSP+2A68] 0x0                (size_t) [0]
    [RSP+2A70] 0x0                (size_t) [0]
    [RSP+2A78] 0x0                (size_t) [0]
    [RSP+2A80] 0x0                (size_t) [0]
    [RSP+2A88] 0x0                (size_t) [0]
    [RSP+2A90] 0x0                (size_t) [0]
    [RSP+2A98] 0x0                (size_t) [0]
    [RSP+2AA0] 0x0                (size_t) [0]
    [RSP+2AA8] 0x0                (size_t) [0]
    [RSP+2AB0] 0x0                (size_t) [0]
    [RSP+2AB8] 0x0                (size_t) [0]
    [RSP+2AC0] 0x0                (size_t) [0]
    [RSP+2AC8] 0x0                (size_t) [0]
    [RSP+2AD0] 0x0                (size_t) [0]
    [RSP+2AD8] 0x0                (size_t) [0]
    [RSP+2AE0] 0x0                (size_t) [0]
    [RSP+2AE8] 0x0                (size_t) [0]
    [RSP+2AF0] 0x0                (size_t) [0]
    [RSP+2AF8] 0x0                (size_t) [0]
    [RSP+2B00] 0x0                (size_t) [0]
    [RSP+2B08] 0x0                (size_t) [0]
    [RSP+2B10] 0x0                (size_t) [0]
    [RSP+2B18] 0x0                (size_t) [0]
    [RSP+2B20] 0x0                (size_t) [0]
    [RSP+2B28] 0x0                (size_t) [0]
    [RSP+2B30] 0x0                (size_t) [0]
    [RSP+2B38] 0x0                (size_t) [0]
    [RSP+2B40] 0x0                (size_t) [0]
    [RSP+2B48] 0x0                (size_t) [0]
    [RSP+2B50] 0x0                (size_t) [0]
    [RSP+2B58] 0x0                (size_t) [0]
    [RSP+2B60] 0x0                (size_t) [0]
    [RSP+2B68] 0x0                (size_t) [0]
    [RSP+2B70] 0x0                (size_t) [0]
    [RSP+2B78] 0x0                (size_t) [0]
    [RSP+2B80] 0x0                (size_t) [0]
    [RSP+2B88] 0x0                (size_t) [0]
    [RSP+2B90] 0x0                (size_t) [0]
    [RSP+2B98] 0x0                (size_t) [0]
    [RSP+2BA0] 0x0                (size_t) [0]
    [RSP+2BA8] 0x0                (size_t) [0]
    [RSP+2BB0] 0x0                (size_t) [0]
    [RSP+2BB8] 0x0                (size_t) [0]
    [RSP+2BC0] 0x0                (size_t) [0]
    [RSP+2BC8] 0x0                (size_t) [0]
    [RSP+2BD0] 0x0                (size_t) [0]
    [RSP+2BD8] 0x0                (size_t) [0]
    [RSP+2BE0] 0x0                (size_t) [0]
    [RSP+2BE8] 0x0                (size_t) [0]
    [RSP+2BF0] 0x0                (size_t) [0]
    [RSP+2BF8] 0x0                (size_t) [0]
    [RSP+2C00] 0xC0626B5CC0626B5C (size_t) [uint: 13862760649108646748 int: -4583983424600904868]
    [RSP+2C08] 0xC0626B5CC0626B5C (size_t) [uint: 13862760649108646748 int: -4583983424600904868]
    [RSP+2C10] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+2C18] 0x3F000000C0626B5C (size_t) [4539628427617135452]
    [RSP+2C20] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+2C28] 0x3F000001C0626B5C (size_t) [4539628431912102748]
    [RSP+2C30] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+2C38] 0x3F000002C0626B5C (size_t) [4539628436207070044]
    [RSP+2C40] 0xC185EA4EC14A247E (size_t) [uint: 13944809445193819262 int: -4501934628515732354]
    [RSP+2C48] 0x3F000003C0626B5C (size_t) [4539628440502037340]
    [RSP+2C50] 0x0                (size_t) [0]
    [RSP+2C58] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+2C60] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+2C68] 0x3F800000         (size_t) [1065353216]
    [RSP+2C70] 0x0                (size_t) [0]
    [RSP+2C78] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+2C80] 0x3F8489103F8335EC (size_t) [4576933824193312236]
    [RSP+2C88] 0x3F000002BF6A15F0 (size_t) [4539628436190795248]
    [RSP+2C90] 0x4068993640689936 (size_t) [4641127874293176630]
    [RSP+2C98] 0x4068993640689936 (size_t) [4641127874293176630]
    [RSP+2CA0] 0xC0A60B3C40C6C61A (size_t) [uint: 13881795254828844570 int: -4564948818880707046]
    [RSP+2CA8] 0x3F000001BF6A15F0 (size_t) [4539628431895827952]
    [RSP+2CB0] 0x376AE18A376AE18A (size_t) [3993252003368853898]
    [RSP+2CB8] 0x376AE18A376AE18A (size_t) [3993252003368853898]
    [RSP+2CC0] 0xC4558B6DC5889866 (size_t) [uint: 14147367108036040806 int: -4299376965673510810]
    [RSP+2CC8] 0xC26B0E9E         (size_t) [3261795998]
    [RSP+2CD0] 0x0                (size_t) [0]
    [RSP+2CD8] 0x0                (size_t) [0]
    [RSP+2CE0] 0xC09E2194C0B588D2 (size_t) [uint: 13879568024374446290 int: -4567176049335105326]
    [RSP+2CE8] 0x3F000000BF6A15F0 (size_t) [4539628427600860656]
    [RSP+2CF0] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+2CF8] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+2D00] 0x0                (size_t) [0]
    [RSP+2D08] 0x7FF698B43A1B     (void* -> Fallout4.exe+1903A1B    movaps xmm2, [rbp+0xA0] |  hknpConvexConvexShapeBaseInterfaceGetClosestPoint(void*,void*,hkcdGsk::GetClosestPointInput&,hkcdGsk::Cache*,hkcdGsk::GetClosestPointOutput&)_1903A1B)
    [RSP+2D10] 0x0                (size_t) [0]
    [RSP+2D18] 0x0                (size_t) [0]
    [RSP+2D20] 0x0                (size_t) [0]
    [RSP+2D28] 0x0                (size_t) [0]
    [RSP+2D30] 0x0                (size_t) [0]
    [RSP+2D38] 0x0                (size_t) [0]
    [RSP+2D40] 0x0                (size_t) [0]
    [RSP+2D48] 0x0                (size_t) [0]
    [RSP+2D50] 0x0                (size_t) [0]
    [RSP+2D58] 0x0                (size_t) [0]
    [RSP+2D60] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+2D68] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+2D70] 0x4000000040000000 (size_t) [4611686019501129728]
    [RSP+2D78] 0x4000000040000000 (size_t) [4611686019501129728]
    [RSP+2D80] 0xC4558B6DC5889866 (size_t) [uint: 14147367108036040806 int: -4299376965673510810]
    [RSP+2D88] 0xC26B0E9E         (size_t) [3261795998]
    [RSP+2D90] 0x3                (size_t) [3]
    [RSP+2D98] 0x0                (size_t) [0]
    [RSP+2DA0] 0x0                (size_t) [0]
    [RSP+2DA8] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+2DB0] 0x0                (size_t) [0]
    [RSP+2DB8] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+2DC0] 0x0                (size_t) [0]
    [RSP+2DC8] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+2DD0] 0x0                (size_t) [0]
    [RSP+2DD8] 0x0                (size_t) [0]
    [RSP+2DE0] 0x3F8489103F8335EC (size_t) [4576933824193312236]
    [RSP+2DE8] 0x3F000002BF6A15F0 (size_t) [4539628436190795248]
    [RSP+2DF0] 0xC09E2194C0B588D2 (size_t) [uint: 13879568024374446290 int: -4567176049335105326]
    [RSP+2DF8] 0x3F000000BF6A15F0 (size_t) [4539628427600860656]
    [RSP+2E00] 0xC0A60B3C40C6C61A (size_t) [uint: 13881795254828844570 int: -4564948818880707046]
    [RSP+2E08] 0x3F000001BF6A15F0 (size_t) [4539628431895827952]
    [RSP+2E10] 0x55200000548      (size_t) [5849745458504]
    [RSP+2E18] 0x54D00000548      (size_t) [5828270622024]
    [RSP+2E20] 0x54A00000548      (size_t) [5815385720136]
    [RSP+2E28] 0x54F00000548      (size_t) [5836860556616]
    [RSP+2E30] 0x54B00000548      (size_t) [5819680687432]
    [RSP+2E38] 0x55100000548      (size_t) [5845450491208]
    [RSP+2E40] 0x55900000548      (size_t) [5879810229576]
    [RSP+2E48] 0x55600000548      (size_t) [5866925327688]
    [RSP+2E50] 0x376AE18A376AE18A (size_t) [3993252003368853898]
    [RSP+2E58] 0x376AE18A376AE18A (size_t) [3993252003368853898]
    [RSP+2E60] 0x55800000548      (size_t) [5875515262280]
    [RSP+2E68] 0x55B00000548      (size_t) [5888400164168]
    [RSP+2E70] 0x0                (size_t) [0]
    [RSP+2E78] 0x0                (size_t) [0]
    [RSP+2E80] 0x0                (size_t) [0]
    [RSP+2E88] 0x80000000BF800000 (size_t) [uint: 9223372040067612672 int: -9223372033641938944]
    [RSP+2E90] 0x7FF69A014CC8     (void* -> Fallout4.exe+2DD4CC8     |  aDiveBombChance_2DD4CC8)
    [RSP+2E98] 0x0                (size_t) [0]
    [RSP+2EA0] 0x0                (size_t) [0]
    [RSP+2EA8] 0x0                (size_t) [0]
    [RSP+2EB0] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+2EB8] 0x3F000002C0626B5C (size_t) [4539628436207070044]
    [RSP+2EC0] 0x0                (size_t) [0]
    [RSP+2EC8] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+2ED0] 0x0                (size_t) [0]
    [RSP+2ED8] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+2EE0] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+2EE8] 0x3F000002C0626B5C (size_t) [4539628436207070044]
    [RSP+2EF0] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+2EF8] 0x3F000000C0626B5C (size_t) [4539628427617135452]
    [RSP+2F00] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+2F08] 0x3F000001C0626B5C (size_t) [4539628431912102748]
    [RSP+2F10] 0x0                (size_t) [0]
    [RSP+2F18] 0x0                (size_t) [0]
    [RSP+2F20] 0x0                (size_t) [0]
    [RSP+2F28] 0x0                (size_t) [0]
    [RSP+2F30] 0x0                (size_t) [0]
    [RSP+2F38] 0x0                (size_t) [0]
    [RSP+2F40] 0x0                (size_t) [0]
    [RSP+2F48] 0x0                (size_t) [0]
    [RSP+2F50] 0x0                (size_t) [0]
    [RSP+2F58] 0x0                (size_t) [0]
    [RSP+2F60] 0x0                (size_t) [0]
    [RSP+2F68] 0x0                (size_t) [0]
    [RSP+2F70] 0x0                (size_t) [0]
    [RSP+2F78] 0x0                (size_t) [0]
    [RSP+2F80] 0x0                (size_t) [0]
    [RSP+2F88] 0x0                (size_t) [0]
    [RSP+2F90] 0x0                (size_t) [0]
    [RSP+2F98] 0x0                (size_t) [0]
    [RSP+2FA0] 0x0                (size_t) [0]
    [RSP+2FA8] 0x0                (size_t) [0]
    [RSP+2FB0] 0x0                (size_t) [0]
    [RSP+2FB8] 0x0                (size_t) [0]
    [RSP+2FC0] 0x0                (size_t) [0]
    [RSP+2FC8] 0x0                (size_t) [0]
    [RSP+2FD0] 0x0                (size_t) [0]
    [RSP+2FD8] 0x0                (size_t) [0]
    [RSP+2FE0] 0x0                (size_t) [0]
    [RSP+2FE8] 0x0                (size_t) [0]
    [RSP+2FF0] 0x0                (size_t) [0]
    [RSP+2FF8] 0x0                (size_t) [0]
    [RSP+3000] 0x0                (size_t) [0]
    [RSP+3008] 0x0                (size_t) [0]
    [RSP+3010] 0x0                (size_t) [0]
    [RSP+3018] 0x0                (size_t) [0]
    [RSP+3020] 0x0                (size_t) [0]
    [RSP+3028] 0x0                (size_t) [0]
    [RSP+3030] 0x0                (size_t) [0]
    [RSP+3038] 0x0                (size_t) [0]
    [RSP+3040] 0x0                (size_t) [0]
    [RSP+3048] 0x0                (size_t) [0]
    [RSP+3050] 0x423DA034423DA034 (size_t) [4773147326392672308]
    [RSP+3058] 0x423DA034423DA034 (size_t) [4773147326392672308]
    [RSP+3060] 0x0                (size_t) [0]
    [RSP+3068] 0x0                (size_t) [0]
    [RSP+3070] 0x3CACC8003CACC800 (size_t) [4372089241613420544]
    [RSP+3078] 0x3CACC8003CACC800 (size_t) [4372089241613420544]
    [RSP+3080] 0x0                (size_t) [0]
    [RSP+3088] 0x0                (size_t) [0]
    [RSP+3090] 0x45A51FF145A51FF1 (size_t) [5018452480890314737]
    [RSP+3098] 0x45A51FF145A51FF1 (size_t) [5018452480890314737]
    [RSP+30A0] 0x0                (size_t) [0]
    [RSP+30A8] 0x0                (size_t) [0]
    [RSP+30B0] 0x0                (size_t) [0]
    [RSP+30B8] 0x0                (size_t) [0]
    [RSP+30C0] 0x0                (size_t) [0]
    [RSP+30C8] 0x0                (size_t) [0]
    [RSP+30D0] 0x0                (size_t) [0]
    [RSP+30D8] 0x0                (size_t) [0]
    [RSP+30E0] 0x0                (size_t) [0]
    [RSP+30E8] 0x0                (size_t) [0]
    [RSP+30F0] 0x3F4323B03F25B34C (size_t) [4558526487709725516]
    [RSP+30F8] 0x0                (size_t) [0]
    [RSP+3100] 0x3F25B34CBF4323B0 (size_t) [4550240140735488944]
    [RSP+3108] 0x3C4CC00000000000 (size_t) [4345058846738219008]
    [RSP+3110] 0x0                (size_t) [0]
    [RSP+3118] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+3120] 0x41B0E3D9C0ADC9EA (size_t) [4733533732746414570]
    [RSP+3128] 0x3E86D8F54027E5E0 (size_t) [4505527025085703648]
    [RSP+3130] 0x0                (size_t) [0]
    [RSP+3138] 0x0                (size_t) [0]
    [RSP+3140] 0x0                (size_t) [0]
    [RSP+3148] 0x0                (size_t) [0]
    [RSP+3150] 0x0                (size_t) [0]
    [RSP+3158] 0x0                (size_t) [0]
    [RSP+3160] 0x0                (size_t) [0]
    [RSP+3168] 0x0                (size_t) [0]
    [RSP+3170] 0x0                (size_t) [0]
    [RSP+3178] 0x0                (size_t) [0]
    [RSP+3180] 0x3D4CCCCD3D4CCCCD (size_t) [4417130516412419277]
    [RSP+3188] 0x3D4CCCCD3D4CCCCD (size_t) [4417130516412419277]
    [RSP+3190] 0x2E5CA56ACD0      (void*)
    [RSP+3198] 0x2E5F621C690      (void*)
    [RSP+31A0] 0x2E5CA56ACD4      (void*)
    [RSP+31A8] 0x0                (size_t) [0]
    [RSP+31B0] 0x0                (size_t) [0]
    [RSP+31B8] 0x0                (size_t) [0]
    [RSP+31C0] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+31C8] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+31D0] 0x0                (size_t) [0]
    [RSP+31D8] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+31E0] 0x0                (size_t) [0]
    [RSP+31E8] 0x0                (size_t) [0]
    [RSP+31F0] 0xC0626B5CC0626B5C (size_t) [uint: 13862760649108646748 int: -4583983424600904868]
    [RSP+31F8] 0xC0626B5CC0626B5C (size_t) [uint: 13862760649108646748 int: -4583983424600904868]
    [RSP+3200] 0x2E5CF68BBB0      (void*)
    [RSP+3208] 0x2E5F31D8FF0      (void*)
    [RSP+3210] 0xF63ABFFCC8       (void*)
    [RSP+3218] 0x0                (size_t) [0]
    [RSP+3220] 0x2E5CA56AC90      (hknpTriangleShape*)
    [RSP+3228] 0x2E5C862FEC0      (void*)
    [RSP+3230] 0x0                (size_t) [0]
    [RSP+3238] 0x7FF698B4916E     (void* -> Fallout4.exe+190916E    movzx ecx, word ptr [r15+0x32] |  hknpCollision2DFastProcessUtil::collide(hknpSimulationThreadContext&,hknpCvxCvxCollideTimers*,hknpModifierSharedData&,hkTransformf&,uint,hknpCdBody&,hknpCdBody&,hknpGskCollisionCache*,hknpGskCollisionCache*,hknpManifold*)_190916E)
    [RSP+3240] 0x0                (size_t) [0]
    [RSP+3248] 0xF63ABF9950       (void*)
    [RSP+3250] 0x0                (size_t) [0]
    [RSP+3258] 0x2E5C862FEC0      (void*)
    [RSP+3260] 0xF63ABF9C01       (void*)
    [RSP+3268] 0xF600000000       (size_t) [1056561954816]
    [RSP+3270] 0xF63ABFA1C0       (void*)
    [RSP+3278] 0xF63ABF9B24       (void*)
    [RSP+3280] 0x400000003        (size_t) [17179869187]
    [RSP+3288] 0x180              (size_t) [384]
    [RSP+3290] 0x100000000        (size_t) [4294967296]
    [RSP+3298] 0x300000003        (size_t) [12884901891]
    [RSP+32A0] 0x0                (size_t) [0]
    [RSP+32A8] 0x0                (size_t) [0]
    [RSP+32B0] 0x0                (size_t) [0]
    [RSP+32B8] 0x0                (size_t) [0]
    [RSP+32C0] 0x1                (size_t) [1]
    [RSP+32C8] 0x3FD2B0D23F848918 (size_t) [4598932586553968920]
    [RSP+32D0] 0x4                (size_t) [4]
    [RSP+32D8] 0x0                (size_t) [0]
    [RSP+32E0] 0x0                (size_t) [0]
    [RSP+32E8] 0x3F593C46BF8335EF (size_t) [4564745971875132911]
    [RSP+32F0] 0x2E5CA56AC90      (hknpTriangleShape*)
    [RSP+32F8] 0x0                (size_t) [0]
    [RSP+3300] 0x0                (size_t) [0]
    [RSP+3308] 0x3E281C6D00000000 (size_t) [4478861083896971264]
    [RSP+3310] 0x2E5CF6A4A80      (void*)
    [RSP+3318] 0x0                (size_t) [0]
    [RSP+3320] 0x40C72D81BE7D34A0 (size_t) [4667749574062716064]
    [RSP+3328] 0xC0D2CDCA3F1C4F74 (size_t) [uint: 13894394068917309300 int: -4552350004792242316]
    [RSP+3330] 0x2E5F621C500      (hknpConvexPolytopeShape*)
    [RSP+3338] 0x0                (size_t) [0]
    [RSP+3340] 0x2                (size_t) [2]
    [RSP+3348] 0xFFC000003F7FFFEC (size_t) [uint: 18428729676265422828 int: -18014397444128788]
    [RSP+3350] 0x3E6DBF4800000000 (size_t) [4498461918771544064]
    [RSP+3358] 0xBD8B45B6BE281C6D (size_t) [uint: 13658086946107825261 int: -4788657127601726355]
    [RSP+3360] 0x4                (size_t) [4]
    [RSP+3368] 0x0                (size_t) [0]
    [RSP+3370] 0x3D4CCA003D4CCA00 (size_t) [4417127436920867328]
    [RSP+3378] 0x3D4CCA003D4CCA00 (size_t) [4417127436920867328]
    [RSP+3380] 0x2E5CF68BBB0      (void*)
    [RSP+3388] 0x0                (size_t) [0]
    [RSP+3390] 0x3F8000003F2CC7B0 (size_t) [4575657222468323248]
    [RSP+3398] 0x3E7FDCD2BB888631 (size_t) [4503560950041314865]
    [RSP+33A0] 0xBF9D756FBF9D756F (size_t) [uint: 13807321155404395887 int: -4639422918305155729]
    [RSP+33A8] 0xBF9C0D74BFA6AAAC (size_t) [uint: 13806925352693836460 int: -4639818721015715156]
    [RSP+33B0] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+33B8] 0x3F800000         (size_t) [1065353216]
    [RSP+33C0] 0x0                (size_t) [0]
    [RSP+33C8] 0xF31D8FF0         (size_t) [4078800880]
    [RSP+33D0] 0x0                (size_t) [0]
    [RSP+33D8] 0x0                (size_t) [0]
    [RSP+33E0] 0x4118C995C1900427 (size_t) [4690720656941122599]
    [RSP+33E8] 0xBEAE0AC0405CCC4C (size_t) [uint: 13739931333983784012 int: -4706812739725767604]
    [RSP+33F0] 0x80000000         (size_t) [2147483648]
    [RSP+33F8] 0x0                (size_t) [0]
    [RSP+3400] 0x0                (size_t) [0]
    [RSP+3408] 0x0                (size_t) [0]
    [RSP+3410] 0x0                (size_t) [0]
    [RSP+3418] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+3420] 0x100              (size_t) [256]
    [RSP+3428] 0x0                (size_t) [0]
    [RSP+3430] 0x40A5F89FC13E2776 (size_t) [4658402754610210678]
    [RSP+3438] 0x409A61493FEFD412 (size_t) [4655140132074017810]
    [RSP+3440] 0x0                (size_t) [0]
    [RSP+3448] 0xFFFFFFFF00000000 (size_t) [uint: 18446744069414584320 int: -4294967296]
    [RSP+3450] 0x0                (size_t) [0]
    [RSP+3458] 0xBE281C6D3E281C6D (size_t) [uint: 13702233121794563181 int: -4744510951914988435]
    [RSP+3460] 0x0                (size_t) [0]
    [RSP+3468] 0x0                (size_t) [0]
    [RSP+3470] 0x0                (size_t) [0]
    [RSP+3478] 0x0                (size_t) [0]
    [RSP+3480] 0x3F25B34C3F4323B0 (size_t) [4550240138588005296]
    [RSP+3488] 0x3C4CC00000000000 (size_t) [4345058846738219008]
    [RSP+3490] 0xBE281C6D00000000 (size_t) [uint: 13702233120751747072 int: -4744510952957804544]
    [RSP+3498] 0xBE6DBF48BE6DBF48 (size_t) [uint: 13721833958821183304 int: -4724910114888368312]
    [RSP+34A0] 0xC1939D00C1556E00 (size_t) [uint: 13948665097465720320 int: -4498078976243831296]
    [RSP+34A8] 0xBEA3CB42C05F3834 (size_t) [uint: 13737046775965890612 int: -4709697297743661004]
    [RSP+34B0] 0x1F               (size_t) [31]
    [RSP+34B8] 0x0                (size_t) [0]
    [RSP+34C0] 0x3F6A15F03F6A15F0 (size_t) [4569488893521040880]
    [RSP+34C8] 0x3F6A15F03F6A15F0 (size_t) [4569488893521040880]
    [RSP+34D0] 0x0                (size_t) [0]
    [RSP+34D8] 0x0                (size_t) [0]
    [RSP+34E0] 0x0                (size_t) [0]
    [RSP+34E8] 0x3F6A15F03F7FFFFF (size_t) [4569488893522477055]
    [RSP+34F0] 0x4322568A         (size_t) [1126323850]
    [RSP+34F8] 0x0                (size_t) [0]
    [RSP+3500] 0x3EB63B5C3F5BF757 (size_t) [4518864543498893143]
    [RSP+3508] 0xBEA29FE5BEBC22C3 (size_t) [uint: 13736717622529761987 int: -4710026451179789629]
    [RSP+3510] 0x7F4322568A       (size_t) [546587170442]
    [RSP+3518] 0x0                (size_t) [0]
    [RSP+3520] 0x0                (size_t) [0]
    [RSP+3528] 0x0                (size_t) [0]
    [RSP+3530] 0x0                (size_t) [0]
    [RSP+3538] 0x0                (size_t) [0]
    [RSP+3540] 0x0                (size_t) [0]
    [RSP+3548] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+3550] 0x3F4323B03F25B34C (size_t) [4558526487709725516]
    [RSP+3558] 0x0                (size_t) [0]
    [RSP+3560] 0x3F25B34CBF4323B0 (size_t) [4550240140735488944]
    [RSP+3568] 0x3C4CC00000000000 (size_t) [4345058846738219008]
    [RSP+3570] 0x0                (size_t) [0]
    [RSP+3578] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+3580] 0x41B0E3D9C0ADC9EA (size_t) [4733533732746414570]
    [RSP+3588] 0x3E86D8F54027E5E0 (size_t) [4505527025085703648]
    [RSP+3590] 0x1                (size_t) [1]
    [RSP+3598] 0x0                (size_t) [0]
    [RSP+35A0] 0x3D9866CA3D9866CA (size_t) [4438410451576448714]
    [RSP+35A8] 0x3D9866CA3D9866CA (size_t) [4438410451576448714]
    [RSP+35B0] 0x3FB33333         (size_t) [1068708659]
    [RSP+35B8] 0x0                (size_t) [0]
    [RSP+35C0] 0x2E5C84C3060      (void*)
    [RSP+35C8] 0x2E5C84C3060      (void*)
    [RSP+35D0] 0x2E5F31D8FF0      (void*)
    [RSP+35D8] 0x0                (size_t) [0]
    [RSP+35E0] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+35E8] 0xBC4CC000BF800000 (size_t) [uint: 13568430886805831680 int: -4878313186903719936]
    [RSP+35F0] 0x0                (size_t) [0]
    [RSP+35F8] 0x0                (size_t) [0]
    [RSP+3600] 0x2E5EFE5265C      (void*)
    [RSP+3608] 0x3D4CC9E03D4CC9E0 (size_t) [4417127299481913824]
    [RSP+3610] 0x2E5EFDF1810      (void*)
    [RSP+3618] 0x3F800000         (size_t) [1065353216]
    [RSP+3620] 0x12               (size_t) [18]
    [RSP+3628] 0x500000000        (size_t) [21474836480]
    [RSP+3630] 0x1                (size_t) [1]
    [RSP+3638] 0x0                (size_t) [0]
    [RSP+3640] 0x2E5EFDF5BF4      (void*)
    [RSP+3648] 0x0                (size_t) [0]
    [RSP+3650] 0x2E5EFDECDBC      (void*)
    [RSP+3658] 0x0                (size_t) [0]
    [RSP+3660] 0x2E5EFE4CA68      (void*)
    [RSP+3668] 0x0                (size_t) [0]
    [RSP+3670] 0x0                (size_t) [0]
    [RSP+3678] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+3680] 0x0                (size_t) [0]
    [RSP+3688] 0x0                (size_t) [0]
    [RSP+3690] 0x5113             (size_t) [20755]
    [RSP+3698] 0x0                (size_t) [0]
    [RSP+36A0] 0xC1F495FDC2029DE0 (size_t) [uint: 13975960460751707616 int: -4470783612957844000]
    [RSP+36A8] 0xBF491AF8C13BC7AE (size_t) [uint: 13783577790240245678 int: -4663166283469305938]
    [RSP+36B0] 0x37F47BAA38029293 (size_t) [4031983537417786003]
    [RSP+36B8] 0x40A5318436BD3DE9 (size_t) [4658183833508462057]
    [RSP+36C0] 0xC1C2A0F0C195D5D2 (size_t) [uint: 13961898750702376402 int: -4484845323007175214]
    [RSP+36C8] 0x3B6B4BB9C062832F (size_t) [4281599131914502959]
    [RSP+36D0] 0x3ADE2FA63B6B4BB9 (size_t) [4241880290037550009]
    [RSP+36D8] 0x3B3E7975         (size_t) [993950069]
    [RSP+36E0] 0x2E67A8C05C0      (void*)
    [RSP+36E8] 0x2E5EFDFBA60      (void*)
    [RSP+36F0] 0x2E5EFE4CA68      (void*)
    [RSP+36F8] 0x2E5EFDECDBC      (void*)
    [RSP+3700] 0x2E5EFDF1810      (void*)
    [RSP+3708] 0x2E5EFE5265C      (void*)
    [RSP+3710] 0x2E5EFDF5BF4      (void*)
    [RSP+3718] 0x500000012        (size_t) [21474836498]
    [RSP+3720] 0x4118C995C1900427 (size_t) [4690720656941122599]
    [RSP+3728] 0xBEAE0AC0405CCC4C (size_t) [uint: 13739931333983784012 int: -4706812739725767604]
    [RSP+3730] 0x11               (size_t) [17]
    [RSP+3738] 0x0                (size_t) [0]
    [RSP+3740] 0x1                (size_t) [1]
    [RSP+3748] 0x0                (size_t) [0]
    [RSP+3750] 0x2E67A8C05C0      (void*)
    [RSP+3758] 0x0                (size_t) [0]
    [RSP+3760] 0x0                (size_t) [0]
    [RSP+3768] 0x0                (size_t) [0]
    [RSP+3770] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+3778] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+3780] 0x0                (size_t) [0]
    [RSP+3788] 0x0                (size_t) [0]
    [RSP+3790] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+3798] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+37A0] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+37A8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+37B0] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+37B8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+37C0] 0xC185EA4EC14A247E (size_t) [uint: 13944809445193819262 int: -4501934628515732354]
    [RSP+37C8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+37D0] 0x0                (size_t) [0]
    [RSP+37D8] 0x0                (size_t) [0]
    [RSP+37E0] 0x0                (size_t) [0]
    [RSP+37E8] 0x0                (size_t) [0]
    [RSP+37F0] 0x0                (size_t) [0]
    [RSP+37F8] 0x0                (size_t) [0]
    [RSP+3800] 0x0                (size_t) [0]
    [RSP+3808] 0x0                (size_t) [0]
    [RSP+3810] 0x0                (size_t) [0]
    [RSP+3818] 0x0                (size_t) [0]
    [RSP+3820] 0x0                (size_t) [0]
    [RSP+3828] 0x0                (size_t) [0]
    [RSP+3830] 0x3F17C8F03D4CC9F0 (size_t) [4546323282999953904]
    [RSP+3838] 0x3F17C8F03F17C8F0 (size_t) [4546323283030034672]
    [RSP+3840] 0x405CCB4CC182BAAB (size_t) [4637805246809291435]
    [RSP+3848] 0xC19004843F17C8EC (size_t) [uint: 13947653012007143660 int: -4499091061702407956]
    [RSP+3850] 0x405D26F2C19004B7 (size_t) [4637906015332861111]
    [RSP+3858] 0xC098193D405CCCEB (size_t) [uint: 13877870002605706475 int: -4568874071103845141]
    [RSP+3860] 0x0                (size_t) [0]
    [RSP+3868] 0x0                (size_t) [0]
    [RSP+3870] 0x0                (size_t) [0]
    [RSP+3878] 0x0                (size_t) [0]
    [RSP+3880] 0x0                (size_t) [0]
    [RSP+3888] 0x0                (size_t) [0]
    [RSP+3890] 0x0                (size_t) [0]
    [RSP+3898] 0x0                (size_t) [0]
    [RSP+38A0] 0x0                (size_t) [0]
    [RSP+38A8] 0x0                (size_t) [0]
    [RSP+38B0] 0x0                (size_t) [0]
    [RSP+38B8] 0x0                (size_t) [0]
    [RSP+38C0] 0x0                (size_t) [0]
    [RSP+38C8] 0x0                (size_t) [0]
    [RSP+38D0] 0x0                (size_t) [0]
    [RSP+38D8] 0x0                (size_t) [0]
    [RSP+38E0] 0x0                (size_t) [0]
    [RSP+38E8] 0x0                (size_t) [0]
    [RSP+38F0] 0xC0C6C61B40B588D2 (size_t) [uint: 13891007921022929106 int: -4555736152686622510]
    [RSP+38F8] 0x3F593C46BF8335EF (size_t) [4564745971875132911]
    [RSP+3900] 0xC0A60B3BC09E2196 (size_t) [uint: 13881795252678697366 int: -4564948821030854250]
    [RSP+3908] 0x3FD2B0D23F848918 (size_t) [4598932586553968920]
    [RSP+3910] 0x0                (size_t) [0]
    [RSP+3918] 0x0                (size_t) [0]
    [RSP+3920] 0x0                (size_t) [0]
    [RSP+3928] 0x0                (size_t) [0]
    [RSP+3930] 0x0                (size_t) [0]
    [RSP+3938] 0x0                (size_t) [0]
    [RSP+3940] 0xBF12568A3EF684C3 (size_t) [uint: 13768162162586846403 int: -4678581911122705213]
    [RSP+3948] 0x3F2A1551         (size_t) [1059722577]
    [RSP+3950] 0xF63ABF8E70       (void*)
    [RSP+3958] 0xF63ABF9F80       (void*)
    [RSP+3960] 0xF63ABF9FE0       (void*)
    [RSP+3968] 0xF63ABF9F50       (void*)
    [RSP+3970] 0xF63ABF8EB0       (void*)
    [RSP+3978] 0xF63ABF9FA0       (void*)
    [RSP+3980] 0xF63ABFA220       (void*)
    [RSP+3988] 0xF63ABF9F50       (void*)
    [RSP+3990] 0xBE281C6D00000000 (size_t) [uint: 13702233120751747072 int: -4744510952957804544]
    [RSP+3998] 0xBE6DBF48BE6DBF48 (size_t) [uint: 13721833958821183304 int: -4724910114888368312]
    [RSP+39A0] 0xBF83343C409E9BB3 (size_t) [uint: 13799931116580150195 int: -4646812957129401421]
    [RSP+39A8] 0x40B589373EC6590C (size_t) [4662783859581409548]
    [RSP+39B0] 0xBF83D01C40B589CB (size_t) [uint: 13800102502956632523 int: -4646641570752919093]
    [RSP+39B8] 0x4003751ABF83368C (size_t) [4612659201100166796]
    [RSP+39C0] 0xBF12568A3EF684C3 (size_t) [uint: 13768162162586846403 int: -4678581911122705213]
    [RSP+39C8] 0x3F2A1551         (size_t) [1059722577]
    [RSP+39D0] 0xF63ABF8EB0       (void*)
    [RSP+39D8] 0xF63ABFA000       (void*)
    [RSP+39E0] 0xF63ABF9F60       (void*)
    [RSP+39E8] 0xF63ABF9FD0       (void*)
    [RSP+39F0] 0xF63ABF8E70       (void*)
    [RSP+39F8] 0xF63ABFA020       (void*)
    [RSP+3A00] 0xF63ABFA120       (void*)
    [RSP+3A08] 0xF63ABF9FD0       (void*)
    [RSP+3A10] 0xF63ABF8F30       (void*)
    [RSP+3A18] 0xF63ABF9FE0       (void*)
    [RSP+3A20] 0xF63ABFA060       (void*)
    [RSP+3A28] 0xF63ABF9FD0       (void*)
    [RSP+3A30] 0x4032A3B2         (size_t) [1077060530]
    [RSP+3A38] 0x0                (size_t) [0]
    [RSP+3A40] 0x3F24EB8A3F43CCA1 (size_t) [4550020502550465697]
    [RSP+3A48] 0x0                (size_t) [0]
    [RSP+3A50] 0x3E281C6D00000000 (size_t) [4478861083896971264]
    [RSP+3A58] 0x0                (size_t) [0]
    [RSP+3A60] 0x3F848B24C09E9BB3 (size_t) [4576936111281970099]
    [RSP+3A68] 0xC09E22203FBF742B (size_t) [uint: 13879568623506256939 int: -4567175450203294677]
    [RSP+3A70] 0x3F83D014C09E2191 (size_t) [4576730433888067985]
    [RSP+3A78] 0x3F8488E5         (size_t) [1065650405]
    [RSP+3A80] 0xF63ABFA100       (void*)
    [RSP+3A88] 0xF63ABFA050       (void*)
    [RSP+3A90] 0xF63ABF8EF0       (void*)
    [RSP+3A98] 0xF63ABFA060       (void*)
    [RSP+3AA0] 0xF63ABFA1E0       (void*)
    [RSP+3AA8] 0xF63ABFA050       (void*)
    [RSP+3AB0] 0x410040F4         (size_t) [1090535668]
    [RSP+3AB8] 0x0                (size_t) [0]
    [RSP+3AC0] 0x80000000         (size_t) [2147483648]
    [RSP+3AC8] 0xBF800000         (size_t) [3212836864]
    [RSP+3AD0] 0xF63ABF8E70       (void*)
    [RSP+3AD8] 0xF63ABFA100       (void*)
    [RSP+3AE0] 0xF63ABFA160       (void*)
    [RSP+3AE8] 0xF63ABFA0D0       (void*)
    [RSP+3AF0] 0xF63ABF8EF0       (void*)
    [RSP+3AF8] 0xF63ABFA120       (void*)
    [RSP+3B00] 0xF63ABFA080       (void*)
    [RSP+3B08] 0xF63ABFA0D0       (void*)
    [RSP+3B10] 0xF600000000       (size_t) [1056561954816]
    [RSP+3B18] 0xF63ABFA0E0       (void*)
    [RSP+3B20] 0xF63ABFA000       (void*)
    [RSP+3B28] 0xF63ABFA0D0       (void*)
    [RSP+3B30] 0x3FE8A07C         (size_t) [1072210044]
    [RSP+3B38] 0x0                (size_t) [0]
    [RSP+3B40] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+3B48] 0x3F800000         (size_t) [1065353216]
    [RSP+3B50] 0xF63ABF8EF0       (void*)
    [RSP+3B58] 0xF63ABFA180       (void*)
    [RSP+3B60] 0xF63ABFA0E0       (void*)
    [RSP+3B68] 0xF63ABFA150       (void*)
    [RSP+3B70] 0xF63ABF8E70       (void*)
    [RSP+3B78] 0xF63ABFA1A0       (void*)
    [RSP+3B80] 0x3F0AFC23B6374000 (size_t) [4542720404467695616]
    [RSP+3B88] 0xB63740003F0AFC23 (size_t) [uint: 13130033608423832611 int: -5316710465285719005]
    [RSP+3B90] 0xF63ABF8F70       (void*)
    [RSP+3B98] 0xF63ABFA160       (void*)
    [RSP+3BA0] 0xF63ABFA200       (void*)
    [RSP+3BA8] 0x7FF698B4129A     (void* -> Fallout4.exe+190129A    mov r15, [rsp+0xC0] |  hknpWeldingUtil::neighborWeld(hknpManifold*,hknpWeldingUtil::ManifoldData*,int,int,hknpCdBody&,hknpCdBodyBase&,hknpShapeCollector*,hkcdWeldingUtil::Config&,hkcdWeldingUtil::MotionWeldConfig*)_190129A)
    [RSP+3BB0] 0x0                (size_t) [0]
    [RSP+3BB8] 0x40626B5B3F7FFFFF (size_t) [4639388605796581375]
    [RSP+3BC0] 0x3EB63B5C3F5BF757 (size_t) [4518864543498893143]
    [RSP+3BC8] 0xBEA29FE5BEBC22C3 (size_t) [uint: 13736717622529761987 int: -4710026451179789629]
    [RSP+3BD0] 0xF63ABF8EB0       (void*)
    [RSP+3BD8] 0xF63ABFA200       (void*)
    [RSP+3BE0] 0xF63ABFA0A0       (void*)
    [RSP+3BE8] 0xF63ABFA1D0       (void*)
    [RSP+3BF0] 0xF63ABF8EF0       (void*)
    [RSP+3BF8] 0xF63ABFA220       (void*)
    [RSP+3C00] 0xF63ABFA1A0       (void*)
    [RSP+3C08] 0xF63ABFA1D0       (void*)
    [RSP+3C10] 0x0                (size_t) [0]
    [RSP+3C18] 0x0                (size_t) [0]
    [RSP+3C20] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+3C28] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+3C30] 0x0                (size_t) [0]
    [RSP+3C38] 0x0                (size_t) [0]
    [RSP+3C40] 0x0                (size_t) [0]
    [RSP+3C48] 0x0                (size_t) [0]
    [RSP+3C50] 0x0                (size_t) [0]
    [RSP+3C58] 0x0                (size_t) [0]
    [RSP+3C60] 0x0                (size_t) [0]
    [RSP+3C68] 0x0                (size_t) [0]
    [RSP+3C70] 0x0                (size_t) [0]
    [RSP+3C78] 0x0                (size_t) [0]
    [RSP+3C80] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+3C88] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+3C90] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+3C98] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+3CA0] 0x0                (size_t) [0]
    [RSP+3CA8] 0x0                (size_t) [0]
    [RSP+3CB0] 0x0                (size_t) [0]
    [RSP+3CB8] 0x40626B5B3F7FFFFF (size_t) [4639388605796581375]
    [RSP+3CC0] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+3CC8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+3CD0] 0xF63ABFB290       (void*)
    [RSP+3CD8] 0x2E5CF68BBB0      (void*)
    [RSP+3CE0] 0x0                (size_t) [0]
    [RSP+3CE8] 0x1                (size_t) [1]
    [RSP+3CF0] 0x0                (size_t) [0]
    [RSP+3CF8] 0xF63ABFF120       (void*)
    [RSP+3D00] 0xF63ABFA420       (void*)
    [RSP+3D08] 0x7FF69901757A     (void* -> Fallout4.exe+1DD757A    movaps xmm1, [rsp+0x20] |  hknpBackfaceCollisionModifier::CheckBackface(hknpCdBody*,hkVector4f&,bool)_1DD757A)
    [RSP+3D10] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+3D18] 0xF63ABFF148       (void*)
    [RSP+3D20] 0x0                (size_t) [0]
    [RSP+3D28] 0xF63ABFA350       (void*)
    [RSP+3D30] 0x0                (size_t) [0]
    [RSP+3D38] 0xC2E777203F7FFFFF (size_t) [uint: 14044324943366193151 int: -4402419130343358465]
    [RSP+3D40] 0x3F800000         (size_t) [1065353216]
    [RSP+3D48] 0x448E63E000000000 (size_t) [4939995654995836928]
    [RSP+3D50] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+3D58] 0xC4A4AF0D00000000 (size_t) [uint: 14169642797983858688 int: -4277101275725692928]
    [RSP+3D60] 0x0                (size_t) [0]
    [RSP+3D68] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+3D70] 0x44A4AF0DC48E63E0 (size_t) [4946270764426748896]
    [RSP+3D78] 0x42E77721         (size_t) [1122465569]
    [RSP+3D80] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+3D88] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+3D90] 0x14               (size_t) [20]
    [RSP+3D98] 0xF63ABFAFA0       (void*)
    [RSP+3DA0] 0x5                (size_t) [5]
    [RSP+3DA8] 0xF63ABFAFA0       (void*)
    [RSP+3DB0] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+3DB8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+3DC0] 0x0                (size_t) [0]
    [RSP+3DC8] 0x0                (size_t) [0]
    [RSP+3DD0] 0x0                (size_t) [0]
    [RSP+3DD8] 0x0                (size_t) [0]
    [RSP+3DE0] 0x3D8888893D888889 (size_t) [4433943956170508425]
    [RSP+3DE8] 0x3D8888893D888889 (size_t) [4433943956170508425]
    [RSP+3DF0] 0x0                (size_t) [0]
    [RSP+3DF8] 0x0                (size_t) [0]
    [RSP+3E00] 0x0                (size_t) [0]
    [RSP+3E08] 0x3F000000BF5D4952 (size_t) [4539628427600021842]
    [RSP+3E10] 0x0                (size_t) [0]
    [RSP+3E18] 0x0                (size_t) [0]
    [RSP+3E20] 0x0                (size_t) [0]
    [RSP+3E28] 0x0                (size_t) [0]
    [RSP+3E30] 0x0                (size_t) [0]
    [RSP+3E38] 0x0                (size_t) [0]
    [RSP+3E40] 0x0                (size_t) [0]
    [RSP+3E48] 0x0                (size_t) [0]
    [RSP+3E50] 0x0                (size_t) [0]
    [RSP+3E58] 0x0                (size_t) [0]
    [RSP+3E60] 0x0                (size_t) [0]
    [RSP+3E68] 0x0                (size_t) [0]
    [RSP+3E70] 0xC1939D00C1556E00 (size_t) [uint: 13948665097465720320 int: -4498078976243831296]
    [RSP+3E78] 0xBEA41D28C0626B5C (size_t) [uint: 13737136824250428252 int: -4709607249459123364]
    [RSP+3E80] 0xBE6DBF48         (size_t) [3194863432]
    [RSP+3E88] 0xBE6DBF48BE281C6D (size_t) [uint: 13721833958816619629 int: -4724910114892931987]
    [RSP+3E90] 0x0                (size_t) [0]
    [RSP+3E98] 0x3E281C6D         (size_t) [1042816109]
    [RSP+3EA0] 0x0                (size_t) [0]
    [RSP+3EA8] 0x0                (size_t) [0]
    [RSP+3EB0] 0x0                (size_t) [0]
    [RSP+3EB8] 0x0                (size_t) [0]
    [RSP+3EC0] 0x0                (size_t) [0]
    [RSP+3EC8] 0x2E5CA56ABA0      (hknpTriangleShape*)
    [RSP+3ED0] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+3ED8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+3EE0] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+3EE8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+3EF0] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+3EF8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+3F00] 0xC185EA4EC14A247E (size_t) [uint: 13944809445193819262 int: -4501934628515732354]
    [RSP+3F08] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+3F10] 0x0                (size_t) [0]
    [RSP+3F18] 0x0                (size_t) [0]
    [RSP+3F20] 0xBE281C6D3E6DBF48 (size_t) [uint: 13702233121799126856 int: -4744510951910424760]
    [RSP+3F28] 0xBD8B45B6         (size_t) [3180021174]
    [RSP+3F30] 0x3E281C6D00000000 (size_t) [4478861083896971264]
    [RSP+3F38] 0xBE281C6D         (size_t) [3190299757]
    [RSP+3F40] 0x384B80003FE29D1E (size_t) [4056476627937434910]
    [RSP+3F48] 0xBF7A2ED4C0452152 (size_t) [uint: 13797391899696636242 int: -4649352174012915374]
    [RSP+3F50] 0xC06D679D3EBB0BC8 (size_t) [uint: 13865852752803597256 int: -4580891320905954360]
    [RSP+3F58] 0x3F7A4C05C07531C3 (size_t) [4574051959135613379]
    [RSP+3F60] 0x0                (size_t) [0]
    [RSP+3F68] 0x0                (size_t) [0]
    [RSP+3F70] 0x0                (size_t) [0]
    [RSP+3F78] 0x0                (size_t) [0]
    [RSP+3F80] 0x0                (size_t) [0]
    [RSP+3F88] 0x0                (size_t) [0]
    [RSP+3F90] 0x0                (size_t) [0]
    [RSP+3F98] 0x0                (size_t) [0]
    [RSP+3FA0] 0x0                (size_t) [0]
    [RSP+3FA8] 0x0                (size_t) [0]
    [RSP+3FB0] 0x0                (size_t) [0]
    [RSP+3FB8] 0x0                (size_t) [0]
    [RSP+3FC0] 0x0                (size_t) [0]
    [RSP+3FC8] 0x0                (size_t) [0]
    [RSP+3FD0] 0x0                (size_t) [0]
    [RSP+3FD8] 0x0                (size_t) [0]
    [RSP+3FE0] 0x0                (size_t) [0]
    [RSP+3FE8] 0x0                (size_t) [0]
    [RSP+3FF0] 0x0                (size_t) [0]
    [RSP+3FF8] 0x0                (size_t) [0]
    [RSP+4000] 0x0                (size_t) [0]
    [RSP+4008] 0x0                (size_t) [0]
    [RSP+4010] 0x0                (size_t) [0]
    [RSP+4018] 0x0                (size_t) [0]
    [RSP+4020] 0x0                (size_t) [0]
    [RSP+4028] 0x0                (size_t) [0]
    [RSP+4030] 0x0                (size_t) [0]
    [RSP+4038] 0x0                (size_t) [0]
    [RSP+4040] 0x0                (size_t) [0]
    [RSP+4048] 0x0                (size_t) [0]
    [RSP+4050] 0x0                (size_t) [0]
    [RSP+4058] 0x0                (size_t) [0]
    [RSP+4060] 0x0                (size_t) [0]
    [RSP+4068] 0x0                (size_t) [0]
    [RSP+4070] 0x0                (size_t) [0]
    [RSP+4078] 0x0                (size_t) [0]
    [RSP+4080] 0x3F7FFFFF3F7FFFFF (size_t) [4575657218178809855]
    [RSP+4088] 0x3F7FFFFF3F7FFFFF (size_t) [4575657218178809855]
    [RSP+4090] 0x0                (size_t) [0]
    [RSP+4098] 0x0                (size_t) [0]
    [RSP+40A0] 0x0                (size_t) [0]
    [RSP+40A8] 0x0                (size_t) [0]
    [RSP+40B0] 0xBFEFC990BD6B26EA (size_t) [uint: 13830494604168472298 int: -4616249469541079318]
    [RSP+40B8] 0x800000003E883B60 (size_t) [uint: 9223372037903891296 int: -9223372035805660320]
    [RSP+40C0] 0x0                (size_t) [0]
    [RSP+40C8] 0x0                (size_t) [0]
    [RSP+40D0] 0x405CCB4CC182BAAB (size_t) [4637805246809291435]
    [RSP+40D8] 0xC19004843F17C8EC (size_t) [uint: 13947653012007143660 int: -4499091061702407956]
    [RSP+40E0] 0x0                (size_t) [0]
    [RSP+40E8] 0x0                (size_t) [0]
    [RSP+40F0] 0x0                (size_t) [0]
    [RSP+40F8] 0x0                (size_t) [0]
    [RSP+4100] 0x0                (size_t) [0]
    [RSP+4108] 0x0                (size_t) [0]
    [RSP+4110] 0x0                (size_t) [0]
    [RSP+4118] 0x0                (size_t) [0]
    [RSP+4120] 0x0                (size_t) [0]
    [RSP+4128] 0x0                (size_t) [0]
    [RSP+4130] 0x0                (size_t) [0]
    [RSP+4138] 0x0                (size_t) [0]
    [RSP+4140] 0x0                (size_t) [0]
    [RSP+4148] 0x0                (size_t) [0]
    [RSP+4150] 0xFFFFFFFFFFFF0005 (size_t) [uint: 18446744073709486085 int: -65531]
    [RSP+4158] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+4160] 0x800019C3FFFFFFFF (size_t) [uint: 9223400366459060223 int: -9223343707250491393]
    [RSP+4168] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+4170] 0x0                (size_t) [0]
    [RSP+4178] 0x0                (size_t) [0]
    [RSP+4180] 0x3F5D6F3B3F5D6F3B (size_t) [4565927897480392507]
    [RSP+4188] 0x3F5D6F3B3F5D6F3B (size_t) [4565927897480392507]
    [RSP+4190] 0x3F17C8F03D4CC9F0 (size_t) [4546323282999953904]
    [RSP+4198] 0x3F17C8F03F17C8F0 (size_t) [4546323283030034672]
    [RSP+41A0] 0x0                (size_t) [0]
    [RSP+41A8] 0x0                (size_t) [0]
    [RSP+41B0] 0x7F7FFFEE7F7FFFEE (size_t) [9187343164665495534]
    [RSP+41B8] 0x7F7FFFEE7F7FFFEE (size_t) [9187343164665495534]
    [RSP+41C0] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+41C8] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+41D0] 0x40B0AE683F17CD98 (size_t) [4661417377086819736]
    [RSP+41D8] 0xBFFEA004407464C4 (size_t) [uint: 13834671045450425540 int: -4612073028259126076]
    [RSP+41E0] 0xBEBC22C3BEBC22C3 (size_t) [uint: 13743898386941878979 int: -4702845686767672637]
    [RSP+41E8] 0xBEBC22C3BEBC22C3 (size_t) [uint: 13743898386941878979 int: -4702845686767672637]
    [RSP+41F0] 0x3E3AD0003FE77800 (size_t) [4484125078491461632]
    [RSP+41F8] 0xBEFC58003E878000 (size_t) [uint: 13761971319409704960 int: -4684772754299846656]
    [RSP+4200] 0x0                (size_t) [0]
    [RSP+4208] 0x0                (size_t) [0]
    [RSP+4210] 0x31CA8050         (size_t) [835354704]
    [RSP+4218] 0x0                (size_t) [0]
    [RSP+4220] 0xC02E2C0DC02E2C0D (size_t) [uint: 13848054341781302285 int: -4598689731928249331]
    [RSP+4228] 0xC02E2C0DC02E2C0D (size_t) [uint: 13848054341781302285 int: -4598689731928249331]
    [RSP+4230] 0x0                (size_t) [0]
    [RSP+4238] 0x0                (size_t) [0]
    [RSP+4240] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+4248] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+4250] 0x0                (size_t) [0]
    [RSP+4258] 0x0                (size_t) [0]
    [RSP+4260] 0x0                (size_t) [0]
    [RSP+4268] 0x0                (size_t) [0]
    [RSP+4270] 0x0                (size_t) [0]
    [RSP+4278] 0x0                (size_t) [0]
    [RSP+4280] 0x3F17C8F03D4CC9F0 (size_t) [4546323282999953904]
    [RSP+4288] 0x3F17C8F03F17C8F0 (size_t) [4546323283030034672]
    [RSP+4290] 0x0                (size_t) [0]
    [RSP+4298] 0x0                (size_t) [0]
    [RSP+42A0] 0x4118C995C1900427 (size_t) [4690720656941122599]
    [RSP+42A8] 0xBEAE0AC0405CCC4C (size_t) [uint: 13739931333983784012 int: -4706812739725767604]
    [RSP+42B0] 0x0                (size_t) [0]
    [RSP+42B8] 0x0                (size_t) [0]
    [RSP+42C0] 0x0                (size_t) [0]
    [RSP+42C8] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+42D0] 0x0                (size_t) [0]
    [RSP+42D8] 0x0                (size_t) [0]
    [RSP+42E0] 0x44A26099C4900EBC (size_t) [4945621554350263996]
    [RSP+42E8] 0xBC3B390C42E063C6 (size_t) [uint: 13563497427580773318 int: -4883246646128778298]
    [RSP+42F0] 0x0                (size_t) [0]
    [RSP+42F8] 0x0                (size_t) [0]
    [RSP+4300] 0x0                (size_t) [0]
    [RSP+4308] 0x0                (size_t) [0]
    [RSP+4310] 0x0                (size_t) [0]
    [RSP+4318] 0x0                (size_t) [0]
    [RSP+4320] 0xBE281C6D00000000 (size_t) [uint: 13702233120751747072 int: -4744510952957804544]
    [RSP+4328] 0xBE6DBF48BE6DBF48 (size_t) [uint: 13721833958821183304 int: -4724910114888368312]
    [RSP+4330] 0x3E281C6D00000000 (size_t) [4478861083896971264]
    [RSP+4338] 0x0                (size_t) [0]
    [RSP+4340] 0x0                (size_t) [0]
    [RSP+4348] 0x0                (size_t) [0]
    [RSP+4350] 0xBE281C6D00000000 (size_t) [uint: 13702233120751747072 int: -4744510952957804544]
    [RSP+4358] 0xBE6DBF48BE6DBF48 (size_t) [uint: 13721833958821183304 int: -4724910114888368312]
    [RSP+4360] 0x3E281C6D00000000 (size_t) [4478861083896971264]
    [RSP+4368] 0x0                (size_t) [0]
    [RSP+4370] 0x0                (size_t) [0]
    [RSP+4378] 0x0                (size_t) [0]
    [RSP+4380] 0xBF83343C409E9BB3 (size_t) [uint: 13799931116580150195 int: -4646812957129401421]
    [RSP+4388] 0x40B589373EC6590C (size_t) [4662783859581409548]
    [RSP+4390] 0x3F848B24C09E9BB3 (size_t) [4576936111281970099]
    [RSP+4398] 0xC09E22203FBF742B (size_t) [uint: 13879568623506256939 int: -4567175450203294677]
    [RSP+43A0] 0x0                (size_t) [0]
    [RSP+43A8] 0x0                (size_t) [0]
    [RSP+43B0] 0xBF83D01C40B589CB (size_t) [uint: 13800102502956632523 int: -4646641570752919093]
    [RSP+43B8] 0x4003751ABF83368C (size_t) [4612659201100166796]
    [RSP+43C0] 0x3F83D014C09E2191 (size_t) [4576730433888067985]
    [RSP+43C8] 0x3F8488E5         (size_t) [1065650405]
    [RSP+43D0] 0xBF08A787C18B5920 (size_t) [uint: 13765436462567479584 int: -4681307611142072032]
    [RSP+43D8] 0x5F7FFFF0407087ED (size_t) [6881500162983757805]
    [RSP+43E0] 0x0                (size_t) [0]
    [RSP+43E8] 0x0                (size_t) [0]
    [RSP+43F0] 0x2E5EFE5265C      (void*)
    [RSP+43F8] 0x0                (size_t) [0]
    [RSP+4400] 0x2E5EFDF1810      (void*)
    [RSP+4408] 0x0                (size_t) [0]
    [RSP+4410] 0x12               (size_t) [18]
    [RSP+4418] 0x500000000        (size_t) [21474836480]
    [RSP+4420] 0x1                (size_t) [1]
    [RSP+4428] 0x7FF698AD49D7     (void* -> Fallout4.exe+18949D7    cmp ebx, 0x01 |  hknpContactJacobianUtil::getProjVelDiff(hknpContactSolverType::Enum,hknpContactJacobian*,hknpMotion&,hknpMotion&,hkVector4f&,hkSimdFloat32*)_18949D7)
    [RSP+4430] 0x2E5EFDF5BF4      (void*)
    [RSP+4438] 0x0                (size_t) [0]
    [RSP+4440] 0x2E5EFDECDBC      (void*)
    [RSP+4448] 0x0                (size_t) [0]
    [RSP+4450] 0x2E5EFE4CA68      (void*)
    [RSP+4458] 0x0                (size_t) [0]
    [RSP+4460] 0x0                (size_t) [0]
    [RSP+4468] 0x0                (size_t) [0]
    [RSP+4470] 0x0                (size_t) [0]
    [RSP+4478] 0x0                (size_t) [0]
    [RSP+4480] 0x5113             (size_t) [20755]
    [RSP+4488] 0x0                (size_t) [0]
    [RSP+4490] 0xC1F495FDC2029DE0 (size_t) [uint: 13975960460751707616 int: -4470783612957844000]
    [RSP+4498] 0xBF491AF8C13BC7AE (size_t) [uint: 13783577790240245678 int: -4663166283469305938]
    [RSP+44A0] 0x2E5CF57E760      (void*)
    [RSP+44A8] 0x7FF6989BF0B8     (void* -> Fallout4.exe+177F0B8    xor r15d, r15d |  hknpRestitutionModifier::postContactJacobianSetup(hknpSimulationThreadContext&,hknpSolverInfo&,hknpCdBodyBase&,hknpCdBodyBase&,hknpManifoldCollisionCache*,hknpManifold*,hknpContactJacobian*,int)_177F0B8)
    [RSP+44B0] 0x3                (size_t) [3]
    [RSP+44B8] 0x2E5CFA4DD80      (void*)
    [RSP+44C0] 0x2E5C862FF30      (void*)
    [RSP+44C8] 0x3B3E7975         (size_t) [993950069]
    [RSP+44D0] 0xF63ABFAB10       (void*)
    [RSP+44D8] 0xF63ABFAB10       (void*)
    [RSP+44E0] 0x200000000        (size_t) [8589934592]
    [RSP+44E8] 0x2E500000001      (size_t) [3182570766337]
    [RSP+44F0] 0x2DFFFFFF2DFFFFFF (size_t) [3314649322221469695]
    [RSP+44F8] 0x2DFFFFFF         (size_t) [771751935]
    [RSP+4500] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4508] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4510] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4518] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4520] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4528] 0x2EBFFFFF2EBFFFFF (size_t) [3368692517762498559]
    [RSP+4530] 0x1                (size_t) [1]
    [RSP+4538] 0x0                (size_t) [0]
    [RSP+4540] 0x0                (size_t) [0]
    [RSP+4548] 0x0                (size_t) [0]
    [RSP+4550] 0x0                (size_t) [0]
    [RSP+4558] 0x0                (size_t) [0]
    [RSP+4560] 0x0                (size_t) [0]
    [RSP+4568] 0x0                (size_t) [0]
    [RSP+4570] 0x31CA8050         (size_t) [835354704]
    [RSP+4578] 0x0                (size_t) [0]
    [RSP+4580] 0xB4000000B4000000 (size_t) [uint: 12970366929846927360 int: -5476377143862624256]
    [RSP+4588] 0xB4000000B4000000 (size_t) [uint: 12970366929846927360 int: -5476377143862624256]
    [RSP+4590] 0x3BC49BA63BC49BA6 (size_t) [4306738281942653862]
    [RSP+4598] 0x3BC49BA63BC49BA6 (size_t) [4306738281942653862]
    [RSP+45A0] 0xC29C5BA7C29C5BA7 (size_t) [uint: 14023184115807574951 int: -4423559957901976665]
    [RSP+45A8] 0xC29C5BA7C29C5BA7 (size_t) [uint: 14023184115807574951 int: -4423559957901976665]
    [RSP+45B0] 0x3F0AFC223F0AFC22 (size_t) [4542720398173338658]
    [RSP+45B8] 0x3F0AFC223F0AFC22 (size_t) [4542720398173338658]
    [RSP+45C0] 0x2E5C862BD20      (void*)
    [RSP+45C8] 0x1                (size_t) [1]
    [RSP+45D0] 0xF63ABFF120       (void*)
    [RSP+45D8] 0x2E5F31D8FF0      (void*)
    [RSP+45E0] 0xF63ABFAD00       (void*)
    [RSP+45E8] 0x7FF6988FD637     (void* -> Fallout4.exe+16BD637    mov rax, [rsp+0x58] |  StreamContactSolver::buildContact(hknpSolverInfo&,hknpManifold*,hknpStreamContactSolverTypes::BuildConfig&,hknpStreamContactSolverTypes::BuildState&,hknpStreamContactSolverTypes::ConstraintState&,hknpCdBodyBase&,hknpCdBodyBase&,hknpCsContactJacWriter*)_16BD637)
    [RSP+45F0] 0x2E5CFB2DE60      (void*)
    [RSP+45F8] 0x2E5CF57E760      (void*)
    [RSP+4600] 0x2E5CF57E760      (void*)
    [RSP+4608] 0xF63ABFF0E0       (void*)
    [RSP+4610] 0xF63ABFF120       (void*)
    [RSP+4618] 0x3                (size_t) [3]
    [RSP+4620] 0x2E5F31D8FF0      (void*)
    [RSP+4628] 0x2E5C862BD20      (void*)
    [RSP+4630] 0x0                (size_t) [0]
    [RSP+4638] 0x0                (size_t) [0]
    [RSP+4640] 0x2E5CA56AB50      (void*)
    [RSP+4648] 0x2E5CFB2DE40      (void*)
    [RSP+4650] 0x2E5C862FEC0      (void*)
    [RSP+4658] 0xF63ABFF7A8       (void*)
    [RSP+4660] 0x2E5C862BDC0      (void*)
    [RSP+4668] 0xA0               (size_t) [160]
    [RSP+4670] 0x4283491B430D4E40 (size_t) [4792754809890229824]
    [RSP+4678] 0x428557BB407889E4 (size_t) [4793333840157903332]
    [RSP+4680] 0x94144B00000000   (size_t) [41680608908279808]
    [RSP+4688] 0x0                (size_t) [0]
    [RSP+4690] 0x3EDB3E743FFEF03A (size_t) [4529282519261966394]
    [RSP+4698] 0xBFC3C60700000000 (size_t) [uint: 13818105815069884416 int: -4628638258639667200]
    [RSP+46A0] 0x0                (size_t) [0]
    [RSP+46A8] 0x0                (size_t) [0]
    [RSP+46B0] 0x401575863F008874 (size_t) [4617726212381378676]
    [RSP+46B8] 0xBF2760875F7FFFF0 (size_t) [uint: 13774084119875026928 int: -4672659953834524688]
    [RSP+46C0] 0x405D26F2C19004B7 (size_t) [4637906015332861111]
    [RSP+46C8] 0xC098193D405CCCEB (size_t) [uint: 13877870002605706475 int: -4568874071103845141]
    [RSP+46D0] 0xBFF79703         (size_t) [3220674307]
    [RSP+46D8] 0x3E9435E23E112A5A (size_t) [4509288372724902490]
    [RSP+46E0] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+46E8] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+46F0] 0x5F7FFFF0BF04590F (size_t) [6881500165107374351]
    [RSP+46F8] 0x405D174A40E1BA89 (size_t) [4637888798945032841]
    [RSP+4700] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+4708] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+4710] 0x0                (size_t) [0]
    [RSP+4718] 0x0                (size_t) [0]
    [RSP+4720] 0x3FB8F9F300000000 (size_t) [4591694642176589824]
    [RSP+4728] 0x3F9EB88EBED0D08D (size_t) [4584304393935966349]
    [RSP+4730] 0x0                (size_t) [0]
    [RSP+4738] 0x0                (size_t) [0]
    [RSP+4740] 0x0                (size_t) [0]
    [RSP+4748] 0x0                (size_t) [0]
    [RSP+4750] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+4758] 0x3F000000C0626B5C (size_t) [4539628427617135452]
    [RSP+4760] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+4768] 0x3F000001C0626B5C (size_t) [4539628431912102748]
    [RSP+4770] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+4778] 0x3F000002C0626B5C (size_t) [4539628436207070044]
    [RSP+4780] 0xC185EA4EC14A247E (size_t) [uint: 13944809445193819262 int: -4501934628515732354]
    [RSP+4788] 0x3F000003C0626B5C (size_t) [4539628440502037340]
    [RSP+4790] 0x0                (size_t) [0]
    [RSP+4798] 0x0                (size_t) [0]
    [RSP+47A0] 0x0                (size_t) [0]
    [RSP+47A8] 0x0                (size_t) [0]
    [RSP+47B0] 0x0                (size_t) [0]
    [RSP+47B8] 0x0                (size_t) [0]
    [RSP+47C0] 0x0                (size_t) [0]
    [RSP+47C8] 0x0                (size_t) [0]
    [RSP+47D0] 0x0                (size_t) [0]
    [RSP+47D8] 0x0                (size_t) [0]
    [RSP+47E0] 0x0                (size_t) [0]
    [RSP+47E8] 0x0                (size_t) [0]
    [RSP+47F0] 0x0                (size_t) [0]
    [RSP+47F8] 0x0                (size_t) [0]
    [RSP+4800] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+4808] 0x3C5B00003C5B0000 (size_t) [4349069866168942592]
    [RSP+4810] 0x0                (size_t) [0]
    [RSP+4818] 0x0                (size_t) [0]
    [RSP+4820] 0x0                (size_t) [0]
    [RSP+4828] 0x0                (size_t) [0]
    [RSP+4830] 0x0                (size_t) [0]
    [RSP+4838] 0x0                (size_t) [0]
    [RSP+4840] 0x0                (size_t) [0]
    [RSP+4848] 0x0                (size_t) [0]
    [RSP+4850] 0x0                (size_t) [0]
    [RSP+4858] 0x0                (size_t) [0]
    [RSP+4860] 0x0                (size_t) [0]
    [RSP+4868] 0x0                (size_t) [0]
    [RSP+4870] 0x0                (size_t) [0]
    [RSP+4878] 0x0                (size_t) [0]
    [RSP+4880] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+4888] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+4890] 0x42E12BC741EA161F (size_t) [4819181211067487775]
    [RSP+4898] 0xF63ABFC120       (void*)
    [RSP+48A0] 0xF63ABFC1D0       (void*)
    [RSP+48A8] 0x2E6835C4FC0      (hknpCompressedHeightFieldShape*)
    [RSP+48B0] 0x4A7FFFFF         (size_t) [1249902591]
    [RSP+48B8] 0x7FF698732F66     (void* -> Fallout4.exe+14F2F66    test al, al |  _::hknpHeightFieldShape_queryAabb_hkArray_unsigned_int_hkContainerHeapAllocator(void)_14F2F66)
    [RSP+48C0] 0xF63ABFCF90       (void*)
    [RSP+48C8] 0xF63ABFAFD0       (void*)
    [RSP+48D0] 0xF63ABFC120       (void*)
    [RSP+48D8] 0x7FF699FFE8C0     (void* -> Fallout4.exe+2DBE8C0    add [rax], al |  aDiveBombChance_2DBE8C0)
    [RSP+48E0] 0xF63ABFAF40       (void*)
    [RSP+48E8] 0x2E6835C4FC0      (hknpCompressedHeightFieldShape*)
    [RSP+48F0] 0x4A7FFFFF         (size_t) [1249902591]
    [RSP+48F8] 0x0                (size_t) [0]
    [RSP+4900] 0xF63ABFAF20       (void*)
    [RSP+4908] 0x0                (size_t) [0]
    [RSP+4910] 0x3ABEADDC3ABEADDC (size_t) [4233011861164830172]
    [RSP+4918] 0x3ABEADDC3ABEADDC (size_t) [4233011861164830172]
    [RSP+4920] 0x3E281C6D3E281C6D (size_t) [4478861084939787373]
    [RSP+4928] 0x3F000002BEA49A02 (size_t) [4539628436177852930]
    [RSP+4930] 0x3E6DBF48         (size_t) [1047379784]
    [RSP+4938] 0x3F000001BEA49A02 (size_t) [4539628431882885634]
    [RSP+4940] 0x0                (size_t) [0]
    [RSP+4948] 0x0                (size_t) [0]
    [RSP+4950] 0x0                (size_t) [0]
    [RSP+4958] 0x0                (size_t) [0]
    [RSP+4960] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+4968] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+4970] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+4978] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+4980] 0x0                (size_t) [0]
    [RSP+4988] 0x0                (size_t) [0]
    [RSP+4990] 0x0                (size_t) [0]
    [RSP+4998] 0x40626B5B3F7FFFFF (size_t) [4639388605796581375]
    [RSP+49A0] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+49A8] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+49B0] 0xF63ABFF120       (void*)
    [RSP+49B8] 0x2E5F31D8FF0      (void*)
    [RSP+49C0] 0x2E5F31D8FF0      (void*)
    [RSP+49C8] 0xF63ABFF7A8       (void*)
    [RSP+49D0] 0xF63ABFB210       (void*)
    [RSP+49D8] 0x7FF6988F6840     (void* -> Fallout4.exe+16B6840    mov rcx, [rbx+0x08] |  hknpStreamContactSolver::buildJacobian(hknpSolverInfo&,hknpManifold*,hknpStreamContactSolverTypes::BuildConfig&,hknpStreamContactSolverTypes::BuildState&,hknpStreamContactSolverTypes::ConstraintState&,hknpCdBodyBase&,hknpCdBodyBase&,hknpCsContactJacWriter*)_16B6840)
    [RSP+49E0] 0x2E66BAC6C00      (hknpStreamContactSolver*)
    [RSP+49E8] 0x3F0000000094144B (size_t) [4539628424399164491]
    [RSP+49F0] 0xF63ABFF0E0       (void*)
    [RSP+49F8] 0x2E5E7406360      (void*)
    [RSP+4A00] 0xF63ABFB0C0       (void*)
    [RSP+4A08] 0xF63ABFF0E0       (void*)
    [RSP+4A10] 0xF63ABFF120       (void*)
    [RSP+4A18] 0xF63ABFF7A8       (void*)
    [RSP+4A20] 0x180              (size_t) [384]
    [RSP+4A28] 0x7FF6988F8BDA     (void* -> Fallout4.exe+16B8BDA    mov rdi, [rsp+0xD0] |  hknpStreamContactSolver::injectJacobian(hknpCsContactJacInjector*,uint,hknpSimulationThreadContext*,hknpSolverInfo&,hknpManifoldCollisionCache*,hknpManifold*,hknpCdBodyBase&,hknpCdBodyBase&)_16B8BDA)
    [RSP+4A30] 0xF63ABFF120       (void*)
    [RSP+4A38] 0xC0626B5BBF7FFFFF (size_t) [uint: 13862760644798840831 int: -4583983428910710785]
    [RSP+4A40] 0x0                (size_t) [0]
    [RSP+4A48] 0x40626B5B3F7FFFFF (size_t) [4639388605796581375]
    [RSP+4A50] 0xF63ABFB0C0       (void*)
    [RSP+4A58] 0xF63ABFF0E0       (void*)
    [RSP+4A60] 0xF63ABFF120       (void*)
    [RSP+4A68] 0xF63ABFF7A8       (void*)
    [RSP+4A70] 0x300010203020100  (size_t) [216173890265809152]
    [RSP+4A78] 0x0                (size_t) [0]
    [RSP+4A80] 0x0                (size_t) [0]
    [RSP+4A88] 0x40626B5B3F7FFFFF (size_t) [4639388605796581375]
    [RSP+4A90] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+4A98] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+4AA0] 0xF63ABFF120       (void*)
    [RSP+4AA8] 0x6                (size_t) [6]
    [RSP+4AB0] 0x0                (size_t) [0]
    [RSP+4AB8] 0x3C5B000000000000 (size_t) [4349069865156345856]
    [RSP+4AC0] 0x0                (size_t) [0]
    [RSP+4AC8] 0x0                (size_t) [0]
    [RSP+4AD0] 0x2E5C862FF00      (void*)
    [RSP+4AD8] 0x2E5C862FF60      (void*)
    [RSP+4AE0] 0x2E5C862FF70      (void*)
    [RSP+4AE8] 0x2E5C862FF50      (void*)
    [RSP+4AF0] 0x2E5CA56AB50      (void*)
    [RSP+4AF8] 0x7FF6989C4660     (void* -> Fallout4.exe+1784660    mov ecx, [rbp+0xDA0] |  hknpConvexCompositeCollisionDetector::collideConvexWithCompositeKeys(hknpSimulationThreadContext&,hknpInternalCollideSharedData&,hknpCdBody&,hknpCdBody*,uint*,int,int,hknpCollisionShapeKeyArrayCache*,hknpCollisionCacheConsumer*,hknpCollisionCacheWriter*,hknpManifold*,hknpJacobianConsumer*,hknpCsContactJacInjector*,ushort*,uint*,hknpCvxCompositeKeysTimers*)_1784660)
    [RSP+4B00] 0x180              (size_t) [384]
    [RSP+4B08] 0x2E5CFB2DE28      (void*)
    [RSP+4B10] 0x2E5C862FEC0      (void*)
    [RSP+4B18] 0x2E5F31D9088      (void*)
    [RSP+4B20] 0x2E5CF57E760      (void*)
    [RSP+4B28] 0x2E5C862FEC0      (void*)
    [RSP+4B30] 0x2E5F31D8FF0      (void*)
    [RSP+4B38] 0xF63ABFF0E0       (void*)
    [RSP+4B40] 0xF63ABFF120       (void*)
    [RSP+4B48] 0x2E5F31D8FF0      (void*)
    [RSP+4B50] 0x2191FFFF00000000 (size_t) [2418995945556410368]
    [RSP+4B58] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+4B60] 0x0                (size_t) [0]
    [RSP+4B68] 0x10               (size_t) [16]
    [RSP+4B70] 0x20               (size_t) [32]
    [RSP+4B78] 0x2E5F31D9188      (void*)
    [RSP+4B80] 0x2E600000000      (size_t) [3186865733632]
    [RSP+4B88] 0x180              (size_t) [384]
    [RSP+4B90] 0x0                (size_t) [0]
    [RSP+4B98] 0x0                (size_t) [0]
    [RSP+4BA0] 0x0                (size_t) [0]
    [RSP+4BA8] 0x2E5F31D8FF0      (void*)
    [RSP+4BB0] 0x2E66BAC6C00      (hknpStreamContactSolver*)
    [RSP+4BB8] 0x7000100000006    (size_t) [1970329131941894]
    [RSP+4BC0] 0x3E1FB00680000000 (size_t) [4476490096593338368]
    [RSP+4BC8] 0x80000000BF7CDE37 (size_t) [uint: 9223372040067407415 int: -9223372033642144201]
    [RSP+4BD0] 0x0                (size_t) [0]
    [RSP+4BD8] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+4BE0] 0x0                (size_t) [0]
    [RSP+4BE8] 0x0                (size_t) [0]
    [RSP+4BF0] 0x0                (size_t) [0]
    [RSP+4BF8] 0x2E5CF57E760      (void*)
    [RSP+4C00] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+4C08] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+4C10] 0x41686B4A4170D3CA (size_t) [4713134976712889290]
    [RSP+4C18] 0x3F000002C012C623 (size_t) [4539628436201850403]
    [RSP+4C20] 0x3F4323B03F25B34C (size_t) [4558526487709725516]
    [RSP+4C28] 0x0                (size_t) [0]
    [RSP+4C30] 0x3F25B34CBF4323B0 (size_t) [4550240140735488944]
    [RSP+4C38] 0x3C4CC00000000000 (size_t) [4345058846738219008]
    [RSP+4C40] 0x0                (size_t) [0]
    [RSP+4C48] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+4C50] 0x41B0E3D9C0ADC9EA (size_t) [4733533732746414570]
    [RSP+4C58] 0x3E86D8F54027E5E0 (size_t) [4505527025085703648]
    [RSP+4C60] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+4C68] 0x2E5C862FE80      (void*)
    [RSP+4C70] 0x2E5C862FE9C      (void*)
    [RSP+4C78] 0x0                (size_t) [0]
    [RSP+4C80] 0x3F800000         (size_t) [1065353216]
    [RSP+4C88] 0x448E63E000000000 (size_t) [4939995654995836928]
    [RSP+4C90] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+4C98] 0xC4A4AF0D00000000 (size_t) [uint: 14169642797983858688 int: -4277101275725692928]
    [RSP+4CA0] 0x0                (size_t) [0]
    [RSP+4CA8] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+4CB0] 0x44A4AF0DC48E63E0 (size_t) [4946270764426748896]
    [RSP+4CB8] 0x42E77721         (size_t) [1122465569]
    [RSP+4CC0] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+4CC8] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+4CD0] 0x14               (size_t) [20]
    [RSP+4CD8] 0x2E5CA56AC90      (hknpTriangleShape*)
    [RSP+4CE0] 0x5                (size_t) [5]
    [RSP+4CE8] 0x2E5CA56AC90      (hknpTriangleShape*)
    [RSP+4CF0] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+4CF8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+4D00] 0x0                (size_t) [0]
    [RSP+4D08] 0x0                (size_t) [0]
    [RSP+4D10] 0x468AB95D493ABD33 (size_t) [5083078939752709427]
    [RSP+4D18] 0x4694F15E470FD55E (size_t) [5085955266429572446]
    [RSP+4D20] 0x0                (size_t) [0]
    [RSP+4D28] 0x0                (size_t) [0]
    [RSP+4D30] 0x386C35BD35AF798D (size_t) [4065683650374498701]
    [RSP+4D38] 0x385C00FD37E3D1AC (size_t) [4061122051545747884]
    [RSP+4D40] 0x0                (size_t) [0]
    [RSP+4D48] 0x0                (size_t) [0]
    [RSP+4D50] 0x44DD696B44DD696B (size_t) [4962238273869932907]
    [RSP+4D58] 0x44DD696B44DD696B (size_t) [4962238273869932907]
    [RSP+4D60] 0x0                (size_t) [0]
    [RSP+4D68] 0x0                (size_t) [0]
    [RSP+4D70] 0x3A13F8003A13F800 (size_t) [4184961158615398400]
    [RSP+4D78] 0x3A13F8003A13F800 (size_t) [4184961158615398400]
    [RSP+4D80] 0x0                (size_t) [0]
    [RSP+4D88] 0x0                (size_t) [0]
    [RSP+4D90] 0x0                (size_t) [0]
    [RSP+4D98] 0x0                (size_t) [0]
    [RSP+4DA0] 0x0                (size_t) [0]
    [RSP+4DA8] 0x0                (size_t) [0]
    [RSP+4DB0] 0x0                (size_t) [0]
    [RSP+4DB8] 0x0                (size_t) [0]
    [RSP+4DC0] 0x0                (size_t) [0]
    [RSP+4DC8] 0x0                (size_t) [0]
    [RSP+4DD0] 0x3F7FFFFF3F7FFFFF (size_t) [4575657218178809855]
    [RSP+4DD8] 0x3F7FFFFF3F7FFFFF (size_t) [4575657218178809855]
    [RSP+4DE0] 0x0                (size_t) [0]
    [RSP+4DE8] 0x0                (size_t) [0]
    [RSP+4DF0] 0x8000000000000000 (size_t) [uint: 9223372036854775808 int: -9223372036854775808]
    [RSP+4DF8] 0x800000003F7FFFFF (size_t) [uint: 9223372037920129023 int: -9223372035789422593]
    [RSP+4E00] 0x0                (size_t) [0]
    [RSP+4E08] 0x0                (size_t) [0]
    [RSP+4E10] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+4E18] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+4E20] 0xC1D45C89C1546266 (size_t) [uint: 13966890091106558566 int: -4479853982602993050]
    [RSP+4E28] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+4E30] 0xC19480B3C13E2F6E (size_t) [uint: 13948915455402848110 int: -4497828618306703506]
    [RSP+4E38] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+4E40] 0xC185EA4EC14A247E (size_t) [uint: 13944809445193819262 int: -4501934628515732354]
    [RSP+4E48] 0xBF491AF8C0626B5C (size_t) [uint: 13783577790226000732 int: -4663166283483550884]
    [RSP+4E50] 0x0                (size_t) [0]
    [RSP+4E58] 0xC2E4894B3F800000 (size_t) [uint: 14043500494328954880 int: -4403243579380596736]
    [RSP+4E60] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+4E68] 0x44902A62BFA08400 (size_t) [4940495394835563520]
    [RSP+4E70] 0xC0AFB5C8C0C79CEC (size_t) [uint: 13884516050038922476 int: -4562228023670629140]
    [RSP+4E78] 0xBF491AF8C062605C (size_t) [uint: 13783577790225997916 int: -4663166283483553700]
    [RSP+4E80] 0xC18A9B78C1A6397D (size_t) [uint: 13946130139053439357 int: -4500613934656112259]
    [RSP+4E88] 0xBF491AF8C062605C (size_t) [uint: 13783577790225997916 int: -4663166283483553700]
    [RSP+4E90] 0x0                (size_t) [0]
    [RSP+4E98] 0x0                (size_t) [0]
    [RSP+4EA0] 0x0                (size_t) [0]
    [RSP+4EA8] 0x0                (size_t) [0]
    [RSP+4EB0] 0x3D4CCCCD3D4CCCCD (size_t) [4417130516412419277]
    [RSP+4EB8] 0x3D4CCCCD3D4CCCCD (size_t) [4417130516412419277]
    [RSP+4EC0] 0x3C23D70A3C23D70A (size_t) [4333543705419175690]
    [RSP+4EC8] 0x3C23D70A3C23D70A (size_t) [4333543705419175690]
    [RSP+4ED0] 0x0                (size_t) [0]
    [RSP+4ED8] 0x0                (size_t) [0]
    [RSP+4EE0] 0x0                (size_t) [0]
    [RSP+4EE8] 0x0                (size_t) [0]
    [RSP+4EF0] 0x0                (size_t) [0]
    [RSP+4EF8] 0x0                (size_t) [0]
    [RSP+4F00] 0xFF7FFFEEFF7FFFEE (size_t) [uint: 18410715203667754990 int: -36028870041796626]
    [RSP+4F08] 0xFF7FFFEEFF7FFFEE (size_t) [uint: 18410715203667754990 int: -36028870041796626]
    [RSP+4F10] 0x0                (size_t) [0]
    [RSP+4F18] 0x0                (size_t) [0]
    [RSP+4F20] 0x2E5CF6A3F40      (void*)
    [RSP+4F28] 0x7FF6989BE9D0     (void* -> Fallout4.exe+177E9D0    or byte ptr [rbx+0x23], 0x08 |  hknpTriggerModifier::manifoldCreatedCallback(hknpSimulationThreadContext&,hknpModifierSharedData&,hknpCdBody&,hknpCdBody&,hknpModifier::ManifoldCreatedCallbackInput*)_177E9D0)
    [RSP+4F30] 0x2E5C84E7D40      (void*)
    [RSP+4F38] 0x2E5EB079B00      (void*)
    [RSP+4F40] 0x2E5CF6A3F40      (void*)
    [RSP+4F48] 0x2E5F31D8FF0      (void*)
    [RSP+4F50] 0x3000020          (size_t) [50331680]
    [RSP+4F58] 0x55C000005A5      (size_t) [5892695131557]
    [RSP+4F60] 0xFFFFFFFF00000001 (size_t) [uint: 18446744069414584321 int: -4294967295]
    [RSP+4F68] 0x3FFFFFFF         (size_t) [1073741823]
    [RSP+4F70] 0xF63ABFF120       (void*)
    [RSP+4F78] 0x7FF698B4C58E     (void* -> Fallout4.exe+190C58E    mov r11, [rbp+0x17C0] |  hknpCollision2DFastProcessUtil::collide(hknpSimulationThreadContext&,hknpCvxCvxCollideTimers*,hknpModifierSharedData&,hkTransformf&,uint,hknpCdBody&,hknpCdBody&,hknpGskCollisionCache*,hknpGskCollisionCache*,hknpManifold*)_190C58E)
    [RSP+4F80] 0xA4045B           (size_t) [10749019]
    [RSP+4F88] 0x2E68595FE50      (void*)
    [RSP+4F90] 0x3FB33333         (size_t) [1068708659]
    [RSP+4F98] 0x358637BE         (size_t) [897988542]
    [RSP+4FA0] 0xF63ABFF120       (void*)
    [RSP+4FA8] 0xF63ABFB910       (void*)
    [RSP+4FB0] 0x0                (size_t) [0]
    [RSP+4FB8] 0x0                (size_t) [0]
    [RSP+4FC0] 0x0                (size_t) [0]
    [RSP+4FC8] 0x184              (size_t) [388]
    [RSP+4FD0] 0x0                (size_t) [0]
    [RSP+4FD8] 0x0                (size_t) [0]
    [RSP+4FE0] 0x0                (size_t) [0]
    [RSP+4FE8] 0x0                (size_t) [0]
    [RSP+4FF0] 0x0                (size_t) [0]
    [RSP+4FF8] 0x0                (size_t) [0]
    [RSP+5000] 0x0                (size_t) [0]
    [RSP+5008] 0x0                (size_t) [0]
    [RSP+5010] 0x0                (size_t) [0]
    [RSP+5018] 0x0                (size_t) [0]
    [RSP+5020] 0x0                (size_t) [0]
    [RSP+5028] 0x7FF69901770D     (void* -> Fallout4.exe+1DD770D    mov r8, rax |  hknpBSShapeCodec::decode(ushort,hknpCollisionQueryType::Enum,hknpBody*,hknpShape*,hknpShape*,uint,hknpShape*,hknpQueryFilterData*)_1DD770D)
    [RSP+5030] 0x2E5F621C500      (hknpConvexPolytopeShape*)
    [RSP+5038] 0x0                (size_t) [0]
    [RSP+5040] 0x0                (size_t) [0]
    [RSP+5048] 0x0                (size_t) [0]
    [RSP+5050] 0x2E5CF6A6850      (char*) "08>?jS+?"
    [RSP+5058] 0x7FF698805456     (void* -> Fallout4.exe+15C5456    test al, al |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hkcdStaticMeshTreeBase::Section,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompressedMeshShapeInternals::AabbOverlaps<hkArray<uint,hkContainerHeapAllocator>>>>(hkcdStaticMeshTreeBase::Section&,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompressedMeshShapeInternals::AabbOverlaps<hkArray<uint,hkContainerHeapAllocator>>>&)_15C5456)
    [RSP+5060] 0xF63ABFB9B0       (void*)
    [RSP+5068] 0x0                (size_t) [0]
    [RSP+5070] 0x2E682595770      (hknpConvexPolytopeShape*)
    [RSP+5078] 0x0                (size_t) [0]
    [RSP+5080] 0xF63ABFB710       (void*)
    [RSP+5088] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+5090] 0xFFFFFFFFFFFF0005 (size_t) [uint: 18446744073709486085 int: -65531]
    [RSP+5098] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+50A0] 0x19C3FFFFFFFF     (size_t) [28329604284415]
    [RSP+50A8] 0x19E319C319C3     (size_t) [28463180487107]
    [RSP+50B0] 0x7000100000006    (size_t) [1970329131941894]
    [RSP+50B8] 0x0                (size_t) [0]
    [RSP+50C0] 0x2E5CF6A3F40      (void*)
    [RSP+50C8] 0x12500380000000B  (size_t) [82472408694390795]
    [RSP+50D0] 0x5DD8A028         (size_t) [1574477864]
    [RSP+50D8] 0x2E5CF6A0CA0      (void*)
    [RSP+50E0] 0x2E6836AE680      (hknpDynamicCompoundShape*)
    [RSP+50E8] 0x2E6836AE680      (hknpDynamicCompoundShape*)
    [RSP+50F0] 0x7FFFFFFF         (size_t) [2147483647]
    [RSP+50F8] 0x0                (size_t) [0]
    [RSP+5100] 0x70001FFFFFFFF    (size_t) [1970333426909183]
    [RSP+5108] 0x0                (size_t) [0]
    [RSP+5110] 0x2E5FFFFFFFF      (size_t) [3186865733631]
    [RSP+5118] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+5120] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+5128] 0x362DFFFF         (size_t) [908984319]
    [RSP+5130] 0x0                (size_t) [0]
    [RSP+5138] 0x0                (size_t) [0]
    [RSP+5140] 0xBF990760409ABE59 (size_t) [uint: 13806074242663104089 int: -4640669831046447527]
    [RSP+5148] 0x408C0E25C03E3DCD (size_t) [4651108070468763085]
    [RSP+5150] 0xC18D41D5C11F01E2 (size_t) [uint: 13946876007360168418 int: -4499868066349383198]
    [RSP+5158] 0x405995D1C0C25D9E (size_t) [4636902019469303198]
    [RSP+5160] 0xC18D41D500000100 (size_t) [uint: 13946876004120133888 int: -4499868069589417728]
    [RSP+5168] 0x405995D1C0C25D9E (size_t) [4636902019469303198]
    [RSP+5170] 0xBF990760409ABE59 (size_t) [uint: 13806074242663104089 int: -4640669831046447527]
    [RSP+5178] 0x408C0E25C03E3DCD (size_t) [4651108070468763085]
    [RSP+5180] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+5188] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+5190] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+5198] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+51A0] 0xC133458AC0FC6DF6 (size_t) [uint: 13921547335377907190 int: -4525196738331644426]
    [RSP+51A8] 0x408C0E25FF7FFFEE (size_t) [4651108071530037230]
    [RSP+51B0] 0x1                (size_t) [1]
    [RSP+51B8] 0xF63ABFB910       (void*)
    [RSP+51C0] 0x2AAAAAAAAAAAAAAB (size_t) [3074457345618258603]
    [RSP+51C8] 0x0                (size_t) [0]
    [RSP+51D0] 0xF63ABFB8F0       (void*)
    [RSP+51D8] 0x2E5DA58EC57      (void*)
    [RSP+51E0] 0x4B               (size_t) [75]
    [RSP+51E8] 0x2E67A8C05C0      (void*)
    [RSP+51F0] 0x4B               (size_t) [75]
    [RSP+51F8] 0x7FF698810264     (void* -> Fallout4.exe+15D0264    mov r9d, 0x02 |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hknpCompressedMeshShapeTree,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompressedMeshShapeInternals::AabbOverlaps<hkArray<uint,hkContainerHeapAllocator>>>>(hknpCompressedMeshShapeTree&,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompressedMeshShapeInternals::AabbOverlaps<hkArray<uint,hkContainerHeapAllocator>>>&)_15D0264)
    [RSP+5200] 0x2E5EFDFC2A0      (void*)
    [RSP+5208] 0xF63ABFB8F0       (void*)
    [RSP+5210] 0xF63ABFB910       (void*)
    [RSP+5218] 0x7FFF00000001     (size_t) [140733193388033]
    [RSP+5220] 0x0                (size_t) [0]
    [RSP+5228] 0x0                (size_t) [0]
    [RSP+5230] 0x0                (size_t) [0]
    [RSP+5238] 0x0                (size_t) [0]
    [RSP+5240] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5248] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5250] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5258] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5260] 0x0                (size_t) [0]
    [RSP+5268] 0x0                (size_t) [0]
    [RSP+5270] 0x0                (size_t) [0]
    [RSP+5278] 0x0                (size_t) [0]
    [RSP+5280] 0x0                (size_t) [0]
    [RSP+5288] 0x0                (size_t) [0]
    [RSP+5290] 0x3F7F5BD83D90DCB0 (size_t) [4575476730735680688]
    [RSP+5298] 0xC2B434AE00000000 (size_t) [uint: 14029896661094891520 int: -4416847412614660096]
    [RSP+52A0] 0x3D90DCB0BF7F5BD8 (size_t) [4436288284645088216]
    [RSP+52A8] 0x428C8D2D00000000 (size_t) [4795362927655780352]
    [RSP+52B0] 0x0                (size_t) [0]
    [RSP+52B8] 0xC2E4894B3F800000 (size_t) [uint: 14043500494328954880 int: -4403243579380596736]
    [RSP+52C0] 0xC1032299C08373A4 (size_t) [uint: 13907998118005404580 int: -4538745955704147036]
    [RSP+52C8] 0x44902A62BFA08400 (size_t) [4940495394835563520]
    [RSP+52D0] 0x2E500000001      (size_t) [3182570766337]
    [RSP+52D8] 0x0                (size_t) [0]
    [RSP+52E0] 0x3DACE1AC3DACE1AC (size_t) [4444175062193201580]
    [RSP+52E8] 0x3DACE1AC3DACE1AC (size_t) [4444175062193201580]
    [RSP+52F0] 0x2E53FB33333      (size_t) [3183639474995]
    [RSP+52F8] 0x40               (size_t) [64]
    [RSP+5300] 0x2E5C84E7D40      (void*)
    [RSP+5308] 0x2E5C84E7D40      (void*)
    [RSP+5310] 0x2E500000000      (size_t) [3182570766336]
    [RSP+5318] 0x2E6835C4FC0      (hknpCompressedHeightFieldShape*)
    [RSP+5320] 0x45F2BFFA45F2FFFD (size_t) [5040302014617288701]
    [RSP+5328] 0x45F2BFFA45F2FFFD (size_t) [5040302014617288701]
    [RSP+5330] 0xC0FC0001         (size_t) [3237740545]
    [RSP+5338] 0x408C0E25FF7FFFEE (size_t) [4651108071530037230]
    [RSP+5340] 0x2E6835C4FC0      (hknpCompressedHeightFieldShape*)
    [RSP+5348] 0xBFF6E021BFF6E021 (size_t) [uint: 13832489741074227233 int: -4614254332635324383]
    [RSP+5350] 0x45F2BFFA45F2FFFD (size_t) [5040302014617288701]
    [RSP+5358] 0x45F2BFFA45F2FFFD (size_t) [5040302014617288701]
    [RSP+5360] 0xC0830001         (size_t) [3229810689]
    [RSP+5368] 0x3F000005C012C622 (size_t) [4539628449086752290]
    [RSP+5370] 0xF63ABFBAA0       (void*)
    [RSP+5378] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+5380] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5388] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5390] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5398] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+53A0] 0x0                (size_t) [0]
    [RSP+53A8] 0xF63ABFBA98       (void*)
    [RSP+53B0] 0x0                (size_t) [0]
    [RSP+53B8] 0xF63ABFBAA0       (void*)
    [RSP+53C0] 0xF63ABFBAA0       (void*)
    [RSP+53C8] 0x7FF698D81F2C     (void* -> Fallout4.exe+1B41F2C    mov rax, rbx |  BSFixedString::operator=(BSFixedString&)_1B41F2C)
    [RSP+53D0] 0x0                (size_t) [0]
    [RSP+53D8] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+53E0] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+53E8] 0xF63ABFFC08       (void*)
    [RSP+53F0] 0x2E67D665460      (void*)
    [RSP+53F8] 0x7FF69994DE70     (void* -> Fallout4.exe+270DE70    mov rax, [rbx+0x08] |  BSScript::Internal::VDescTable::GetParam(uint,BSFixedString&,BSScript::TypeInfo&)_270DE70)
    [RSP+5400] 0x0                (size_t) [0]
    [RSP+5408] 0x2E66B746BB0      (NativeFunction1<StaticFunctionTag,TESRace *,Actor *>*)
    [RSP+5410] 0x0                (size_t) [0]
    [RSP+5418] 0x0                (size_t) [0]
    [RSP+5420] 0x2E66B746B01      (void*)
    [RSP+5428] 0x7FF699937B25     (void* -> Fallout4.exe+26F7B25    mov rcx, [rax] |  BSScript::`anonymous_namespace'::SignaturesMatch(BSScript::IFunction*,BSScript::IFunction*)_26F7B25)
    [RSP+5430] 0x0                (size_t) [0]
    [RSP+5438] 0x7FF699938546     (void* -> Fallout4.exe+26F8546    test eax, eax |  BSScript::ObjectTypeInfo::BinarySearch<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint,char*)_26F8546)
    [RSP+5440] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+5448] 0xF63ABFCF90       (void*)
    [RSP+5450] 0x2E66B746C60      (NativeFunction0<StaticFunctionTag,float>*)
    [RSP+5458] 0x2E5DE436740      (void*)
    [RSP+5460] 0x2E66B746C70      (void*)
    [RSP+5468] 0xF63ABFBB90       (void*)
    [RSP+5470] 0x15               (size_t) [21]
    [RSP+5478] 0x7FF6999371CC     (void* -> Fallout4.exe+26F71CC    jmp 0x00007FF699936E0C |  BSScript::ObjectTypeInfo::BindNativeFunction(BSScript::IFunction*,BSScript::ErrorLogger&)_26F71CC)
    [RSP+5480] 0x4                (size_t) [4]
    [RSP+5488] 0x4                (size_t) [4]
    [RSP+5490] 0x2E66B746C60      (NativeFunction0<StaticFunctionTag,float>*)
    [RSP+5498] 0x15               (size_t) [21]
    [RSP+54A0] 0x0                (size_t) [0]
    [RSP+54A8] 0x0                (size_t) [0]
    [RSP+54B0] 0x2E66B746C70      (void*)
    [RSP+54B8] 0x2E66B746C80      (void*)
    [RSP+54C0] 0x2E66B746C78      (void*)
    [RSP+54C8] 0x2E66B746C18      (void*)
    [RSP+54D0] 0x0                (size_t) [0]
    [RSP+54D8] 0xF63ABFCF90       (void*)
    [RSP+54E0] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+54E8] 0x0                (size_t) [0]
    [RSP+54F0] 0xF63ABFC0C0       (void*)
    [RSP+54F8] 0xF63ABFC1D0       (void*)
    [RSP+5500] 0xF63ABFCF90       (void*)
    [RSP+5508] 0x2E5C862FD50      (void*)
    [RSP+5510] 0x0                (size_t) [0]
    [RSP+5518] 0x0                (size_t) [0]
    [RSP+5520] 0x0                (size_t) [0]
    [RSP+5528] 0x0                (size_t) [0]
    [RSP+5530] 0xF63ABFCFA0       (void*)
    [RSP+5538] 0x0                (size_t) [0]
    [RSP+5540] 0x0                (size_t) [0]
    [RSP+5548] 0x0                (size_t) [0]
    [RSP+5550] 0x0                (size_t) [0]
    [RSP+5558] 0x0                (size_t) [0]
    [RSP+5560] 0x0                (size_t) [0]
    [RSP+5568] 0x0                (size_t) [0]
    [RSP+5570] 0x0                (size_t) [0]
    [RSP+5578] 0x0                (size_t) [0]
    [RSP+5580] 0x0                (size_t) [0]
    [RSP+5588] 0x0                (size_t) [0]
    [RSP+5590] 0x0                (size_t) [0]
    [RSP+5598] 0x0                (size_t) [0]
    [RSP+55A0] 0x0                (size_t) [0]
    [RSP+55A8] 0x0                (size_t) [0]
    [RSP+55B0] 0x0                (size_t) [0]
    [RSP+55B8] 0x0                (size_t) [0]
    [RSP+55C0] 0x0                (size_t) [0]
    [RSP+55C8] 0x0                (size_t) [0]
    [RSP+55D0] 0x0                (size_t) [0]
    [RSP+55D8] 0x0                (size_t) [0]
    [RSP+55E0] 0x0                (size_t) [0]
    [RSP+55E8] 0x0                (size_t) [0]
    [RSP+55F0] 0x2E6E8510470      (void*)
    [RSP+55F8] 0x0                (size_t) [0]
    [RSP+5600] 0x0                (size_t) [0]
    [RSP+5608] 0x0                (size_t) [0]
    [RSP+5610] 0x0                (size_t) [0]
    [RSP+5618] 0x0                (size_t) [0]
    [RSP+5620] 0x0                (size_t) [0]
    [RSP+5628] 0x0                (size_t) [0]
    [RSP+5630] 0x0                (size_t) [0]
    [RSP+5638] 0x0                (size_t) [0]
    [RSP+5640] 0x0                (size_t) [0]
    [RSP+5648] 0x0                (size_t) [0]
    [RSP+5650] 0x0                (size_t) [0]
    [RSP+5658] 0x0                (size_t) [0]
    [RSP+5660] 0x0                (size_t) [0]
    [RSP+5668] 0x0                (size_t) [0]
    [RSP+5670] 0x0                (size_t) [0]
    [RSP+5678] 0x0                (size_t) [0]
    [RSP+5680] 0x0                (size_t) [0]
    [RSP+5688] 0x0                (size_t) [0]
    [RSP+5690] 0x0                (size_t) [0]
    [RSP+5698] 0x0                (size_t) [0]
    [RSP+56A0] 0x0                (size_t) [0]
    [RSP+56A8] 0x0                (size_t) [0]
    [RSP+56B0] 0x0                (size_t) [0]
    [RSP+56B8] 0x0                (size_t) [0]
    [RSP+56C0] 0x0                (size_t) [0]
    [RSP+56C8] 0x0                (size_t) [0]
    [RSP+56D0] 0x0                (size_t) [0]
    [RSP+56D8] 0x0                (size_t) [0]
    [RSP+56E0] 0x0                (size_t) [0]
    [RSP+56E8] 0x0                (size_t) [0]
    [RSP+56F0] 0x0                (size_t) [0]
    [RSP+56F8] 0x0                (size_t) [0]
    [RSP+5700] 0x0                (size_t) [0]
    [RSP+5708] 0x0                (size_t) [0]
    [RSP+5710] 0x0                (size_t) [0]
    [RSP+5718] 0x0                (size_t) [0]
    [RSP+5720] 0x0                (size_t) [0]
    [RSP+5728] 0x0                (size_t) [0]
    [RSP+5730] 0xF63ABFCFA4       (void*)
    [RSP+5738] 0x0                (size_t) [0]
    [RSP+5740] 0x0                (size_t) [0]
    [RSP+5748] 0x0                (size_t) [0]
    [RSP+5750] 0x0                (size_t) [0]
    [RSP+5758] 0x0                (size_t) [0]
    [RSP+5760] 0x0                (size_t) [0]
    [RSP+5768] 0x0                (size_t) [0]
    [RSP+5770] 0x0                (size_t) [0]
    [RSP+5778] 0x0                (size_t) [0]
    [RSP+5780] 0x0                (size_t) [0]
    [RSP+5788] 0x0                (size_t) [0]
    [RSP+5790] 0x0                (size_t) [0]
    [RSP+5798] 0x0                (size_t) [0]
    [RSP+57A0] 0x0                (size_t) [0]
    [RSP+57A8] 0x0                (size_t) [0]
    [RSP+57B0] 0x0                (size_t) [0]
    [RSP+57B8] 0x0                (size_t) [0]
    [RSP+57C0] 0x0                (size_t) [0]
    [RSP+57C8] 0x0                (size_t) [0]
    [RSP+57D0] 0x0                (size_t) [0]
    [RSP+57D8] 0x0                (size_t) [0]
    [RSP+57E0] 0x0                (size_t) [0]
    [RSP+57E8] 0x0                (size_t) [0]
    [RSP+57F0] 0x2E5B4836560      (MemoryHeap*)
    [RSP+57F8] 0x7FF698D5F31A     (void* -> Fallout4.exe+1B1F31A    inc dword ptr [rbx+0xA0] |  AbstractHeap::AddBlockToFreeList(HeapBlock*)_1B1F31A)
    [RSP+5800] 0x0                (size_t) [0]
    [RSP+5808] 0x0                (size_t) [0]
    [RSP+5810] 0x8000             (size_t) [32768]
    [RSP+5818] 0x2E5F31D8FD0      (void*)
    [RSP+5820] 0x2E5F31D8FF0      (void*)
    [RSP+5828] 0x7FF698D5EDF6     (void* -> Fallout4.exe+1B1EDF6    mov rax, rdi |  AbstractHeap::BaseAllocate(unsigned___int64,unsigned___int64,bool)_1B1EDF6)
    [RSP+5830] 0x2E5B4836568      (void*)
    [RSP+5838] 0x85E0             (size_t) [34272]
    [RSP+5840] 0x2E682593C20      (void*)
    [RSP+5848] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+5850] 0x2E5B4836738      (void*)
    [RSP+5858] 0x8000             (size_t) [32768]
    [RSP+5860] 0x7FF69CD99970     (void* -> Fallout4.exe+5B59970    nop |  aDiveBombChance_5B59970)
    [RSP+5868] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+5870] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+5878] 0x7FF698D4F0B4     (void* -> Fallout4.exe+1B0F0B4    mov rbx, rax |  MemoryManager::Allocate(unsigned___int64,uint,bool)_1B0F0B4)
    [RSP+5880] 0x2E5C99B9D90      (hkLifoAllocator*)
    [RSP+5888] 0x8                (size_t) [8]
    [RSP+5890] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+5898] 0x2E6E850FAB0      (void*)
    [RSP+58A0] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+58A8] 0x7FF698D4F10F     (void* -> Fallout4.exe+1B0F10F    mov rbx, rax |  MemoryManager::Allocate(unsigned___int64,uint,bool)_1B0F10F)
    [RSP+58B0] 0x3300000000       (size_t) [219043332096]
    [RSP+58B8] 0x2E6E850FAB0      (void*)
    [RSP+58C0] 0x2E5F31B2630      (void*)
    [RSP+58C8] 0x7FF69889A812     (void* -> Fallout4.exe+165A812    add r12d, eax |  hknpCompoundShape::getShapeKeys(uint*,int,uint,hknpShape::GetShapeKeysConfig&)_165A812)
    [RSP+58D0] 0x100000000        (size_t) [4294967296]
    [RSP+58D8] 0x0                (size_t) [0]
    [RSP+58E0] 0x0                (size_t) [0]
    [RSP+58E8] 0x0                (size_t) [0]
    [RSP+58F0] 0x0                (size_t) [0]
    [RSP+58F8] 0xAE0552F42A9374BC (size_t) [uint: 12539519946122818748 int: -5907224127586732868]
    [RSP+5900] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5908] 0xF63ABFF168       (void*)
    [RSP+5910] 0x2E5CA56AB50      (void*)
    [RSP+5918] 0x2E5C862FE30      (void*)
    [RSP+5920] 0xF63ABFF0E0       (void*)
    [RSP+5928] 0xF63ABFF780       (void*)
    [RSP+5930] 0x2E5C862FE48      (void*)
    [RSP+5938] 0x94104B           (size_t) [9703499]
    [RSP+5940] 0xF63ABFC060       (void*)
    [RSP+5948] 0x7FF6989ADA75     (void* -> Fallout4.exe+176DA75    mov r8d, [rbp+0xF3C] |  hknpCompositeCompositeCollisionDetector::collideWithChildren(hknpSimulationThreadContext&,hknpInternalCollideSharedData&,hknpCdBody*,hknpShape*,hknpCdBody*,hknpShape*,hknpCompositeCollisionCache*,hknpCollisionCacheStream*,hknpCollisionCacheStream*,hknpCollisionCacheWriter*,hknpJacobianConsumer*,hknpCsContactJacInjector*,hknpCollideTimers*)_176DA75)
    [RSP+5950] 0x2E5CA56AB50      (void*)
    [RSP+5958] 0x2E685934010      (void*)
    [RSP+5960] 0xF63ABFF0E0       (void*)
    [RSP+5968] 0xF63ABFF120       (void*)
    [RSP+5970] 0x0                (size_t) [0]
    [RSP+5978] 0xF600000000       (size_t) [1056561954816]
    [RSP+5980] 0xF600000000       (size_t) [1056561954816]
    [RSP+5988] 0x2E5C862FE02      (void*)
    [RSP+5990] 0xF63ABFC030       (void*)
    [RSP+5998] 0xF63ABFF780       (void*)
    [RSP+59A0] 0x2E5F31D8FF0      (void*)
    [RSP+59A8] 0xF63ABFF168       (void*)
    [RSP+59B0] 0x2E5E7406360      (void*)
    [RSP+59B8] 0x2E5C862FE48      (void*)
    [RSP+59C0] 0xF63ABFC024       (void*)
    [RSP+59C8] 0xF63ABFFC60       (void*)
    [RSP+59D0] 0x600000000        (size_t) [25769803776]
    [RSP+59D8] 0x2E53FFFFFFF      (size_t) [3183644508159]
    [RSP+59E0] 0x2E5C862FE80      (void*)
    [RSP+59E8] 0x40               (size_t) [64]
    [RSP+59F0] 0x0                (size_t) [0]
    [RSP+59F8] 0x2E500000001      (size_t) [3182570766337]
    [RSP+5A00] 0xDA74FFFF         (size_t) [3665100799]
    [RSP+5A08] 0x0                (size_t) [0]
    [RSP+5A10] 0x100094104B       (size_t) [68729180235]
    [RSP+5A18] 0x2E5C84F4E89      (void*)
    [RSP+5A20] 0x0                (size_t) [0]
    [RSP+5A28] 0x0                (size_t) [0]
    [RSP+5A30] 0x0                (size_t) [0]
    [RSP+5A38] 0x2E5CFB2C090      (void*)
    [RSP+5A40] 0x2E500000000      (size_t) [3182570766336]
    [RSP+5A48] 0x2E672F16420      (void*)
    [RSP+5A50] 0x2E5F31D8FF0      (void*)
    [RSP+5A58] 0x3DCD000000000000 (size_t) [4453215606539288576]
    [RSP+5A60] 0x3F2B536A00000000 (size_t) [4551823563119656960]
    [RSP+5A68] 0x1                (size_t) [1]
    [RSP+5A70] 0x0                (size_t) [0]
    [RSP+5A78] 0xFFFF             (size_t) [65535]
    [RSP+5A80] 0x0                (size_t) [0]
    [RSP+5A88] 0xC2E4894B3F800000 (size_t) [uint: 14043500494328954880 int: -4403243579380596736]
    [RSP+5A90] 0xC195F6EAC15A21D5 (size_t) [uint: 13949326908976669141 int: -4497417164732882475]
    [RSP+5A98] 0x451142DFC0633834 (size_t) [4976832591993976884]
    [RSP+5AA0] 0xC1914316C150BA2B (size_t) [uint: 13948003285954771499 int: -4498740787754780117]
    [RSP+5AA8] 0x451EB2CFBFD5F3E4 (size_t) [4980614843264791524]
    [RSP+5AB0] 0x10011C1230005    (size_t) [281551231451141]
    [RSP+5AB8] 0x2E68363FB90      (bhkNPCollisionObject*)
    [RSP+5AC0] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+5AC8] 0x0                (size_t) [0]
    [RSP+5AD0] 0x0                (size_t) [0]
    [RSP+5AD8] 0x0                (size_t) [0]
    [RSP+5AE0] 0x0                (size_t) [0]
    [RSP+5AE8] 0xAE8552F42B1374BC (size_t) [uint: 12575548743150171324 int: -5871195330559380292]
    [RSP+5AF0] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5AF8] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5B00] 0x0                (size_t) [0]
    [RSP+5B08] 0x0                (size_t) [0]
    [RSP+5B10] 0x0                (size_t) [0]
    [RSP+5B18] 0x7FF69D783CE0     (hknpBSShapeCodec*)
    [RSP+5B20] 0x0                (size_t) [0]
    [RSP+5B28] 0x0                (size_t) [0]
    [RSP+5B30] 0x1                (size_t) [1]
    [RSP+5B38] 0x0                (size_t) [0]
    [RSP+5B40] 0xC195DD50C159EEA2 (size_t) [uint: 13949298759760998050 int: -4497445313948553566]
    [RSP+5B48] 0x45114312C0626B67 (size_t) [4976832811037256551]
    [RSP+5B50] 0xC1915CB0C150ED5E (size_t) [uint: 13948031435170442590 int: -4498712638539109026]
    [RSP+5B58] 0x451EB29CBFD78D7E (size_t) [4980614624221564286]
    [RSP+5B60] 0x2E5CF6A4A80      (void*)
    [RSP+5B68] 0x2E6821F6750      (hknpDynamicCompoundShape*)
    [RSP+5B70] 0x2E6821F6750      (hknpDynamicCompoundShape*)
    [RSP+5B78] 0x203FFFFFFF       (size_t) [138512695295]
    [RSP+5B80] 0xF63ABFC340       (void*)
    [RSP+5B88] 0x0                (size_t) [0]
    [RSP+5B90] 0x0                (size_t) [0]
    [RSP+5B98] 0x3F00000200000000 (size_t) [4539628432979394560]
    [RSP+5BA0] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5BA8] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5BB0] 0x0                (size_t) [0]
    [RSP+5BB8] 0x0                (size_t) [0]
    [RSP+5BC0] 0x2E5CF677F90      (void*)
    [RSP+5BC8] 0x2E6835C4FC0      (hknpCompressedHeightFieldShape*)
    [RSP+5BD0] 0x0                (size_t) [0]
    [RSP+5BD8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+5BE0] 0x2E5CF677F90      (void*)
    [RSP+5BE8] 0x0                (size_t) [0]
    [RSP+5BF0] 0x0                (size_t) [0]
    [RSP+5BF8] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+5C00] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5C08] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5C10] 0x0                (size_t) [0]
    [RSP+5C18] 0x0                (size_t) [0]
    [RSP+5C20] 0x3CCCCCCD3CCCCCCD (size_t) [4381101719385066701]
    [RSP+5C28] 0x3CCCCCCD3CCCCCCD (size_t) [4381101719385066701]
    [RSP+5C30] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5C38] 0xBC4CCCCDBC4CCCCD (size_t) [uint: 13568444961359973581 int: -4878299112349578035]
    [RSP+5C40] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5C48] 0x3C4CCCCD3C4CCCCD (size_t) [4345072922357714125]
    [RSP+5C50] 0xF63ABFFBF0       (void*)
    [RSP+5C58] 0x37E62EF237E62EF2 (size_t) [4027958534584282866]
    [RSP+5C60] 0x40A045A240A045A2 (size_t) [4656798577872356770]
    [RSP+5C68] 0x40A045A240A045A2 (size_t) [4656798577872356770]
    [RSP+5C70] 0xBFBCE240BFBCE240 (size_t) [uint: 13816166524588450368 int: -4630577549121101248]
    [RSP+5C78] 0xBFBCE240BFBCE240 (size_t) [uint: 13816166524588450368 int: -4630577549121101248]
    [RSP+5C80] 0x40A045A240A045A2 (size_t) [4656798577872356770]
    [RSP+5C88] 0x40A045A240A045A2 (size_t) [4656798577872356770]
    [RSP+5C90] 0x40A0449940A04499 (size_t) [4656797439706023065]
    [RSP+5C98] 0x40A0449940A04499 (size_t) [4656797439706023065]
    [RSP+5CA0] 0xC16492E6C119DCBA (size_t) [uint: 13935424666770988218 int: -4511319406938563398]
    [RSP+5CA8] 0x3F000000BF91B358 (size_t) [4539628427603456856]
    [RSP+5CB0] 0xC16CAE54C123D260 (size_t) [uint: 13937706625845678688 int: -4509037447863872928]
    [RSP+5CB8] 0x3F000001BF91B34C (size_t) [4539628431898424140]
    [RSP+5CC0] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+5CC8] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+5CD0] 0x16A9DE8A16A9DE8A (size_t) [1633081024565599882]
    [RSP+5CD8] 0x16A9DE8A16A9DE8A (size_t) [1633081024565599882]
    [RSP+5CE0] 0x2B14EBE52B14EBE5 (size_t) [3104365412667943909]
    [RSP+5CE8] 0x2B14EBE52B14EBE5 (size_t) [3104365412667943909]
    [RSP+5CF0] 0xBF4323B03F25B34C (size_t) [uint: 13781898524564501324 int: -4664845549145050292]
    [RSP+5CF8] 0x42B0700300000000 (size_t) [4805463960591532032]
    [RSP+5D00] 0x3F25B34C3F4323B0 (size_t) [4550240138588005296]
    [RSP+5D08] 0xC295D1E500000000 (size_t) [uint: 14021343796365623296 int: -4425400277343928320]
    [RSP+5D10] 0x0                (size_t) [0]
    [RSP+5D18] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+5D20] 0xC1939D00C1556E00 (size_t) [uint: 13948665097465720320 int: -4498078976243831296]
    [RSP+5D28] 0x4518712EC027E5E0 (size_t) [4978853833664357856]
    [RSP+5D30] 0xBF4323B03F25B34C (size_t) [uint: 13781898524564501324 int: -4664845549145050292]
    [RSP+5D38] 0x80000000         (size_t) [2147483648]
    [RSP+5D40] 0x3F25B34C3F4323B0 (size_t) [4550240138588005296]
    [RSP+5D48] 0x0                (size_t) [0]
    [RSP+5D50] 0x8000000000000000 (size_t) [uint: 9223372036854775808 int: -9223372036854775808]
    [RSP+5D58] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+5D60] 0x44A26099C4900EBC (size_t) [4945621554350263996]
    [RSP+5D68] 0x42E237F2         (size_t) [1122121714]
    [RSP+5D70] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5D78] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+5D80] 0x0                (size_t) [0]
    [RSP+5D88] 0x2E5F621C500      (hknpConvexPolytopeShape*)
    [RSP+5D90] 0x1                (size_t) [1]
    [RSP+5D98] 0x2E5CA56ABA0      (hknpTriangleShape*)
    [RSP+5DA0] 0x2E6821F6750      (hknpDynamicCompoundShape*)
    [RSP+5DA8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+5DB0] 0x0                (size_t) [0]
    [RSP+5DB8] 0x0                (size_t) [0]
    [RSP+5DC0] 0x0                (size_t) [0]
    [RSP+5DC8] 0x0                (size_t) [0]
    [RSP+5DD0] 0x0                (size_t) [0]
    [RSP+5DD8] 0x0                (size_t) [0]
    [RSP+5DE0] 0x0                (size_t) [0]
    [RSP+5DE8] 0x0                (size_t) [0]
    [RSP+5DF0] 0x0                (size_t) [0]
    [RSP+5DF8] 0x3F00000000000000 (size_t) [4539628424389459968]
    [RSP+5E00] 0x0                (size_t) [0]
    [RSP+5E08] 0x0                (size_t) [0]
    [RSP+5E10] 0x0                (size_t) [0]
    [RSP+5E18] 0x0                (size_t) [0]
    [RSP+5E20] 0xBFFE8E36BFFE8E36 (size_t) [uint: 13834651471129251382 int: -4612092602580300234]
    [RSP+5E28] 0xBFFE8E36BFFE8E36 (size_t) [uint: 13834651471129251382 int: -4612092602580300234]
    [RSP+5E30] 0xBF4689EC3F219C9D (size_t) [uint: 13782855357378436253 int: -4663888716331115363]
    [RSP+5E38] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+5E40] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+5E48] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+5E50] 0x0                (size_t) [0]
    [RSP+5E58] 0x0                (size_t) [0]
    [RSP+5E60] 0x0                (size_t) [0]
    [RSP+5E68] 0x0                (size_t) [0]
    [RSP+5E70] 0x0                (size_t) [0]
    [RSP+5E78] 0x0                (size_t) [0]
    [RSP+5E80] 0x0                (size_t) [0]
    [RSP+5E88] 0x0                (size_t) [0]
    [RSP+5E90] 0x0                (size_t) [0]
    [RSP+5E98] 0x0                (size_t) [0]
    [RSP+5EA0] 0x0                (size_t) [0]
    [RSP+5EA8] 0x0                (size_t) [0]
    [RSP+5EB0] 0x0                (size_t) [0]
    [RSP+5EB8] 0x0                (size_t) [0]
    [RSP+5EC0] 0x0                (size_t) [0]
    [RSP+5EC8] 0x0                (size_t) [0]
    [RSP+5ED0] 0x0                (size_t) [0]
    [RSP+5ED8] 0x0                (size_t) [0]
    [RSP+5EE0] 0x0                (size_t) [0]
    [RSP+5EE8] 0x0                (size_t) [0]
    [RSP+5EF0] 0x0                (size_t) [0]
    [RSP+5EF8] 0x0                (size_t) [0]
    [RSP+5F00] 0x0                (size_t) [0]
    [RSP+5F08] 0x0                (size_t) [0]
    [RSP+5F10] 0x0                (size_t) [0]
    [RSP+5F18] 0x0                (size_t) [0]
    [RSP+5F20] 0x3F800000         (size_t) [1065353216]
    [RSP+5F28] 0x0                (size_t) [0]
    [RSP+5F30] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+5F38] 0xC2E7772100000000 (size_t) [uint: 14044324946595807232 int: -4402419127113744384]
    [RSP+5F40] 0x0                (size_t) [0]
    [RSP+5F48] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+5F50] 0xC175217DC11CD731 (size_t) [uint: 13940085045589759793 int: -4506659028119791823]
    [RSP+5F58] 0x4504C43CC00EE56D (size_t) [4973315653723153773]
    [RSP+5F60] 0x0                (size_t) [0]
    [RSP+5F68] 0x0                (size_t) [0]
    [RSP+5F70] 0x0                (size_t) [0]
    [RSP+5F78] 0x0                (size_t) [0]
    [RSP+5F80] 0x0                (size_t) [0]
    [RSP+5F88] 0x0                (size_t) [0]
    [RSP+5F90] 0x0                (size_t) [0]
    [RSP+5F98] 0x0                (size_t) [0]
    [RSP+5FA0] 0x0                (size_t) [0]
    [RSP+5FA8] 0x0                (size_t) [0]
    [RSP+5FB0] 0x0                (size_t) [0]
    [RSP+5FB8] 0x0                (size_t) [0]
    [RSP+5FC0] 0x0                (size_t) [0]
    [RSP+5FC8] 0x0                (size_t) [0]
    [RSP+5FD0] 0x0                (size_t) [0]
    [RSP+5FD8] 0x0                (size_t) [0]
    [RSP+5FE0] 0x0                (size_t) [0]
    [RSP+5FE8] 0x0                (size_t) [0]
    [RSP+5FF0] 0x0                (size_t) [0]
    [RSP+5FF8] 0x0                (size_t) [0]
    [RSP+6000] 0x40CCDC5E40CCDC5E (size_t) [4669349211048565854]
    [RSP+6008] 0x7FF6999399B8     (void* -> Fallout4.exe+26F99B8    test eax, eax |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F99B8)
    [RSP+6010] 0x0                (size_t) [0]
    [RSP+6018] 0x0                (size_t) [0]
    [RSP+6020] 0x0                (size_t) [0]
    [RSP+6028] 0x0                (size_t) [0]
    [RSP+6030] 0x2                (size_t) [2]
    [RSP+6038] 0x0                (size_t) [0]
    [RSP+6040] 0x2E5DE4367B0      (void*)
    [RSP+6048] 0x7FF69993994C     (void* -> Fallout4.exe+26F994C    mov r8d, [rsp+0x50] |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F994C)
    [RSP+6050] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+6058] 0x2E5DE4367B0      (void*)
    [RSP+6060] 0x2                (size_t) [2]
    [RSP+6068] 0x2E5DE4367C0      (void*)
    [RSP+6070] 0x3                (size_t) [3]
    [RSP+6078] 0x0                (size_t) [0]
    [RSP+6080] 0x2E5DE4367B0      (void*)
    [RSP+6088] 0x7FF69993994C     (void* -> Fallout4.exe+26F994C    mov r8d, [rsp+0x50] |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F994C)
    [RSP+6090] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+6098] 0x2E5DE4367B0      (void*)
    [RSP+60A0] 0x406D634E00000003 (size_t) [4642475977547448323]
    [RSP+60A8] 0x2E5DE4367C8      (void*)
    [RSP+60B0] 0x5                (size_t) [5]
    [RSP+60B8] 0x0                (size_t) [0]
    [RSP+60C0] 0x2E5DE4367B0      (void*)
    [RSP+60C8] 0x7FF69993994C     (void* -> Fallout4.exe+26F994C    mov r8d, [rsp+0x50] |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F994C)
    [RSP+60D0] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+60D8] 0x2E5DE4367B0      (void*)
    [RSP+60E0] 0x5                (size_t) [5]
    [RSP+60E8] 0x2E5DE4367D8      (void*)
    [RSP+60F0] 0x6                (size_t) [6]
    [RSP+60F8] 0x0                (size_t) [0]
    [RSP+6100] 0x2E5DE4367B0      (void*)
    [RSP+6108] 0x7FF6999398B3     (void* -> Fallout4.exe+26F98B3    test eax, eax |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F98B3)
    [RSP+6110] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+6118] 0x2E5DE4367B0      (void*)
    [RSP+6120] 0x2E500000006      (size_t) [3182570766342]
    [RSP+6128] 0x2E5DE4367E0      (void*)
    [RSP+6130] 0x3                (size_t) [3]
    [RSP+6138] 0x0                (size_t) [0]
    [RSP+6140] 0x2E5DE436840      (void*)
    [RSP+6148] 0x7FF6999399B8     (void* -> Fallout4.exe+26F99B8    test eax, eax |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F99B8)
    [RSP+6150] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+6158] 0x2E5DE436840      (void*)
    [RSP+6160] 0x2E500000003      (size_t) [3182570766339]
    [RSP+6168] 0x2E5DE436858      (void*)
    [RSP+6170] 0x2                (size_t) [2]
    [RSP+6178] 0x0                (size_t) [0]
    [RSP+6180] 0x2E5DE436890      (void*)
    [RSP+6188] 0x7FF69993994C     (void* -> Fallout4.exe+26F994C    mov r8d, [rsp+0x50] |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint)_26F994C)
    [RSP+6190] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+6198] 0x2E5DE436890      (void*)
    [RSP+61A0] 0x2                (size_t) [2]
    [RSP+61A8] 0x2E5DE4368A0      (void*)
    [RSP+61B0] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+61B8] 0x7FF698D54913     (void* -> Fallout4.exe+1B14913    mov rcx, [rsp+0x30] |  ScrapHeap::InsertFreeBlock(ScrapHeap::FreeBlock*)_1B14913)
    [RSP+61C0] 0x2E7DB6706B0      (void*)
    [RSP+61C8] 0x2E7DB67AD10      (void*)
    [RSP+61D0] 0x2E7DB67AD10      (void*)
    [RSP+61D8] 0x2E7DB67AD10      (void*)
    [RSP+61E0] 0x0                (size_t) [0]
    [RSP+61E8] 0x7FF698D546B3     (void* -> Fallout4.exe+1B146B3    mov rsi, [rsp+0x40] |  ScrapHeap::Deallocate(void*)_1B146B3)
    [RSP+61F0] 0x2E7DB67AD10      (void*)
    [RSP+61F8] 0x2E7DB67AD10      (void*)
    [RSP+6200] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+6208] 0x1                (size_t) [1]
    [RSP+6210] 0x2E7DB67AD50      (void*)
    [RSP+6218] 0x7FF698D514CA     (void* -> Fallout4.exe+1B114CA    xor eax, eax |  BSScrapArrayAllocator::Deallocate(void)_1B114CA)
    [RSP+6220] 0xF63ABFC8A8       (void*)
    [RSP+6228] 0xF63ABFC960       (void*)
    [RSP+6230] 0x0                (size_t) [0]
    [RSP+6238] 0x2E5CF1F0768      (BSScript::LinkerProcessor*)
    [RSP+6240] 0x15               (size_t) [21]
    [RSP+6248] 0x7FF699936A6D     (void* -> Fallout4.exe+26F6A6D    mov rcx, [rbp+0x88] |  BSScript::ObjectTypeInfo::CopyFromLinkedData(BSScript::Internal::LinkedType&,BSScript::ErrorLogger&)_26F6A6D)
    [RSP+6250] 0x7FF69CCFDA00     (void* -> Fallout4.exe+5ABDA00    add [rax], al |  aDiveBombChance_5ABDA00)
    [RSP+6258] 0x0                (size_t) [0]
    [RSP+6260] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+6268] 0x1                (size_t) [1]
    [RSP+6270] 0x4098232640982326 (size_t) [4654508862086849318]
    [RSP+6278] 0x4098232640982326 (size_t) [4654508862086849318]
    [RSP+6280] 0x2E500000015      (size_t) [3182570766357]
    [RSP+6288] 0x2E5DE4368D8      (void*)
    [RSP+6290] 0x2E5DE4368D8      (void*)
    [RSP+6298] 0x0                (size_t) [0]
    [RSP+62A0] 0x0                (size_t) [0]
    [RSP+62A8] 0x40981FEE00000000 (size_t) [4654505321950085120]
    [RSP+62B0] 0x40866D1300000000 (size_t) [4649523593678422016]
    [RSP+62B8] 0x40866D1340866D13 (size_t) [4649523594760973587]
    [RSP+62C0] 0x2E5DE4368D8      (void*)
    [RSP+62C8] 0x2E5DE4368D8      (void*)
    [RSP+62D0] 0x2E5DE4368D8      (void*)
    [RSP+62D8] 0x7FF698D54E99     (void* -> Fallout4.exe+1B14E99    mov al, 0x01 |  BSTIntrusiveRBTree<ScrapHeap::FreeTreeNode,unsigned___int64,`anonymous_namespace'::FreeTreeNodeAccess>::RebalanceAfterRemove<BSTIntrusiveRBTree<ScrapHeap::FreeTreeNode,unsigned___int64,`anonymous_namespace'::FreeTreeNodeAccess>::RightLeft>(ScrapHeap::FreeTreeNode*&,ScrapHeap::FreeTreeNode*&,ScrapHeap::FreeTreeNode*&)_1B14E99)
    [RSP+62E0] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+62E8] 0x2E5DE436660      (void*)
    [RSP+62F0] 0x2A8              (size_t) [680]
    [RSP+62F8] 0x0                (size_t) [0]
    [RSP+6300] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+6308] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+6310] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+6318] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+6320] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+6328] 0x2E67F4C8440      (void*)
    [RSP+6330] 0x2E67F4C8448      (void*)
    [RSP+6338] 0x7FF69778B3FC     (void* -> Fallout4.exe+054B3FC    mov rsi, [rsp+0x38] |  BSScript::PropertyTypeInfo::operator=(BSScript::PropertyTypeInfo&)_54B3FC)
    [RSP+6340] 0x0                (size_t) [0]
    [RSP+6348] 0x2E67F4C8440      (void*)
    [RSP+6350] 0x2                (size_t) [2]
    [RSP+6358] 0x2E67F4C8488      (void*)
    [RSP+6360] 0x2E67F4C8440      (void*)
    [RSP+6368] 0x7FF69993825C     (void* -> Fallout4.exe+26F825C    lea r11, [rsp+0x70] |  BSSwap<BSScript::ObjectTypeInfo::PropertyInfo>(BSScript::ObjectTypeInfo::PropertyInfo&,BSScript::ObjectTypeInfo::PropertyInfo&)_26F825C)
    [RSP+6370] 0x3E1FF0003E1FF000 (size_t) [4476560438462509056]
    [RSP+6378] 0x3E1FF0003E1FF000 (size_t) [4476560438462509056]
    [RSP+6380] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+6388] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+6390] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+6398] 0x7FF698D54913     (void* -> Fallout4.exe+1B14913    mov rcx, [rsp+0x30] |  ScrapHeap::InsertFreeBlock(ScrapHeap::FreeBlock*)_1B14913)
    [RSP+63A0] 0x2E7DB670748      (void*)
    [RSP+63A8] 0x2E7DB6723F0      (void*)
    [RSP+63B0] 0x2E7DB6723F0      (void*)
    [RSP+63B8] 0x2E7DB6723F0      (void*)
    [RSP+63C0] 0x0                (size_t) [0]
    [RSP+63C8] 0x7FF698D546B3     (void* -> Fallout4.exe+1B146B3    mov rsi, [rsp+0x40] |  ScrapHeap::Deallocate(void*)_1B146B3)
    [RSP+63D0] 0x2E7DB6723F0      (void*)
    [RSP+63D8] 0x2E6E8510470      (void*)
    [RSP+63E0] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+63E8] 0x7FF6999395B7     (void* -> Fallout4.exe+26F95B7    mov rbx, [rsp+0x50] |  BSScript::ObjectTypeInfo::QuickSortRecursive<BSScript::ObjectTypeInfo::PropertyInfo>(BSScript::ObjectTypeInfo::PropertyInfo*,uint)_26F95B7)
    [RSP+63F0] 0x7FF699E896C8     (void* -> Fallout4.exe+2C496C8     |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C496C8)
    [RSP+63F8] 0xF63ABFC8A8       (void*)
    [RSP+6400] 0x2E66B732B50      (void*)
    [RSP+6408] 0x7FF699E89DB8     (void* -> Fallout4.exe+2C49DB8    loopne 0x00007FF699E89DD0 |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C49DB8)
    [RSP+6410] 0xF63ABFC8A8       (void*)
    [RSP+6418] 0x2E5CF1F0768      (BSScript::LinkerProcessor*)
    [RSP+6420] 0x15               (size_t) [21]
    [RSP+6428] 0x7FF699936A6D     (void* -> Fallout4.exe+26F6A6D    mov rcx, [rbp+0x88] |  BSScript::ObjectTypeInfo::CopyFromLinkedData(BSScript::Internal::LinkedType&,BSScript::ErrorLogger&)_26F6A6D)
    [RSP+6430] 0x2E67F591300      (void*)
    [RSP+6438] 0x2E67F4C8440      (void*)
    [RSP+6440] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+6448] 0x0                (size_t) [0]
    [RSP+6450] 0x0                (size_t) [0]
    [RSP+6458] 0x0                (size_t) [0]
    [RSP+6460] 0x15               (size_t) [21]
    [RSP+6468] 0x2E67F4C84D8      (void*)
    [RSP+6470] 0x2E67F4C84D8      (void*)
    [RSP+6478] 0x0                (size_t) [0]
    [RSP+6480] 0x3A83126F3A83126F (size_t) [4216233945081254511]
    [RSP+6488] 0x3A83126F3A83126F (size_t) [4216233945081254511]
    [RSP+6490] 0x0                (size_t) [0]
    [RSP+6498] 0x0                (size_t) [0]
    [RSP+64A0] 0x3E6A161F3E6A161F (size_t) [4497431501329798687]
    [RSP+64A8] 0x3E6A161F3E6A161F (size_t) [4497431501329798687]
    [RSP+64B0] 0x3F42C85F3F42C85F (size_t) [4558426084261152863]
    [RSP+64B8] 0x3F42C85F3F42C85F (size_t) [4558426084261152863]
    [RSP+64C0] 0x0                (size_t) [0]
    [RSP+64C8] 0x0                (size_t) [0]
    [RSP+64D0] 0x3FE659603FE65960 (size_t) [4604465938956704096]
    [RSP+64D8] 0x3FE659603FE65960 (size_t) [4604465938956704096]
    [RSP+64E0] 0xC175217DC11CD731 (size_t) [uint: 13940085045589759793 int: -4506659028119791823]
    [RSP+64E8] 0x4504C43CC00EE56D (size_t) [4973315653723153773]
    [RSP+64F0] 0xBF5B90C1BF03A1D0 (size_t) [uint: 13788773845932679632 int: -4657970227776871984]
    [RSP+64F8] 0x8000000080000000 (size_t) [uint: 9223372039002259456 int: -9223372034707292160]
    [RSP+6500] 0x3FE659603FE65960 (size_t) [4604465938956704096]
    [RSP+6508] 0x3FE659603FE65960 (size_t) [4604465938956704096]
    [RSP+6510] 0xC16CAE54C123D260 (size_t) [uint: 13937706625845678688 int: -4509037447863872928]
    [RSP+6518] 0x3F000000BFE87AC0 (size_t) [4539628427609144000]
    [RSP+6520] 0x0                (size_t) [0]
    [RSP+6528] 0xF63ABFE660       (void*)
    [RSP+6530] 0xF63ABFE910       (void*)
    [RSP+6538] 0x4                (size_t) [4]
    [RSP+6540] 0x4                (size_t) [4]
    [RSP+6548] 0x2E66BBC6FC0      (void*)
    [RSP+6550] 0xF63ABFD040       (void*)
    [RSP+6558] 0xF63ABFE840       (void*)
    [RSP+6560] 0xF63ABFCC80       (void*)
    [RSP+6568] 0x7FF698703CDB     (void* -> Fallout4.exe+14C3CDB    movaps xmm2, [rsp+0x40] |  `anonymous_namespace'::hknpCastShapeFuncs::castShapeConvex(hknpCollisionQueryContext*,hknpShapeCastQuery&,hknpShapeQueryInfo&,hknpShape*,hknpQueryFilterData&,hknpShapeQueryInfo&,hkTransformf&,bool,hknpCollisionQueryCollector*,hknpCollisionQueryCollector*)_14C3CDB)
    [RSP+6570] 0x0                (size_t) [0]
    [RSP+6578] 0x3                (size_t) [3]
    [RSP+6580] 0x7FF699FFD410     (void* -> Fallout4.exe+2DBD410    adc [rbp+0x75], ah |  aDiveBombChance_2DBD410)
    [RSP+6588] 0x2E600000001      (size_t) [3186865733633]
    [RSP+6590] 0xF63ABFCD00       (void*)
    [RSP+6598] 0xF63FB33333       (size_t) [1057630663475]
    [RSP+65A0] 0xF63ABFCBC0       (void*)
    [RSP+65A8] 0xF63ABFCA58       (void*)
    [RSP+65B0] 0x3F2F5DD13F2F5DD1 (size_t) [4552960901584477649]
    [RSP+65B8] 0x3F2F5DD13F2F5DD1 (size_t) [4552960901584477649]
    [RSP+65C0] 0x3F4689ECBF219C9D (size_t) [4559483322671144093]
    [RSP+65C8] 0x0                (size_t) [0]
    [RSP+65D0] 0xC16CA16CC123C286 (size_t) [uint: 13937692435273728646 int: -4509051638435822970]
    [RSP+65D8] 0x3F000000C00EE56D (size_t) [4539628427611661677]
    [RSP+65E0] 0x0                (size_t) [0]
    [RSP+65E8] 0x7FF699E89DB8     (void* -> Fallout4.exe+2C49DB8    loopne 0x00007FF699E89DD0 |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C49DB8)
    [RSP+65F0] 0xF63ABFCA88       (void*)
    [RSP+65F8] 0x0                (size_t) [0]
    [RSP+6600] 0x0                (size_t) [0]
    [RSP+6608] 0x0                (size_t) [0]
    [RSP+6610] 0xC100010200       (size_t) [828928754176]
    [RSP+6618] 0x0                (size_t) [0]
    [RSP+6620] 0x0                (size_t) [0]
    [RSP+6628] 0x0                (size_t) [0]
    [RSP+6630] 0x0                (size_t) [0]
    [RSP+6638] 0x0                (size_t) [0]
    [RSP+6640] 0x3F42C85F3F42C85F (size_t) [4558426084261152863]
    [RSP+6648] 0x3F42C85F3F42C85F (size_t) [4558426084261152863]
    [RSP+6650] 0x0                (size_t) [0]
    [RSP+6658] 0x0                (size_t) [0]
    [RSP+6660] 0x0                (size_t) [0]
    [RSP+6668] 0x0                (size_t) [0]
    [RSP+6670] 0x0                (size_t) [0]
    [RSP+6678] 0x0                (size_t) [0]
    [RSP+6680] 0x0                (size_t) [0]
    [RSP+6688] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+6690] 0x3F800000         (size_t) [1065353216]
    [RSP+6698] 0x0                (size_t) [0]
    [RSP+66A0] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+66A8] 0xC2E7772100000000 (size_t) [uint: 14044324946595807232 int: -4402419127113744384]
    [RSP+66B0] 0x0                (size_t) [0]
    [RSP+66B8] 0x0                (size_t) [0]
    [RSP+66C0] 0x0                (size_t) [0]
    [RSP+66C8] 0x0                (size_t) [0]
    [RSP+66D0] 0x0                (size_t) [0]
    [RSP+66D8] 0x0                (size_t) [0]
    [RSP+66E0] 0x3A83126F3A83126F (size_t) [4216233945081254511]
    [RSP+66E8] 0x3A83126F3A83126F (size_t) [4216233945081254511]
    [RSP+66F0] 0x3F800000         (size_t) [1065353216]
    [RSP+66F8] 0x0                (size_t) [0]
    [RSP+6700] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+6708] 0xC2E7772100000000 (size_t) [uint: 14044324946595807232 int: -4402419127113744384]
    [RSP+6710] 0x0                (size_t) [0]
    [RSP+6718] 0xC2E777213F800000 (size_t) [uint: 14044324947661160448 int: -4402419126048391168]
    [RSP+6720] 0xC175217DC11CD731 (size_t) [uint: 13940085045589759793 int: -4506659028119791823]
    [RSP+6728] 0x4504C43CC00EE56D (size_t) [4973315653723153773]
    [RSP+6730] 0x1                (size_t) [1]
    [RSP+6738] 0x0                (size_t) [0]
    [RSP+6740] 0x7F7FFFEE7F7FFFEE (size_t) [9187343164665495534]
    [RSP+6748] 0x7F7FFFEE7F7FFFEE (size_t) [9187343164665495534]
    [RSP+6750] 0x2E5EB079B00      (void*)
    [RSP+6758] 0x7FF6989BFD6F     (void* -> Fallout4.exe+177FD6F    add rsp, 0xD0 |  hknpManifoldEventCreator::manifoldCreatedCallback(hknpSimulationThreadContext&,hknpModifierSharedData&,hknpCdBody&,hknpCdBody&,hknpModifier::ManifoldCreatedCallbackInput*)_177FD6F)
    [RSP+6760] 0x2E5C84E7D40      (void*)
    [RSP+6768] 0x2E5CFB2DDC8      (void*)
    [RSP+6770] 0x0                (size_t) [0]
    [RSP+6778] 0x7FF80CD207C0     (void* -> ntdll.dll+00507C0    add rsp, 0x48)
    [RSP+6780] 0x2030100B0        (size_t) [8640331952]
    [RSP+6788] 0x55C000005A5      (size_t) [5892695131557]
    [RSP+6790] 0x3FFFFFFFFFFFFFFF (size_t) [4611686018427387903]
    [RSP+6798] 0x7FF80A740DDB     (void* -> KERNELBASE.dll+0050DDB    nop [rax+rax*1], eax)
    [RSP+67A0] 0x2E5C84E7D40      (void*)
    [RSP+67A8] 0x7FF80CD207C0     (void* -> ntdll.dll+00507C0    add rsp, 0x48)
    [RSP+67B0] 0x7961B80897D2     (size_t) [133460606359506]
    [RSP+67B8] 0x7FF6989BEAC4     (void* -> Fallout4.exe+177EAC4    movzx ecx, ax |  hknpTriggerModifier::manifoldProcessCallback(hknpSimulationThreadContext&,hknpModifierSharedData&,hknpCdBody&,hknpCdBody&,hknpManifold*)_177EAC4)
    [RSP+67C0] 0xF63ABFCF10       (void*)
    [RSP+67C8] 0x7FF80A740DDB     (void* -> KERNELBASE.dll+0050DDB    nop [rax+rax*1], eax)
    [RSP+67D0] 0x0                (size_t) [0]
    [RSP+67D8] 0x2E7132C9980      (void*)
    [RSP+67E0] 0x7961B8089782     (size_t) [133460606359426]
    [RSP+67E8] 0xBFFE8E36BFFE8E36 (size_t) [uint: 13834651471129251382 int: -4612092602580300234]
    [RSP+67F0] 0xF63ABFD1A0       (void*)
    [RSP+67F8] 0x7FFFAE2643B8     (void* -> MSVCR110.dll+00243B8    mov rax, rbx)
    [RSP+6800] 0x5F               (size_t) [95]
    [RSP+6808] 0x7FFFAE27DBFA     (void* -> MSVCR110.dll+003DBFA    mov rax, [rsp+0x20])
    [RSP+6810] 0x2E7132C9990      (void*)
    [RSP+6818] 0x7FFFAE293659     (void* -> MSVCR110.dll+0053659    inc r14)
    [RSP+6820] 0x7FF699FCF528     (char*) "::remote_%s"
    [RSP+6828] 0x7FFFAE2676E9     (void* -> MSVCR110.dll+00276E9    test rax, rax)
    [RSP+6830] 0x2E5AFF28B20      (char*) "b"
    [RSP+6838] 0x2E5AFF29850      (void*)
    [RSP+6840] 0xFFFFFFE5         (size_t) [4294967269]
    [RSP+6848] 0xF63ABFD1A0       (void*)
    [RSP+6850] 0x1B               (size_t) [27]
    [RSP+6858] 0x7FFFAE294087     (void* -> MSVCR110.dll+0054087    mov rbx, [rsp+0x320])
    [RSP+6860] 0x2E673DCE980      (char*) "aaf:aaf_api_OnAnimationStop"
    [RSP+6868] 0xF63ABFCF70       (void*)
    [RSP+6870] 0x0                (size_t) [0]
    [RSP+6878] 0x2E500000001      (size_t) [3182570766337]
    [RSP+6880] 0x2E7132C9990      (void*)
    [RSP+6888] 0x2E5F31D8FF0      (void*)
    [RSP+6890] 0x3FFFFFFF00000000 (size_t) [4611686014132420608]
    [RSP+6898] 0x1                (size_t) [1]
    [RSP+68A0] 0x1B00000024       (size_t) [115964117028]
    [RSP+68A8] 0x2E600000000      (size_t) [3186865733632]
    [RSP+68B0] 0x0                (size_t) [0]
    [RSP+68B8] 0x7                (size_t) [7]
    [RSP+68C0] 0x2E600000000      (size_t) [3186865733632]
    [RSP+68C8] 0xF63ABFD1A0       (void*)
    [RSP+68D0] 0x0                (size_t) [0]
    [RSP+68D8] 0x0                (size_t) [0]
    [RSP+68E0] 0x2E600000000      (size_t) [3186865733632]
    [RSP+68E8] 0x2E7132C9990      (void*)
    [RSP+68F0] 0x7FF699FCF533     (void* -> Fallout4.exe+2D8F533    add [rax], al |  aDiveBombChance_2D8F533)
    [RSP+68F8] 0x128001E6BBC000B  (size_t) [83316723762855947]
    [RSP+6900] 0x2E5AFF28B20      (char*) "b"
    [RSP+6908] 0x2E5AFF29850      (void*)
    [RSP+6910] 0x2E7132C9980      (void*)
    [RSP+6918] 0x2E6821F6701      (void*)
    [RSP+6920] 0x1                (size_t) [1]
    [RSP+6928] 0x7FF698804D45     (void* -> Fallout4.exe+15C4D45    xor ebx, ebx |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hkcdStaticMeshTreeBase::Section,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbCastWrapperExternal<hknpCompressedMeshShapeInternals::ShapeCastQueryUnscaled>>(hkcdStaticMeshTreeBase::Section&,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbCastWrapperExternal<hknpCompressedMeshShapeInternals::ShapeCastQueryUnscaled>&)_15C4D45)
    [RSP+6930] 0x0                (size_t) [0]
    [RSP+6938] 0x2E5CF57E760      (void*)
    [RSP+6940] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+6948] 0x3400000034000000 (size_t) [3746994890844667904]
    [RSP+6950] 0xF63ABFE7F0       (void*)
    [RSP+6958] 0xF63ABFCFC8       (void*)
    [RSP+6960] 0x3F7F5BD83D90DCB0 (size_t) [4575476730735680688]
    [RSP+6968] 0xC2B434AE00000000 (size_t) [uint: 14029896661094891520 int: -4416847412614660096]
    [RSP+6970] 0x3D90DCB0BF7F5BD8 (size_t) [4436288284645088216]
    [RSP+6978] 0x428C8D2D00000000 (size_t) [4795362927655780352]
    [RSP+6980] 0x0                (size_t) [0]
    [RSP+6988] 0x8000000000000000 (size_t) [uint: 9223372036854775808 int: -9223372036854775808]
    [RSP+6990] 0x4A7FFFFF4A5FFFFF (size_t) [5368290752778469375]
    [RSP+6998] 0x44902A62BFA08400 (size_t) [4940495394835563520]
    [RSP+69A0] 0x2E6821F6750      (hknpDynamicCompoundShape*)
    [RSP+69A8] 0x2E5C8630160      (void*)
    [RSP+69B0] 0x2E5C8630178      (void*)
    [RSP+69B8] 0x7000100000000    (size_t) [1970329131941888]
    [RSP+69C0] 0x3F49DC8BBF1D711C (size_t) [4560418590454280476]
    [RSP+69C8] 0x0                (size_t) [0]
    [RSP+69D0] 0xBF1D711CBF49DC8B (size_t) [uint: 13771287603851156619 int: -4675456469858394997]
    [RSP+69D8] 0x0                (size_t) [0]
    [RSP+69E0] 0x0                (size_t) [0]
    [RSP+69E8] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+69F0] 0x449FC3F3C48CE763 (size_t) [4944886367618131811]
    [RSP+69F8] 0x42E2073E         (size_t) [1122109246]
    [RSP+6A00] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+6A08] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+6A10] 0xC174D11700000000 (size_t) [uint: 13939996643332980736 int: -4506747430376570880]
    [RSP+6A18] 0x2E5F621C500      (hknpConvexPolytopeShape*)
    [RSP+6A20] 0xC15FB3ACC1230001 (size_t) [uint: 13934053326663647233 int: -4512690747045904383]
    [RSP+6A28] 0x2E5CA56AC90      (hknpTriangleShape*)
    [RSP+6A30] 0x2E6821F72B0      (hknpDynamicCompoundShape*)
    [RSP+6A38] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+6A40] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+6A48] 0xF6031FFFF        (size_t) [66038398975]
    [RSP+6A50] 0x2E5CF68BBB0      (void*)
    [RSP+6A58] 0x0                (size_t) [0]
    [RSP+6A60] 0x0                (size_t) [0]
    [RSP+6A68] 0x0                (size_t) [0]
    [RSP+6A70] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+6A78] 0x3F8000003F800000 (size_t) [4575657222473777152]
    [RSP+6A80] 0x0                (size_t) [0]
    [RSP+6A88] 0x0                (size_t) [0]
    [RSP+6A90] 0xFFFFFFFF0000FFFF (size_t) [uint: 18446744069414649855 int: -4294901761]
    [RSP+6A98] 0x0                (size_t) [0]
    [RSP+6AA0] 0x0                (size_t) [0]
    [RSP+6AA8] 0x2E66BBC6F80      (hknpSphereShape*)
    [RSP+6AB0] 0x0                (size_t) [0]
    [RSP+6AB8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+6AC0] 0x2E66BBC6F80      (hknpSphereShape*)
    [RSP+6AC8] 0x7000100000006    (size_t) [1970329131941894]
    [RSP+6AD0] 0x64003D4          (size_t) [104858580]
    [RSP+6AD8] 0x2E5CF68BBB0      (void*)
    [RSP+6AE0] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+6AE8] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+6AF0] 0x6031FFFF         (size_t) [1613889535]
    [RSP+6AF8] 0xF63ABFE7F0       (void*)
    [RSP+6B00] 0x0                (size_t) [0]
    [RSP+6B08] 0x0                (size_t) [0]
    [RSP+6B10] 0x0                (size_t) [0]
    [RSP+6B18] 0x0                (size_t) [0]
    [RSP+6B20] 0x3B8CC1D83B8CC1D8 (size_t) [4291017679433417176]
    [RSP+6B28] 0x1663DA5660EE     (size_t) [24618120667374]
    [RSP+6B30] 0x7FFFAE293698     (void* -> MSVCR110.dll+0053698    mov [rsp+0x18], rbx)
    [RSP+6B38] 0x1000             (size_t) [4096]
    [RSP+6B40] 0x2E66B71E268      (BSScript::NativeFunction2<BSScript::Object,void,BSScript::Object *,BSFixedString const &>*)
        Function: "RegisterForCustomEvent"
        Object: "ScriptObject"
    [RSP+6B48] 0x155C             (size_t) [5468]
    [RSP+6B50] 0x7FF699FCF528     (char*) "::remote_%s"
    [RSP+6B58] 0xF63ABFD290       (char*) "::remote_aaf:aaf_api_OnAnimationStop"
    [RSP+6B60] 0xF63ABFD1D0       (void*)
    [RSP+6B68] 0x7FFFAE27416E     (void* -> MSVCR110.dll+003416E    mov edi, eax)
    [RSP+6B70] 0x3F415123BF0E4968 (size_t) [4558013511846742376]
    [RSP+6B78] 0x432143873EB1FA53 (size_t) [4837221722924120659]
    [RSP+6B80] 0x0                (size_t) [0]
    [RSP+6B88] 0xB5421D23BF512A16 (size_t) [uint: 13061033908698688022 int: -5385710165010863594]
    [RSP+6B90] 0xF63ABFD2B4       (void*)
    [RSP+6B98] 0xFDB              (size_t) [4059]
    [RSP+6BA0] 0xF63ABFD290       (char*) "::remote_aaf:aaf_api_OnAnimationStop"
    [RSP+6BA8] 0x42               (size_t) [66]
    [RSP+6BB0] 0x0                (size_t) [0]
    [RSP+6BB8] 0x0                (size_t) [0]
    [RSP+6BC0] 0x155C             (size_t) [5468]
    [RSP+6BC8] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+6BD0] 0xF63ABFE820       (void*)
    [RSP+6BD8] 0x7FFFAE2743D4     (void* -> MSVCR110.dll+00343D4    test eax, eax)
    [RSP+6BE0] 0xF63ABFD290       (char*) "::remote_aaf:aaf_api_OnAnimationStop"
    [RSP+6BE8] 0x0                (size_t) [0]
    [RSP+6BF0] 0xF63ABFE300       (void*)
    [RSP+6BF8] 0x0                (size_t) [0]
    [RSP+6C00] 0x0                (size_t) [0]
    [RSP+6C08] 0xF63ABFE2E0       (void*)
    [RSP+6C10] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+6C18] 0xF63ABFD290       (char*) "::remote_aaf:aaf_api_OnAnimationStop"
    [RSP+6C20] 0x24               (size_t) [36]
    [RSP+6C28] 0x7FFFAE276480     (void* -> MSVCR110.dll+0036480    jmp 0x00007FFFAE27644D)
    [RSP+6C30] 0x1                (size_t) [1]
    [RSP+6C38] 0x1800000006       (size_t) [103079215110]
    [RSP+6C40] 0xF63ABFE2E0       (void*)
    [RSP+6C48] 0x0                (size_t) [0]
    [RSP+6C50] 0xF63ABFE300       (void*)
    [RSP+6C58] 0x7FF697791A02     (void* -> Fallout4.exe+0551A02    mov rax, [rdi+0x400] |  BSStringT<char,1024,FixedLengthMemoryManagementPol>::VSPrintF(char*,char*)_551A02)
    [RSP+6C60] 0x24               (size_t) [36]
    [RSP+6C68] 0x24               (size_t) [36]
    [RSP+6C70] 0xA100000063       (size_t) [691489734755]
    [RSP+6C78] 0x300000000        (size_t) [12884901888]
    [RSP+6C80] 0x65746F6D65723A3A (size_t) [7310590610773260858]
    [RSP+6C88] 0x6661613A6661615F (size_t) [7377284568063238495]
    [RSP+6C90] 0x416E4F5F6970615F (size_t) [4714793131112948063]
    [RSP+6C98] 0x6E6F6974616D696E (size_t) [7957695015158638958]
    [RSP+6CA0] 0xC0EB0000706F7453 (size_t) [uint: 13901204676695520339 int: -4545539397014031277]
    [RSP+6CA8] 0xC0B2F624         (size_t) [3232953892]
    [RSP+6CB0] 0x64656800000001   (size_t) [28258995022069761]
    [RSP+6CB8] 0x0                (size_t) [0]
    [RSP+6CC0] 0xBC23D70E3C81E150 (size_t) [uint: 13556915759459983696 int: -4889828314249567920]
    [RSP+6CC8] 0x3F0000003E0D1D7A (size_t) [4539628425430506874]
    [RSP+6CD0] 0xBC23D7103CCC4BE0 (size_t) [uint: 13556915768054795232 int: -4889828305654756384]
    [RSP+6CD8] 0x3F0000003E424B42 (size_t) [4539628425433992002]
    [RSP+6CE0] 0xBC23D7103CCC4BE0 (size_t) [uint: 13556915768054795232 int: -4889828305654756384]
    [RSP+6CE8] 0x3F0000003E424B42 (size_t) [4539628425433992002]
    [RSP+6CF0] 0xC170715CC1278C89 (size_t) [uint: 13938765489903209609 int: -4507978583806342007]
    [RSP+6CF8] 0xBF815968C0710CC2 (size_t) [uint: 13799409039680015554 int: -4647335034029536062]
    [RSP+6D00] 0xBDFD2FC2BD8FE56A (size_t) [uint: 13690150955726660970 int: -4756593117982890646]
    [RSP+6D08] 0x3F0000033EAE003C (size_t) [4539628438325952572]
    [RSP+6D10] 0xBDFD2FC2BD8FE56A (size_t) [uint: 13690150955726660970 int: -4756593117982890646]
    [RSP+6D18] 0x3F0000033EAE003C (size_t) [4539628438325952572]
    [RSP+6D20] 0xC15DEB03C115EBA3 (size_t) [uint: 13933551223511051171 int: -4513192850198500445]
    [RSP+6D28] 0x3F000000BEACBFE8 (size_t) [4539628427588452328]
    [RSP+6D30] 0xBF8933CCC1193DC0 (size_t) [uint: 13801619487559597504 int: -4645124586149954112]
    [RSP+6D38] 0x3F0000033FE8A07C (size_t) [4539628438346571900]
    [RSP+6D40] 0x58BB61A438CCF2AA (size_t) [6393811453938037418]
    [RSP+6D48] 0x0                (size_t) [0]
    [RSP+6D50] 0x3C2              (size_t) [962]
    [RSP+6D58] 0x0                (size_t) [0]
    [RSP+6D60] 0x0                (size_t) [0]
    [RSP+6D68] 0x0                (size_t) [0]
    [RSP+6D70] 0x37A46AAD37A46AAD (size_t) [4009446860461992621]
    [RSP+6D78] 0x37A46AAD37A46AAD (size_t) [4009446860461992621]
    [RSP+6D80] 0x0                (size_t) [0]
    [RSP+6D88] 0x0                (size_t) [0]
    [RSP+6D90] 0x0                (size_t) [0]
    [RSP+6D98] 0x0                (size_t) [0]
    [RSP+6DA0] 0xBEEB44BDBEB24ED1 (size_t) [uint: 13757165068472176337 int: -4689579005237375279]
    [RSP+6DA8] 0x35421D233F512A16 (size_t) [3837661869696428566]
    [RSP+6DB0] 0x7FF69A014CC8     (void* -> Fallout4.exe+2DD4CC8     |  aDiveBombChance_2DD4CC8)
    [RSP+6DB8] 0x0                (size_t) [0]
    [RSP+6DC0] 0x0                (size_t) [0]
    [RSP+6DC8] 0x0                (size_t) [0]
    [RSP+6DD0] 0x3DCDAEE8BE012F05 (size_t) [4453407921182682885]
    [RSP+6DD8] 0x3F0000033C02797A (size_t) [4539628438281156986]
    [RSP+6DE0] 0x3F415123BF0E4968 (size_t) [4558013511846742376]
    [RSP+6DE8] 0x432143873EB1FA53 (size_t) [4837221722924120659]
    [RSP+6DF0] 0xBE6258B5BC78B2F8 (size_t) [uint: 13718624952498303736 int: -4728119121211247880]
    [RSP+6DF8] 0x3F0000063E0D1D7A (size_t) [4539628451200310650]
    [RSP+6E00] 0x3DCDAEE83E0482B1 (size_t) [4453407919035417265]
    [RSP+6E08] 0x3F0000003C02797A (size_t) [4539628425396255098]
    [RSP+6E10] 0x3DCDAEE83E0482B1 (size_t) [4453407919035417265]
    [RSP+6E18] 0x3F0000003C02797A (size_t) [4539628425396255098]
    [RSP+6E20] 0x3DCDAEE83E0482B1 (size_t) [4453407919035417265]
    [RSP+6E28] 0x3F0000003C02797A (size_t) [4539628425396255098]
    [RSP+6E30] 0x100008           (size_t) [1048584]
    [RSP+6E38] 0x0                (size_t) [0]
    [RSP+6E40] 0x2E67FD26300      (void*)
    [RSP+6E48] 0x7FF6987771EF     (void* -> Fallout4.exe+15371EF    mov r10d, 0x8000 |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hknpDynamicCompoundShapeTree,hkcdTreeQueriesStacks::Dynamic<64,ushort>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompoundShapeInternals<hknpDynamicCompoundShapeInternals>::AabbOverlaps<0,hkArray<uint,hkContainerHeapAllocator>>>>(hknpDynamicCompoundShapeTree&,hkcdTreeQueriesStacks::Dynamic<64,ushort>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::AabbOverlapsNearMissAabbWrapper<hknpCompoundShapeInternals<hknpDynamicCompoundShapeInternals>::AabbOverlaps<0,hkArray<uint,hkContainerHeapAllocator>>>&)_15371EF)
    [RSP+6E50] 0x2E672F169C0      (void*)
    [RSP+6E58] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+6E60] 0xC15FF5B0C129D174 (size_t) [uint: 13934125911611396468 int: -4512618162098155148]
    [RSP+6E68] 0x3F000002C0097AA3 (size_t) [4539628436201241251]
    [RSP+6E70] 0x7FF69CD99C40     (void* -> Fallout4.exe+5B59C40     |  aDiveBombChance_5B59C40)
    [RSP+6E78] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+6E80] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+6E88] 0x7FF698D4F0B4     (void* -> Fallout4.exe+1B0F0B4    mov rbx, rax |  MemoryManager::Allocate(unsigned___int64,uint,bool)_1B0F0B4)
    [RSP+6E90] 0x60               (size_t) [96]
    [RSP+6E98] 0x60               (size_t) [96]
    [RSP+6EA0] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+6EA8] 0x0                (size_t) [0]
    [RSP+6EB0] 0x0                (size_t) [0]
    [RSP+6EB8] 0xF63ABFEAB0       (void*)
    [RSP+6EC0] 0x60               (size_t) [96]
    [RSP+6EC8] 0x7FF80A744E9D     (void* -> KERNELBASE.dll+0054E9D    nop [rax+rax*1], eax)
    [RSP+6ED0] 0x1                (size_t) [1]
    [RSP+6ED8] 0x2E5C98989D0      (void*)
    [RSP+6EE0] 0x2E87682BA60      (void*)
    [RSP+6EE8] 0xF63ABFEAB0       (void*)
    [RSP+6EF0] 0x2E87679AF60      (void*)
    [RSP+6EF8] 0x7FF698F892DB     (void* -> Fallout4.exe+1D492DB    mov rbx, [rsp+0x40] |  BSD3DResourceCreator::AddImmutableConstantBufferToCreate(BSD3DResourceCreator::BufferCreationRequest&,void*)_1D492DB)
    [RSP+6F00] 0x2E5C9922CB0      (void*)
    [RSP+6F08] 0x2E5C9888950      (BSD3DResourceCreator*)
    [RSP+6F10] 0xF63ABFD590       (void*)
    [RSP+6F18] 0x2E5C9888950      (BSD3DResourceCreator*)
    [RSP+6F20] 0x7FF69D420900     (void* -> Fallout4.exe+61E0900    add [rax], al |  aDiveBombChance_61E0900)
    [RSP+6F28] 0x2E676A7D350      (void*)
    [RSP+6F30] 0x40FD5DC240FD5DC2 (size_t) [4683002276430568898]
    [RSP+6F38] 0x40FD5DC240FD5DC2 (size_t) [4683002276430568898]
    [RSP+6F40] 0x2E5C98888F8      (void*)
    [RSP+6F48] 0x2E5AF7F6B60      (void*)
    [RSP+6F50] 0x3E0150003E015000 (size_t) [4467940267298738176]
    [RSP+6F58] 0x3E0150003E015000 (size_t) [4467940267298738176]
    [RSP+6F60] 0x7FF69CD9A660     (void* -> Fallout4.exe+5B5A660     |  aDiveBombChance_5B5A660)
    [RSP+6F68] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+6F70] 0x2E5AF7F6B60      (void*)
    [RSP+6F78] 0x1B00000430205    (size_t) [474989027590661]
    [RSP+6F80] 0x0                (size_t) [0]
    [RSP+6F88] 0x6000000003       (size_t) [412316860419]
    [RSP+6F90] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+6F98] 0x3F0000084000DFF3 (size_t) [4539628459822997491]
    [RSP+6FA0] 0x45F2FFF645EFC000 (size_t) [5040372366181384192]
    [RSP+6FA8] 0x2E683110E60      (BSTriShape*)
        Name: "PrewarCoffeepot01:6"
        RTTIName: "BSTriShape"
        Flags: 8000000000e
        Checking TESObjectREFR:
            Object Reference:
            File: "Fallout4.esm"
            Flags: 0x00040009
            FormID: 0x000AA763
            FormType: kNPC_ (45)
        Checking Parent:
            Name: "AnimObjects\AnimObjectMrHandyCoffeePot.nif"
            RTTIName: "NiNode"
            Flags: 8000080000e
            Checking TESObjectREFR:
                Object Reference:
                File: "Fallout4.esm"
                Flags: 0x00040009
                FormID: 0x000AA763
                FormType: kNPC_ (45)
            Checking Parent:
                Name: "ArmPalmBone1|0"
                RTTIName: "NiNode"
                Flags: 800000f000e
                Checking TESObjectREFR:
                    Object Reference:
                    File: "Fallout4.esm"
                    Flags: 0x00040009
                    FormID: 0x000AA763
                    FormType: kNPC_ (45)
                Checking Parent:
                    Name: "ArmPalm|0"
                    RTTIName: "NiNode"
                    Flags: 800000f000e
                    Checking TESObjectREFR:
                        Object Reference:
                        File: "Fallout4.esm"
                        Flags: 0x00040009
                        FormID: 0x000AA763
                        FormType: kNPC_ (45)
                    Checking Parent:
                        Name: "C-ModHands|0"
                        RTTIName: "NiNode"
                        Flags: 800000f000e
                        Checking TESObjectREFR:
                            Object Reference:
                            File: "Fallout4.esm"
                            Flags: 0x00040009
                            FormID: 0x000AA763
                            FormType: kNPC_ (45)
                        Checking Parent:
                            Name: "P-ModHands"
                            RTTIName: "NiNode"
                            Flags: 8000080000e
                            Checking TESObjectREFR:
                                Object Reference:
                                File: "Fallout4.esm"
                                Flags: 0x00040009
                                FormID: 0x000AA763
                                FormType: kNPC_ (45)
                            Checking Parent:
                                Name: "Arm6|0"
                                RTTIName: "NiNode"
                                Flags: 800000f000e
                                Checking TESObjectREFR:
                                    Object Reference:
                                    File: "Fallout4.esm"
                                    Flags: 0x00040009
                                    FormID: 0x000AA763
                                    FormType: kNPC_ (45)
                                Checking Parent:
                                    Name: "Arm5|0"
                                    RTTIName: "NiNode"
                                    Flags: 800000f000e
                                    Checking TESObjectREFR:
                                        Object Reference:
                                        File: "Fallout4.esm"
                                        Flags: 0x00040009
                                        FormID: 0x000AA763
                                        FormType: kNPC_ (45)
                                    Checking Parent:
                                        Name: "Arm4|0"
                                        RTTIName: "NiNode"
                                        Flags: 800000f000e
                                        Checking TESObjectREFR:
                                            Object Reference:
                                            File: "Fallout4.esm"
                                            Flags: 0x00040009
                                            FormID: 0x000AA763
                                            FormType: kNPC_ (45)
                                        Checking Parent:
                                            Name: "Arm3|0"
                                            RTTIName: "NiNode"
                                            Flags: 800000f000e
                                            Checking TESObjectREFR:
                                                Object Reference:
                                                File: "Fallout4.esm"
                                                Flags: 0x00040009
                                                FormID: 0x000AA763
                                                FormType: kNPC_ (45)
                                            Checking Parent:
                                                Name: "Arm2|0"
                                                RTTIName: "NiNode"
                                                Flags: 800000f000e
                                                Checking TESObjectREFR:
                                                    Object Reference:
                                                    File: "Fallout4.esm"
                                                    Flags: 0x00040009
                                                    FormID: 0x000AA763
                                                    FormType: kNPC_ (45)
                                                Checking Parent:
                                                    Name: "Arm1|0"
                                                    RTTIName: "NiNode"
                                                    Flags: 800000f000e
                                                    Checking TESObjectREFR:
                                                        Object Reference:
                                                        File: "Fallout4.esm"
                                                        Flags: 0x00040009
                                                        FormID: 0x000AA763
                                                        FormType: kNPC_ (45)
                                                    Checking Parent:
                                                        Name: "ArmHub2|0"
                                                        RTTIName: "NiNode"
                                                        Flags: 800000f000e
                                                        Checking TESObjectREFR:
                                                            Object Reference:
                                                            File: "Fallout4.esm"
                                                            Flags: 0x00040009
                                                            FormID: 0x000AA763
                                                            FormType: kNPC_ (45)
                                                        Checking Parent:
                                                            Name: "ArmHub1|0"
                                                            RTTIName: "NiNode"
                                                            Flags: 800000f000e
                                                            Checking TESObjectREFR:
                                                                Object Reference:
                                                                File: "Fallout4.esm"
                                                                Flags: 0x00040009
                                                                FormID: 0x000AA763
                                                                FormType: kNPC_ (45)
                                                            Checking Parent:
                                                                Name: "C-ArmsTypeA1|0"
                                                                RTTIName: "NiNode"
                                                                Flags: 800000f000e
                                                                Checking TESObjectREFR:
                                                                    Object Reference:
                                                                    File: "Fallout4.esm"
                                                                    Flags: 0x00040009
                                                                    FormID: 0x000AA763
                                                                    FormType: kNPC_ (45)
                                                                Checking Parent:
                                                                    Name: "P-ArmsTypeA1|0"
                                                                    RTTIName: "NiNode"
                                                                    Flags: 8000080000e
                                                                    Checking TESObjectREFR:
                                                                        Object Reference:
                                                                        File: "Fallout4.esm"
                                                                        Flags: 0x00040009
                                                                        FormID: 0x000AA763
                                                                        FormType: kNPC_ (45)
                                                                    Checking Parent:
                                                                        Name: "Ring"
                                                                        RTTIName: "NiNode"
                                                                        Flags: 8000000000e
                                                                        Checking TESObjectREFR:
                                                                            Object Reference:
                                                                            File: "Fallout4.esm"
                                                                            Flags: 0x00040009
                                                                            FormID: 0x000AA763
                                                                            FormType: kNPC_ (45)
                                                                        Checking Parent:
                                                                            Name: "C-BotCore"
                                                                            RTTIName: "NiNode"
                                                                            Flags: 800000f000e
                                                                            Checking TESObjectREFR:
                                                                                Object Reference:
                                                                                File: "Fallout4.esm"
                                                                                Flags: 0x00040009
                                                                                FormID: 0x000AA763
                                                                                FormType: kNPC_ (45)
                                                                            Checking Parent:
                                                                                Name: "P-BotCore"
                                                                                RTTIName: "NiNode"
                                                                                Flags: 8000080000e
                                                                                Checking TESObjectREFR:
                                                                                    Object Reference:
                                                                                    File: "Fallout4.esm"
                                                                                    Flags: 0x00040009
                                                                                    FormID: 0x000AA763
                                                                                    FormType: kNPC_ (45)
                                                                                Checking Parent:
                                                                                    Name: "COM"
                                                                                    RTTIName: "NiNode"
                                                                                    Flags: 8000000000e
                                                                                    Checking TESObjectREFR:
                                                                                        Object Reference:
                                                                                        File: "Fallout4.esm"
                                                                                        Flags: 0x00040009
                                                                                        FormID: 0x000AA763
                                                                                        FormType: kNPC_ (45)
                                                                                    Checking Parent:
                                                                                        Name: "Root"
                                                                                        RTTIName: "BSFlattenedBoneTree"
                                                                                        Flags: 8000000000e
                                                                                        Checking TESObjectREFR:
                                                                                            Object Reference:
                                                                                            File: "Fallout4.esm"
                                                                                            Flags: 0x00040009
                                                                                            FormID: 0x000AA763
                                                                                            FormType: kNPC_ (45)
                                                                                        Checking Parent:
                                                                                            Name: "skeleton.nif"
                                                                                            RTTIName: "BSFadeNode"
                                                                                            Flags: 20c235480400e
                                                                                            Checking TESObjectREFR:
                                                                                                Object Reference:
                                                                                                File: "Fallout4.esm"
                                                                                                Flags: 0x00040009
                                                                                                FormID: 0x000AA763
                                                                                                FormType: kNPC_ (45)
                                                                                            Checking Parent:
                                                                                                RTTIName: "NiNode"
                                                                                                Flags: 88002000280e
                                                                                                Checking Parent:
                                                                                                    RTTIName: "BSMultiBoundNode"
                                                                                                    Flags: c002000280e
                                                                                                    Checking Parent:
                                                                                                        Name: "ObjectLODRoot"
                                                                                                        RTTIName: "NiNode"
                                                                                                        Flags: 8002000280e
                                                                                                        Checking Parent:
                                                                                                            Name: "shadow scene node"
                                                                                                            RTTIName: "ShadowSceneNode"
                                                                                                            Flags: 2000280e
                                                                                                            Checking Parent:
                                                                                                                Name: "WorldRoot Node"
                                                                                                                RTTIName: "SceneGraph"
                                                                                                                Flags: 2000280e
        Name: "PrewarCoffeepot01:6"
    [RSP+6FB0] 0x3D7A74723D7A7472 (size_t) [4429981217478833266]
    [RSP+6FB8] 0x3D7A74723D7A7472 (size_t) [4429981217478833266]
    [RSP+6FC0] 0x2E676A7D350      (void*)
    [RSP+6FC8] 0xF63ABFD740       (void*)
    [RSP+6FD0] 0x2E676A7D200      (void*)
    [RSP+6FD8] 0x80               (size_t) [128]
    [RSP+6FE0] 0x0                (size_t) [0]
    [RSP+6FE8] 0x7FF699AD1401     (void* -> Fallout4.exe+2891401    mov rbx, [rsp+0xA0] |  BSShader::BuildCommandBuffer(BSShader::BuildCommandBufferParam&)_2891401)
    [RSP+6FF0] 0x7FF69D420900     (void* -> Fallout4.exe+61E0900    add [rax], al |  aDiveBombChance_61E0900)
    [RSP+6FF8] 0x0                (size_t) [0]
    [RSP+7000] 0x8AF6A8DE         (size_t) [2331420894]
    [RSP+7008] 0x180              (size_t) [384]
    [RSP+7010] 0xBF7E1643B8C881A4 (size_t) [uint: 13798490788428546468 int: -4648253285281005148]
    [RSP+7018] 0x43D469F53DF9E798 (size_t) [4887647997631522712]
    [RSP+7020] 0xBDF9E79C3A4D608D (size_t) [uint: 13689227200548397197 int: -4757516873161154419]
    [RSP+7028] 0xC3178382BF7E163D (size_t) [uint: 14057849359441991229 int: -4388894714267560387]
    [RSP+7030] 0x353D60003F7FFFFC (size_t) [3836328011771150332]
    [RSP+7038] 0xC3E184CE3A4EE694 (size_t) [uint: 14114708728432223892 int: -4332035345277327724]
    [RSP+7040] 0xBE724331BDA0642D (size_t) [uint: 13723104895465186349 int: -4723639178244365267]
    [RSP+7048] 0x435E8CAF3EE8EA7D (size_t) [4854472132654590589]
    [RSP+7050] 0x101A             (size_t) [4122]
    [RSP+7058] 0x8                (size_t) [8]
    [RSP+7060] 0xF63ABFDAB0       (void*)
    [RSP+7068] 0x1                (size_t) [1]
    [RSP+7070] 0x0                (size_t) [0]
    [RSP+7078] 0x0                (size_t) [0]
    [RSP+7080] 0x0                (size_t) [0]
    [RSP+7088] 0x0                (size_t) [0]
    [RSP+7090] 0x3B61294B3B61294B (size_t) [4278746524074191179]
    [RSP+7098] 0x3B61294B3B61294B (size_t) [4278746524074191179]
    [RSP+70A0] 0x3C23D70A3C23D70A (size_t) [4333543705419175690]
    [RSP+70A8] 0x3C23D70A3C23D70A (size_t) [4333543705419175690]
    [RSP+70B0] 0x0                (size_t) [0]
    [RSP+70B8] 0x0                (size_t) [0]
    [RSP+70C0] 0x0                (size_t) [0]
    [RSP+70C8] 0x0                (size_t) [0]
    [RSP+70D0] 0x0                (size_t) [0]
    [RSP+70D8] 0x0                (size_t) [0]
    [RSP+70E0] 0x0                (size_t) [0]
    [RSP+70E8] 0x0                (size_t) [0]
    [RSP+70F0] 0x0                (size_t) [0]
    [RSP+70F8] 0x0                (size_t) [0]
    [RSP+7100] 0xBD9FA800BD9FA800 (size_t) [uint: 13663824515600197632 int: -4782919558109353984]
    [RSP+7108] 0xBD9FA800BD9FA800 (size_t) [uint: 13663824515600197632 int: -4782919558109353984]
    [RSP+7110] 0x0                (size_t) [0]
    [RSP+7118] 0x2E6829A0190      (hknpConvexPolytopeShape*)
    [RSP+7120] 0x2E5CF69EC90      (void*)
    [RSP+7128] 0xF63ABFF250       (void*)
    [RSP+7130] 0xF63ABFF9C8       (void*)
    [RSP+7138] 0x2E5C85D9D40      (void*)
    [RSP+7140] 0x0                (size_t) [0]
    [RSP+7148] 0x0                (size_t) [0]
    [RSP+7150] 0xF63ABFD870       (void*)
    [RSP+7158] 0x7FF698B48A87     (void* -> Fallout4.exe+1908A87    cmp eax, 0x05 |  hknpCollision2DFastProcessUtil::collide(hknpSimulationThreadContext&,hknpCvxCvxCollideTimers*,hknpModifierSharedData&,hkTransformf&,uint,hknpCdBody&,hknpCdBody&,hknpGskCollisionCache*,hknpGskCollisionCache*,hknpManifold*)_1908A87)
    [RSP+7160] 0xF600000001       (size_t) [1056561954817]
    [RSP+7168] 0x7FF699AFBB8C     (void* -> Fallout4.exe+28BBB8C    mov r12, rax |  BSUtilityShader::CreateCommandBuffer(BSRenderPass*)_28BBB8C)
    [RSP+7170] 0x2E53FB33333      (size_t) [3183639474995]
    [RSP+7178] 0x200000000        (size_t) [8589934592]
    [RSP+7180] 0xF63ABFDB30       (void*)
    [RSP+7188] 0xFFFFFFFFFFFFFFFF (size_t) [uint: 18446744073709551615 int: -1]
    [RSP+7190] 0x8000000001       (size_t) [549755813889]
    [RSP+7198] 0x3ED548E840658260 (size_t) [4527605162740908640]
    [RSP+71A0] 0xBF37517B00000000 (size_t) [uint: 13778571173686149120 int: -4668172900023402496]
    [RSP+71A8] 0x408              (size_t) [1032]
    [RSP+71B0] 0x3F3263443F366B76 (size_t) [4553811317994449782]
    [RSP+71B8] 0x2E68315AFD0      (BSTriShape*)
        Name: "ScreenWarp:0"
        RTTIName: "BSTriShape"
        Flags: 48000000000e
        Checking TESObjectREFR:
            Object Reference:
            File: "Fallout4.esm"
            Flags: 0x00000009
            EditorID: "MQ101TVPrewar"
            FormID: 0x000BA640
            FormType: kACTI (27)
        Checking Parent:
            Name: "PlayerHouse_Television01"
            RTTIName: "BSFadeNode"
            Flags: c210080400e
            Checking TESObjectREFR:
                Object Reference:
                File: "Fallout4.esm"
                Flags: 0x00000009
                EditorID: "MQ101TVPrewar"
                FormID: 0x000BA640
                FormType: kACTI (27)
            Checking Parent:
                RTTIName: "NiNode"
                Flags: 88000000280e
                Checking Parent:
                    RTTIName: "BSMultiBoundNode"
                    Flags: c002000280e
                    Checking Parent:
                        Name: "ObjectLODRoot"
                        RTTIName: "NiNode"
                        Flags: 8002000280e
                        Checking Parent:
                            Name: "shadow scene node"
                            RTTIName: "ShadowSceneNode"
                            Flags: 2000280e
                            Checking Parent:
                                Name: "WorldRoot Node"
                                RTTIName: "SceneGraph"
                                Flags: 2000280e
        Name: "ScreenWarp:0"
    [RSP+71C0] 0xBD26A3E7BD986705 (size_t) [uint: 13629761537997039365 int: -4816982535712512251]
    [RSP+71C8] 0x2E677B9B878      (BSLightingShaderProperty*)
        Flags: 0xA180408201
        RTTIName: "BSLightingShaderProperty"
    [RSP+71D0] 0x47B299DBC79CC49F (size_t) [5166360891773207711]
    [RSP+71D8] 0x3F80000045F74450 (size_t) [4575657222582256720]
    [RSP+71E0] 0x2E68591E3B0      (void*)
    [RSP+71E8] 0xF63ABFD930       (void*)
    [RSP+71F0] 0x2E68591E2E8      (char*) "@"
    [RSP+71F8] 0x7FF69771E1EF     (void* -> Fallout4.exe+04DE1EF    neg bl |  BSScript::TypeInfo::GetRawType(void)_4DE1EF)
    [RSP+7200] 0xF63ABFDE80       (void*)
    [RSP+7208] 0x7FF6989C2EEE     (void* -> Fallout4.exe+1782EEE    cmp dword ptr [r12+0x0C], 0x00 |  hknpConvexCompositeCollisionDetector::queryAabbWithNmp(hknpCollisionQueryContext*,hknpAabbQuery&,hknpShapeQueryInfo&,hknpShape&,hknpShapeQueryInfo&,hknpQueryFilterData&,hkArray<uint,hkContainerHeapAllocator>*,hkAabb*,hknpQueryAabbTimers*)_1782EEE)
    [RSP+7210] 0x2E6829A0190      (hknpConvexPolytopeShape*)
    [RSP+7218] 0x0                (size_t) [0]
    [RSP+7220] 0x2E67837A68C      (void*)
    [RSP+7228] 0x7FF69992F0FE     (void* -> Fallout4.exe+26EF0FE    cmp eax, 0x01 |  BSScript::Variable::AsObjectReference(void)_26EF0FE)
    [RSP+7230] 0x2E5CF69AD00      (void*)
    [RSP+7238] 0xF63ABFDE20       (void*)
    [RSP+7240] 0x0                (size_t) [0]
    [RSP+7248] 0x2E678078540      (void*)
    [RSP+7250] 0x2E6829A82A0      (hknpScaledConvexShape*)
    [RSP+7258] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+7260] 0x2E5E6F8B270      (void*)
    [RSP+7268] 0x48B51678         (size_t) [1219827320]
    [RSP+7270] 0x7FF69CD99EC8     (void* -> Fallout4.exe+5B59EC8     |  aDiveBombChance_5B59EC8)
    [RSP+7278] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+7280] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+7288] 0x7FF698D4F0B4     (void* -> Fallout4.exe+1B0F0B4    mov rbx, rax |  MemoryManager::Allocate(unsigned___int64,uint,bool)_1B0F0B4)
    [RSP+7290] 0x0                (size_t) [0]
    [RSP+7298] 0xA8               (size_t) [168]
    [RSP+72A0] 0x2E5CF69EC90      (void*)
    [RSP+72A8] 0x7FF699AFC215     (void* -> Fallout4.exe+28BC215    jmp 0x00007FF699AFC219 |  BSUtilityShader::CreateCommandBuffer(BSRenderPass*)_28BC215)
    [RSP+72B0] 0x0                (size_t) [0]
    [RSP+72B8] 0x2E68591E3B0      (void*)
    [RSP+72C0] 0x1200000000       (size_t) [77309411328]
    [RSP+72C8] 0x7FF699943992     (void* -> Fallout4.exe+2703992    mov eax, [rsp+0x50] |  BSScript::Stack::Stack(BSScript::IMemoryPagePolicy&,BSScript::IProfilePolicy*,uint,BSScript::Stack::StackType,BSTSmartPointer<BSScript::IStackCallbackFunctor,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>&)_2703992)
    [RSP+72D0] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+72D8] 0x15CD             (size_t) [5581]
    [RSP+72E0] 0xF6FFFFFFFF       (size_t) [1060856922111]
    [RSP+72E8] 0xBF37517B         (size_t) [3208073595]
    [RSP+72F0] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+72F8] 0x7FF699982509     (void* -> Fallout4.exe+2742509    test al, al |  BSScript::Internal::VirtualMachine::CreateStack(uint,BSScript::Stack::StackType,BSTSmartPointer<BSScript::IStackCallbackFunctor,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&)_2742509)
    [RSP+7300] 0x9ECA5740         (size_t) [2664060736]
    [RSP+7308] 0x12               (size_t) [18]
    [RSP+7310] 0x2E5CF1FC408      (void*)
    [RSP+7318] 0x12               (size_t) [18]
    [RSP+7320] 0xF600000000       (size_t) [1056561954816]
    [RSP+7328] 0x2E68270E9C8      (void*)
    [RSP+7330] 0x7FF69D2DDAD0     (void* -> Fallout4.exe+609DAD0     |  aDiveBombChance_609DAD0)
    [RSP+7338] 0x1                (size_t) [1]
    [RSP+7340] 0x2E600000100      (size_t) [3186865733888]
    [RSP+7348] 0x7FF69D2DDAD0     (void* -> Fallout4.exe+609DAD0     |  aDiveBombChance_609DAD0)
    [RSP+7350] 0x2                (size_t) [2]
    [RSP+7358] 0x2E68270EA58      (void*)
    [RSP+7360] 0x7FF69D2DDAD0     (void* -> Fallout4.exe+609DAD0     |  aDiveBombChance_609DAD0)
    [RSP+7368] 0xF63ABFECC0       (void*)
    [RSP+7370] 0xF63ABFECC0       (void*)
    [RSP+7378] 0x0                (size_t) [0]
    [RSP+7380] 0x2E5CF1FC3F8      (void*)
    [RSP+7388] 0x7FF6999820F7     (void* -> Fallout4.exe+27420F7    mov rdx, [r14+0xBD88] |  BSScript::Internal::VirtualMachine::CreateStack(BSScript::Stack::StackType,BSTSmartPointer<BSScript::IStackCallbackFunctor,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&)_27420F7)
    [RSP+7390] 0x0                (size_t) [0]
    [RSP+7398] 0x15CD             (size_t) [5581]
    [RSP+73A0] 0xF600000000       (size_t) [1056561954816]
    [RSP+73A8] 0xF63ABFDE58       (void*)
    [RSP+73B0] 0xF63ABFDE58       (void*)
    [RSP+73B8] 0xF63ABFDF20       (void*)
    [RSP+73C0] 0x2E6B85DC2C0      (void*)
    [RSP+73C8] 0x8                (size_t) [8]
    [RSP+73D0] 0xF63ABFDA60       (void*)
    [RSP+73D8] 0x7FF80CD207C0     (void* -> ntdll.dll+00507C0    add rsp, 0x48)
    [RSP+73E0] 0x1000             (size_t) [4096]
    [RSP+73E8] 0xF63ABFDCD8       (void*)
    [RSP+73F0] 0x15E              (size_t) [350]
    [RSP+73F8] 0x7FF80A740DDB     (void* -> KERNELBASE.dll+0050DDB    nop [rax+rax*1], eax)
    [RSP+7400] 0xF63ABFDCC8       (void*)
    [RSP+7408] 0x7FF80CD207C0     (void* -> ntdll.dll+00507C0    add rsp, 0x48)
    [RSP+7410] 0x7961B80883B2     (size_t) [133460606354354]
    [RSP+7418] 0x2E5AFF29850      (void*)
    [RSP+7420] 0xF63ABFDB70       (void*)
    [RSP+7428] 0x7FF80A740DDB     (void* -> KERNELBASE.dll+0050DDB    nop [rax+rax*1], eax)
    [RSP+7430] 0x0                (size_t) [0]
    [RSP+7438] 0x2E7132C9980      (void*)
    [RSP+7440] 0x7961B8088062     (size_t) [133460606353506]
    [RSP+7448] 0x7FF80CCDA36F     (void* -> ntdll.dll+000A36F    mov ecx, eax)
    [RSP+7450] 0xF63ABFDE00       (void*)
    [RSP+7458] 0x7FFFAE2643B8     (void* -> MSVCR110.dll+00243B8    mov rax, rbx)
    [RSP+7460] 0x68               (size_t) [104]
    [RSP+7468] 0x7FFFAE27DBFA     (void* -> MSVCR110.dll+003DBFA    mov rax, [rsp+0x20])
    [RSP+7470] 0xBF7E1643B8C881A4 (size_t) [uint: 13798490788428546468 int: -4648253285281005148]
    [RSP+7478] 0x43D469F53DF9E798 (size_t) [4887647997631522712]
    [RSP+7480] 0xBDF9E79C3A4D608D (size_t) [uint: 13689227200548397197 int: -4757516873161154419]
    [RSP+7488] 0xC3178382BF7E163D (size_t) [uint: 14057849359441991229 int: -4388894714267560387]
    [RSP+7490] 0x353D60003F7FFFFC (size_t) [3836328011771150332]
    [RSP+7498] 0xC3E184CE3A4EE694 (size_t) [uint: 14114708728432223892 int: -4332035345277327724]
    [RSP+74A0] 0xBE724331BDA0642D (size_t) [uint: 13723104895465186349 int: -4723639178244365267]
    [RSP+74A8] 0x435E8CAF3EE8EA7D (size_t) [4854472132654590589]
    [RSP+74B0] 0x3F32634400000001 (size_t) [4553811316933918721]
    [RSP+74B8] 0x47B299DBBD26A3E7 (size_t) [5166360891597693927]
    [RSP+74C0] 0x3D1B091F3D1B091F (size_t) [4403123090458609951]
    [RSP+74C8] 0x3D1B091F3D1B091F (size_t) [4403123090458609951]
    [RSP+74D0] 0x800000003FB33333 (size_t) [uint: 9223372037923484467 int: -9223372035786067149]
    [RSP+74D8] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+74E0] 0x3F366B763F329878 (size_t) [4554946228742428792]
    [RSP+74E8] 0xC79CC49FBD986705 (size_t) [uint: 14383587500274247429 int: -4063156573435304187]
    [RSP+74F0] 0x3F326344BF37517B (size_t) [4553811320141992315]
    [RSP+74F8] 0x47B299DBBD26A3E7 (size_t) [5166360891597693927]
    [RSP+7500] 0x3DA742AD3CBB4DB5 (size_t) [4442592869239967157]
    [RSP+7508] 0x45F744503F7F1405 (size_t) [5041573419317924869]
    [RSP+7510] 0x8000000000000000 (size_t) [uint: 9223372036854775808 int: -9223372036854775808]
    [RSP+7518] 0x3F80000000000000 (size_t) [4575657221408423936]
    [RSP+7520] 0x3E0ED79A3E0ED79A (size_t) [4471748537491576730]
    [RSP+7528] 0x3E0ED79A3E0ED79A (size_t) [4471748537491576730]
    [RSP+7530] 0x3EEB44BD3EB24ED1 (size_t) [4533793029469916881]
    [RSP+7538] 0xB5421D23BF512A16 (size_t) [uint: 13061033908698688022 int: -5385710165010863594]
    [RSP+7540] 0xF63ABFEF10       (void*)
    [RSP+7548] 0x7FF698809805     (void* -> Fallout4.exe+15C9805    movaps xmm8, [0x00007FF699FF9EA0] |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hkcdStaticMeshTreeBase::Section,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::RayCastWrapperExternal<hknpCompressedMeshShapeInternals::RayCastQuery<0>>>(hkcdStaticMeshTreeBase::Section&,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::RayCastWrapperExternal<hknpCompressedMeshShapeInternals::RayCastQuery<0>>&)_15C9805)
    [RSP+7550] 0x2                (size_t) [2]
    [RSP+7558] 0x7FF80A740DDB     (void* -> KERNELBASE.dll+0050DDB    nop [rax+rax*1], eax)
    [RSP+7560] 0x2E5AFF28B20      (char*) "b"
    [RSP+7568] 0x2E5AFF29850      (void*)
    [RSP+7570] 0xF63ABFDE30       (void*)
    [RSP+7578] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+7580] 0xF68621FFFF       (size_t) [1058812329983]
    [RSP+7588] 0xF63ABFF480       (void*)
    [RSP+7590] 0xF63ABFDC30       (void*)
    [RSP+7598] 0xC2E0ACFC3F800000 (size_t) [uint: 14042413837538295808 int: -4404330236171255808]
    [RSP+75A0] 0x200000002        (size_t) [8589934594]
    [RSP+75A8] 0x200000000        (size_t) [8589934592]
    [RSP+75B0] 0xF600000000       (size_t) [1056561954816]
    [RSP+75B8] 0x7FFFAE2643B8     (void* -> MSVCR110.dll+00243B8    mov rax, rbx)
    [RSP+75C0] 0x4040000040400000 (size_t) [4629700418014806016]
    [RSP+75C8] 0x4040000040400000 (size_t) [4629700418014806016]
    [RSP+75D0] 0x40C5B5B840F2E61E (size_t) [4667336391807657502]
    [RSP+75D8] 0x4233B516         (size_t) [1110684950]
    [RSP+75E0] 0xBF8E9FA83F9EA9A0 (size_t) [uint: 13803145452907833760 int: -4643598620801717856]
    [RSP+75E8] 0x3FC2ED20         (size_t) [1069739296]
    [RSP+75F0] 0x1AFF28B20        (size_t) [7246875424]
    [RSP+75F8] 0x2E5AFF29850      (void*)
    [RSP+7600] 0xC172ED17C0069119 (size_t) [uint: 13939464482926792985 int: -4507279590782758631]
    [RSP+7608] 0x3FAE1815C04994CB (size_t) [4588631552036541643]
    [RSP+7610] 0x100000000        (size_t) [4294967296]
    [RSP+7618] 0xC790ABF400000000 (size_t) [uint: 14380182674654363648 int: -4066561399055187968]
    [RSP+7620] 0x0                (size_t) [0]
    [RSP+7628] 0x0                (size_t) [0]
    [RSP+7630] 0x0                (size_t) [0]
    [RSP+7638] 0x0                (size_t) [0]
    [RSP+7640] 0x2AB              (size_t) [683]
    [RSP+7648] 0x2E5C85F2F00      (void*)
    [RSP+7650] 0x2E5F31D8FF0      (void*)
    [RSP+7658] 0xF63ABFF780       (void*)
    [RSP+7660] 0x2E5CA56AB50      (void*)
    [RSP+7668] 0x1                (size_t) [1]
    [RSP+7670] 0xF63ABFF970       (void*)
    [RSP+7678] 0x2E5C85F2F16      (void*)
    [RSP+7680] 0xF63ABFDDA0       (void*)
    [RSP+7688] 0x7FF6989C58B6     (void* -> Fallout4.exe+17858B6    mov r8d, [rbp+0x1EC] |  hknpConvexCompositeCollisionDetector::reuseConvexWithComposite(hknpSimulationThreadContext&,hknpInternalCollideSharedData&,hknpCdBody&,hknpCdBody*,int,hknpCollisionCacheConsumer*,hknpCollisionCacheWriter*,hknpJacobianConsumer*,hknpCsContactJacInjector*,hknpReuseContactCacheTimers*)_17858B6)
    [RSP+7690] 0x2E5CA56AB50      (void*)
    [RSP+7698] 0x2E685934010      (void*)
    [RSP+76A0] 0xF63ABFF0E0       (void*)
    [RSP+76A8] 0xF63ABFF120       (void*)
    [RSP+76B0] 0x0                (size_t) [0]
    [RSP+76B8] 0xF600000000       (size_t) [1056561954816]
    [RSP+76C0] 0xF600000000       (size_t) [1056561954816]
    [RSP+76C8] 0x2E5C8630102      (void*)
    [RSP+76D0] 0xF63ABFDDF0       (void*)
    [RSP+76D8] 0xF63ABFF780       (void*)
    [RSP+76E0] 0x2E5F31D8FF0      (void*)
    [RSP+76E8] 0xF63ABFF168       (void*)
    [RSP+76F0] 0x2E5E7406360      (void*)
    [RSP+76F8] 0x2E5C85F2F16      (void*)
    [RSP+7700] 0xF63ABFF098       (void*)
    [RSP+7708] 0xF63ABFFAD8       (void*)
    [RSP+7710] 0x2E5C8630160      (void*)
    [RSP+7718] 0xFFFF7FFFFFFF     (size_t) [281472829227007]
    [RSP+7720] 0x2E5C84F5169      (void*)
    [RSP+7728] 0x2E678068348      (void*)
    [RSP+7730] 0x2E67D7701E0      (void*)
    [RSP+7738] 0x7FF69771E1EF     (void* -> Fallout4.exe+04DE1EF    neg bl |  BSScript::TypeInfo::GetRawType(void)_4DE1EF)
    [RSP+7740] 0x2E5CF1F8900      (BSTCommonLLMessageQueue<BSScript::Internal::FunctionMessage>*)
    [RSP+7748] 0x7FF6999A802D     (void* -> Fallout4.exe+276802D    movzx ecx, al |  BSTCommonMessageQueue<BSScript::Internal::FunctionMessage>::Push(BSScript::Internal::FunctionMessage&)_276802D)
    [RSP+7750] 0x2E5CF1F1A60      (void*)
    [RSP+7758] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+7760] 0x2E67D7701E0      (void*)
    [RSP+7768] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+7770] 0x12               (size_t) [18]
    [RSP+7778] 0x7FF69997DC1A     (void* -> Fallout4.exe+273DC1A    mov rcx, [rsp+0x40] |  BSScript::Internal::VirtualMachine::QueueFunctionCall(BSScript::Stack*,BSTSmartPointer<BSScript::Internal::IFuncCallQuery,BSTSmartPointerIntrusiveRefCount>&)_273DC1A)
    [RSP+7780] 0x2E5CF1F08E0      (void*)
    [RSP+7788] 0x2E678068348      (void*)
    [RSP+7790] 0xBD3CB280C0204344 (size_t) [uint: 13635970037819917124 int: -4810774035889634492]
    [RSP+7798] 0xBC6D3860BF720900 (size_t) [uint: 13577570439771851008 int: -4869173633937700608]
    [RSP+77A0] 0x40A8C5274031DC44 (size_t) [4659190586886184004]
    [RSP+77A8] 0x3D9DF13A403227C0 (size_t) [4439970040144603072]
    [RSP+77B0] 0x2E5CF6A6DF0      (void*)
    [RSP+77B8] 0x0                (size_t) [0]
    [RSP+77C0] 0x2E67D7701E0      (void*)
    [RSP+77C8] 0x2E5E6F8B270      (void*)
    [RSP+77D0] 0xF63ABFDEA0       (void*)
    [RSP+77D8] 0x7FF699930A31     (void* -> Fallout4.exe+26F0A31    jmp 0x00007FF699930AA6 |  BSScript::Variable::Cleanup(void)_26F0A31)
    [RSP+77E0] 0x0                (size_t) [0]
    [RSP+77E8] 0x0                (size_t) [0]
    [RSP+77F0] 0x0                (size_t) [0]
    [RSP+77F8] 0x2E5CFB2C090      (void*)
    [RSP+7800] 0x0                (size_t) [0]
    [RSP+7808] 0x2E672F16420      (void*)
    [RSP+7810] 0x2E678068348      (void*)
    [RSP+7818] 0xF63ABFDEB9       (void*)
    [RSP+7820] 0xF63ABFDFA0       (void*)
    [RSP+7828] 0xF63ABFDFA0       (void*)
    [RSP+7830] 0xF63ABFDF20       (void*)
    [RSP+7838] 0x7FF69A04F340     (void* -> Fallout4.exe+2E0F340    add [rax], al |  aDiveBombChance_2E0F340)
    [RSP+7840] 0x2E67D7701E0      (void*)
    [RSP+7848] 0x0                (size_t) [0]
    [RSP+7850] 0x0                (size_t) [0]
    [RSP+7858] 0x0                (size_t) [0]
    [RSP+7860] 0x1D00000000       (size_t) [124554051584]
    [RSP+7868] 0x2E600000000      (size_t) [3186865733632]
    [RSP+7870] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+7878] 0x7FF69901770D     (void* -> Fallout4.exe+1DD770D    mov r8, rax |  hknpBSShapeCodec::decode(ushort,hknpCollisionQueryType::Enum,hknpBody*,hknpShape*,hknpShape*,uint,hknpShape*,hknpQueryFilterData*)_1DD770D)
    [RSP+7880] 0x0                (size_t) [0]
    [RSP+7888] 0x7FF699930A55     (void* -> Fallout4.exe+26F0A55    cmp eax, 0x06 |  BSScript::Variable::Cleanup(void)_26F0A55)
    [RSP+7890] 0x2E66A46D290      (BSScript::ObjectTypeInfo*)
        Name: "ScriptObject"
    [RSP+7898] 0x0                (size_t) [0]
    [RSP+78A0] 0xF63ABFF270       (void*)
    [RSP+78A8] 0x7FF698809805     (void* -> Fallout4.exe+15C9805    movaps xmm8, [0x00007FF699FF9EA0] |  hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::unary<hkcdStaticMeshTreeBase::Section,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::RayCastWrapperExternal<hknpCompressedMeshShapeInternals::RayCastQuery<0>>>(hkcdStaticMeshTreeBase::Section&,hkcdTreeQueriesStacks::Dynamic<64,hkcdStaticTree::Tree<hkcdStaticTree::DynamicStorage5>::Slot>&,hkcdTreeQueries<hkcdTreeQueriesStacks::Dynamic,64,0>::RayCastWrapperExternal<hknpCompressedMeshShapeInternals::RayCastQuery<0>>&)_15C9805)
    [RSP+78B0] 0x2                (size_t) [2]
    [RSP+78B8] 0x7FF6985B82B1     (void* -> Fallout4.exe+13782B1    mov rbx, [rsp+0x40] |  `anonymous_namespace'::BaseCallbackAdapter::DecrementWaitingAndCall(void)_13782B1)
    [RSP+78C0] 0x2E68306E350      (void*)
    [RSP+78C8] 0x0                (size_t) [0]
    [RSP+78D0] 0xF63ABFE190       (void*)
    [RSP+78D8] 0x2E67F21E280      (hknpCompressedMeshShape*)
    [RSP+78E0] 0x362FFFFF         (size_t) [909115391]
    [RSP+78E8] 0xF63ABFF7E0       (void*)
    [RSP+78F0] 0x46D040B04118     (size_t) [77860252434712]
    [RSP+78F8] 0x470A40E84155     (size_t) [78109364207957]
    [RSP+7900] 0x44A259C7C4900AE0 (size_t) [4945614055337364192]
    [RSP+7908] 0x42E053E0         (size_t) [1121997792]
    [RSP+7910] 0x44A2CCFFC48F8D5F (size_t) [4945740739692694879]
    [RSP+7918] 0x42E7C930         (size_t) [1122486576]
    [RSP+7920] 0x4040000040400000 (size_t) [4629700418014806016]
    [RSP+7928] 0x4040000040400000 (size_t) [4629700418014806016]
    [RSP+7930] 0x3F002730C0DBBE8E (size_t) [4539671514737000078]
    [RSP+7938] 0xB51A4C42         (size_t) [3038399554]
    [RSP+7940] 0x404A5DB040789F40 (size_t) [4632618178281250624]
    [RSP+7948] 0x352029B8         (size_t) [891300280]
    [RSP+7950] 0x100000002        (size_t) [4294967298]
    [RSP+7958] 0x7FF698D8CEB7     (void* -> Fallout4.exe+1B4CEB7    add [rsp+0x68], rdi |  BSSystemFileStreamer::Streamer::Request(BSSystemFile*,BSSystemFileStreamer::ID&,void*,unsigned___int64,unsigned___int64,uint,uint*,uint&,unsigned___int64*,bool,BSEventFlag*)_1B4CEB7)
    [RSP+7960] 0x80000000         (size_t) [2147483648]
    [RSP+7968] 0x7FFFAE276480     (void* -> MSVCR110.dll+0036480    jmp 0x00007FFFAE27644D)
    [RSP+7970] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7978] 0x0                (size_t) [0]
    [RSP+7980] 0x7000100000006    (size_t) [1970329131941894]
    [RSP+7988] 0x7FF80CCFB86B     (void* -> ntdll.dll+002B86B    mov ecx, eax)
    [RSP+7990] 0x2                (size_t) [2]
    [RSP+7998] 0x7FF698D8CEB7     (void* -> Fallout4.exe+1B4CEB7    add [rsp+0x68], rdi |  BSSystemFileStreamer::Streamer::Request(BSSystemFile*,BSSystemFileStreamer::ID&,void*,unsigned___int64,unsigned___int64,uint,uint*,uint&,unsigned___int64*,bool,BSEventFlag*)_1B4CEB7)
    [RSP+79A0] 0x60               (size_t) [96]
    [RSP+79A8] 0x7FFFAE276480     (void* -> MSVCR110.dll+0036480    jmp 0x00007FFFAE27644D)
    [RSP+79B0] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+79B8] 0x0                (size_t) [0]
    [RSP+79C0] 0xC1161D3B00000000 (size_t) [uint: 13913340238048002048 int: -4533403835661549568]
    [RSP+79C8] 0x2E5B00B65C0      (void*)
    [RSP+79D0] 0x4                (size_t) [4]
    [RSP+79D8] 0x7FF698D8CEB7     (void* -> Fallout4.exe+1B4CEB7    add [rsp+0x68], rdi |  BSSystemFileStreamer::Streamer::Request(BSSystemFile*,BSSystemFileStreamer::ID&,void*,unsigned___int64,unsigned___int64,uint,uint*,uint&,unsigned___int64*,bool,BSEventFlag*)_1B4CEB7)
    [RSP+79E0] 0x19               (size_t) [25]
    [RSP+79E8] 0x4                (size_t) [4]
    [RSP+79F0] 0x4                (size_t) [4]
    [RSP+79F8] 0x2E5B00A0D80      (void*)
    [RSP+7A00] 0x0                (size_t) [0]
    [RSP+7A08] 0x2                (size_t) [2]
    [RSP+7A10] 0x0                (size_t) [0]
    [RSP+7A18] 0xA0               (size_t) [160]
    [RSP+7A20] 0x2E672F177C8      (void*)
    [RSP+7A28] 0x6                (size_t) [6]
    [RSP+7A30] 0x2                (size_t) [2]
    [RSP+7A38] 0xF63ABFE200       (void*)
    [RSP+7A40] 0x0                (size_t) [0]
    [RSP+7A48] 0x4                (size_t) [4]
    [RSP+7A50] 0x0                (size_t) [0]
    [RSP+7A58] 0x0                (size_t) [0]
    [RSP+7A60] 0x2E672F177C8      (void*)
    [RSP+7A68] 0x6                (size_t) [6]
    [RSP+7A70] 0x4                (size_t) [4]
    [RSP+7A78] 0xF63ABFE2B0       (void*)
    [RSP+7A80] 0x2E672F177D8      (void*)
    [RSP+7A88] 0x2E6693C6BC0      (GameScript::Store*)
    [RSP+7A90] 0x0                (size_t) [0]
    [RSP+7A98] 0x7FF698D8831D     (void* -> Fallout4.exe+1B4831D    lea r11, [rsp+0x80] |  BSSystemFileStreamer::ReadAt(BSSystemFile*,BSSystemFileStreamer::ID&,void*,unsigned___int64,unsigned___int64,unsigned___int64&,uint,bool,BSEventFlag*)_1B4831D)
    [RSP+7AA0] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7AA8] 0xF63ABFE2B0       (void*)
    [RSP+7AB0] 0x4                (size_t) [4]
    [RSP+7AB8] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7AC0] 0xF63ABFFEE0       (char*) "|Y"
    [RSP+7AC8] 0x136C             (size_t) [4972]
    [RSP+7AD0] 0x0                (size_t) [0]
    [RSP+7AD8] 0xF63ABFE120       (void*)
    [RSP+7AE0] 0xF63ABFE128       (void*)
    [RSP+7AE8] 0xF63ABFE118       (void*)
    [RSP+7AF0] 0x1                (size_t) [1]
    [RSP+7AF8] 0xF63ABFFEE0       (char*) "|Y"
    [RSP+7B00] 0xF63ABFFEE0       (char*) "|Y"
    [RSP+7B08] 0x4                (size_t) [4]
    [RSP+7B10] 0x0                (size_t) [0]
    [RSP+7B18] 0x100000000        (size_t) [4294967296]
    [RSP+7B20] 0xF63ABFE2B0       (void*)
    [RSP+7B28] 0xF63ABFE208       (void*)
    [RSP+7B30] 0x0                (size_t) [0]
    [RSP+7B38] 0x7FF698DC63FF     (void* -> Fallout4.exe+1B863FF    test eax, eax |  BSResource::`anonymous_namespace'::LooseFileStream::DoRead(void*,unsigned___int64,unsigned___int64&)_1B863FF)
    [RSP+7B40] 0x506              (size_t) [1286]
    [RSP+7B48] 0x4                (size_t) [4]
    [RSP+7B50] 0x2E672F177A0      (BSResource::`anonymous namespace'::LooseFileStream*)
    [RSP+7B58] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7B60] 0x136C             (size_t) [4972]
    [RSP+7B68] 0xF63ABFE208       (void*)
    [RSP+7B70] 0x7FF600000000     (size_t) [140694538682368]
    [RSP+7B78] 0xF63ABFE101       (void*)
    [RSP+7B80] 0x0                (size_t) [0]
    [RSP+7B88] 0x7FF69859840C     (void* -> Fallout4.exe+135840C    test al, al |  GameScript::Store::GetIsEOS(void)_135840C)
    [RSP+7B90] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+7B98] 0x7FF698D54913     (void* -> Fallout4.exe+1B14913    mov rcx, [rsp+0x30] |  ScrapHeap::InsertFreeBlock(ScrapHeap::FreeBlock*)_1B14913)
    [RSP+7BA0] 0x2E7DB675140      (void*)
    [RSP+7BA8] 0x2E7DB679DD0      (void*)
    [RSP+7BB0] 0x6CF8             (size_t) [27896]
    [RSP+7BB8] 0x7FF698D83C21     (void* -> Fallout4.exe+1B43C21    test eax, eax |  `anonymous_namespace'::FindEntry<char>(BSStringPool::Entry*&,char*,ushort,bool)_1B43C21)
    [RSP+7BC0] 0x2E7DB679DD0      (void*)
    [RSP+7BC8] 0x7FF698D54508     (void* -> Fallout4.exe+1B14508    mov rax, [r14+0x40] |  ScrapHeap::Allocate(unsigned___int64,unsigned___int64)_1B14508)
    [RSP+7BD0] 0x2E7DB679DD0      (void*)
    [RSP+7BD8] 0x2E7DB679C20      (void*)
    [RSP+7BE0] 0xF63ABFE300       (void*)
    [RSP+7BE8] 0x7FF698D83EF1     (void* -> Fallout4.exe+1B43EF1    test al, al |  `anonymous_namespace'::GetEntry<char>(BSStringPool::Entry*&,char*,bool)_1B43EF1)
    [RSP+7BF0] 0x0                (size_t) [0]
    [RSP+7BF8] 0x7FF69A04F340     (void* -> Fallout4.exe+2E0F340    add [rax], al |  aDiveBombChance_2E0F340)
    [RSP+7C00] 0x7FF69CE27D00     (void* -> Fallout4.exe+5BE7D00    add [rax], al |  aDiveBombChance_5BE7D00)
    [RSP+7C08] 0x0                (size_t) [0]
    [RSP+7C10] 0x0                (size_t) [0]
    [RSP+7C18] 0x7FF69CCFDA20     (GameScript::Logger*)
    [RSP+7C20] 0x2500000024       (size_t) [158913789988]
    [RSP+7C28] 0x2E673DCAD80      (void*)
    [RSP+7C30] 0xF63ABFE738       (void*)
    [RSP+7C38] 0x7FF699938546     (void* -> Fallout4.exe+26F8546    test eax, eax |  BSScript::ObjectTypeInfo::BinarySearch<BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>>(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>*,uint,char*)_26F8546)
    [RSP+7C40] 0x2E6E8510470      (void*)
    [RSP+7C48] 0x155C             (size_t) [5468]
    [RSP+7C50] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+7C58] 0x2E66B71E268      (BSScript::NativeFunction2<BSScript::Object,void,BSScript::Object *,BSFixedString const &>*)
        Function: "RegisterForCustomEvent"
        Object: "ScriptObject"
    [RSP+7C60] 0x2E66B51BCE0      (BSScript::ObjectTypeInfo*)
        Name: "Quest"
    [RSP+7C68] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+7C70] 0x0                (size_t) [0]
    [RSP+7C78] 0x7FF69993411F     (void* -> Fallout4.exe+26F411F    test rax, rax |  BSScript::ObjectTypeInfo::GetStateFunction(BSFixedString&,BSFixedString&,BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>&,bool)_26F411F)
    [RSP+7C80] 0xF63ABFE800       (void*)
    [RSP+7C88] 0x2E67CB1DB80      (BSScript::ObjectTypeInfo*)
        Name: "SexEd:SexEd_Main"
    [RSP+7C90] 0x12               (size_t) [18]
    [RSP+7C98] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+7CA0] 0xF63ABFE820       (void*)
    [RSP+7CA8] 0x7FF699B3C244     (void* -> Fallout4.exe+28FC244    lea r11, [rsp+0xC00] |  Umbra::Transformer::frustumShrinkBox(Umbra::ActivePlaneSet*,__m128,__m128,__m128&,__m128&)_28FC244)
    [RSP+7CB0] 0x47B1F800C79D42D7 (size_t) [5166182929803330263]
    [RSP+7CB8] 0x3F80000045F4FFFE (size_t) [4575657222582108158]
    [RSP+7CC0] 0x47B1F800C79BF800 (size_t) [5166182929803245568]
    [RSP+7CC8] 0x2E678167264      (void*)
    [RSP+7CD0] 0x2E6E8510470      (void*)
    [RSP+7CD8] 0x12               (size_t) [18]
    [RSP+7CE0] 0x0                (size_t) [0]
    [RSP+7CE8] 0x7FF698D5C503     (void* -> Fallout4.exe+1B1C503    test dil, dil |  BSSmallBlockAllocator::DeallocateAlignImpl(void*&)_1B1C503)
    [RSP+7CF0] 0x12               (size_t) [18]
    [RSP+7CF8] 0x2E678167214      (void*)
    [RSP+7D00] 0x7FF69CD99DA8     (void* -> Fallout4.exe+5B59DA8     |  aDiveBombChance_5B59DA8)
    [RSP+7D08] 0x2E6781AFB60      (void*)
    [RSP+7D10] 0x0                (size_t) [0]
    [RSP+7D18] 0x2E677DB60E8      (void*)
    [RSP+7D20] 0x2                (size_t) [2]
    [RSP+7D28] 0x2E6E8510470      (void*)
    [RSP+7D30] 0x0                (size_t) [0]
    [RSP+7D38] 0x7FF698D4F372     (void* -> Fallout4.exe+1B0F372    mov rbx, [rsp+0x30] |  MemoryManager::Deallocate(void*,bool)_1B0F372)
    [RSP+7D40] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+7D48] 0x2E678167210      (void*)
    [RSP+7D50] 0x2E6E8510470      (void*)
    [RSP+7D58] 0x2E678167214      (void*)
    [RSP+7D60] 0x12               (size_t) [18]
    [RSP+7D68] 0x7FF69995D648     (void* -> Fallout4.exe+271D648    test rbx, rbx |  BSScript::SimpleAllocMemoryPagePolicy::DisposePage(BSTSmartPointer<BSScript::MemoryPage,BSTSmartPointerAutoPtr>&)_271D648)
    [RSP+7D70] 0x7FF69CCFD9D4     (void* -> Fallout4.exe+5ABD9D4    add [rax], al |  aDiveBombChance_5ABD9D4)
    [RSP+7D78] 0x0                (size_t) [0]
    [RSP+7D80] 0x2E6E8510470      (void*)
    [RSP+7D88] 0xC391E000C391E000 (size_t) [uint: 14092291002904731648 int: -4354453070804819968]
    [RSP+7D90] 0x0                (size_t) [0]
    [RSP+7D98] 0x2E677DB60C8      (void*)
    [RSP+7DA0] 0x2E677DB60C8      (void*)
    [RSP+7DA8] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+7DB0] 0x2E67EE305F0      (void*)
    [RSP+7DB8] 0x7FF698529D24     (void* -> Fallout4.exe+12E9D24    test eax, eax |  BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>::`scalar_deleting_destructor'(uint)_12E9D24)
    [RSP+7DC0] 0xF63ABFE470       (void*)
    [RSP+7DC8] 0x0                (size_t) [0]
    [RSP+7DD0] 0x2E5CF1F08E0      (void*)
    [RSP+7DD8] 0x7FF6999A80B6     (void* -> Fallout4.exe+27680B6    cmp eax, 0xFFFFFFFF |  BSScript::Internal::VirtualMachine::PushTask(BSScript::Internal::CodeTasklet*)_27680B6)
    [RSP+7DE0] 0xF63ABFE468       (void*)
    [RSP+7DE8] 0x7FF699930A55     (void* -> Fallout4.exe+26F0A55    cmp eax, 0x06 |  BSScript::Variable::Cleanup(void)_26F0A55)
    [RSP+7DF0] 0x12               (size_t) [18]
    [RSP+7DF8] 0x0                (size_t) [0]
    [RSP+7E00] 0x7FF699E8A948     (void* -> Fallout4.exe+2C4A948    shl byte ptr [rdx], 0x01 |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C4A948)
    [RSP+7E08] 0x2E5CF1F8940      (void*)
    [RSP+7E10] 0x12               (size_t) [18]
    [RSP+7E18] 0x7FF69997FAB6     (void* -> Fallout4.exe+273FAB6    mov rax, [rsp+0x70] |  BSScript::Internal::VirtualMachine::AttemptFunctionReturn(BSScript::Stack*,bool,bool)_273FAB6)
    [RSP+7E20] 0x0                (size_t) [0]
    [RSP+7E28] 0xF63ABFE530       (void*)
    [RSP+7E30] 0xF63ABFE400       (void*)
    [RSP+7E38] 0x12               (size_t) [18]
    [RSP+7E40] 0x44D9780044D97800 (size_t) [4961128407075747840]
    [RSP+7E48] 0x44D9780044D97800 (size_t) [4961128407075747840]
    [RSP+7E50] 0x7FF69D95E5E0     (void* -> Fallout4.exe+671E5E0    add [rax], al |  aDiveBombChance_671E5E0)
    [RSP+7E58] 0x2E673DC9398      (BSScript::ObjectTypeInfo*)
        Name: "WorkshopFramework:Quests:CanarySaveFileMonitor"
    [RSP+7E60] 0x0                (size_t) [0]
    [RSP+7E68] 0x0                (size_t) [0]
    [RSP+7E70] 0x0                (size_t) [0]
    [RSP+7E78] 0x43925CC043925CC0 (size_t) [4869056127978069184]
    [RSP+7E80] 0xC2BD6700C2BD6700 (size_t) [uint: 14032485266921187072 int: -4414258806788364544]
    [RSP+7E88] 0xC2BD6700C2BD6700 (size_t) [uint: 14032485266921187072 int: -4414258806788364544]
    [RSP+7E90] 0x2E6E8510470      (void*)
    [RSP+7E98] 0x4226E2004226E200 (size_t) [4766745746355970560]
    [RSP+7EA0] 0xC3ACDA40C3ACDA40 (size_t) [uint: 14099884505085827648 int: -4346859568623723968]
    [RSP+7EA8] 0xC3ACDA40C3ACDA40 (size_t) [uint: 14099884505085827648 int: -4346859568623723968]
    [RSP+7EB0] 0xC2C0C100C2C0C100 (size_t) [uint: 14033428647898038528 int: -4413315425811513088]
    [RSP+7EB8] 0xC2C0C100C2C0C100 (size_t) [uint: 14033428647898038528 int: -4413315425811513088]
    [RSP+7EC0] 0xC3F1E6C0C3F1E6C0 (size_t) [uint: 14119320022378735296 int: -4327424051330816320]
    [RSP+7EC8] 0xC3F1E6C0C3F1E6C0 (size_t) [uint: 14119320022378735296 int: -4327424051330816320]
    [RSP+7ED0] 0x0                (size_t) [0]
    [RSP+7ED8] 0x0                (size_t) [0]
    [RSP+7EE0] 0x0                (size_t) [0]
    [RSP+7EE8] 0x0                (size_t) [0]
    [RSP+7EF0] 0x0                (size_t) [0]
    [RSP+7EF8] 0x0                (size_t) [0]
    [RSP+7F00] 0x0                (size_t) [0]
    [RSP+7F08] 0x0                (size_t) [0]
    [RSP+7F10] 0x0                (size_t) [0]
    [RSP+7F18] 0x0                (size_t) [0]
    [RSP+7F20] 0x0                (size_t) [0]
    [RSP+7F28] 0x0                (size_t) [0]
    [RSP+7F30] 0xEB10             (size_t) [60176]
    [RSP+7F38] 0x7FF698D83C21     (void* -> Fallout4.exe+1B43C21    test eax, eax |  `anonymous_namespace'::FindEntry<char>(BSStringPool::Entry*&,char*,ushort,bool)_1B43C21)
    [RSP+7F40] 0x0                (size_t) [0]
    [RSP+7F48] 0x7FFFAE276480     (void* -> MSVCR110.dll+0036480    jmp 0x00007FFFAE27644D)
    [RSP+7F50] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7F58] 0x0                (size_t) [0]
    [RSP+7F60] 0x2E6685DC900      (char*) "fBarterSellMax"
    [RSP+7F68] 0x7FF698D83EF1     (void* -> Fallout4.exe+1B43EF1    test al, al |  `anonymous_namespace'::GetEntry<char>(BSStringPool::Entry*&,char*,bool)_1B43EF1)
    [RSP+7F70] 0x0                (size_t) [0]
    [RSP+7F78] 0x7FF69A04F340     (void* -> Fallout4.exe+2E0F340    add [rax], al |  aDiveBombChance_2E0F340)
    [RSP+7F80] 0x7FF69CE27680     (void* -> Fallout4.exe+5BE7680    add [rax], al |  aDiveBombChance_5BE7680)
    [RSP+7F88] 0x7FFFAE276480     (void* -> MSVCR110.dll+0036480    jmp 0x00007FFFAE27644D)
    [RSP+7F90] 0x7FF69CE27DE0     (BSSystemFileStreamer::Streamer*)
    [RSP+7F98] 0x0                (size_t) [0]
    [RSP+7FA0] 0xF0000000E        (size_t) [64424509454]
    [RSP+7FA8] 0x2E6685DC8E8      (void*)
    [RSP+7FB0] 0x2E6823A6088      (void*)
    [RSP+7FB8] 0x7FF698961A05     (void* -> Fallout4.exe+1721A05    mov [rbx+0x08], rbp |  BSTArray<AnimVariableCacheInfo,BSTArrayHeapAllocator>::Add<BSFixedString&,hkbVariableValue*>(BSFixedString&,hkbVariableValue*)_1721A05)
    [RSP+7FC0] 0x2E5F43CCB00      (BShkbAnimationGraph*)
    [RSP+7FC8] 0x7FF69885BE44     (void* -> Fallout4.exe+161BE44    mov r8, [rbx+0xA0] |  BShkbAnimationGraph::GetVariableSlot(BSFixedString&)_161BE44)
    [RSP+7FD0] 0x2E683125D40      (BShkbHkxDB::ProjectDBData*)
    [RSP+7FD8] 0x2E67837A6AC      (void*)
    [RSP+7FE0] 0x7FF699E896C8     (void* -> Fallout4.exe+2C496C8     |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C496C8)
    [RSP+7FE8] 0x2E6823A6088      (void*)
    [RSP+7FF0] 0x3                (size_t) [3]
    [RSP+7FF8] 0x7FF698961FDD     (void* -> Fallout4.exe+1721FDD    mov ecx, eax |  GetGraphVariableFromCacheHelper<bool>(BSFixedString&,bool&,BSTArray<AnimVariableCacheInfo,BSTArrayHeapAllocator>&,BSTSmartPointer<BShkbAnimationGraph,BSTSmartPointerIntrusiveRefCount>&,BSSpinLock&)_1721FDD)
    [RSP+8000] 0x2E6823A6088      (void*)
    [RSP+8008] 0x3                (size_t) [3]
    [RSP+8010] 0x2E6823A60C8      (void*)
    [RSP+8018] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+8020] 0x2E67837A664      (void*)
    [RSP+8028] 0x4                (size_t) [4]
    [RSP+8030] 0x2E6E8510470      (void*)
    [RSP+8038] 0x15CB             (size_t) [5579]
    [RSP+8040] 0xF63ABFEB20       (void*)
    [RSP+8048] 0x7FF698961715     (void* -> Fallout4.exe+1721715    add rsp, 0x38 |  BSAnimationGraphVariableCache::GetGraphVariable(BSFixedString&,bool&)_1721715)
    [RSP+8050] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+8058] 0xF63ABFEB20       (void*)
    [RSP+8060] 0x15CB             (size_t) [5579]
    [RSP+8068] 0x2E67837A6AC      (void*)
    [RSP+8070] 0x2E6823A60C8      (void*)
    [RSP+8078] 0x2E5B00A0000      (void*)
    [RSP+8080] 0x2E5B00A02B0      (void*)
    [RSP+8088] 0x7FF698004254     (void* -> Fallout4.exe+0DC4254    test al, al |  Actor::GetGraphVariableImpl(BSFixedString&,bool&)_DC4254)
    [RSP+8090] 0x40               (size_t) [64]
    [RSP+8098] 0x2E5B00A0D80      (void*)
    [RSP+80A0] 0x2E5B00A02AC      (void*)
    [RSP+80A8] 0x0                (size_t) [0]
    [RSP+80B0] 0x2E5CFC7FD90      (PlayerCharacter*)
        Flags: 0x00400408
        FormID: 0x00000014
        FormType: kACHR (65)
        Object Reference:
        File: "Fallout4.esm"
        Flags: 0x00040009
        FormID: 0x00000007
        FormType: kNPC_ (45)
        Flags: 0x00400408
        FormID: 0x00000014
        FormType: kACHR (65)
    [RSP+80B8] 0x7FF6986465AC     (void* -> Fallout4.exe+14065AC    test al, al |  GameScript::`anonymous_namespace'::mem_ObjectReference_GetAnimationVariableBool(BSScript::IVirtualMachine*,uint,TESObjectREFR*,BSFixedString&)_14065AC)
    [RSP+80C0] 0x2E67837A6AC      (void*)
    [RSP+80C8] 0x10               (size_t) [16]
    [RSP+80D0] 0x2E5AFED0000      (void*)
    [RSP+80D8] 0xF63ABFE7A9       (void*)
    [RSP+80E0] 0x4                (size_t) [4]
    [RSP+80E8] 0x7FF80CCFB3C7     (void* -> ntdll.dll+002B3C7    mov rdi, rax)
    [RSP+80F0] 0x2E5B00A0000      (void*)
    [RSP+80F8] 0x4                (size_t) [4]
    [RSP+8100] 0x30               (size_t) [48]
    [RSP+8108] 0x0                (size_t) [0]
    [RSP+8110] 0x20               (size_t) [32]
    [RSP+8118] 0x8                (size_t) [8]
    [RSP+8120] 0x2AFED0000        (size_t) [11541479424]
    [RSP+8128] 0x7FF80CCF5BA1     (void* -> ntdll.dll+0025BA1    test eax, eax)
    [RSP+8130] 0x3                (size_t) [3]
    [RSP+8138] 0x7FF80CCFB3C7     (void* -> ntdll.dll+002B3C7    mov rdi, rax)
    [RSP+8140] 0x2E5B00A0000      (void*)
    [RSP+8148] 0x0                (size_t) [0]
    [RSP+8150] 0x20               (size_t) [32]
    [RSP+8158] 0x7FF600000000     (size_t) [140694538682368]
    [RSP+8160] 0x2E5AE7849E0      (void*)
    [RSP+8168] 0x7FF80000052A     (size_t) [140703128618282]
    [RSP+8170] 0x205210377        (size_t) [8675984247]
    [RSP+8178] 0x2E80C9B7DF0      (void*)
    [RSP+8180] 0x2E5AE7849E0      (void*)
    [RSP+8188] 0x2                (size_t) [2]
    [RSP+8190] 0x2E5B00A0000      (void*)
    [RSP+8198] 0x0                (size_t) [0]
    [RSP+81A0] 0x0                (size_t) [0]
    [RSP+81A8] 0x2E5B00A3000      (void*)
    [RSP+81B0] 0xF63ABFE8A9       (void*)
    [RSP+81B8] 0x7FF80CCF5BA1     (void* -> ntdll.dll+0025BA1    test eax, eax)
    [RSP+81C0] 0x2E85F6F1D4A      (char*) "40.dll"
    [RSP+81C8] 0x1A               (size_t) [26]
    [RSP+81D0] 0xF63ABFEA18       (void*)
    [RSP+81D8] 0xF                (size_t) [15]
    [RSP+81E0] 0x2E80C9C76C0      (char*) "BakaScrapHeap.dll"
    [RSP+81E8] 0x7FF80CCF47B1     (void* -> ntdll.dll+00247B1    mov r9d, eax)
    [RSP+81F0] 0x2E5AE7849E0      (void*)
    [RSP+81F8] 0x2E500000503      (size_t) [3182570767619]
    [RSP+8200] 0x1F               (size_t) [31]
    [RSP+8208] 0x2E80C9B7DF0      (void*)
    [RSP+8210] 0x0                (size_t) [0]
    [RSP+8218] 0xF63ABF0000       (void*)
    [RSP+8220] 0x2E5B00A0000      (void*)
    [RSP+8228] 0x7FFFAB90E314     (void* -> mcm.dll+004E314    test eax, eax)
    [RSP+8230] 0x2E80C9C76C0      (char*) "BakaScrapHeap.dll"
    [RSP+8238] 0xF63ABFE950       (void*)
    [RSP+8240] 0xF                (size_t) [15]
    [RSP+8248] 0x7FFFAB90F0F8     (void* -> mcm.dll+004F0F8    test rax, rax)
    [RSP+8250] 0x2F               (size_t) [47]
    [RSP+8258] 0x2E5B2024460      (void*)
    [RSP+8260] 0x2E85F6F1D30      (char*) "C:/WINDOWS/SYSTEM32/MSVCP140.dll"
    [RSP+8268] 0x29               (size_t) [41]
    [RSP+8270] 0x2E80C9C6F70      (char*) "C:/WINDOWS/SYSTEM32/dbghelp.dll"
    [RSP+8278] 0x7FF80CCF47B1     (void* -> ntdll.dll+00247B1    mov r9d, eax)
    [RSP+8280] 0x0                (size_t) [0]
    [RSP+8288] 0x2E5AFED0000      (void*)
    [RSP+8290] 0x7FFFAB949BD0     (void* -> mcm.dll+0089BD0    add [rax], al)
    [RSP+8298] 0x7FF80CCF5BA1     (void* -> ntdll.dll+0025BA1    test eax, eax)
    [RSP+82A0] 0x0                (size_t) [0]
    [RSP+82A8] 0x7FFFAB8CE925     (void* -> mcm.dll+000E925    mov rsi, [rsp+0x48])
    [RSP+82B0] 0xF63ABFEA18       (void*)
    [RSP+82B8] 0x7FFFAB90E314     (void* -> mcm.dll+004E314    test eax, eax)
    [RSP+82C0] 0x2E5B46E9180      (Setting*)
    [RSP+82C8] 0xF63ABFEA38       (void*)
    [RSP+82D0] 0x2E5AE7849E0      (void*)
    [RSP+82D8] 0xF600000521       (size_t) [1056561956129]
    [RSP+82E0] 0x2E5B46E9180      (Setting*)
    [RSP+82E8] 0x2E80C9B7DF0      (void*)
    [RSP+82F0] 0xF63ABFEA18       (void*)
    [RSP+82F8] 0xF600000000       (size_t) [1056561954816]
    [RSP+8300] 0x522C343414BB     (size_t) [90349807867067]
    [RSP+8308] 0x50               (size_t) [80]
    [RSP+8310] 0x2E5B2074E7F      (void* -> LL_fourPlay_1_10_163.dll+0004E7F    sub rsp, rax)
    [RSP+8318] 0x2E67837A664      (void*)
    [RSP+8320] 0x2E66B746840      (NativeFunction2<StaticFunctionTag,VMArray<VMVariable>,StringCache::Ref,StringCache::Ref>*)
    [RSP+8328] 0x2E6E8510470      (void*)
    [RSP+8330] 0x157A             (size_t) [5498]
    [RSP+8338] 0x0                (size_t) [0]
    [RSP+8340] 0x2                (size_t) [2]
    [RSP+8348] 0xF63ABFEB10       (void*)
    [RSP+8350] 0xF63ABFEA19       (void*)
    [RSP+8358] 0x2E5B2075548      (void* -> LL_fourPlay_1_10_163.dll+0005548    test al, al)
    [RSP+8360] 0x2E85F6F1D30      (char*) "C:/WINDOWS/SYSTEM32/MSVCP140.dll"
    [RSP+8368] 0x2E5AFED0000      (void*)
    [RSP+8370] 0x2E66B751028      (NativeFunction2<StaticFunctionTag,float,StringCache::Ref,StringCache::Ref>*)
    [RSP+8378] 0x0                (size_t) [0]
    [RSP+8380] 0x1                (size_t) [1]
    [RSP+8388] 0x7FF69998187A     (void* -> Fallout4.exe+274187A    test al, al |  BSScript::Internal::VirtualMachine::GetObjectTypeImpl(BSFixedString&,BSTSmartPointer<BSScript::ObjectTypeInfo,BSTSmartPointerIntrusiveRefCount>&)_274187A)
    [RSP+8390] 0xF63ABFEA80       (void*)
    [RSP+8398] 0x15               (size_t) [21]
    [RSP+83A0] 0x0                (size_t) [0]
    [RSP+83A8] 0x0                (size_t) [0]
    [RSP+83B0] 0x0                (size_t) [0]
    [RSP+83B8] 0x0                (size_t) [0]
    [RSP+83C0] 0x0                (size_t) [0]
    [RSP+83C8] 0x0                (size_t) [0]
    [RSP+83D0] 0x0                (size_t) [0]
    [RSP+83D8] 0x0                (size_t) [0]
    [RSP+83E0] 0x0                (size_t) [0]
    [RSP+83E8] 0x7FF69A04F300     (void* -> Fallout4.exe+2E0F300    add [rax], al |  aDiveBombChance_2E0F300)
    [RSP+83F0] 0x7FF69CE278C0     (void* -> Fallout4.exe+5BE78C0    add [rax], al |  aDiveBombChance_5BE78C0)
    [RSP+83F8] 0x2E5F5181DB4      (void*)
    [RSP+8400] 0x2E7DB670020      (void*)
    [RSP+8408] 0x15               (size_t) [21]
    [RSP+8410] 0xE0000000D        (size_t) [60129542157]
    [RSP+8418] 0x2E67CAF4E38      (void*)
    [RSP+8420] 0xF63ABFEB88       (void*)
    [RSP+8428] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+8430] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+8438] 0x2E67837A664      (void*)
    [RSP+8440] 0x2E66B746840      (NativeFunction2<StaticFunctionTag,VMArray<VMVariable>,StringCache::Ref,StringCache::Ref>*)
    [RSP+8448] 0x2E6E8510470      (void*)
    [RSP+8450] 0x157A             (size_t) [5498]
    [RSP+8458] 0xFFFFFFFFFFFFFFFE (size_t) [uint: 18446744073709551614 int: -2]
    [RSP+8460] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+8468] 0x2E5B2077A1A      (void* -> LL_fourPlay_1_10_163.dll+0007A1A    mov rax, rbx)
    [RSP+8470] 0xF63ABFEB10       (void*)
    [RSP+8478] 0xF63ABFEB10       (void*)
    [RSP+8480] 0x2E67837A664      (void*)
    [RSP+8488] 0x2E67CAF4E50      (char*) "Gender.Female"
    [RSP+8490] 0x7FF600000000     (size_t) [140694538682368]
    [RSP+8498] 0x7FF6985221EF     (void* -> Fallout4.exe+12E21EF    test rax, rax |  GameScript::HandlePolicy::IsHandleLoaded(unsigned___int64)_12E21EF)
    [RSP+84A0] 0x2E67CAF4E50      (char*) "Gender.Female"
    [RSP+84A8] 0x2E5B207F6DF      (void* -> LL_fourPlay_1_10_163.dll+000F6DF    mov rbx, rax)
    [RSP+84B0] 0x0                (size_t) [0]
    [RSP+84B8] 0x7FF698522925     (void* -> Fallout4.exe+12E2925    mov rbx, rax |  GameScript::HandlePolicy::GetObjectForHandle(uint,unsigned___int64)_12E2925)
    [RSP+84C0] 0x0                (size_t) [0]
    [RSP+84C8] 0x7FF600000002     (size_t) [140694538682370]
    [RSP+84D0] 0xFFFFFFFFFFFFFFFE (size_t) [uint: 18446744073709551614 int: -2]
    [RSP+84D8] 0x7FF698646570     (void* -> Fallout4.exe+1406570    mov r11, rsp |  GameScript::`anonymous_namespace'::mem_ObjectReference_GetAnimationVariableBool(BSScript::IVirtualMachine*,uint,TESObjectREFR*,BSFixedString&)_1406570)
    [RSP+84E0] 0x2E67C95A900      (void*)
    [RSP+84E8] 0x7FF698529D24     (void* -> Fallout4.exe+12E9D24    test eax, eax |  BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>::`scalar_deleting_destructor'(uint)_12E9D24)
    [RSP+84F0] 0x2E67837A68C      (void*)
    [RSP+84F8] 0x7FF699931145     (void* -> Fallout4.exe+26F1145    cmp eax, 0x06 |  BSScript::Variable::Assign(BSScript::Variable&)_26F1145)
    [RSP+8500] 0x0                (size_t) [0]
    [RSP+8508] 0x0                (size_t) [0]
    [RSP+8510] 0x0                (size_t) [0]
    [RSP+8518] 0x0                (size_t) [0]
    [RSP+8520] 0x0                (size_t) [0]
    [RSP+8528] 0x0                (size_t) [0]
    [RSP+8530] 0x4                (size_t) [4]
    [RSP+8538] 0x2E66B746840      (NativeFunction2<StaticFunctionTag,VMArray<VMVariable>,StringCache::Ref,StringCache::Ref>*)
    [RSP+8540] 0xF63ABFF4D8       (void*)
    [RSP+8548] 0x7FF69994D767     (void* -> Fallout4.exe+270D767    test al, al |  BSScript::NF_util::NativeFunctionBase::Call(BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&,BSScript::ErrorLogger&,BSScript::Internal::VirtualMachine&,bool)_270D767)
    [RSP+8550] 0x2E67CAF5018      (void*)
    [RSP+8558] 0x12               (size_t) [18]
    [RSP+8560] 0xF63ABFEC60       (void*)
    [RSP+8568] 0x2E66B737398      (BSScript::NativeFunction1<TESObjectREFR,bool,BSFixedString const &>*)
        Function: "GetAnimationVariableBool"
        Object: "ObjectReference"
    [RSP+8570] 0xF63ABFEBA8       (void*)
    [RSP+8578] 0x2E67CAF4E38      (void*)
    [RSP+8580] 0x2E5E9501F50      (void*)
    [RSP+8588] 0x400002440        (size_t) [17179878464]
    [RSP+8590] 0xF6000000A0       (size_t) [1056561954976]
    [RSP+8598] 0x0                (size_t) [0]
    [RSP+85A0] 0x0                (size_t) [0]
    [RSP+85A8] 0x0                (size_t) [0]
    [RSP+85B0] 0x0                (size_t) [0]
    [RSP+85B8] 0x4000026C0        (size_t) [17179879104]
    [RSP+85C0] 0x7                (size_t) [7]
    [RSP+85C8] 0x7FF699972536     (void* -> Fallout4.exe+2732536    movzx edx, al |  BSScript::Internal::VirtualMachine::GetScriptObjectType(BSFixedString&,BSTSmartPointer<BSScript::ObjectTypeInfo,BSTSmartPointerIntrusiveRefCount>&)_2732536)
    [RSP+85D0] 0x7FF6000007DD     (size_t) [140694538684381]
    [RSP+85D8] 0x2E5E9504390      (void*)
    [RSP+85E0] 0x2E5E9504588      (void*)
    [RSP+85E8] 0x2E5E9501F50      (void*)
    [RSP+85F0] 0x4000026C0        (size_t) [17179879104]
    [RSP+85F8] 0x7                (size_t) [7]
    [RSP+8600] 0xC79D0000FFFFFFFF (size_t) [uint: 14383652789186199551 int: -4063091284523352065]
    [RSP+8608] 0x45F8000047B10000 (size_t) [5041779784044052480]
    [RSP+8610] 0xC79C000000000006 (size_t) [uint: 14383371309914521606 int: -4063372763795030010]
    [RSP+8618] 0x7FF698FBF7E3     (void* -> Fallout4.exe+1D7F7E3    mov eax, [rax] |  bhkNPCollisionObject::GetBodyId(void)_1D7F7E3)
    [RSP+8620] 0x2003A0202        (size_t) [8593736194]
    [RSP+8628] 0xC79E000099930A55 (size_t) [uint: 14383934262444493397 int: -4062809811265058219]
    [RSP+8630] 0x4604000047B10000 (size_t) [5045157483764580352]
    [RSP+8638] 0xC79D00000000000C (size_t) [uint: 14383652784891232268 int: -4063091288818319348]
    [RSP+8640] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+8648] 0x7FF698FBF6E1     (void* -> Fallout4.exe+1D7F6E1    mov rsi, [rsp+0x38] |  bhkNPCollisionObject::GetBody(void)_1D7F6E1)
    [RSP+8650] 0x2E5CFA4DD80      (void*)
    [RSP+8658] 0x7FF698CB240C     (void* -> Fallout4.exe+1A7240C    movaps xmm2, [rbx+0x10] |  hknpCharacterRigidBody::setAngularVelocity(hkVector4f&)_1A7240C)
    [RSP+8660] 0x0                (size_t) [0]
    [RSP+8668] 0x0                (size_t) [0]
    [RSP+8670] 0x0                (size_t) [0]
    [RSP+8678] 0x0                (size_t) [0]
    [RSP+8680] 0x3C1374BD         (size_t) [1007908029]
    [RSP+8688] 0x0                (size_t) [0]
    [RSP+8690] 0x0                (size_t) [0]
    [RSP+8698] 0x0                (size_t) [0]
    [RSP+86A0] 0x0                (size_t) [0]
    [RSP+86A8] 0x7FF69900BE04     (void* -> Fallout4.exe+1DCBE04    mov rbx, [rsp+0xF8] |  bhkCharRigidBodyController::RotateImpl(hkTransformf&,bool)_1DCBE04)
    [RSP+86B0] 0x2E5CF57E430      (hknpBSWorld*)
    [RSP+86B8] 0xF63ABFEE10       (void*)
    [RSP+86C0] 0x1                (size_t) [1]
    [RSP+86C8] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+86D0] 0x0                (size_t) [0]
    [RSP+86D8] 0x3F800000B3000000 (size_t) [4575657224411545600]
    [RSP+86E0] 0x0                (size_t) [0]
    [RSP+86E8] 0x0                (size_t) [0]
    [RSP+86F0] 0x0                (size_t) [0]
    [RSP+86F8] 0x3F6854B6BED70501 (size_t) [4568994965829911809]
    [RSP+8700] 0x0                (size_t) [0]
    [RSP+8708] 0x3F6854B6BED70502 (size_t) [4568994965829911810]
    [RSP+8710] 0x0                (size_t) [0]
    [RSP+8718] 0x0                (size_t) [0]
    [RSP+8720] 0xBF4323B03F25B34C (size_t) [uint: 13781898524564501324 int: -4664845549145050292]
    [RSP+8728] 0x80000000         (size_t) [2147483648]
    [RSP+8730] 0x3F25B34C3F4323B0 (size_t) [4550240138588005296]
    [RSP+8738] 0x0                (size_t) [0]
    [RSP+8740] 0x8000000000000000 (size_t) [uint: 9223372036854775808 int: -9223372036854775808]
    [RSP+8748] 0x3C4CC0003F800000 (size_t) [4345058847803572224]
    [RSP+8750] 0x44A26099C4900EBC (size_t) [4945621554350263996]
    [RSP+8758] 0x42E237F2         (size_t) [1122121714]
    [RSP+8760] 0x3F4323B13F25B34A (size_t) [4558526492004692810]
    [RSP+8768] 0x0                (size_t) [0]
    [RSP+8770] 0x0                (size_t) [0]
    [RSP+8778] 0x0                (size_t) [0]
    [RSP+8780] 0xF63ABFF160       (void*)
    [RSP+8788] 0x7FF698FDAAFC     (void* -> Fallout4.exe+1D9AAFC    movaps xmm6, [rsp+0xB0] |  bhkCharacterController::ApplyRotation(hkQuaternionf&,bool)_1D9AAFC)
    [RSP+8790] 0xF63ABFEF70       (void*)
    [RSP+8798] 0x7FF698FBF7E3     (void* -> Fallout4.exe+1D7F7E3    mov eax, [rax] |  bhkNPCollisionObject::GetBodyId(void)_1D7F7E3)
    [RSP+87A0] 0xF63ABFEEA8       (void*)
    [RSP+87A8] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+87B0] 0x12               (size_t) [18]
    [RSP+87B8] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+87C0] 0x2E66B8CCB28      (void*)
    [RSP+87C8] 0x38               (size_t) [56]
    [RSP+87D0] 0x2E67C95A900      (void*)
    [RSP+87D8] 0xF63ABFF418       (void*)
    [RSP+87E0] 0xF63ABFEF70       (void*)
    [RSP+87E8] 0xF63ABFEEA8       (void*)
    [RSP+87F0] 0xF63ABFEEA8       (void*)
    [RSP+87F8] 0x7FF698D81F2C     (void* -> Fallout4.exe+1B41F2C    mov rax, rbx |  BSFixedString::operator=(BSFixedString&)_1B41F2C)
    [RSP+8800] 0xF63ABFF498       (void*)
    [RSP+8808] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+8810] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+8818] 0x0                (size_t) [0]
    [RSP+8820] 0x2E66B511CD8      (void*)
    [RSP+8828] 0x7FF69994DE70     (void* -> Fallout4.exe+270DE70    mov rax, [rbx+0x08] |  BSScript::Internal::VDescTable::GetParam(uint,BSFixedString&,BSScript::TypeInfo&)_270DE70)
    [RSP+8830] 0x0                (size_t) [0]
    [RSP+8838] 0x1                (size_t) [1]
    [RSP+8840] 0xF63ABFEF70       (void*)
    [RSP+8848] 0xF63ABFF498       (void*)
    [RSP+8850] 0x1                (size_t) [1]
    [RSP+8858] 0x7FF69998B317     (void* -> Fallout4.exe+274B317    inc esi |  BSScript::Internal::`anonymous_namespace'::ValidateSignatureAndFixupNones(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>&,BSScrapArray<BSScript::Variable>&,char*,uint)_274B317)
    [RSP+8860] 0xF63ABFF400       (void*)
    [RSP+8868] 0x1                (size_t) [1]
    [RSP+8870] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+8878] 0x2E67837A664      (void*)
    [RSP+8880] 0x12               (size_t) [18]
    [RSP+8888] 0x7FF69995D648     (void* -> Fallout4.exe+271D648    test rbx, rbx |  BSScript::SimpleAllocMemoryPagePolicy::DisposePage(BSTSmartPointer<BSScript::MemoryPage,BSTSmartPointerAutoPtr>&)_271D648)
    [RSP+8890] 0x7FF600000012     (size_t) [140694538682386]
    [RSP+8898] 0x0                (size_t) [0]
    [RSP+88A0] 0x2E6E8510470      (void*)
    [RSP+88A8] 0x2E63F25B34A      (size_t) [3187925168970]
    [RSP+88B0] 0x2E6E8510470      (void*)
    [RSP+88B8] 0x2E678072218      (void*)
    [RSP+88C0] 0x2E678072218      (void*)
    [RSP+88C8] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+88D0] 0x2E67C95A900      (void*)
    [RSP+88D8] 0x7FF698529D24     (void* -> Fallout4.exe+12E9D24    test eax, eax |  BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>::`scalar_deleting_destructor'(uint)_12E9D24)
    [RSP+88E0] 0xF63ABFEFA0       (void*)
    [RSP+88E8] 0x0                (size_t) [0]
    [RSP+88F0] 0x2E5CF1F08E0      (void*)
    [RSP+88F8] 0x7FF6999A80B6     (void* -> Fallout4.exe+27680B6    cmp eax, 0xFFFFFFFF |  BSScript::Internal::VirtualMachine::PushTask(BSScript::Internal::CodeTasklet*)_27680B6)
    [RSP+8900] 0xF63ABFEF98       (void*)
    [RSP+8908] 0x7FF699930A31     (void* -> Fallout4.exe+26F0A31    jmp 0x00007FF699930AA6 |  BSScript::Variable::Cleanup(void)_26F0A31)
    [RSP+8910] 0x12               (size_t) [18]
    [RSP+8918] 0x0                (size_t) [0]
    [RSP+8920] 0x7FF699E8A948     (void* -> Fallout4.exe+2C4A948    shl byte ptr [rdx], 0x01 |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C4A948)
    [RSP+8928] 0x2E5CF1F8940      (void*)
    [RSP+8930] 0x12               (size_t) [18]
    [RSP+8938] 0x7FF69997FAB6     (void* -> Fallout4.exe+273FAB6    mov rax, [rsp+0x70] |  BSScript::Internal::VirtualMachine::AttemptFunctionReturn(BSScript::Stack*,bool,bool)_273FAB6)
    [RSP+8940] 0x2E66A31B2E8      (BSScript::ObjectTypeInfo*)
        Name: "Actor"
    [RSP+8948] 0xF63ABFF050       (void*)
    [RSP+8950] 0xF63ABFEF00       (void*)
    [RSP+8958] 0x12               (size_t) [18]
    [RSP+8960] 0x0                (size_t) [0]
    [RSP+8968] 0x7FF699972536     (void* -> Fallout4.exe+2732536    movzx edx, al |  BSScript::Internal::VirtualMachine::GetScriptObjectType(BSFixedString&,BSTSmartPointer<BSScript::ObjectTypeInfo,BSTSmartPointerIntrusiveRefCount>&)_2732536)
    [RSP+8970] 0xF63ABFEFA0       (void*)
    [RSP+8978] 0x2E67CBA7810      (BSScript::ObjectTypeInfo*)
        Name: "ThreePMSF:ThreePMSFScript"
    [RSP+8980] 0x0                (size_t) [0]
    [RSP+8988] 0x2E66A4B35A8      (BSScript::ObjectTypeInfo*)
        Name: "ObjectReference"
    [RSP+8990] 0x0                (size_t) [0]
    [RSP+8998] 0x3E59F698         (size_t) [1046083224]
    [RSP+89A0] 0x1A2              (size_t) [418]
    [RSP+89A8] 0x6                (size_t) [6]
    [RSP+89B0] 0x2E6E8510470      (void*)
    [RSP+89B8] 0x7FF698FBF7E3     (void* -> Fallout4.exe+1D7F7E3    mov eax, [rax] |  bhkNPCollisionObject::GetBodyId(void)_1D7F7E3)
    [RSP+89C0] 0x73F8F126D        (size_t) [31131112045]
    [RSP+89C8] 0x0                (size_t) [0]
    [RSP+89D0] 0xBF80000000000000 (size_t) [uint: 13799029258263199744 int: -4647714815446351872]
    [RSP+89D8] 0x0                (size_t) [0]
    [RSP+89E0] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+89E8] 0x7FF698FBF6E1     (void* -> Fallout4.exe+1D7F6E1    mov rsi, [rsp+0x38] |  bhkNPCollisionObject::GetBody(void)_1D7F6E1)
    [RSP+89F0] 0x1C00000570       (size_t) [120259085680]
    [RSP+89F8] 0x2000000020       (size_t) [137438953504]
    [RSP+8A00] 0xC3065A00C3100400 (size_t) [uint: 14053018646575318016 int: -4393725427134233600]
    [RSP+8A08] 0xC2F0FD40         (size_t) [3270573376]
    [RSP+8A10] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+8A18] 0x7FF698FBF6E1     (void* -> Fallout4.exe+1D7F6E1    mov rsi, [rsp+0x38] |  bhkNPCollisionObject::GetBody(void)_1D7F6E1)
    [RSP+8A20] 0x570              (size_t) [1392]
    [RSP+8A28] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+8A30] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+8A38] 0x0                (size_t) [0]
    [RSP+8A40] 0x1                (size_t) [1]
    [RSP+8A48] 0x7FF697651443     (void* -> Fallout4.exe+0411443    mov rax, rbx |  TESObjectREFR::GetHandle(void)_411443)
    [RSP+8A50] 0x7FF69CC98830     (BGSFootIkRaycastInterfaceDB*)
    [RSP+8A58] 0xF63ABFF0E0       (void*)
    [RSP+8A60] 0x2E5CF57E430      (hknpBSWorld*)
    [RSP+8A68] 0x0                (size_t) [0]
    [RSP+8A70] 0x21E015           (size_t) [2220053]
    [RSP+8A78] 0x7FF697A47C4E     (void* -> Fallout4.exe+0807C4E    cmp ebx, [rax] |  BGSFootIkRaycastInterfaceDB::GetCastResults(TESObjectREFR&,bool&)_807C4E)
    [RSP+8A80] 0xBF4323B03F25B34C (size_t) [uint: 13781898524564501324 int: -4664845549145050292]
    [RSP+8A88] 0x80000000         (size_t) [2147483648]
    [RSP+8A90] 0x3F25B34C3F4323B0 (size_t) [4550240138588005296]
    [RSP+8A98] 0x0                (size_t) [0]
    [RSP+8AA0] 0x0                (size_t) [0]
    [RSP+8AA8] 0x2E5E37D91C0      (void*)
    [RSP+8AB0] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+8AB8] 0x285000           (size_t) [2641920]
    [RSP+8AC0] 0xF63ABFF1E0       (void*)
    [RSP+8AC8] 0x7FF697FCD5C3     (void* -> Fallout4.exe+0D8D5C3    mov rax, [0x00007FF69CCE4288] |  Actor::Move(float,NiPoint3&,bool)_D8D5C3)
    [RSP+8AD0] 0x2E50021E015      (size_t) [3182572986389]
    [RSP+8AD8] 0x2E5F4CA5290      (bhkCharRigidBodyController*)
    [RSP+8AE0] 0x2                (size_t) [2]
    [RSP+8AE8] 0x285000           (size_t) [2641920]
    [RSP+8AF0] 0x129001E          (size_t) [19464222]
    [RSP+8AF8] 0x1A00000F1A       (size_t) [111669153562]
    [RSP+8B00] 0x0                (size_t) [0]
    [RSP+8B08] 0xEBFFFFFF00000000 (size_t) [uint: 17005592188656025600 int: -1441151885053526016]
    [RSP+8B10] 0xC47F10DC4000FFFF (size_t) [uint: 14159054291628785663 int: -4287689782080765953]
    [RSP+8B18] 0xC53F4CA5C4FF10DC (size_t) [uint: 14213163223862939868 int: -4233580849846611748]
    [RSP+8B20] 0x47B193F8C79D8B13 (size_t) [5166072944280832787]
    [RSP+8B28] 0x8000000045F56546 (size_t) [uint: 9223372038028485958 int: -9223372035681065658]
    [RSP+8B30] 0x2E6828D76C0      (BSAnimationGraphManager*)
    [RSP+8B38] 0x46DD727143EE4580 (size_t) [5106363383304570240]
    [RSP+8B40] 0x416F01BEC4823420 (size_t) [4714989253732480032]
    [RSP+8B48] 0xC585B120C4385800 (size_t) [uint: 14232976951663417344 int: -4213767122046134272]
    [RSP+8B50] 0x80000000         (size_t) [2147483648]
    [RSP+8B58] 0xC4CDD4CE3F5DE6C9 (size_t) [uint: 14181224783951029961 int: -4265519289758521655]
    [RSP+8B60] 0x0                (size_t) [0]
    [RSP+8B68] 0x2E800000000      (size_t) [3195455668224]
    [RSP+8B70] 0x3C1374BD         (size_t) [1007908029]
    [RSP+8B78] 0x7FF699B20101     (void* -> Fallout4.exe+28E0101    xor al, 0xFF |  BSDistantTreeShaderMacros::GetPixelShaderID(uint)_28E0101)
    [RSP+8B80] 0x0                (size_t) [0]
    [RSP+8B88] 0x4384761E4397A460 (size_t) [4865143369822086240]
    [RSP+8B90] 0x435FBDF343543BCB (size_t) [4854807775832980427]
    [RSP+8B98] 0x4393CE4243998F56 (size_t) [4869462406114938710]
    [RSP+8BA0] 0x2E67837A660      (void*)
    [RSP+8BA8] 0x7FF698D5C613     (void* -> Fallout4.exe+1B1C613    mov rax, rdi |  BSSmallBlockAllocator::BaseAllocate(unsigned___int64,uint,bool)_1B1C613)
    [RSP+8BB0] 0x1                (size_t) [1]
    [RSP+8BB8] 0x7FF699B5074D     (void* -> Fallout4.exe+291074D    movsxd rdx, dword ptr [rbx+0x30] |  Umbra::KDTraverseStack<int>::pushChildren<1>(Umbra::KDTraverseEntry,float,bool,int,int)_291074D)
    [RSP+8BC0] 0x7FF69CD99DA8     (void* -> Fallout4.exe+5B59DA8     |  aDiveBombChance_5B59DA8)
    [RSP+8BC8] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+8BD0] 0x7FF69CD99900     (BSSmallBlockAllocator*)
    [RSP+8BD8] 0x7FF698D4F0B4     (void* -> Fallout4.exe+1B0F0B4    mov rbx, rax |  MemoryManager::Allocate(unsigned___int64,uint,bool)_1B0F0B4)
    [RSP+8BE0] 0x12               (size_t) [18]
    [RSP+8BE8] 0x84               (size_t) [132]
    [RSP+8BF0] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+8BF8] 0x1                (size_t) [1]
    [RSP+8C00] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+8C08] 0x7FF698D54913     (void* -> Fallout4.exe+1B14913    mov rcx, [rsp+0x30] |  ScrapHeap::InsertFreeBlock(ScrapHeap::FreeBlock*)_1B14913)
    [RSP+8C10] 0x1200000000       (size_t) [77309411328]
    [RSP+8C18] 0x2E6E850FAB0      (void*)
    [RSP+8C20] 0x2E6E8510470      (void*)
    [RSP+8C28] 0x7FF699930A55     (void* -> Fallout4.exe+26F0A55    cmp eax, 0x06 |  BSScript::Variable::Cleanup(void)_26F0A55)
    [RSP+8C30] 0xF63ABFF318       (void*)
    [RSP+8C38] 0x2E6E8510470      (void*)
    [RSP+8C40] 0x2E67837A660      (void*)
    [RSP+8C48] 0x7FF69995D90D     (void* -> Fallout4.exe+271D90D    jmp 0x00007FF69995D911 |  BSScript::IMemoryPagePolicy::CreatePage(uint,BSTSmartPointer<BSScript::MemoryPage,BSTSmartPointerAutoPtr>&)_271D90D)
    [RSP+8C50] 0x7FF69CCA9250     (void* -> Fallout4.exe+5A69250    add [rax], al |  aDiveBombChance_5A69250)
    [RSP+8C58] 0x7FF699931145     (void* -> Fallout4.exe+26F1145    cmp eax, 0x06 |  BSScript::Variable::Assign(BSScript::Variable&)_26F1145)
    [RSP+8C60] 0x12               (size_t) [18]
    [RSP+8C68] 0x2E67837A6B4      (void*)
    [RSP+8C70] 0x10               (size_t) [16]
    [RSP+8C78] 0x7FF69CCFD9B8     (BSScript::SimpleAllocMemoryPagePolicy*)
    [RSP+8C80] 0x12               (size_t) [18]
    [RSP+8C88] 0x7FF69995D3E8     (void* -> Fallout4.exe+271D3E8    test al, al |  BSScript::SimpleAllocMemoryPagePolicy::AllocatePage(uint,BSScript::IMemoryPagePolicy::NewPageStrategy,BSTSmartPointer<BSScript::MemoryPage,BSTSmartPointerAutoPtr>&)_271D3E8)
    [RSP+8C90] 0x2                (size_t) [2]
    [RSP+8C98] 0x10               (size_t) [16]
    [RSP+8CA0] 0x12               (size_t) [18]
    [RSP+8CA8] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+8CB0] 0x2E5CF1F0601      (void*)
    [RSP+8CB8] 0x2E6E8510470      (void*)
    [RSP+8CC0] 0x2E67837A664      (void*)
    [RSP+8CC8] 0x7FF699930A55     (void* -> Fallout4.exe+26F0A55    cmp eax, 0x06 |  BSScript::Variable::Cleanup(void)_26F0A55)
    [RSP+8CD0] 0x0                (size_t) [0]
    [RSP+8CD8] 0x2E7DB670020      (void*)
    [RSP+8CE0] 0x2E67837A6B4      (void*)
    [RSP+8CE8] 0x12               (size_t) [18]
    [RSP+8CF0] 0xF63ABFF401       (void*)
    [RSP+8CF8] 0x7FF699931062     (void* -> Fallout4.exe+26F1062    jmp 0x00007FF699931259 |  BSScript::Variable::Assign(BSScript::Variable&)_26F1062)
    [RSP+8D00] 0x0                (size_t) [0]
    [RSP+8D08] 0x2E67837A6B4      (void*)
    [RSP+8D10] 0x7FF69CDA7580     (void* -> Fallout4.exe+5B67580    add [rdx-0x33], al |  aDiveBombChance_5B67580)
    [RSP+8D18] 0x1                (size_t) [1]
    [RSP+8D20] 0xF63ABFF3B9       (void*)
    [RSP+8D28] 0x7FF699E9BF48     (void* -> Fallout4.exe+2C5BF48    and [rbp+0x3D], ah |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C5BF48)
    [RSP+8D30] 0x1                (size_t) [1]
    [RSP+8D38] 0xF63ABFF401       (void*)
    [RSP+8D40] 0x10               (size_t) [16]
    [RSP+8D48] 0x7FF699941FBE     (void* -> Fallout4.exe+2701FBE    mov rbx, [rsp+0x40] |  BSScript::StackFrame::InitFrame(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::ObjectTypeInfo,BSTSmartPointerIntrusiveRefCount>&,BSScript::Variable&,BSScrapArray<BSScript::Variable>&)_2701FBE)
    [RSP+8D50] 0x0                (size_t) [0]
    [RSP+8D58] 0x2E6E8510470      (void*)
    [RSP+8D60] 0x2                (size_t) [2]
    [RSP+8D68] 0x0                (size_t) [0]
    [RSP+8D70] 0x0                (size_t) [0]
    [RSP+8D78] 0x2E677DB35A8      (void*)
    [RSP+8D80] 0xF63ABFF460       (void*)
    [RSP+8D88] 0x7FF699943E97     (void* -> Fallout4.exe+2703E97    mov rbp, [rsp+0x78] |  BSScript::Stack::PushFrame(BSTSmartPointer<BSScript::IFunction,BSTSmartPointerIntrusiveRefCount>&,BSTSmartPointer<BSScript::ObjectTypeInfo,BSTSmartPointerIntrusiveRefCount>&,BSScript::Variable&,BSScrapArray<BSScript::Variable>&)_2703E97)
    [RSP+8D90] 0xF63ABFF470       (void*)
    [RSP+8D98] 0x0                (size_t) [0]
    [RSP+8DA0] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+8DA8] 0x0                (size_t) [0]
    [RSP+8DB0] 0xF63ABFF498       (void*)
    [RSP+8DB8] 0xF63ABFFBA0       (void*)
    [RSP+8DC0] 0x2E5CF1F0601      (void*)
    [RSP+8DC8] 0x2                (size_t) [2]
    [RSP+8DD0] 0xB9BC7C100        (size_t) [49858199808]
    [RSP+8DD8] 0xF63ABFFBA0       (void*)
    [RSP+8DE0] 0x0                (size_t) [0]
    [RSP+8DE8] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+8DF0] 0xF63ABFF510       (void*)
    [RSP+8DF8] 0x7FF69997F224     (void* -> Fallout4.exe+273F224    mov r15, [rbp-0x38] |  BSScript::Internal::VirtualMachine::AttemptFunctionCall(BSScript::Stack*,BSTSmartPointer<BSScript::Internal::IFuncCallQuery,BSTSmartPointerIntrusiveRefCount>&,bool)_273F224)
    [RSP+8E00] 0x12               (size_t) [18]
    [RSP+8E08] 0xF63ABFF510       (void*)
    [RSP+8E10] 0x7FF69CCFDA20     (GameScript::Logger*)
    [RSP+8E18] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+8E20] 0xF63ABFF400       (void*)
    [RSP+8E28] 0xF63ABFF498       (void*)
    [RSP+8E30] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+8E38] 0x2E66B746C08      (BSScript::ObjectTypeInfo*)
        Name: "LL_fourPlay"
    [RSP+8E40] 0x2E66B547CE0      (void*)
    [RSP+8E48] 0x0                (size_t) [0]
    [RSP+8E50] 0x2E66B746840      (NativeFunction2<StaticFunctionTag,VMArray<VMVariable>,StringCache::Ref,StringCache::Ref>*)
    [RSP+8E58] 0x1                (size_t) [1]
    [RSP+8E60] 0x0                (size_t) [0]
    [RSP+8E68] 0x0                (size_t) [0]
    [RSP+8E70] 0x36FC4D5000000001 (size_t) [3962126778171916289]
    [RSP+8E78] 0x2E66A4B35A8      (BSScript::ObjectTypeInfo*)
        Name: "ObjectReference"
    [RSP+8E80] 0x2E6E8510470      (void*)
    [RSP+8E88] 0x2E6E85103D0      (ScrapHeap*)
    [RSP+8E90] 0x2E7DB670010      (void*)
    [RSP+8E98] 0x7FF600000002     (size_t) [140694538682370]
    [RSP+8EA0] 0x2                (size_t) [2]
    [RSP+8EA8] 0x2E67CAB6268      (BSScript::ObjectTypeInfo*)
        Name: "aes:aes_kernel"
    [RSP+8EB0] 0x0                (size_t) [0]
    [RSP+8EB8] 0xF63ABFF5B0       (void*)
    [RSP+8EC0] 0x2E5DA7458B0      (void*)
    [RSP+8EC8] 0x2E677DB35A8      (void*)
    [RSP+8ED0] 0x2E682578618      (void*)
    [RSP+8ED8] 0x0                (size_t) [0]
    [RSP+8EE0] 0x0                (size_t) [0]
    [RSP+8EE8] 0x7FF698BFB675     (void* -> Fallout4.exe+19BB675    test al, al |  hkbSyncUtils::findAndInitializeSyncData(hkbGeneratorSyncInfo*,int,hkLocalArray<float>&,hkLocalArray<hkbGeneratorSyncInfo*>&,hkLocalBuffer<float>&,hkLocalArray<int>&,float&)_19BB675)
    [RSP+8EF0] 0x3ABF0000         (size_t) [985595904]
    [RSP+8EF8] 0x4000000000000002 (size_t) [4611686018427387906]
    [RSP+8F00] 0x2E500000000      (size_t) [3182570766336]
    [RSP+8F08] 0x7FF69761204C     (void* -> Fallout4.exe+03D204C    mov rbp, rax |  BSVisit::TraverseScenegraphNPCollision<_lambda_5939b18cff3e9c84ea1e648bfff6cde8_>(NiAVObject*,_lambda_5939b18cff3e9c84ea1e648bfff6cde8_&)_3D204C)
    [RSP+8F10] 0x12               (size_t) [18]
    [RSP+8F18] 0x7FF698D82FE8     (void* -> Fallout4.exe+1B42FE8    mov r10, rax |  BSStringPool::Entry::Release(BSStringPool::Entry*&)_1B42FE8)
    [RSP+8F20] 0x0                (size_t) [0]
    [RSP+8F28] 0x0                (size_t) [0]
    [RSP+8F30] 0x2E67C95A900      (void*)
    [RSP+8F38] 0x7FF698529D24     (void* -> Fallout4.exe+12E9D24    test eax, eax |  BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>::`scalar_deleting_destructor'(uint)_12E9D24)
    [RSP+8F40] 0x2E67D3002F4      (void*)
    [RSP+8F48] 0x0                (size_t) [0]
    [RSP+8F50] 0x2E6E8510470      (void*)
    [RSP+8F58] 0x12               (size_t) [18]
    [RSP+8F60] 0x0                (size_t) [0]
    [RSP+8F68] 0x7FF698D5C503     (void* -> Fallout4.exe+1B1C503    test dil, dil |  BSSmallBlockAllocator::DeallocateAlignImpl(void*&)_1B1C503)
    [RSP+8F70] 0x12               (size_t) [18]
    [RSP+8F78] 0x0                (size_t) [0]
    [RSP+8F80] 0x7FF69CD99DA8     (void* -> Fallout4.exe+5B59DA8     |  aDiveBombChance_5B59DA8)
    [RSP+8F88] 0x2E67D3AF500      (void*)
    [RSP+8F90] 0x0                (size_t) [0]
    [RSP+8F98] 0x2E672F17BC0      (BSResource::`anonymous namespace'::LooseFileStream*)
    [RSP+8FA0] 0x0                (size_t) [0]
    [RSP+8FA8] 0x2E6E8510470      (void*)
    [RSP+8FB0] 0x0                (size_t) [0]
    [RSP+8FB8] 0x7FF698D4F372     (void* -> Fallout4.exe+1B0F372    mov rbx, [rsp+0x30] |  MemoryManager::Deallocate(void*,bool)_1B0F372)
    [RSP+8FC0] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+8FC8] 0x2E67D3002A8      (void*)
    [RSP+8FD0] 0x2E6E8510470      (void*)
    [RSP+8FD8] 0x2E67D3002AC      (void*)
    [RSP+8FE0] 0x12               (size_t) [18]
    [RSP+8FE8] 0x7FF69995D648     (void* -> Fallout4.exe+271D648    test rbx, rbx |  BSScript::SimpleAllocMemoryPagePolicy::DisposePage(BSTSmartPointer<BSScript::MemoryPage,BSTSmartPointerAutoPtr>&)_271D648)
    [RSP+8FF0] 0x7FF69CCFD9D4     (void* -> Fallout4.exe+5ABD9D4    add [rax], al |  aDiveBombChance_5ABD9D4)
    [RSP+8FF8] 0x0                (size_t) [0]
    [RSP+9000] 0x2E6E8510470      (void*)
    [RSP+9008] 0x0                (size_t) [0]
    [RSP+9010] 0x0                (size_t) [0]
    [RSP+9018] 0x2E678234C98      (void*)
    [RSP+9020] 0x2E678234C98      (void*)
    [RSP+9028] 0x7FF699943CEC     (void* -> Fallout4.exe+2703CEC    dec esi |  BSScript::Stack::PopFrame(void)_2703CEC)
    [RSP+9030] 0x2E67F0ACFA0      (void*)
    [RSP+9038] 0x7FF698529D24     (void* -> Fallout4.exe+12E9D24    test eax, eax |  BSTSmartPointer<BSScript::Object,BSTSmartPointerIntrusiveRefCount>::`scalar_deleting_destructor'(uint)_12E9D24)
    [RSP+9040] 0xF63ABFF700       (void*)
    [RSP+9048] 0x0                (size_t) [0]
    [RSP+9050] 0x12               (size_t) [18]
    [RSP+9058] 0x2E67F0ACFA0      (void*)
    [RSP+9060] 0xF63ABFF6F8       (void*)
    [RSP+9068] 0x7FF699930A31     (void* -> Fallout4.exe+26F0A31    jmp 0x00007FF699930AA6 |  BSScript::Variable::Cleanup(void)_26F0A31)
    [RSP+9070] 0x12               (size_t) [18]
    [RSP+9078] 0x0                (size_t) [0]
    [RSP+9080] 0x12               (size_t) [18]
    [RSP+9088] 0x0                (size_t) [0]
    [RSP+9090] 0x12               (size_t) [18]
    [RSP+9098] 0x7FF69997FAB6     (void* -> Fallout4.exe+273FAB6    mov rax, [rsp+0x70] |  BSScript::Internal::VirtualMachine::AttemptFunctionReturn(BSScript::Stack*,bool,bool)_273FAB6)
    [RSP+90A0] 0x2E67BF939C8      (BSScript::ObjectTypeInfo*)
        Name: "at:ui"
    [RSP+90A8] 0xF63ABFF7B0       (void*)
    [RSP+90B0] 0x0                (size_t) [0]
    [RSP+90B8] 0x2E678234C78      (void*)
    [RSP+90C0] 0x0                (size_t) [0]
    [RSP+90C8] 0x0                (size_t) [0]
    [RSP+90D0] 0xF63ABFF700       (void*)
    [RSP+90D8] 0x0                (size_t) [0]
    [RSP+90E0] 0x0                (size_t) [0]
    [RSP+90E8] 0x2E67BF939C8      (BSScript::ObjectTypeInfo*)
        Name: "at:ui"
    [RSP+90F0] 0x0                (size_t) [0]
    [RSP+90F8] 0x7FF69806A71E     (void* -> Fallout4.exe+0E2A71E    test rax, rax |  AIProcess::GetPackageThatIsRunning(void)_E2A71E)
    [RSP+9100] 0x0                (size_t) [0]
    [RSP+9108] 0x0                (size_t) [0]
    [RSP+9110] 0x2E6E8510470      (void*)
    [RSP+9118] 0x7FF6996F332E     (void* -> Fallout4.exe+24B332E    jmp 0x00007FF6996F3332 |  BSNavmesh::IsPointInsideTriangle(ushort,NiPoint3&,FindTriangleForLocationFilter&,float&)_24B332E)
    [RSP+9120] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+9128] 0x7FF69803F2C2     (void* -> Fallout4.exe+0DFF2C2    test al, al |  Actor::IsInActiveCombat(void)_DFF2C2)
    [RSP+9130] 0x2E5F46CB340      (BShkbAnimationGraph*)
    [RSP+9138] 0xF63ABFF870       (void*)
    [RSP+9140] 0xF63ABFF7A0       (void*)
    [RSP+9148] 0x7F7FFFFF         (size_t) [2139095039]
    [RSP+9150] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+9158] 0x7FF698089E8D     (void* -> Fallout4.exe+0E49E8D    test al, al |  AIProcess::UpdateGunState(Actor&)_E49E8D)
    [RSP+9160] 0x47B18047C79D769C (size_t) [5166051293350688412]
    [RSP+9168] 0xF645F56546       (size_t) [1057735664966]
    [RSP+9170] 0x47B19A49C79DB0B9 (size_t) [5166079889242960057]
    [RSP+9178] 0xF645F56546       (size_t) [1057735664966]
    [RSP+9180] 0x47B1B3D7C79D8F3A (size_t) [5166107986919001914]
    [RSP+9188] 0x45F56546         (size_t) [1173710150]
    [RSP+9190] 0x47B193F8C79D8B13 (size_t) [5166072944280832787]
    [RSP+9198] 0x45F56546         (size_t) [1173710150]
    [RSP+91A0] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+91A8] 0xFFFFFFFF         (size_t) [4294967295]
    [RSP+91B0] 0x0                (size_t) [0]
    [RSP+91B8] 0xF63ABFFCA0       (void*)
    [RSP+91C0] 0x2E5E37D91D0      (void*)
    [RSP+91C8] 0x7FF6996F319C     (void* -> Fallout4.exe+24B319C    add rsp, 0x38 |  BSNavmesh::IsPointInsideTriangle(ushort,NiPoint3&,float&)_24B319C)
    [RSP+91D0] 0x2E5E544D520      (void*)
    [RSP+91D8] 0x7FF600000000     (size_t) [140694538682368]
    [RSP+91E0] 0xF63ABFFA01       (void*)
    [RSP+91E8] 0x2E67B899D00      (void*)
    [RSP+91F0] 0xF63ABFF930       (void*)
    [RSP+91F8] 0x7FF697338BC9     (void* -> Fallout4.exe+00F8BC9    movsxd rax, dword ptr [rsp+0x38] |  TES::GetCellPriority(TESObjectCELL*,NiPoint3*)_F8BC9)
    [RSP+9200] 0x2E5E37D91D0      (void*)
    [RSP+9208] 0x7FF6980891C6     (void* -> Fallout4.exe+0E491C6    mov rdi, [rsp+0xE0] |  AIProcess::GetCachedPathingLocation(Actor&,BSPathingLocation&)_E491C6)
    [RSP+9210] 0x2E5E544D520      (void*)
    [RSP+9218] 0x2E67B899D00      (void*)
    [RSP+9220] 0x2E5E37D9100      (Actor*)
        Object Reference:
        File: "SameSexMale.esp"
        Modified by: Fallout4.esm -> SameSexMale.esp
        Flags: 0x00040009
        FormID: 0x000A7D35
        FormType: kNPC_ (45)
        File: "FP_FamilyPlanningEnhanced.esp"
        Flags: 0x00420408
        FormID: 0x000A7D38
        FormType: kACHR (65)
    [RSP+9228] 0x7FF698078D73     (void* -> Fallout4.exe+0E38D73    cmp dword ptr [rbx+0x78], 0x00 |  AIProcess::IsWeaponSubgraphFinishedLoading(Actor&)_E38D73)
    [RSP+9230] 0x2E67F3837A0      (void*)
    [RSP+9238] 0xFFFFFFEC         (size_t) [4294967276]
    [RSP+9240] 0x0                (size_t) [0]
    [RSP+9248] 0x7FF699B3BF05     (void* -> Fallout4.exe+28FBF05    add rsp, 0x70 |  Umbra::Transformer::computeActivePlaneSet(Umbra::ActivePlaneSet&,Umbra::ActivePlaneSet*,__m128,__m128)_28FBF05)
    [RSP+9250] 0xC635B3A0C4EB2334 (size_t) [uint: 14282519296355279668 int: -4164224777354271948]
    [RSP+9258] 0xBE4DC500C58F6721 (size_t) [uint: 13712833047518209825 int: -4733911026191341791]
    [RSP+9260] 0xBDDC2D40BFE71C4C (size_t) [uint: 13680859524165475404 int: -4765884549544076212]
    [RSP+9268] 0xBE0EB2F03E1170EC (size_t) [uint: 13695080261783482604 int: -4751663811926069012]
    [RSP+9270] 0xBFE3E101BD941F30 (size_t) [uint: 13827142678549372720 int: -4619601395160178896]
    [RSP+9278] 0x800000003FBA67E4 (size_t) [uint: 9223372037923956708 int: -9223372035785594908]
    [RSP+9280] 0xBF1BEF06BDBB442B (size_t) [uint: 13770863097847432235 int: -4675880975862119381]
    [RSP+9288] 0xBE6084A6         (size_t) [3193996454]
    [RSP+9290] 0x47D00000C7980000 (size_t) [5174635975197327360]
    [RSP+9298] 0x3F80000046320000 (size_t) [4575657222586105856]
    [RSP+92A0] 0x47B80000C7B00000 (size_t) [5167880575757844480]
    [RSP+92A8] 0x3F80000045D00000 (size_t) [4575657222579683328]
    [RSP+92B0] 0x7CB91C10EE5D     (size_t) [137134481665629]
    [RSP+92B8] 0x3F800000460E1CDD (size_t) [4575657222583753949]
    [RSP+92C0] 0xFFFFFFFFFFFFFFFE (size_t) [uint: 18446744073709551614 int: -2]
    [RSP+92C8] 0x2E5C9AE72A0      (void*)
    [RSP+92D0] 0x0                (size_t) [0]
    [RSP+92D8] 0x7FF699AF7F1F     (void* -> Fallout4.exe+28B7F1F    lea r11, [rsp+0x4A0] |  Umbra::QueryExt::queryStaticShadowCasters(Umbra::ShadowCullerExt&,Umbra::IndexList&,Umbra::ObjectDistanceParams*,int,int,Umbra::IndexList*)_28B7F1F)
    [RSP+92E0] 0xF600009FBF       (size_t) [1056561995711]
    [RSP+92E8] 0x2E5C9AE72A0      (void*)
    [RSP+92F0] 0x2E600000004      (size_t) [3186865733636]
    [RSP+92F8] 0x2E5C9ACE298      (void*)
    [RSP+9300] 0xF63ABFF9A0       (void*)
    [RSP+9308] 0xF63ABFFA5C       (void*)
    [RSP+9310] 0x0                (size_t) [0]
    [RSP+9318] 0x2E5C9AE72A0      (void*)
    [RSP+9320] 0xBF2DF9533ED37A71 (size_t) [uint: 13775940971127863921 int: -4670803102581687695]
    [RSP+9328] 0xF00000000        (size_t) [64424509440]
    [RSP+9330] 0x2E50000091E      (size_t) [3182570768670]
    [RSP+9338] 0xF63ABFFA90       (void*)
    [RSP+9340] 0x47B1D725C79D4311 (size_t) [5166146804833403665]
    [RSP+9348] 0x3F80000045F9293D (size_t) [4575657222582380861]
    [RSP+9350] 0x2E600000002      (size_t) [3186865733634]
    [RSP+9358] 0x0                (size_t) [0]
    [RSP+9360] 0x2E53F1B343E      (size_t) [3183629513790]
    [RSP+9368] 0x0                (size_t) [0]
    [RSP+9370] 0x0                (size_t) [0]
    [RSP+9378] 0x7FF698D5C503     (void* -> Fallout4.exe+1B1C503    test dil, dil |  BSSmallBlockAllocator::DeallocateAlignImpl(void*&)_1B1C503)
    [RSP+9380] 0xC00000001        (size_t) [51539607553]
    [RSP+9388] 0x0                (size_t) [0]
    [RSP+9390] 0x7FF69CD99C40     (void* -> Fallout4.exe+5B59C40     |  aDiveBombChance_5B59C40)
    [RSP+9398] 0x2E672FAF660      (void*)
    [RSP+93A0] 0xF63ABFFB90       (void*)
    [RSP+93A8] 0x2E678234C90      (void*)
    [RSP+93B0] 0xB9BC7C163        (size_t) [49858199907]
    [RSP+93B8] 0x0                (size_t) [0]
    [RSP+93C0] 0x0                (size_t) [0]
    [RSP+93C8] 0x7FF698D4F372     (void* -> Fallout4.exe+1B0F372    mov rbx, [rsp+0x30] |  MemoryManager::Deallocate(void*,bool)_1B0F372)
    [RSP+93D0] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+93D8] 0x1                (size_t) [1]
    [RSP+93E0] 0x2E6E8510470      (void*)
    [RSP+93E8] 0x0                (size_t) [0]
    [RSP+93F0] 0x2E672F17BC0      (BSResource::`anonymous namespace'::LooseFileStream*)
    [RSP+93F8] 0x7FF698D51C28     (void* -> Fallout4.exe+1B11C28    mov rdi, [rsp+0x30] |  BSTSmallArrayHeapAllocatorCore::Deallocate(void)_1B11C28)
    [RSP+9400] 0x0                (size_t) [0]
    [RSP+9408] 0x7FF698D5C503     (void* -> Fallout4.exe+1B1C503    test dil, dil |  BSSmallBlockAllocator::DeallocateAlignImpl(void*&)_1B1C503)
    [RSP+9410] 0x2E6E8510470      (void*)
    [RSP+9418] 0x47A0000000000005 (size_t) [5161125172966588421]
    [RSP+9420] 0x7FF69CD99EC8     (void* -> Fallout4.exe+5B59EC8     |  aDiveBombChance_5B59EC8)
    [RSP+9428] 0x2E6783AE840      (void*)
    [RSP+9430] 0xF63ABFFB90       (void*)
    [RSP+9438] 0x2E6E8510470      (void*)
    [RSP+9440] 0xB9BC7C163        (size_t) [49858199907]
    [RSP+9448] 0x0                (size_t) [0]
    [RSP+9450] 0x0                (size_t) [0]
    [RSP+9458] 0x7FF698D4F372     (void* -> Fallout4.exe+1B0F372    mov rbx, [rsp+0x30] |  MemoryManager::Deallocate(void*,bool)_1B0F372)
    [RSP+9460] 0x7FF69AB0C980     (void* -> Fallout4.exe+38CC980    add [rax], eax |  aDiveBombChance_38CC980)
    [RSP+9468] 0x2BA4             (size_t) [11172]
    [RSP+9470] 0x2E5CF1F8900      (BSTCommonLLMessageQueue<BSScript::Internal::FunctionMessage>*)
    [RSP+9478] 0x2BA4             (size_t) [11172]
    [RSP+9480] 0x2E678234C78      (void*)
    [RSP+9488] 0x7FF69999D323     (void* -> Fallout4.exe+275D323    mov rax, rbx |  BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>::operator=(BSTSmartPointer<BSScript::Stack,BSTSmartPointerIntrusiveRefCount>&)_275D323)
    [RSP+9490] 0xF63ABFFB98       (void*)
    [RSP+9498] 0x0                (size_t) [0]
    [RSP+94A0] 0x0                (size_t) [0]
    [RSP+94A8] 0x0                (size_t) [0]
    [RSP+94B0] 0x2E5CF1F1B60      (void*)
    [RSP+94B8] 0x7FF6999A445D     (void* -> Fallout4.exe+276445D    nop [rax], eax |  BSTArray<BSTSmartPointer<BSScript::Struct,BSTSmartPointerIntrusiveRefCount>,BSTArrayHeapAllocator>::DestructItems(uint,uint)_276445D)
    [RSP+94C0] 0x2E5CF1F08E8      (BSTStaticFreeList<BSScript::Internal::FunctionMessage,1024>*)
    [RSP+94C8] 0x2E682911400      (void*)
    [RSP+94D0] 0x2E682917590      (char*) "hknpMaterial"
    [RSP+94D8] 0x7FF698D5093F     (void* -> Fallout4.exe+1B1093F    cmp [rdi], eax |  BSReadWriteLock::LockForRead(void)_1B1093F)
    [RSP+94E0] 0x1                (size_t) [1]
    [RSP+94E8] 0x7FF6999AC69B     (void* -> Fallout4.exe+276C69B    movzx ecx, al |  BSTCommonMessageQueue<BSScript::Internal::FunctionMessage>::TryPop(BSScript::Internal::FunctionMessage&)_276C69B)
    [RSP+94F0] 0x2BA4             (size_t) [11172]
    [RSP+94F8] 0x2E5CF1F8900      (BSTCommonLLMessageQueue<BSScript::Internal::FunctionMessage>*)
    [RSP+9500] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+9508] 0x7FF697392D26     (void* -> Fallout4.exe+0152D26    mov rbx, [rsp+0x30] |  TESForm::GetFormByNumericID(uint)_152D26)
    [RSP+9510] 0x0                (size_t) [0]
    [RSP+9518] 0x7FF69998328C     (void* -> Fallout4.exe+274328C    movzx ebp, al |  BSScript::Internal::VirtualMachine::PopNextFunctionMessage(BSScript::Internal::FunctionMessage&)_274328C)
    [RSP+9520] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+9528] 0x1                (size_t) [1]
    [RSP+9530] 0xB9BC7C163        (size_t) [49858199907]
    [RSP+9538] 0x0                (size_t) [0]
    [RSP+9540] 0x0                (size_t) [0]
    [RSP+9548] 0x4F0              (size_t) [1264]
    [RSP+9550] 0x7FF699FCDCE0     (void* -> Fallout4.exe+2D8DCE0    adc [rax+rdx*2-0x68], bh |  aDiveBombChance_2D8DCE0)
    [RSP+9558] 0x7FF6999801FF     (void* -> Fallout4.exe+27401FF    call 0x00007FF698D558F0 |  BSScript::Internal::VirtualMachine::ProcessMessageQueue(float,uint&,uint&)_27401FF)
    [RSP+9560] 0x2E5CF1F08E0      (void*)
    [RSP+9568] 0x2E677DB35A8      (void*)
    [RSP+9570] 0x2BA4             (size_t) [11172]
    [RSP+9578] 0x7FF697833800     (void* -> Fallout4.exe+05F3800    test rax, rax |  BSTArray<BSTSmallArray<BSPointerHandle<TESObjectREFR,BSUntypedPointerHandle<21,5>>,1>,BSTArrayHeapAllocator>::DestructItems(uint,uint)_5F3800)
    [RSP+9580] 0x1                (size_t) [1]
    [RSP+9588] 0x2E677DB35A8      (void*)
    [RSP+9590] 0x2E682534280      (BSScript::Internal::CodeTasklet*)
        Stack Trace:
[None].LL_fourPlay.GetCustomConfigOptions() - "<native>" Line ?
[<nullptr alias> (741) on <nullptr quest> (E422AFA0)].aes:aes_kernel.getHardcodedGender() - "<unknown file>" Line 0
[<nullptr alias> (741) on <nullptr quest> (E422AFA0)].aes:aes_kernel.::remote_Actor_OnPlayerLoadGame() - "<unknown file>" Line 0

    [RSP+9598] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+95A0] 0x3B38249D         (size_t) [993535133]
    [RSP+95A8] 0x0                (size_t) [0]
    [RSP+95B0] 0x3B38249D         (size_t) [993535133]
    [RSP+95B8] 0x0                (size_t) [0]
    [RSP+95C0] 0x2E5CF1F06A0      (BSScript::Internal::VirtualMachine*)
    [RSP+95C8] 0xB9BC7C0E8        (size_t) [49858199784]
    [RSP+95D0] 0x0                (size_t) [0]
    [RSP+95D8] 0x7FF69CE28088     (void* -> Fallout4.exe+5BE8088    add [rax], al |  aDiveBombChance_5BE8088)
    [RSP+95E0] 0x2E5CF1FC464      (void*)
    [RSP+95E8] 0x0                (size_t) [0]
    [RSP+95F0] 0xF63ABFFD10       (void*)
    [RSP+95F8] 0x7FF699971C37     (void* -> Fallout4.exe+2731C37    lea r8, [rbp+0x50] |  BSScript::Internal::VirtualMachine::Update(float)_2731C37)
    [RSP+9600] 0x4F0              (size_t) [1264]
    [RSP+9608] 0xF600000002       (size_t) [1056561954818]
    [RSP+9610] 0x2E6E850FAB0      (void*)
    [RSP+9618] 0x7FF69CE29600     (void* -> Fallout4.exe+5BE9600    movsb |  aDiveBombChance_5BE9600)
    [RSP+9620] 0x0                (size_t) [0]
    [RSP+9628] 0x0                (size_t) [0]
    [RSP+9630] 0x7FF699E8A901     (void* -> Fallout4.exe+2C4A901    xchg edi, eax |  hkbInternal::hks::execute<0>(hkbInternal::lua_State*,hkbInternal::hksInstruction*,int)_2C4A901)
    [RSP+9638] 0x7FF699930A55     (void* -> Fallout4.exe+26F0A55    cmp eax, 0x06 |  BSScript::Variable::Cleanup(void)_26F0A55)
    [RSP+9640] 0x0                (size_t) [0]
    [RSP+9648] 0x7FF6986BCDE2     (void* -> Fallout4.exe+147CDE2    test sil, sil |  BSTArray<BSTSmartPointer<GameScript::Internal::DistanceEventData,BSTSmartPointerIntrusiveRefCount>,BSTArrayHeapAllocator>::ConditionalRemove<_lambda_0364a2bfa982262576de34b187ab41bd_>(_lambda_0364a2bfa982262576de34b187ab41bd_&,bool)_147CDE2)
    [RSP+9650] 0x2E6898A8538      (void*)
    [RSP+9658] 0x2E6898A8538      (void*)
    [RSP+9660] 0x1                (size_t) [1]
    [RSP+9668] 0x2E67363D870      (TESObjectREFR*)
        Object Reference:
        File: "DLCNukaWorld.esm"
        Flags: 0x00400009
        EditorID: "DLC04WorkshopWorkbench"
        FormID: 0x06047DFA
        FormType: kCONT (31)
        File: "Unofficial Fallout 4 Patch.esp"
        Modified by: DLCNukaWorld.esm -> Unofficial Fallout 4 Patch.esp
        Flags: 0x00400409
        FormID: 0x0600BCE7
        FormType: kREFR (64)
    [RSP+9670] 0x7FF69CD1DAB0     (GameScript::TimerEventHandler*)
    [RSP+9678] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+9680] 0x2BA4             (size_t) [11172]
    [RSP+9688] 0x7FF6972644E3     (void* -> Fallout4.exe+00244E3    mov esi, eax |  BSSpinLock::Lock(char*)_244E3)
    [RSP+9690] 0x0                (size_t) [0]
    [RSP+9698] 0x0                (size_t) [0]
    [RSP+96A0] 0x0                (size_t) [0]
    [RSP+96A8] 0x0                (size_t) [0]
    [RSP+96B0] 0x0                (size_t) [0]
    [RSP+96B8] 0x0                (size_t) [0]
    [RSP+96C0] 0x0                (size_t) [0]
    [RSP+96C8] 0x0                (size_t) [0]
    [RSP+96D0] 0x0                (size_t) [0]
    [RSP+96D8] 0x0                (size_t) [0]
    [RSP+96E0] 0x0                (size_t) [0]
    [RSP+96E8] 0x0                (size_t) [0]
    [RSP+96F0] 0x0                (size_t) [0]
    [RSP+96F8] 0x0                (size_t) [0]
    [RSP+9700] 0x2E6898A8540      (void*)
    [RSP+9708] 0xB9BC7C0E8        (size_t) [49858199784]
    [RSP+9710] 0x7FF69CE28080     (void* -> Fallout4.exe+5BE8080    add [rax], al |  aDiveBombChance_5BE8080)
    [RSP+9718] 0x7FF69CE28088     (void* -> Fallout4.exe+5BE8088    add [rax], al |  aDiveBombChance_5BE8088)
    [RSP+9720] 0x7FF69CCFD8F0     (GameVM*)
    [RSP+9728] 0x0                (size_t) [0]
    [RSP+9730] 0x7FF69CE29630     (void* -> Fallout4.exe+5BE9630    xor [rbx], cl |  aDiveBombChance_5BE9630)
    [RSP+9738] 0xCA8              (size_t) [3240]
    [RSP+9740] 0x0                (size_t) [0]
    [RSP+9748] 0x7FF6985B2378     (void* -> Fallout4.exe+1372378    mov r15, [rsp+0x50] |  GameVM::Update(float)_1372378)
    [RSP+9750] 0xB00000000        (size_t) [47244640256]
    [RSP+9758] 0x56               (size_t) [86]
    [RSP+9760] 0x28               (size_t) [40]
    [RSP+9768] 0x2E600000000      (size_t) [3186865733632]
    [RSP+9770] 0x70               (size_t) [112]
    [RSP+9778] 0xD7800000028      (size_t) [14809047236648]
    [RSP+9780] 0x2E50000DE40      (size_t) [3182570823232]
    [RSP+9788] 0x0                (size_t) [0]
    [RSP+9790] 0x0                (size_t) [0]
    [RSP+9798] 0x0                (size_t) [0]
    [RSP+97A0] 0x7FF69CE28084     (void* -> Fallout4.exe+5BE8084    add [rax], al |  aDiveBombChance_5BE8084)
    [RSP+97A8] 0x1                (size_t) [1]
    [RSP+97B0] 0x7FF69CE28088     (void* -> Fallout4.exe+5BE8088    add [rax], al |  aDiveBombChance_5BE8088)
    [RSP+97B8] 0x0                (size_t) [0]
    [RSP+97C0] 0x0                (size_t) [0]
    [RSP+97C8] 0x7FF69CE29630     (void* -> Fallout4.exe+5BE9630    xor [rbx], cl |  aDiveBombChance_5BE9630)
    [RSP+97D0] 0x2E668630C30      (void*)
    [RSP+97D8] 0x7FF697EFD875     (void* -> Fallout4.exe+0CBD875    mov ecx, [0x00007FF69CCABCDC] |  JobListManager::VMUpdate(void*)_CBD875)
    [RSP+97E0] 0x2E600000000      (size_t) [3186865733632]
    [RSP+97E8] 0x70               (size_t) [112]
    [RSP+97F0] 0x7FF600000028     (size_t) [140694538682408]
    [RSP+97F8] 0x7FF80A7130CE     (void* -> KERNELBASE.dll+00230CE    nop [rax+rax*1], eax)
    [RSP+9800] 0x7FF69CE29630     (void* -> Fallout4.exe+5BE9630    xor [rbx], cl |  aDiveBombChance_5BE9630)
    [RSP+9808] 0x7FF698D90F26     (void* -> Fallout4.exe+1B50F26    mov ecx, [rbx+0x0C] |  BSJobs::JobListLocal::RunJobsInternal(uint,BSJobs::ThreadJobListState&,bool)_1B50F26)
    [RSP+9810] 0x7FF69CE29630     (void* -> Fallout4.exe+5BE9630    xor [rbx], cl |  aDiveBombChance_5BE9630)
    [RSP+9818] 0x0                (size_t) [0]
    [RSP+9820] 0x0                (size_t) [0]
    [RSP+9828] 0x7FF80A744E9D     (void* -> KERNELBASE.dll+0054E9D    nop [rax+rax*1], eax)
    [RSP+9830] 0x0                (size_t) [0]
    [RSP+9838] 0x0                (size_t) [0]
    [RSP+9840] 0x7FF69CE40240     (void* -> Fallout4.exe+5C00240    xor [rbx], cl |  aDiveBombChance_5C00240)
    [RSP+9848] 0x1                (size_t) [1]
    [RSP+9850] 0x7FF69CE295C0     (BSJobs::JobThread*)
    [RSP+9858] 0x7FF698D91432     (void* -> Fallout4.exe+1B51432    mov r14d, eax |  BSJobs::JobThread::RunJob(void)_1B51432)
    [RSP+9860] 0x1                (size_t) [1]
    [RSP+9868] 0x7FF69CE295E0     (void* -> Fallout4.exe+5BE95E0    add [rax], al |  aDiveBombChance_5BE95E0)
    [RSP+9870] 0x0                (size_t) [0]
    [RSP+9878] 0xF63ABFFEE0       (char*) "|Y"
    [RSP+9880] 0x0                (size_t) [0]
    [RSP+9888] 0x0                (size_t) [0]
    [RSP+9890] 0x0                (size_t) [0]
    [RSP+9898] 0x7FF698D93F67     (void* -> Fallout4.exe+1B53F67    movzx eax, byte ptr [rbx+0xA74] |  BSJobs::JobThread::ThreadProc(void)_1B53F67)
    [RSP+98A0] 0x7FF69CE295C0     (BSJobs::JobThread*)
    [RSP+98A8] 0x0                (size_t) [0]
    [RSP+98B0] 0x0                (size_t) [0]
    [RSP+98B8] 0x0                (size_t) [0]
    [RSP+98C0] 0x7FF69CE295C0     (BSJobs::JobThread*)
    [RSP+98C8] 0x7FF698D5CFED     (void* -> Fallout4.exe+1B1CFED    mov rcx, [0x00007FF69CD9BD38] |  BSThread::CallThreadProc(void)_1B1CFED)
    [RSP+98D0] 0x597C             (size_t) [22908]
    [RSP+98D8] 0xF63ABFFF00       (void*)
    [RSP+98E0] 0x2E66862EE70      (void*)
    [RSP+98E8] 0x0                (size_t) [0]
    [RSP+98F0] 0x7FF69CE295C0     (BSJobs::JobThread*)
    [RSP+98F8] 0x0                (size_t) [0]
    [RSP+9900] 0x0                (size_t) [0]
    [RSP+9908] 0x7FF80C7F7614     (void* -> KERNEL32.DLL+0017614    mov ecx, eax)
    [RSP+9910] 0x0                (size_t) [0]
    [RSP+9918] 0x0                (size_t) [0]
    [RSP+9920] 0x0                (size_t) [0]
    [RSP+9928] 0x0                (size_t) [0]
    [RSP+9930] 0x0                (size_t) [0]
    [RSP+9938] 0x7FF80CD226B1     (void* -> ntdll.dll+00526B1    jmp 0x00007FF80CD226D3)
    [RSP+9940] 0x0                (size_t) [0]
    [RSP+9948] 0x0                (size_t) [0]
    [RSP+9950] 0x0                (size_t) [0]
    [RSP+9958] 0x0                (size_t) [0]
    [RSP+9960] 0x0                (size_t) [0]
    [RSP+9968] 0x0                (size_t) [0]
    [RSP+9970] 0x6966E76700000000 (size_t) [7595012251174567936]
    [RSP+9978] 0x0                (size_t) [0]
    [RSP+9980] 0x0                (size_t) [0]
    [RSP+9988] 0x7FF80A81DBC0     (void* -> KERNELBASE.dll+012DBC0    mov [rsp+0x10], rbx)
    [RSP+9990] 0xF63ABF56A0       (void*)
    [RSP+9998] 0xF0C7CE794E0000FF (size_t) [uint: 17350063109863112959 int: -1096680963846438657]
    [RSP+99A0] 0x7FF863E73CA7     (size_t) [140704804715687]
    [RSP+99A8] 0xF63ABF56A0       (void*)
    [RSP+99B0] 0x0                (size_t) [0]
    [RSP+99B8] 0x0                (size_t) [0]
    [RSP+99C0] 0x0                (size_t) [0]
    [RSP+99C8] 0x0                (size_t) [0]
    [RSP+99D0] 0x0                (size_t) [0]
    [RSP+99D8] 0x0                (size_t) [0]
    [RSP+99E0] 0x0                (size_t) [0]
    [RSP+99E8] 0x0                (size_t) [0]

MODULES:
    XINPUT1_3.dll                      0x000000400000
    X3DAudio1_7.dll                    0x000069A10000
    steam_api64.dll                    0x000069A20000
    mdnsNSP.dll                        0x000069D90000
    tbb.dll                            0x000180000000
    tbbmalloc.dll                      0x02E5B1AC0000
    LL_fourPlay_1_10_163.dll           0x02E5B2070000
    BakaFramework.dll                  0x02E5B4850000
    amdxx64.dll                        0x02E6DA0F0000
    Fallout4.exe                       0x7FF697240000
    VERSION.dll                        0x7FF800BE0000
    dbghelp.dll                        0x7FF802A10000
    twinapi.appcore.dll                0x7FF8040D0000
    WindowManagementAPI.dll            0x7FF804320000
    avrt.dll                           0x7FF804920000
    WINHTTP.DLL                        0x7FF804BF0000
    WINNSI.DLL                         0x7FF804D60000
    dxcore.dll                         0x7FF804F80000
    wintypes.dll                       0x7FF805E40000
    d3d11.dll                          0x7FF805FA0000
    d3dcompiler_47.dll                 0x7FF806210000
    dcomp.dll                          0x7FF806C30000
    CoreUIComponents.dll               0x7FF806E20000
    CoreMessaging.dll                  0x7FF807500000
    apphelp.dll                        0x7FF807810000
    UxTheme.dll                        0x7FF8079F0000
    resourcepolicyclient.dll           0x7FF807AF0000
    dwmapi.dll                         0x7FF807BF0000
    PROPSYS.dll                        0x7FF8082B0000
    windows.storage.dll                0x7FF8083B0000
    HID.DLL                            0x7FF808BC0000
    kernel.appcore.dll                 0x7FF808BD0000
    dxgi.dll                           0x7FF808C20000
    schannel.DLL                       0x7FF809280000
    rsaenh.dll                         0x7FF809360000
    ntmarta.dll                        0x7FF809480000
    IPHLPAPI.DLL                       0x7FF809730000
    DNSAPI.dll                         0x7FF809770000
    netutils.dll                       0x7FF809840000
    MSWSOCK.dll                        0x7FF809A20000
    CRYPTBASE.DLL                      0x7FF809BB0000
    Wldp.dll                           0x7FF809C40000
    CRYPTSP.dll                        0x7FF809C80000
    NTASN1.dll                         0x7FF809D50000
    ncrypt.dll                         0x7FF809D90000
    MSASN1.dll                         0x7FF809EB0000
    DEVOBJ.dll                         0x7FF80A070000
    DPAPI.DLL                          0x7FF80A0D0000
    UMPDC.dll                          0x7FF80A1F0000
    powrprof.dll                       0x7FF80A210000
    SspiCli.dll                        0x7FF80A260000
    USERENV.dll                        0x7FF80A2A0000
    profapi.dll                        0x7FF80A2E0000
    msvcp_win.dll                      0x7FF80A3B0000
    WINTRUST.dll                       0x7FF80A450000
    win32u.dll                         0x7FF80A4C0000
    gdi32full.dll                      0x7FF80A4F0000
    bcrypt.dll                         0x7FF80A610000
    KERNELBASE.dll                     0x7FF80A6F0000
    CRYPT32.dll                        0x7FF80A9F0000
    ucrtbase.dll                       0x7FF80AB50000
    bcryptPrimitives.dll               0x7FF80AC50000
    cfgmgr32.dll                       0x7FF80ACE0000
    SHELL32.dll                        0x7FF80AD90000
    SHLWAPI.dll                        0x7FF80B4E0000
    combase.dll                        0x7FF80B540000
    ADVAPI32.dll                       0x7FF80B8A0000
    clbcatq.dll                        0x7FF80B9B0000
    MSCTF.dll                          0x7FF80BA60000
    SETUPAPI.dll                       0x7FF80BB80000
    IMM32.DLL                          0x7FF80BFF0000
    ole32.dll                          0x7FF80C020000
    OLEAUT32.dll                       0x7FF80C150000
    WS2_32.dll                         0x7FF80C220000
    imagehlp.dll                       0x7FF80C290000
    RPCRT4.dll                         0x7FF80C2B0000
    PSAPI.DLL                          0x7FF80C470000
    COMDLG32.dll                       0x7FF80C480000
    shcore.dll                         0x7FF80C5F0000
    sechost.dll                        0x7FF80C6A0000
    msvcrt.dll                         0x7FF80C740000
    KERNEL32.DLL                       0x7FF80C7E0000
    USER32.dll                         0x7FF80CA50000
    GDI32.dll                          0x7FF80CC50000
    NSI.dll                            0x7FF80CC80000
    ntdll.dll                          0x7FF80CCD0000
    DSOUND.DLL                         0x7FFFA9EB0000
    gameoverlayrenderer64.dll          0x7FFFA9F50000
    XAudio2_7.dll                      0x7FFFAAB50000
    XDI.dll                            0x7FFFAABE0000
    wsfw_identifier.dll                0x7FFFAB040000
    WhoseQuestIsItAnywayF4.dll         0x7FFFAB140000
    vertibird_jump.dll                 0x7FFFAB1A0000
    UnlimitedSurvivalMode.dll          0x7FFFAB1F0000
    SUP_F4SE.dll                       0x7FFFAB240000
    SprintSpeedController.dll          0x7FFFAB4D0000
    SettlementOfUnlimitedSize.dll      0x7FFFAB520000
    RustyFaceFix.dll                   0x7FFFAB570000
    RobCo_Patcher.dll                  0x7FFFAB5C0000
    PrivateProfileRedirector.dll       0x7FFFAB690000
    PowerGridTools.dll                 0x7FFFAB6F0000
    po3_SpellPerkItemDistributorF4.dll 0x7FFFAB760000
    Outfit-ReDress-Fix.dll             0x7FFFAB870000
    mcm.dll                            0x7FFFAB8C0000
    LighthousePapyrusExtender.dll      0x7FFFAB960000
    CONCRT140.dll                      0x7FFFABA40000
    Interior-NavCut-Fix.dll            0x7FFFABA90000
    HighFPSPhysicsFix.dll              0x7FFFABAE0000
    FloatingDamage.dll                 0x7FFFABB70000
    F4z Ro D'oh.dll                    0x7FFFABBD0000
    f4ee.dll                           0x7FFFABC40000
    CCExtenderF4.dll                   0x7FFFABD50000
    cbp.dll                            0x7FFFABDC0000
    Buffout4.dll                       0x7FFFABE40000
    BetterConsole.dll                  0x7FFFAC160000
    BakaScrapHeap.dll                  0x7FFFAC1D0000
    f4se_1_10_163.dll                  0x7FFFAC390000
    tier0_s64.dll                      0x7FFFAC470000
    vstdlib_s64.dll                    0x7FFFAC610000
    steamclient64.dll                  0x7FFFAC6D0000
    cudart64_75.dll                    0x7FFFADCC0000
    dxgi.dll                           0x7FFFADD20000
    flexRelease_x64.dll                0x7FFFAE0F0000
    MSVCR110.dll                       0x7FFFAE240000
    MSVCP110.dll                       0x7FFFAE320000
    WINHTTP.dll                        0x7FFFAE3D0000
    def_ui.dll                         0x7FFFB1BF0000
    GFSDK_GodraysLib.x64.dll           0x7FFFB1C90000
    GFSDK_SSAO_D3D11.win64.dll         0x7FFFC6380000
    ConsoleUtilF4.dll                  0x7FFFC7460000
    bink2w64.dll                       0x7FFFC74B0000
    cryptnet.dll                       0x7FFFE8B90000
    MSVCP140.dll                       0x7FFFE9530000
    MSIMG32.dll                        0x7FFFE9E90000
    VCRUNTIME140.dll                   0x7FFFEAB40000
    VCRUNTIME140_1.dll                 0x7FFFEB5F0000
    AUDIOSES.DLL                       0x7FFFEC050000
    MPR.dll                            0x7FFFEE3D0000
    ondemandconnroutehelper.dll        0x7FFFEFAF0000
    COMCTL32.dll                       0x7FFFF0730000
    gdiplus.dll                        0x7FFFF0F50000
    SprintStutteringFix.dll            0x7FFFF16F0000
    flexExtRelease_x64.dll             0x7FFFF1760000
    AcGenral.DLL                       0x7FFFF17C0000
    mskeyprotect.dll                   0x7FFFF18C0000
    ncryptsslp.dll                     0x7FFFF1940000
    winmmbase.dll                      0x7FFFF2510000
    Start10_64.dll                     0x7FFFF4720000
    Secur32.dll                        0x7FFFF5900000
    fwpuclnt.dll                       0x7FFFF5B10000
    rasadhlp.dll                       0x7FFFF5BE0000
    WININET.dll                        0x7FFFF63D0000
    f4se_steam_loader.dll              0x7FFFF70D0000
    amdihk64.dll                       0x7FFFF7A00000
    atidxx64.dll                       0x7FFFF7A40000
    WINMM.dll                          0x7FFFFD660000
    aticfx64.dll                       0x7FFFFD690000
    srvcli.dll                         0x7FFFFD860000
    urlmon.dll                         0x7FFFFD890000
    iertutil.dll                       0x7FFFFDBE0000
    textinputframework.dll             0x7FFFFF030000
    InputHost.dll                      0x7FFFFF130000
    Windows.UI.dll                     0x7FFFFF290000
    MSVCP140_ATOMIC_WAIT.dll           0x7FFFFF620000
    nvToolsExt64_1.dll                 0x7FFFFFB20000
    MMDevApi.dll                       0x7FFFFFBF0000

F4SE PLUGINS:
    BakaFramework.dll v1.9
    BakaScrapHeap.dll v1.3
    BetterConsole.dll
    Buffout4.dll v1.31.1
    cbp.dll
    CCExtenderF4.dll v1.2
    ConsoleUtilF4.dll v1.0.1
    def_ui.dll
    f4ee.dll
    F4z Ro D'oh.dll v1.1.6.1030
    FloatingDamage.dll
    HighFPSPhysicsFix.dll
    Interior-NavCut-Fix.dll v1.0.3
    LighthousePapyrusExtender.dll v1
    LL_fourPlay_1_10_163.dll v46
    mcm.dll
    Outfit-ReDress-Fix.dll v1
    po3_SpellPerkItemDistributorF4.dll v2
    PowerGridTools.dll
    PrivateProfileRedirector.dll
    RobCo_Patcher.dll v1
    RustyFaceFix.dll v2.0.1
    SettlementOfUnlimitedSize.dll
    SprintSpeedController.dll v1
    SprintStutteringFix.dll
    SUP_F4SE.dll
    UnlimitedSurvivalMode.dll
    vertibird_jump.dll
    WhoseQuestIsItAnywayF4.dll v1
    wsfw_identifier.dll
    XDI.dll

PLUGINS:
    [00]     Fallout4.esm
    [01]     DLCRobot.esm
    [02]     DLCworkshop01.esm
    [03]     DLCCoast.esm
    [04]     DLCworkshop02.esm
    [05]     DLCworkshop03.esm
    [06]     DLCNukaWorld.esm
    [07]     Unofficial Fallout 4 Patch.esp
    [08]     HUDFramework.esm
    [09]     WorkshopFramework.esm
    [0A]     XDI.esm
    [0B]     AAF.esm
    [0C]     Loads.esm
    [0D]     SS2.esm
    [0E]     SS2_XPAC_Chapter2.esm
    [0F]     TortureDevices.esm
    [10]     PANPC.esm
    [11]     INVB_OverlayFramework.esp
    [12]     MaleBodies_AMPatch.esm
    [13]     DamnApocalypse_CORE.esm
    [14]     VotWMaster.esm
    [15]     DamnApocalypse_Loot.esp
    [16]     AnyModAnyWeapon2.esp
    [17]     FurryFallout.esp
    [18]     ImmersiveGenericDialogues.esp
    [19]     PiperCaitCurieDialogueOverhaul.esp
    [1A]     FurryFalloutNPCs.esp
    [1B]     DamnApocalypse_PowerArmor.esp
    [1C]     RED.esp
    [1D]     DamnApocalypse_Radiation.esp
    [1E]     AM Skingen.esp
    [1F]     FurryFalloutDLC.esp
    [20]     FFO_NPC_DLC.esp
    [21]     SexAppealFramework.esp
    [22]     ImprovedBoS.esp
    [23]     Integration.esp
    [24]     3dscopes.esp
    [25]     NamedNPCProtect+UFOpatch.esp
    [26]     SS2Extended.esp
    [27]     FaceMaxson.esp
    [28]     SameSexMale.esp
    [29]     INVB_WastelandDairy.esp
    [2A]     AmazingFollowerTweaks.esp
    [2B]     Vivid Weathers - FO4.esp
    [2C]     CheatTerminal.esp
    [2D]     BoundInPublic.esp
    [2E]     VotWStarlightDriveIn.esp
    [2F]     Vivid Waters.esp
    [30]     FFO_NSFW.esp
    [31]     FP_FamilyPlanningEnhanced.esp
    [32]     SettlementMenuManager.esp
    [33]     Vault-Tec Workshop Overhaul Redux.esp
    [34]     Vault88 - Essentials.esp
    [35]     AA Better Companions - No Conflicts - Accuracy Beta.esp
    [36]     LooksMenu.esp
    [37]     BetterCompanions.esp
    [38]     Better Explosives Redux.esp
    [39]     GCM.esp
    [3A]     RealHandcuffs.esp
    [3B]     BetterSettlers.esp
    [3C]     No Bleedout.esp
    [3D]     Institute.esp
    [3E]     BadMan.esp
    [3F]     TakeCover.esp
    [40]     3dscopes-takecoverpatch.esp
    [41]     PD_VisualReload.esp
    [42]     Vivid Weathers - Nuka World.esp
    [43]     Vivid Weathers - FO4 - Far Harbor.esp
    [44]     Loads of Ammo - Leveled Lists.esp
    [45]     LadyKillerBed.esp
    [46]     MYLadyKillerBed.esp
    [47]     Gay Womaniser and Maneater.esp
    [48]     FO4 NPCs Travel.esp
    [49]     SKKRESystemManager.esp
    [4A]     The Eyes Of Beauty.esp
    [4B]     Lots More Male Hairstyles.esp
    [4C]     Lots More Facial Hair.esp
    [4D]     AnimatedTentacles.esp
    [4E]     FCOM.esp
    [4F]     SalvageBeacons.esp
    [50]     LooksMenu Customization Compendium.esp
    [51]     Piercings.esp
    [52]     HCSD PC 1.5x Enemy 1.5x.esp
    [53]     BetterSettlersMortalSoldiersPack.esp
    [54]     AzarPonytailHairstyles.esp
    [55]     Lots More Female Hairstyles.esp
    [56]     Beautiful Female Enemies - NR.esp
    [57]     Weapons of Fate.esp
    [58]     DansesWearableHolotags_v01-2.esp
    [59]     CompanionStatus.esp
    [5A]     AmazingFollowerTweaks_XDI_FIX.esp
    [5B]     SCM.esp
    [5C]     FusionGirl.esp
    [5D]     Farelle_Animations.esp
    [5E]     FO4_AnimationsByLeito.esp
    [5F]     Crazy_Animations_Gun.esp
    [60]     AAF_Four-Play_Animations_Crazy6987.esp
    [61]     Vadermania[AAF_anims].esp
    [62]     AAF_GrayAnimations.esp
    [63]     ImmersiveLoversEmbraceRemastered.esp
    [64]     Mutated Lust.esp
    [65]     AAF_CreaturePack01.esp
    [66]     rxl_bp70_animations.esp
    [67]     RED-DanseDilemma.esp
    [68]     AAF_BadEnd_Animations.esp
    [69]     INVB_WastelandOffspring.esp
    [6A]     AAF_CreaturePack02DLC.esp
    [6B]     Atomic Lust.esp
    [6C]     BraveAnims.esp
    [6D]     SavageCabbage_Animations.esp
    [6E]     ErectionFix_SilverPerv.esp
    [6F]     Deathclaw_nude.esp
    [70]     UAP Moans.esp
    [71]     AAF_Violate.esp
    [72]     Commonwealth Captives.esp
    [73]     TatsAfterRape.esp
    [74]     SlaveTattoos.esp
    [75]     FPAttributes.esp
    [76]     PornoMusic.esp
    [77]     Real Commonwealth Condoms.esp
    [78]     FP_SexualHarassment.esp
    [79]     ZaZOut4.esp
    [7A]     AFVPurgatory.esp
    [7B]     AAFExtendedStats.esp
    [7C]     AAF_AutonomyEnhanced.esp
    [7D]     SexEd.esp
    [7E]     CumOverlays.esp
    [7F]     DangerousNights.esp
    [80]     Raider Pet.esp
    [81]     Vioxsis_Strap-Ons.esp
    [82]     AFTforSSC.esp
    [83]     [ETH]EthnetsMeleeSounds.esp
    [84]     Fixed Alpha Maps.esp
    [85]     OverbossPA-Headlamp.esp
    [86]     Third Person Movement Speed Fix.esp
    [87]     SS2_CityPlanPack_RiseOfTheCommonwealth.esp
    [88]     FatherCompanion.esp
    [89]     RealAI.esp
    [8A]     real.AI - Untethered.esp
    [8B]     AutoDoors.esp
    [8C]     Complex Vendors.esp
    [8D]     Cooking Overhaul.esp
    [8E]     Flashy_CrimeAndPunishment.esp
    [8F]     RED-CAP.esp
    [90]     RZSex.esp
    [91]     ThirdPersonFirstPersonAiming.esp
    [92]     SKKCombatSettlers.esp
    [93]     SKKCombatStalkers.esp
    [94]     SKKDynamicDamageManager.esp
    [95]     SKKSettlementAttackSystem.esp
    [96]     SKKVertibirdWorldTravel.esp
    [97]     DamnApocalypse_CombatTweaks.esp
    [98]     Genetical Father 1.0.1.esp
    [99]     DaddyVideos01.esp
    [9A]     ShadAnimations.esp
    [9B]     ShadAnimationsDI.esp
    [9C]     MLPAnimsDI.esp
    [9D]     MLPAnims.esp
    [FE:000] BakaFramework.esm
    [FE:001] FATE Core - Tweaks.esl
    [FE:002] FATE Core - Fixes.esl
    [FE:003] Automatron Randomized Bots Framework.esm
    [FE:004] Corpse Collision.esl
    [FE:005] FusionGirlLooksMenu.esl
    [FE:006] PPF.esm
    [FE:007] GCM_DLC_Automatron.esl
    [FE:008] GCM_DLC_Far_Harbor.esl
    [FE:009] Laserturretspawner.esl
    [FE:00A] AAFThemes.esl
    [FE:00B] Bememoth Separated Cart.esl
    [FE:00C] AAFTurnTheLightON.esl
    [FE:00D] WashOutThatCum.esl
    [FE:00E] UlfEquip.esm
    [FE:00F] UnassignmentFix.esl
    [FE:010] FixRobotVisualEffects.esl
    [FE:011] SS2CityPlanContest_NordhagenBeach_Cessori_S3.esl
    [FE:012] SS2CityPlanContest_GreentopNursery_UNDRCVRGmrLdy_S3.esl
    [FE:013] SS2CityPlanContest_OutpostZimonja_GavMan_S3.esl
    [FE:014] SS2CityPlanContest_SanctuaryHills_WaningGibbous_S3.esl
    [FE:015] SS2CityPlanContest_EgretToursMarina_GavMan_S3.esl
    [FE:016] SS2CityPlanContest_OberlandStation_CryingCube_S3.esl
    [FE:017] SS2CityPlanContest_Warwick_xMORIDARx_S3.esl
    [FE:018] SS2CityPlanContest_NukaRedRocket_veelynnlove_S3.esl
    [FE:019] SS2CityPlanContest_SpectacleIsland_Blackbelt_S3.esl
    [FE:01A] SS2CityPlanContest_LongfellowsCabin_GavMan_S3.esl
    [FE:01B] SS2CityPlanContest_SomervillePlace_GavMan_S3.esl
    [FE:01C] SS2CityPlanContest_Murkwater_GavMan_S3.esl
    [FE:01D] SS2CityPlanContest_Covenant_GavMan_S3.esl
    [FE:01E] SS2CityPlanContest_Graygarden_UNDRCVRGmrLdy_S3.esl
    [FE:01F] SS2CityPlanContest_Tenpines Bluff_Karvoc_S3.esl
    [FE:020] SS2CityPlanContest_JamaicaPlain_Gavman_S3.esl
    [FE:021] SS2CityPlanContest_CoastalCottage_Cessori_S3.esl
    [FE:022] SS2CityPlanContest_StarlightDrivein_GavMan_S3.esl
    [FE:023] SS2CityPlanContest_FinchFarm_Gavman_S3.esl
    [FE:024] SS2CityPlanContest_DaltonFarm_veelynnlove_S3.esl
    [FE:025] SS2CityPlanContest_SunshineTidings_Carinth_S3.esl
    [FE:026] SS2CityPlanContest_TaffingtonBoathouse_SimSatan_S3.esl
    [FE:027] SS2CityPlanContest_HangmansAlley_xMORIDARx_S3.esl
    [FE:028] SS2CityPlanContest_RedRocket_xMORIDARx_S3.esl
    [FE:029] SS2CityPlanContest_Slog_NigauD_S3.esl
    [FE:02A] SS2CityPlanContest_NPVCenter_pedertl_S3.esl
    [FE:02B] SS2CityPlanContest_KingsportLighthouse_WaningGibbous_S3.esl
    [FE:02C] SS2CityPlanContest_CountyCrossing_WaningGibbous_S3.esl
    [FE:02D] SS2CityPlanContest_Vault88_GavMan_S3.esl
    [FE:02E] SS2CityPlanContest_EchoLakeLumber_NDCowdy_S2.esl
    [FE:02F] SS2CityPlanContest_TheCastle_GavMan_S3.esl
    [FE:030] SS2CityPlanContest_BostonAirport_NigauD_S3.esl
    [FE:031] SS2CityPlanContest_BunkerHill_NigauD_S3.esl
    [FE:032] SS2CityPlanContest_Abernathy_GavMan_S3.esl
    [FE:033] SS2CityPlanContest_MechanistsLair_tate1066_S3.esl
    [FE:034] SS2CityPlanContest_CroupManor_Gavman_S3.esl
    [FE:035] CanarySaveFileMonitor.esl
    [FE:036] DDLL.esl
    [FE:037] VotWSpecialVideos.esl
    [FE:038] FO4ParticlePatch.esp
    [FE:039] EnemyWeaponRandomizer_AMAW.esp
    [FE:03A] AUR_Rebuild_Shared.esp
    [FE:03B] AUR_Rebuild_AIO_Pt01.esp
    [FE:03C] Region Names on Save Files.esp
    [FE:03D] NPCs Protected Not Essential.esp
    [FE:03E] LOST Audio Tweaks.esp
    [FE:03F] Atomic Muscle.esp
    [FE:040] DeadInvisibleBodiesFix_ROF.esp
    [FE:041] INVB_WastelandStory.esp
    [FE:042] FATE Patch - Damn Apocalypse.esp
    [FE:043] Dank_ECO.esp
    [FE:044] PRP-SS2-Fixes-Ch2.esp
    [FE:045] whisperEnhancedTurrets.esp
    [FE:046] FATE Module - Tesla Free Power.esp
    [FE:047] Light Radius Redux AIO.esp
    [FE:048] Automatron Randomized Bots Overrider.esp
    [FE:049] Automatron Randomized Bots Overrider Unleveled.esp
    [FE:04A] Railroad.esp
    [FE:04B] Minutemen.esp
    [FE:04C] MaleCitizen.esp
    [FE:04D] SaveAcadiaFromBoS.esp
    [FE:04E] NPCs use Ammo - Far Harbor.esp
    [FE:04F] Danse GTFO Power Armor.esp
    [FE:050] BoSMan.esp
    [FE:051] AM Skingen - Far Harbour.esp
    [FE:052] BetterSettlersCleanFacePack.esp
    [FE:053] keke-bu All-in-one Pack_1.1.7.esp
    [FE:054] BoS_Danse.esp
    [FE:055] Minutemen_Preston.esp
    [FE:056] Railroad_Deacon.esp
    [FE:057] Prydwen_Maxson.esp
    [FE:058] AFT_Allow_X688_Face_Presets.esp
    [FE:059] AFT_Allow_Preston_Face_Presets.esp
    [FE:05A] AFT_Allow_Piper_Face_Presets.esp
    [FE:05B] EWR Melee AMAW.esp
    [FE:05C] StabAnim4All.esp
    [FE:05D] Realistic melee range.esp
    [FE:05E] PA-Quick Animations.esp
    [FE:05F] UlfSkinOverlay.esp
    [FE:060] Deathclaw Bodytalk.esp
    [FE:061] Depth of Field Removal.esp
    [FE:062] NPCs use ammo - Nukaworld.esp
    [FE:063] Vertibird Loadout Overhaul.esp
    [FE:064] NPCs use Ammo - Automatron.esp
    [FE:065] NPCs use Ammo - Vanilla.esp
    [FE:066] Arbitration - Automatron AI.esp
    [FE:067] Arbitration - Farther Grenade Detection.esp
    [FE:068] Arbitration - Better Combat AI.esp
    [FE:069] BetterSettlersNoLollygagging.esp
    [FE:06A] Weapons of Fate - Reduced Bullet Speed.esp
    [FE:06B] DV-No Levelled Vertibirds.esp
    [FE:06C] DV-Very Durable Vertibirds.esp
    [FE:06D] DV-Armored Pilots.esp
    [FE:06E] VertibirdsAnywhere.esp
    [FE:06F] AM Skingen - Nuka World.esp
    [FE:070] AM Skingen - Automatron.esp
    [FE:071] FATE Module - UNL + DCB Zones.esp
    [FE:072] Encounter Zones Adjusted.esp
    [FE:073] Zaz Particle Effects.esp
    [FE:074] BraveAnims_Fix.esp
    [FE:075] AAF_Violate_Feral_Animations.esp
    [FE:076] AAF_Violate_FCOM_Patch.esp
    [FE:077] AAF_Violate_DLC_Patch.esp
    [FE:078] UlfberthTattoos.esp
    [FE:079] FemaleSuperMutant.esp
    [FE:07A] CC_Outfit_Injector.esp
    [FE:07B] Vivid Weathers - Region Names Patch.esp
    [FE:07C] AFTSpouseTweaks.esp
    [FE:07D] PenPos.esp
    [FE:07E] SMBehemoth Loincloth.esp
    [FE:07F] SlaveTattoos_ROF.esp
    [FE:080] Fence Fix.esp
    [FE:081] Fixed Gobo Effects.esp
    [FE:082] VividFallout - AiO - BestChoice.esp
    [FE:083] Wetness Shader Fix.esp
    [FE:084] Gloomy Glass.esp
    [FE:085] Holly Fix.esp
    [FE:086] Rusty Face Fix.esp
    [FE:087] RBValentineJawSync.esp
    [FE:088] VividFallout - Quarry - BestChoice.esp
    [FE:089] Vivid Weathers - Settings.esp
    [FE:08A] SS2_DLCSettlerPatch.esp
    [FE:08B] SS2Extended_OutfitInjectionPatch.esp
    [FE:08C] M8rDisablePipboyEffects.esp
    [FE:08D] Vivid Fallout - LOD.esp
    [FE:08E] AAF_SCRS.esp
    [FE:08F] DiverseBodies.esp
    [FE:090] Patch AAF - DiverseBodies.esp
    [FE:091] dynamicHelmet.esp
    [FE:092] Vivid Fallout - Nuka World LOD.esp
    [FE:093] Vivid Fallout - Far Harbor LOD.esp
    [FE:094] AUR_RebuildSettlements_Workshop.esp
    [FE:095] AUR_RebuildSettlements_Workshop_AutoDoors.esp
    [FE:096] YouAndWhatArmy.esp
    [FE:097] Sexual Harassment FFO4 Patch.esp
    [FE:098] CompanionStatus-Settings.esp
    [FE:099] Outfit Leveled Lists Expansion Framework.esp
    [FE:09A] FATE Patch - Damn Apocalypse Doctors.esp
    [FE:09B] FATE Module - Basketball Crash Fix.esp
    [FE:09C] SS2_XDI Patch.esp
    [FE:09D] Pip-Boy Flashlight.esp
    [FE:09E] Dank_ECO_DLCNukaWorld.esp
    [FE:09F] Dank_ECO-INNR.esp
    [FE:0A0] Dank_ECO_DLCRobot.esp
    [FE:0A1] Dank_ECO_DLCCoast.esp
    [FE:0A2] PRP.esp
    [FE:0A3] PRP-Compat-RegionNames.esp
    [FE:0A4] AUR_Rebuild_AIO_Pt01_PRP.esp
    [FE:0A5] PRP-SS2-Fixes.esp
    [FE:0A6] PRP-SS2.esp
    [FE:0A7] M8r Complex Sorter.esp
    [FE:0A8] Bashed Patch, 0.esp
    [FE:0A9] Smashed Patch.esp

 

 

Was there a solution I'm not aware about?

 

Edit: Nevermind. I don't think LLFourplay is the only culprit. I'm going to try to narrow it down by disabling all of my mods and enable them until I can get it to crash again. It's some weird combination of AAF or its accompaning mods and Looksmenu that is causing it to crash

Edited by Mushano
Link to comment
  • 4 weeks later...

Create an account or sign in to comment

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

Create an account

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

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use