Hi. I configured my Windows to use WinDbg as default debugger and caught the same crash during a multiplayer game. It is caused by a NULL pointer dereference, a memory access violation that terminates the program:
15:54:16.531 SessionManager::Process() - Warning - Time between calls was 1219 ms, time waiting for lock was 0 ms
(6c0.40f0): Access violation - code c0000005 (!!! second chance !!!)
AoEDE_s+0x2aa3dd:
00007ff7`930fa3dd 488b4218 mov rax,qword ptr [rdx+18h] ds:00000000`00000018=????????????????
RDX is NULL (0x0) and it is attempted dereferenced at code location AoEDE_s+0x2aa3dd with an offset of 0x18. This is the call stack:
# Child-SP RetAddr Call Site
00 000000a4`e6efe940 00007ff7`930fa2d7 AoEDE_s+0x2aa3dd
01 000000a4`e6efe9a0 00007ff7`9318033b AoEDE_s+0x2aa2d7
02 000000a4`e6efe9e0 00007ff7`92f0d61e AoEDE_s+0x33033b
03 000000a4`e6efea30 00007ff7`92f0d0fa AoEDE_s+0xbd61e
04 000000a4`e6efea70 00007ff7`92f0baec AoEDE_s+0xbd0fa
05 000000a4`e6efead0 00007ff7`9300bb43 AoEDE_s+0xbbaec
06 000000a4`e6efeb40 00007ff7`92f2855a AoEDE_s+0x1bbb43
07 000000a4`e6efebc0 00007ff7`92f29de0 AoEDE_s+0xd855a
08 000000a4`e6efec40 00007ff7`931ad6af AoEDE_s+0xd9de0
09 000000a4`e6efec70 00007ff7`9306707f AoEDE_s+0x35d6af
0a 000000a4`e6efed60 00007ff7`93166275 AoEDE_s+0x21707f
0b 000000a4`e6efede0 00007ff7`92f25712 AoEDE_s+0x316275
0c 000000a4`e6eff740 00007ff7`92f9185b AoEDE_s+0xd5712
0d 000000a4`e6eff780 00007ff7`92f922f9 AoEDE_s+0x14185b
0e 000000a4`e6eff7c0 00007ff7`938a8c6e AoEDE_s+0x1422f9
0f 000000a4`e6eff830 00007fff`6f097bd4 AoEDE_s+0xa58c6e
10 000000a4`e6eff870 00007fff`709aced1 KERNEL32!BaseThreadInitThunk+0x14
11 000000a4`e6eff8a0 00000000`00000000 ntdll!RtlUserThreadStart+0x21
The developers should easily be able to identify this code path using their symbol files. 
I took the liberty do have a quick look at @PudnutTheBad’s memory dump as well and it crashes on the exact same place.
@PudnutTheBad’s dump is a mini-dump of 22.6MB, so I generated a full dump of 5.55GB in case it helps resolving this issue. You can download it here:
(ZIP, 2.08GB, expires in 6 days).