Jump to content

[1.8] Check if player is looking at the moon, whilst holding an item


DARKHAWX

Recommended Posts

Hey there,

So just like the title says, I want to have an item that when held will check, each tick, whether the player is holding said item, and if so, determine whether they are looking at the moon (the player must have line of sight, so no blocks in the way).

 

Now, I have a few small snippets of code that I'm pretty sure work, but I don't know how to piece it all together.

For example I think I can use

onUpdate()

to perform the checks each tick (and I think it also comes with a built in checkiftheplayerisholdingtheitem).

 

And I'm also sure that I can use

getCelestialAngle(0)

(with a bit of math I'm told) to get the current angle of the moon, and use

getLookVec()

to get the look vector of the player. But with all of this info I don't know how to put it together, and also how to check if the player can actually see the moon (there are no blocks in between). Does anyone know of a way to put this all together so it works?

 

 

No signature for you!

Link to comment
Share on other sites

With the lookvec there is a method to find the first non air block it finds to check for collisions.  I can't remember the name off the top of my head.  However, if you look out 100 blocks or so and see nothing but air, safe to say you can see the sky.  You need to play with the number until you are happy with it.

 

To see the moon though, you need to know exactly where it is in the sky.  the celestial angle will not be the whole story, there is another axis.  That is going to get somewhat complicated.  I think the moons/sun probably travels upon the x or z axis and the angle refers to the other axis.  There will be some trig in there for you to figure out what angle to the player that is and check to see if his look vector lines up with it.

 

Are you sure you want to do this?  Its going to get messy.

Long time Bukkit & Forge Programmer

Happy to try and help

Link to comment
Share on other sites

Yes, I do want to do this.

 

I knew it was probably going to be a bit messy, but I enjoy a challenge. The Maths part I'm not worried about at all. The main part I'm having trouble with us understand what methods I SHOULD be using together to find this out, and exactly what each methods returns.

 

 

 

As a super side note: how can I make a player hold my item like a thaumometer, or a map (when it covers the players screen)?

No signature for you!

Link to comment
Share on other sites

As far as i know the sun and moon are rendered based on the player position going from east to west meaning the x-Axis.

therefore i would try the following:

get the Look vector lets call him lv = player.getLook(1.0F); (length is 1)

now check if the z coordinate is close to 0 (by a chosen threshold you have to find out, maybe 0.1) meaning the player is looking east or west.

if that's true. set lv.z to 0 and create a vec3 x = new Vec3(1,0,0) basically the x-Axis.

With lv.dotproduct(x) you get the angle the player is looking up or down (in respect to the x-Axis). compare it the CelestialAngle (check with threshold, again) and TADA you are looking at the moon.

 

small hint: i don't know how the CelestialAngle is measured so this is only the basic idea i had after reading your question. it will be a lot of trial and error. For the line of sight, check OpenModularTurret on github. awesome coding-style, easy to read and helped me to write my own. https://github.com/OpenModularTurretsTeam/OpenModularTurrets/blob/master/src/main/java/openmodularturrets/util/TurretHeadUtil.java

It doesn't work, I don't know why.

It works, I don't know why.

Link to comment
Share on other sites

When you say "looking at", do you mean having the Moon in his cross-hairs? If so, then look for an aim method. I think the moon is an entity, so you might be able to get a bead on it like any other entity. You might hunt for where mobs try to see players to get clues.

 

Also: The graphics engine must do visibility math before deciding whether to render the moon graphically. If you can peek at its determination (client side only, and only if the player is using self point-of-view) then you can skip some maths. How and when you send a message to the server might be tricky though. Does the server even need to know? I missed the upshot of what you want to have happen when you test positive. If it's a purely visual effect, then the server doesn't need it.

 

BTW, All line-of-sight methods will have at least one hole: If a player is in a long enough East-West tunnel right at moon-rise or set, then the tunnel can pierce the rendering distance, making the moon visible even deep underground.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

-snip-

 

BTW, All line-of-sight methods will have at least one hole: If a player is in a long enough East-West tunnel right at moon-rise or set, then the tunnel can pierce the rendering distance, making the moon visible even deep underground.

That would be a problem... I'll have to look into some way of blocking this...

No signature for you!

Link to comment
Share on other sites

That would be a problem... I'll have to look into some way of blocking this...

 

if(player.posY < 64) { //probably underground }

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

That would be a problem... I'll have to look into some way of blocking this...

 

if(player.posY < 64) { //probably underground }

Well that's an easy solution, but it probably isn't the best.

 

 

So this is what I've got so far. It works and is accurate enough, but currently doesn't check if the player has a clear line of sight.

    /**
     * Checks if the player is looking at a celestial body to a certain degree of accuracy
     * @param player = player to check agains
     * @param threshold = maximum difference between the angles (degree of accuracy)
     * @param checkMoon = whether to instead check if the player is looking at the moon
     * @param throughWalls = whether to check if the player has a clear line of sight (not implemented yet)
     * @return true if difference between angles is less than threshold, false otherwise
     */
    public static boolean isLookingAtSun(EntityPlayer player, int threshold, boolean checkMoon, boolean throughWalls) {
        World worldIn = player.getEntityWorld();
        // Maximum range to check if they have clear line of sight
        int maxRange = 128;
        // Some math (returns a value between 0 and 1 depending on if its at the horizon or vertical
        double moonHeightVal = Math.sin((worldIn.getCelestialAngle(0) + 0.25f) * 2 * Math.PI);
        double time = worldIn.getWorldTime();
        double correctAngle = -1;
        // The players look vector
        Vec3 vector = player.getLookVec();
        double angle;

        // Angle will now be between 0 and 4. 0 = 0 degrees, 1 = 90 degrees, 2 = 180 degrees, etc.
        if (time > 23215 || time <= 6000) {// First quad
            correctAngle = Math.abs(moonHeightVal);
        } else if (6000 < time && time <= 12785) { //second quad
            correctAngle = 1-Math.abs(moonHeightVal) + 1;
        } else if (12785 < time && time <= 18000) { //third quad
            correctAngle = Math.abs(moonHeightVal) + 2;
        } else if (18000 < time && time <= 23215) { //forth quad
            correctAngle = 1-Math.abs(moonHeightVal) + 3;
        }

        // Convert angle to both degress and radians
        double correctAngleD = correctAngle * 90;
        double correctAngleR = correctAngleD * (Math.PI/180);
        // Create a vector for the sun
        Vec3 moon = new Vec3(Math.cos(correctAngleR),Math.sin(correctAngleR), 0); // This should be correct

        if (checkMoon) {
            vector = new Vec3(-vector.xCoord, -vector.yCoord, -vector.zCoord);
        }

        double dotProd = moon.dotProduct(vector);
        double absMoon = moon.lengthVector();
        double absVector = vector.lengthVector();

        // This is the angle between the player vector and the moon
        angle = Math.acos(dotProd / (absMoon * absVector)) * (180/Math.PI);
        if (angle < threshold) {
            return true;
        }
        return false;
    }

 

I'm just going to leave this here for now, I'll probably work on it later. If you guys can make it more accurate or implement a check for looking through walls that would be amazing. But for now it works.

 

EDIT: Its inaccurate because the moon vector seems to not be exactly centred on the moon, I think its slightly above and to the left.

No signature for you!

Link to comment
Share on other sites

One thing I was wondering:

 

Minecraft is faking a dome-shaped sky over a flat world, so it makes the apogee of the sun/moon always pass directly overhead the player. That is good for purposes of the calculation required for this mod, but I'm not entirely certain whether that makes the rotation point actually at the player. It is possible below the player somewhere inside the ground.

 

If the rotation point for the sky is actually below the player, then for accurate angle you would need to know how far away the sun/moon is and use trigonometry to adjust the celestial angle relative to the player. The good news is that the trigonometry shouldn't be hard -- you can approximate the triangle as a right angle because the angle discrepancy is probably small.

 

Anyway, assuming for the moment that the sky does rotate around the player. In that case I think the code you posted is way more complicated than it needs to be.

 

I think look vector is normalized (length 1.0) and so if you create a normalized vector from the celestial angle I think if you just take the dot product of the look vector and the celestial vector, if the length of the result is close  to 1.0 then I think that means you're looking along the celestial vector.

 

That's it. Just convert celestial angle to a normalized vector, dot product with look vector and check if result is close to 1.0.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Minecraft is faking a dome-shaped sky over a flat world, so it makes the apogee of the sun/moon always pass directly overhead the player. That is good for purposes of the calculation required for this mod, but I'm not entirely certain whether that makes the rotation point actually at the player. It is possible below the player somewhere inside the ground.

 

Its centered on the player.  It's only a fake dome.

You can see this when flying up, or rather, being blasted by TNT or teleporting into the sky thousands or even millions of blocks.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

One thing I was wondering:

 

Minecraft is faking a dome-shaped sky over a flat world, so it makes the apogee of the sun/moon always pass directly overhead the player. That is good for purposes of the calculation required for this mod, but I'm not entirely certain whether that makes the rotation point actually at the player. It is possible below the player somewhere inside the ground.

 

If the rotation point for the sky is actually below the player, then for accurate angle you would need to know how far away the sun/moon is and use trigonometry to adjust the celestial angle relative to the player. The good news is that the trigonometry shouldn't be hard -- you can approximate the triangle as a right angle because the angle discrepancy is probably small.

 

Anyway, assuming for the moment that the sky does rotate around the player. In that case I think the code you posted is way more complicated than it needs to be.

 

I think look vector is normalized (length 1.0) and so if you create a normalized vector from the celestial angle I think if you just take the dot product of the look vector and the celestial vector, if the length of the result is close  to 1.0 then I think that means you're looking along the celestial vector.

 

That's it. Just convert celestial angle to a normalized vector, dot product with look vector and check if result is close to 1.0.

 

Their position is hardcoded in RenderGlobal#renderSky and it is relative to the viewer.

& Minecraft just uses fake Celestial Sphere model.

 

@OP

It might be a problem with getLookVec and eye position, does it return the right value?

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Link to comment
Share on other sites

@OP

It might be a problem with getLookVec and eye position, does it return the right value?

 

So the code for getLookVec is this:

    /**
     * returns a (normalized) vector of where this entity is looking
     */
    public Vec3 getLookVec()
    {
        return this.getLook(1.0F);
    }

    /**
     * interpolated look vector
     */
    public Vec3 getLook(float p_70676_1_)
    {
        if (p_70676_1_ == 1.0F)
        {
            return this.getVectorForRotation(this.rotationPitch, this.rotationYawHead);
        }
        else
        {
            float f1 = this.prevRotationPitch + (this.rotationPitch - this.prevRotationPitch) * p_70676_1_;
            float f2 = this.prevRotationYawHead + (this.rotationYawHead - this.prevRotationYawHead) * p_70676_1_;
            return this.getVectorForRotation(f1, f2);
        }
    }

    /**
     * Creates a Vec3 using the pitch and yaw of the entities rotation.
     *  
     * @param pitch The rotational pitch of the entity.
     * @param yaw The rotational yaw of the entity.
     */
    protected final Vec3 getVectorForRotation(float pitch, float yaw)
    {
        float f2 = MathHelper.cos(-yaw * 0.017453292F - (float)Math.PI);
        float f3 = MathHelper.sin(-yaw * 0.017453292F - (float)Math.PI);
        float f4 = -MathHelper.cos(-pitch * 0.017453292F);
        float f5 = MathHelper.sin(-pitch * 0.017453292F);
        return new Vec3((double)(f3 * f4), (double)f5, (double)(f2 * f4));
    }

So I'm assuming its returning the correct value. I think the error is in some part of the code on my part, and probably because getCelestialAngle() probably returns an angle centred on the top left of the sun/moon.

 

Thinking about it, is there anyway I can draw the vector in the world? I could probably use it to visualise what the vectors look like.

No signature for you!

Link to comment
Share on other sites

You can draw a vector easily.  A vector is just three values indicating the distance away from something of the "end" of the vector relative to its origin. So look up how to draw a line and then simply draw a line from player eye position to the eye position plus the vector coordinates.

 

Anyway, back to my previous post, it seems that the attempted code is much too complex. Why all the ATAN and other stuff? Just dot product the celestial angle (converted to a nomalized vector) and look vector and you're done.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

So I'm assuming its returning the correct value. I think the error is in some part of the code on my part, and probably because getCelestialAngle() probably returns an angle centred on the top left of the sun/moon.

Your code is right, and the angle is centered on the center of sun and moon.

It might be rendering offset problem of minecraft.;

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Link to comment
Share on other sites

Anyway, try drawing a dot on the position you get using TickEvent.RenderTickEvent, and compare that with sun position.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I recently tried loading up the 'SteamPunk [LPS]' modpack from the CurseForge app and the game crashes with exit code 1 (crash report at bottom of post).  I then also tried to create a new profile in minecraft with forge 1.19.2. In this profile I tried removing all mods from my mods folder and the game crashed once again with exit code 1, but no crash report that I was able to view. I have also tried loading up forge versions higher than 1.19.2 such as 1.20.1 which have also crashed. I didnt know if it was an issue with my version of Java so i tried a few versions before realising that I needed Java 17 only, so i deleted all other versions and stuck with Java 17. I have also tried deleting my .minecraft folder which also didnt work, and i have even gone as far as factory resetting my computer, but nothing has worked. I am not very experienced when it comes to modding so any help would be greatly appreciated.   Crash Report: # # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffbfb8259f0, pid=11356, tid=16024 # # JRE version: OpenJDK Runtime Environment Microsoft-8035246 (17.0.8+7) (build 17.0.8+7-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-8035246 (17.0.8+7-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x1759f0] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\missm\curseforge\minecraft\Install\bin\cd9a214c260ade54ca3eb374da45b2f5d47ba217 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.23.7 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.5.jar,forge-43.3.5 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\missm\curseforge\minecraft\Install\libraries --module-path=C:\Users\missm\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx8192m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\missm\curseforge\minecraft\Instances\SteamPunk [LPS] -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=C:\Users\missm\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=C:\Users\missm\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml cpw.mods.bootstraplauncher.BootstrapLauncher --username DanishCheez2 --version forge-43.3.5 --gameDir C:\Users\missm\curseforge\minecraft\Instances\SteamPunk [LPS] --assetsDir C:\Users\missm\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid 097efe2c9665416d8a9db6f836237c35 --clientId ZTQwZjBlN2MtMmZhOS00OTg1LTllNWItYTkzMGI3NDVjOTYx --xuid 2535422650757774 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.5 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 Host: AMD Ryzen 5 5600G with Radeon Graphics         , 12 cores, 31G,  Windows 11 , 64 bit Build 22621 (10.0.22621.3527) Time: Fri May 10 19:50:17 2024 GMT Summer Time elapsed time: 19.990763 seconds (0d 0h 0m 19s) ---------------  T H R E A D  --------------- Current thread (0x000002abb9fdb9c0):  JavaThread "Render thread" [_thread_in_native, id=16024, stack(0x000000e76e600000,0x000000e76e700000)] Stack: [0x000000e76e600000,0x000000e76e700000],  sp=0x000000e76e6fbbe8,  free space=1006k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x1759f0] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 [email protected]+7 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 [email protected]+7 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 [email protected]+7 j  net.minecraftforge.client.loading.NoVizFallback.lambda$fallback$0(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+28 [email protected] j  net.minecraftforge.client.loading.NoVizFallback$$Lambda$4818+0x0000000800e2ee68.getAsLong()J+16 [email protected] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization$$Lambda$4819+0x0000000800e2b690.apply(Ljava/lang/Object;)Ljava/lang/Object;+4 [email protected] J 4397 c2 java.util.Optional.map(Ljava/util/function/Function;)Ljava/util/Optional; [email protected] (30 bytes) @ 0x000002abc53d1988 [0x000002abc53d1920+0x0000000000000068] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+48 [email protected] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+9 [email protected] j  com.mojang.blaze3d.platform.Window.<init>(Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V+296 [email protected] j  net.minecraft.client.renderer.VirtualScreen.m_110872_(Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window;+15 [email protected] j  net.minecraft.client.Minecraft.<init>(Lnet/minecraft/client/main/GameConfig;)V+734 [email protected] j  net.minecraft.client.main.Main.m_239872_([Ljava/lang/String;Z)V+1371 [email protected] j  net.minecraft.client.main.Main.main([Ljava/lang/String;)V+25 [email protected] v  ~StubRoutines::call_stub j  jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 [email protected] j  jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 [email protected] j  jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 [email protected] j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 [email protected] j  net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(Ljava/lang/ModuleLayer;[Ljava/lang/String;)V+40 [email protected] j  net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler$$Lambda$899+0x000000080049bd70.run()V+8 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch([Ljava/lang/String;Ljava/lang/ModuleLayer;)V+11 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandler.launch(Ljava/lang/String;[Ljava/lang/String;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+58 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandler.launch(Lcpw/mods/modlauncher/ArgumentHandler;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+21 [email protected] j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+310 [email protected] j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+78 [email protected] j  cpw.mods.modlauncher.BootstrapLaunchConsumer.accept([Ljava/lang/String;)V+1 [email protected] j  cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(Ljava/lang/Object;)V+5 [email protected] j  cpw.mods.bootstraplauncher.BootstrapLauncher.main([Ljava/lang/String;)V+515 [email protected] v  ~StubRoutines::call_stub siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Register to memory mapping: RIP=0x00007ffbfb8259f0 atio6axx.dll RAX=0x0 is NULL RBX=0x00007ffbfeda2540 atio6axx.dll RCX=0x726f66206e6f6973 is an unknown value RDX=0x00000000000000d1 is an unknown value RSP=0x000000e76e6fbbe8 is pointing into the stack for thread: 0x000002abb9fdb9c0 RBP=0x000000e76e6fbc58 is pointing into the stack for thread: 0x000002abb9fdb9c0 RSI=0x00007ffbfecae580 atio6axx.dll RDI=0x000000e76e6fbce0 is pointing into the stack for thread: 0x000002abb9fdb9c0 R8 =0x000000000000000a is an unknown value R9 =0x000000e76e6fb8c0 is pointing into the stack for thread: 0x000002abb9fdb9c0 R10=0x0 is NULL R11=0x000000e76e6fba00 is pointing into the stack for thread: 0x000002abb9fdb9c0 R12=0x0 is NULL R13=0x0 is NULL R14=0x00007ffbfeda2540 atio6axx.dll R15=0x00007ffbfeda25a2 atio6axx.dll Registers: RAX=0x0000000000000000, RBX=0x00007ffbfeda2540, RCX=0x726f66206e6f6973, RDX=0x00000000000000d1 RSP=0x000000e76e6fbbe8, RBP=0x000000e76e6fbc58, RSI=0x00007ffbfecae580, RDI=0x000000e76e6fbce0 R8 =0x000000000000000a, R9 =0x000000e76e6fb8c0, R10=0x0000000000000000, R11=0x000000e76e6fba00 R12=0x0000000000000000, R13=0x0000000000000000, R14=0x00007ffbfeda2540, R15=0x00007ffbfeda25a2 RIP=0x00007ffbfb8259f0, EFLAGS=0x0000000000010202 Top of Stack: (sp=0x000000e76e6fbbe8) 0x000000e76e6fbbe8:   00007ffbfb7fc3b4 00007ffbfeda2540 0x000000e76e6fbbf8:   00007ffbfecae580 0000000000000000 0x000000e76e6fbc08:   0000000000000000 000000e76e6fbce0 0x000000e76e6fbc18:   00007ffbfb7ff89e 00007ffbfeda2548 0x000000e76e6fbc28:   00007ffbfecae580 00007ffbfeda2548 0x000000e76e6fbc38:   0000000000000000 0000000000000000 0x000000e76e6fbc48:   000000e76e6fbce0 00007ffbfeda2548 0x000000e76e6fbc58:   00002e776176616a 000000006176616a 0x000000e76e6fbc68:   000002006176616a 00006592b6c72d1e 0x000000e76e6fbc78:   0000000000000000 00007ffbfe5dd790 0x000000e76e6fbc88:   0000000000000000 0000000000000000 0x000000e76e6fbc98:   0000000000000000 00007ffbfeda2540 0x000000e76e6fbca8:   0000000000000000 000000e76e6fc850 0x000000e76e6fbcb8:   00007ffbfb7836c9 000002abea72a018 0x000000e76e6fbcc8:   0000000000000000 000002abea72a018 0x000000e76e6fbcd8:   00007ffbfeda2540 0000163800001002  Instructions: (pc=0x00007ffbfb8259f0) 0x00007ffbfb8258f0:   74 09 33 c9 ff 15 56 2b 3a 03 90 48 8b c3 48 83 0x00007ffbfb825900:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb825910:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ffbfb825920:   15 2b 2b 3a 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ffbfb825930:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb825940:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb825950:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ffbfb825960:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ffbfb825970:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb825980:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ffbfb825990:   4c 8d 04 d5 00 00 00 00 33 d2 e9 81 9a d8 01 cc 0x00007ffbfb8259a0:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ffbfb8259b0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb8259c0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ffbfb8259d0:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ffbfb8259e0:   8b 81 e8 36 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ffbfb8259f0:   8b 81 e8 36 00 00 83 c0 f2 83 f8 5f 0f 87 34 01 0x00007ffbfb825a00:   00 00 48 8d 15 f7 a5 e8 ff 0f b6 84 02 54 5b 17 0x00007ffbfb825a10:   00 8b 8c 82 38 5b 17 00 48 03 ca ff e1 48 8b 0d 0x00007ffbfb825a20:   b4 8a 52 03 83 b9 9c 32 00 00 02 0f 87 05 01 00 0x00007ffbfb825a30:   00 48 8d 91 7c 29 00 00 c7 02 e1 00 00 00 e9 a8 0x00007ffbfb825a40:   00 00 00 48 8b 0d 8e 8a 52 03 83 b9 9c 32 00 00 0x00007ffbfb825a50:   02 0f 87 df 00 00 00 48 8d 91 7c 29 00 00 c7 02 0x00007ffbfb825a60:   f0 00 00 00 e9 82 00 00 00 48 8b 0d 68 8a 52 03 0x00007ffbfb825a70:   83 b9 9c 32 00 00 02 0f 87 b9 00 00 00 48 8d 91 0x00007ffbfb825a80:   7c 29 00 00 c7 02 00 04 00 00 eb 5f 48 8b 0d 45 0x00007ffbfb825a90:   8a 52 03 83 b9 9c 32 00 00 02 0f 87 96 00 00 00 0x00007ffbfb825aa0:   48 8d 91 7c 29 00 00 c7 02 00 09 00 00 eb 3c 48 0x00007ffbfb825ab0:   8b 0d 22 8a 52 03 83 b9 9c 32 00 00 02 77 77 48 0x00007ffbfb825ac0:   8d 91 7c 29 00 00 c7 02 3c 0f 00 00 eb 1d 48 8b 0x00007ffbfb825ad0:   0d 03 8a 52 03 83 b9 9c 32 00 00 02 77 58 48 8d 0x00007ffbfb825ae0:   91 7c 29 00 00 c7 02 00 10 00 00 48 8d 81 5c 1f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ffbfb7fc3b4 atio6axx.dll stack at sp + 1 slots: 0x00007ffbfeda2540 atio6axx.dll stack at sp + 2 slots: 0x00007ffbfecae580 atio6axx.dll stack at sp + 3 slots: 0x0 is NULL stack at sp + 4 slots: 0x0 is NULL stack at sp + 5 slots: 0x000000e76e6fbce0 is pointing into the stack for thread: 0x000002abb9fdb9c0 stack at sp + 6 slots: 0x00007ffbfb7ff89e atio6axx.dll stack at sp + 7 slots: 0x00007ffbfeda2548 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x000002abf0ee11d0, length=35, elements={ 0x000002abb9fdb9c0, 0x000002abe2a35020, 0x000002abe2a38360, 0x000002abdfeae340, 0x000002abe2a609a0, 0x000002abe2a61270, 0x000002abe2a67f90, 0x000002abe2a7aba0, 0x000002abe2a7c060, 0x000002abe2a87150, 0x000002abb9fc4650, 0x000002abe2c87790, 0x000002abe8e23690, 0x000002abe8e23ba0, 0x000002abe8e245c0, 0x000002abef135590, 0x000002abef1369d0, 0x000002abef135080, 0x000002abef135fb0, 0x000002abe9b0e2e0, 0x000002abe9b0e7f0, 0x000002abe9b0ed00, 0x000002abef1364c0, 0x000002abec759fb0, 0x000002abec75a4c0, 0x000002abec758b70, 0x000002abec759080, 0x000002abec759aa0, 0x000002abe8e26420, 0x000002abeb1af570, 0x000002abe9fd5b10, 0x000002abe9509920, 0x000002abee47da00, 0x000002abef76c470, 0x000002abf090e4c0 } Java Threads: ( => current thread ) =>0x000002abb9fdb9c0 JavaThread "Render thread" [_thread_in_native, id=16024, stack(0x000000e76e600000,0x000000e76e700000)]   0x000002abe2a35020 JavaThread "Reference Handler" daemon [_thread_blocked, id=5472, stack(0x000000e76ed00000,0x000000e76ee00000)]   0x000002abe2a38360 JavaThread "Finalizer" daemon [_thread_blocked, id=3692, stack(0x000000e76ee00000,0x000000e76ef00000)]   0x000002abdfeae340 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=16160, stack(0x000000e76ef00000,0x000000e76f000000)]   0x000002abe2a609a0 JavaThread "Attach Listener" daemon [_thread_blocked, id=4236, stack(0x000000e76f000000,0x000000e76f100000)]   0x000002abe2a61270 JavaThread "Service Thread" daemon [_thread_blocked, id=8160, stack(0x000000e76f100000,0x000000e76f200000)]   0x000002abe2a67f90 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=10608, stack(0x000000e76f200000,0x000000e76f300000)]   0x000002abe2a7aba0 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=11104, stack(0x000000e76f300000,0x000000e76f400000)]   0x000002abe2a7c060 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=13748, stack(0x000000e76f400000,0x000000e76f500000)]   0x000002abe2a87150 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2904, stack(0x000000e76f500000,0x000000e76f600000)]   0x000002abb9fc4650 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=8592, stack(0x000000e76f600000,0x000000e76f700000)]   0x000002abe2c87790 JavaThread "Notification Thread" daemon [_thread_blocked, id=4508, stack(0x000000e76f800000,0x000000e76f900000)]   0x000002abe8e23690 JavaThread "Thread-0" daemon [_thread_blocked, id=2288, stack(0x000000e770600000,0x000000e770700000)]   0x000002abe8e23ba0 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=16152, stack(0x000000e770700000,0x000000e770800000)]   0x000002abe8e245c0 JavaThread "pool-2-thread-1" daemon [_thread_blocked, id=7880, stack(0x000000e770b00000,0x000000e770c00000)]   0x000002abef135590 JavaThread "Thread-1" daemon [_thread_in_native, id=7408, stack(0x000000e770c00000,0x000000e770d00000)]   0x000002abef1369d0 JavaThread "Thread-2" daemon [_thread_in_native, id=16196, stack(0x000000e770d00000,0x000000e770e00000)]   0x000002abef135080 JavaThread "Thread-3" daemon [_thread_in_native, id=8332, stack(0x000000e770e00000,0x000000e770f00000)]   0x000002abef135fb0 JavaThread "Thread-4" daemon [_thread_in_native, id=6452, stack(0x000000e770f00000,0x000000e771000000)]   0x000002abe9b0e2e0 JavaThread "Thread-5" daemon [_thread_in_native, id=4020, stack(0x000000e771000000,0x000000e771100000)]   0x000002abe9b0e7f0 JavaThread "Thread-6" daemon [_thread_in_native, id=4696, stack(0x000000e771100000,0x000000e771200000)]   0x000002abe9b0ed00 JavaThread "Thread-7" daemon [_thread_in_native, id=11932, stack(0x000000e771200000,0x000000e771300000)]   0x000002abef1364c0 JavaThread "Thread-8" daemon [_thread_in_native, id=15412, stack(0x000000e771300000,0x000000e771400000)]   0x000002abec759fb0 JavaThread "Thread-9" daemon [_thread_in_native, id=15632, stack(0x000000e771400000,0x000000e771500000)]   0x000002abec75a4c0 JavaThread "Thread-10" daemon [_thread_in_native, id=6480, stack(0x000000e771500000,0x000000e771600000)]   0x000002abec758b70 JavaThread "Thread-11" daemon [_thread_in_native, id=14508, stack(0x000000e771600000,0x000000e771700000)]   0x000002abec759080 JavaThread "Thread-12" daemon [_thread_in_native, id=3024, stack(0x000000e771700000,0x000000e771800000)]   0x000002abec759aa0 JavaThread "Thread-13" daemon [_thread_in_native, id=6572, stack(0x000000e771800000,0x000000e771900000)]   0x000002abe8e26420 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=9984, stack(0x000000e771900000,0x000000e771a00000)]   0x000002abeb1af570 JavaThread "pool-3-thread-1" [_thread_blocked, id=16284, stack(0x000000e771a00000,0x000000e771b00000)]   0x000002abe9fd5b10 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=8300, stack(0x000000e76f700000,0x000000e76f800000)]   0x000002abe9509920 JavaThread "Timer hack thread" daemon [_thread_blocked, id=5140, stack(0x000000e771e00000,0x000000e771f00000)]   0x000002abee47da00 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=5636, stack(0x000000e770a00000,0x000000e770b00000)]   0x000002abef76c470 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=15524, stack(0x000000e772300000,0x000000e772400000)]   0x000002abf090e4c0 JavaThread "DFU cleaning thread" daemon [_thread_blocked, id=1624, stack(0x000000e772400000,0x000000e772500000)] Other Threads:   0x000002abdfe90810 VMThread "VM Thread" [stack: 0x000000e76ec00000,0x000000e76ed00000] [id=14588]   0x000002abe2cc3b50 WatcherThread [stack: 0x000000e76f900000,0x000000e76fa00000] [id=4588]   0x000002abdfcf19b0 GCTaskThread "GC Thread#0" [stack: 0x000000e76e700000,0x000000e76e800000] [id=1348]   0x000002abe754c0d0 GCTaskThread "GC Thread#1" [stack: 0x000000e76fa00000,0x000000e76fb00000] [id=7396]   0x000002abe75fa280 GCTaskThread "GC Thread#2" [stack: 0x000000e76fb00000,0x000000e76fc00000] [id=3560]   0x000002abe75fa540 GCTaskThread "GC Thread#3" [stack: 0x000000e76fc00000,0x000000e76fd00000] [id=14500]   0x000002abe72e1090 GCTaskThread "GC Thread#4" [stack: 0x000000e76fd00000,0x000000e76fe00000] [id=2356]   0x000002abe72e1350 GCTaskThread "GC Thread#5" [stack: 0x000000e76fe00000,0x000000e76ff00000] [id=10868]   0x000002abe9f37a60 GCTaskThread "GC Thread#6" [stack: 0x000000e770000000,0x000000e770100000] [id=15680]   0x000002abe80f1800 GCTaskThread "GC Thread#7" [stack: 0x000000e770100000,0x000000e770200000] [id=16064]   0x000002abe8992c20 GCTaskThread "GC Thread#8" [stack: 0x000000e770200000,0x000000e770300000] [id=8456]   0x000002abe810d390 GCTaskThread "GC Thread#9" [stack: 0x000000e770300000,0x000000e770400000] [id=3052]   0x000002abba057630 ConcurrentGCThread "G1 Main Marker" [stack: 0x000000e76e800000,0x000000e76e900000] [id=11416]   0x000002abba057e50 ConcurrentGCThread "G1 Conc#0" [stack: 0x000000e76e900000,0x000000e76ea00000] [id=5988]   0x000002abe895f010 ConcurrentGCThread "G1 Conc#1" [stack: 0x000000e770400000,0x000000e770500000] [id=8444]   0x000002abe895fae0 ConcurrentGCThread "G1 Conc#2" [stack: 0x000000e770500000,0x000000e770600000] [id=14692]   0x000002abba06d560 ConcurrentGCThread "G1 Refine#0" [stack: 0x000000e76ea00000,0x000000e76eb00000] [id=15180]   0x000002abe782dce0 ConcurrentGCThread "G1 Refine#1" [stack: 0x000000e76ff00000,0x000000e770000000] [id=16376]   0x000002abea6f6430 ConcurrentGCThread "G1 Refine#2" [stack: 0x000000e770800000,0x000000e770900000] [id=15780]   0x000002abe8ef89f0 ConcurrentGCThread "G1 Refine#3" [stack: 0x000000e770900000,0x000000e770a00000] [id=10440]   0x000002abec13b450 ConcurrentGCThread "G1 Refine#4" [stack: 0x000000e771f00000,0x000000e772000000] [id=5080]   0x000002abec13d1b0 ConcurrentGCThread "G1 Refine#5" [stack: 0x000000e772000000,0x000000e772100000] [id=13040]   0x000002abec13a5a0 ConcurrentGCThread "G1 Refine#6" [stack: 0x000000e772100000,0x000000e772200000] [id=14044]   0x000002abba06dea0 ConcurrentGCThread "G1 Service" [stack: 0x000000e76eb00000,0x000000e76ec00000] [id=13688] Threads with active compile tasks: VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000600000000, size: 8192 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CPUs: 12 total, 12 available  Memory: 32105M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 4M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 8G  Pre-touch: Disabled  Parallel Workers: 10  Concurrent Workers: 3  Concurrent Refinement Workers: 10  Periodic GC: Disabled Heap:  garbage-first heap   total 1736704K, used 1239124K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 202 young (827392K), 3 survivors (12288K)  Metaspace       used 97637K, committed 99840K, reserved 1179648K   class space    used 13619K, committed 14528K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) |   0|0x0000000600000000, 0x0000000600400000, 0x0000000600400000|100%| O|  |TAMS 0x0000000600400000, 0x0000000600000000| Untracked  |   1|0x0000000600400000, 0x0000000600800000, 0x0000000600800000|100%| O|  |TAMS 0x0000000600800000, 0x0000000600400000| Untracked  |   2|0x0000000600800000, 0x0000000600c00000, 0x0000000600c00000|100%| O|  |TAMS 0x0000000600c00000, 0x0000000600800000| Untracked  |   3|0x0000000600c00000, 0x0000000601000000, 0x0000000601000000|100%| O|  |TAMS 0x0000000601000000, 0x0000000600c00000| Untracked  |   4|0x0000000601000000, 0x0000000601400000, 0x0000000601400000|100%| O|  |TAMS 0x0000000601400000, 0x0000000601000000| Untracked  |   5|0x0000000601400000, 0x0000000601800000, 0x0000000601800000|100%| O|  |TAMS 0x0000000601800000, 0x0000000601400000| Untracked  |   6|0x0000000601800000, 0x0000000601c00000, 0x0000000601c00000|100%|HS|  |TAMS 0x0000000601c00000, 0x0000000601800000| Complete  |   7|0x0000000601c00000, 0x0000000602000000, 0x0000000602000000|100%| O|  |TAMS 0x0000000602000000, 0x0000000601c00000| Untracked  |   8|0x0000000602000000, 0x0000000602400000, 0x0000000602400000|100%| O|  |TAMS 0x0000000602400000, 0x0000000602000000| Untracked  |   9|0x0000000602400000, 0x0000000602800000, 0x0000000602800000|100%| O|  |TAMS 0x0000000602800000, 0x0000000602400000| Untracked  |  10|0x0000000602800000, 0x0000000602c00000, 0x0000000602c00000|100%| O|  |TAMS 0x0000000602c00000, 0x0000000602800000| Untracked  |  11|0x0000000602c00000, 0x0000000603000000, 0x0000000603000000|100%| O|  |TAMS 0x0000000603000000, 0x0000000602c00000| Untracked  |  12|0x0000000603000000, 0x0000000603400000, 0x0000000603400000|100%| O|  |TAMS 0x0000000603400000, 0x0000000603000000| Untracked  |  13|0x0000000603400000, 0x0000000603800000, 0x0000000603800000|100%| O|  |TAMS 0x0000000603800000, 0x0000000603400000| Untracked  |  14|0x0000000603800000, 0x0000000603c00000, 0x0000000603c00000|100%| O|  |TAMS 0x0000000603c00000, 0x0000000603800000| Untracked  |  15|0x0000000603c00000, 0x0000000604000000, 0x0000000604000000|100%| O|  |TAMS 0x0000000604000000, 0x0000000603c00000| Untracked  |  16|0x0000000604000000, 0x0000000604400000, 0x0000000604400000|100%| O|  |TAMS 0x0000000604400000, 0x0000000604000000| Untracked  |  17|0x0000000604400000, 0x0000000604800000, 0x0000000604800000|100%| O|  |TAMS 0x0000000604800000, 0x0000000604400000| Untracked  |  18|0x0000000604800000, 0x0000000604c00000, 0x0000000604c00000|100%| O|  |TAMS 0x0000000604c00000, 0x0000000604800000| Untracked  |  19|0x0000000604c00000, 0x0000000605000000, 0x0000000605000000|100%| O|  |TAMS 0x0000000605000000, 0x0000000604c00000| Untracked  |  20|0x0000000605000000, 0x0000000605400000, 0x0000000605400000|100%| O|  |TAMS 0x0000000605400000, 0x0000000605000000| Untracked  |  21|0x0000000605400000, 0x0000000605800000, 0x0000000605800000|100%| O|  |TAMS 0x0000000605800000, 0x0000000605400000| Untracked  |  22|0x0000000605800000, 0x0000000605c00000, 0x0000000605c00000|100%| O|  |TAMS 0x0000000605c00000, 0x0000000605800000| Untracked  |  23|0x0000000605c00000, 0x0000000606000000, 0x0000000606000000|100%| O|  |TAMS 0x0000000606000000, 0x0000000605c00000| Untracked  |  24|0x0000000606000000, 0x0000000606400000, 0x0000000606400000|100%|HS|  |TAMS 0x0000000606400000, 0x0000000606000000| Complete  |  25|0x0000000606400000, 0x0000000606800000, 0x0000000606800000|100%| O|  |TAMS 0x0000000606800000, 0x0000000606400000| Untracked  |  26|0x0000000606800000, 0x0000000606c00000, 0x0000000606c00000|100%| O|  |TAMS 0x0000000606c00000, 0x0000000606800000| Untracked  |  27|0x0000000606c00000, 0x0000000607000000, 0x0000000607000000|100%| O|  |TAMS 0x0000000607000000, 0x0000000606c00000| Untracked  |  28|0x0000000607000000, 0x0000000607400000, 0x0000000607400000|100%| O|  |TAMS 0x0000000607400000, 0x0000000607000000| Untracked  |  29|0x0000000607400000, 0x0000000607800000, 0x0000000607800000|100%| O|  |TAMS 0x0000000607800000, 0x0000000607400000| Untracked  |  30|0x0000000607800000, 0x0000000607c00000, 0x0000000607c00000|100%| O|  |TAMS 0x0000000607c00000, 0x0000000607800000| Untracked  |  31|0x0000000607c00000, 0x0000000608000000, 0x0000000608000000|100%| O|  |TAMS 0x0000000608000000, 0x0000000607c00000| Untracked  |  32|0x0000000608000000, 0x0000000608400000, 0x0000000608400000|100%| O|  |TAMS 0x0000000608400000, 0x0000000608000000| Untracked  |  33|0x0000000608400000, 0x0000000608800000, 0x0000000608800000|100%| O|  |TAMS 0x0000000608800000, 0x0000000608400000| Untracked  |  34|0x0000000608800000, 0x0000000608c00000, 0x0000000608c00000|100%| O|  |TAMS 0x0000000608c00000, 0x0000000608800000| Untracked  |  35|0x0000000608c00000, 0x0000000609000000, 0x0000000609000000|100%| O|  |TAMS 0x0000000609000000, 0x0000000608c00000| Untracked  |  36|0x0000000609000000, 0x0000000609400000, 0x0000000609400000|100%| O|  |TAMS 0x0000000609400000, 0x0000000609000000| Untracked  |  37|0x0000000609400000, 0x0000000609800000, 0x0000000609800000|100%| O|  |TAMS 0x0000000609800000, 0x0000000609400000| Untracked  |  38|0x0000000609800000, 0x0000000609c00000, 0x0000000609c00000|100%| O|  |TAMS 0x0000000609c00000, 0x0000000609800000| Untracked  |  39|0x0000000609c00000, 0x000000060a000000, 0x000000060a000000|100%| O|  |TAMS 0x000000060a000000, 0x0000000609c00000| Untracked  |  40|0x000000060a000000, 0x000000060a400000, 0x000000060a400000|100%| O|  |TAMS 0x000000060a400000, 0x000000060a000000| Untracked  |  41|0x000000060a400000, 0x000000060a800000, 0x000000060a800000|100%| O|  |TAMS 0x000000060a800000, 0x000000060a400000| Untracked  |  42|0x000000060a800000, 0x000000060ac00000, 0x000000060ac00000|100%| O|  |TAMS 0x000000060ac00000, 0x000000060a800000| Untracked  |  43|0x000000060ac00000, 0x000000060b000000, 0x000000060b000000|100%| O|  |TAMS 0x000000060b000000, 0x000000060ac00000| Untracked  |  44|0x000000060b000000, 0x000000060b400000, 0x000000060b400000|100%| O|  |TAMS 0x000000060b400000, 0x000000060b000000| Untracked  |  45|0x000000060b400000, 0x000000060b800000, 0x000000060b800000|100%| O|  |TAMS 0x000000060b800000, 0x000000060b400000| Untracked  |  46|0x000000060b800000, 0x000000060bc00000, 0x000000060bc00000|100%| O|  |TAMS 0x000000060bc00000, 0x000000060b800000| Untracked  |  47|0x000000060bc00000, 0x000000060c000000, 0x000000060c000000|100%| O|  |TAMS 0x000000060c000000, 0x000000060bc00000| Untracked  |  48|0x000000060c000000, 0x000000060c000000, 0x000000060c400000|  0%| F|  |TAMS 0x000000060c000000, 0x000000060c000000| Untracked  |  49|0x000000060c400000, 0x000000060c800000, 0x000000060c800000|100%| O|  |TAMS 0x000000060c800000, 0x000000060c400000| Untracked  |  50|0x000000060c800000, 0x000000060cc00000, 0x000000060cc00000|100%| O|  |TAMS 0x000000060cc00000, 0x000000060c800000| Untracked  |  51|0x000000060cc00000, 0x000000060d000000, 0x000000060d000000|100%| O|  |TAMS 0x000000060d000000, 0x000000060cc00000| Untracked  |  52|0x000000060d000000, 0x000000060d400000, 0x000000060d400000|100%| O|  |TAMS 0x000000060d400000, 0x000000060d000000| Untracked  |  53|0x000000060d400000, 0x000000060d800000, 0x000000060d800000|100%| O|  |TAMS 0x000000060d800000, 0x000000060d400000| Untracked  |  54|0x000000060d800000, 0x000000060dc00000, 0x000000060dc00000|100%| O|  |TAMS 0x000000060dc00000, 0x000000060d800000| Untracked  |  55|0x000000060dc00000, 0x000000060e000000, 0x000000060e000000|100%| O|  |TAMS 0x000000060e000000, 0x000000060dc00000| Untracked  |  56|0x000000060e000000, 0x000000060e400000, 0x000000060e400000|100%| O|  |TAMS 0x000000060e400000, 0x000000060e000000| Untracked  |  57|0x000000060e400000, 0x000000060e800000, 0x000000060e800000|100%| O|  |TAMS 0x000000060e800000, 0x000000060e400000| Untracked  |  58|0x000000060e800000, 0x000000060ec00000, 0x000000060ec00000|100%| O|  |TAMS 0x000000060ec00000, 0x000000060e800000| Untracked  |  59|0x000000060ec00000, 0x000000060f000000, 0x000000060f000000|100%| O|  |TAMS 0x000000060f000000, 0x000000060ec00000| Untracked  |  60|0x000000060f000000, 0x000000060f400000, 0x000000060f400000|100%| O|  |TAMS 0x000000060f400000, 0x000000060f000000| Untracked  |  61|0x000000060f400000, 0x000000060f800000, 0x000000060f800000|100%| O|  |TAMS 0x000000060f800000, 0x000000060f400000| Untracked  |  62|0x000000060f800000, 0x000000060fc00000, 0x000000060fc00000|100%| O|  |TAMS 0x000000060fc00000, 0x000000060f800000| Untracked  |  63|0x000000060fc00000, 0x0000000610000000, 0x0000000610000000|100%| O|  |TAMS 0x0000000610000000, 0x000000060fc00000| Untracked  |  64|0x0000000610000000, 0x0000000610400000, 0x0000000610400000|100%| O|  |TAMS 0x0000000610400000, 0x0000000610000000| Untracked  |  65|0x0000000610400000, 0x0000000610800000, 0x0000000610800000|100%| O|  |TAMS 0x0000000610800000, 0x0000000610400000| Untracked  |  66|0x0000000610800000, 0x0000000610c00000, 0x0000000610c00000|100%| O|  |TAMS 0x0000000610c00000, 0x0000000610800000| Untracked  |  67|0x0000000610c00000, 0x0000000611000000, 0x0000000611000000|100%| O|  |TAMS 0x0000000611000000, 0x0000000610c00000| Untracked  |  68|0x0000000611000000, 0x0000000611400000, 0x0000000611400000|100%| O|  |TAMS 0x0000000611400000, 0x0000000611000000| Untracked  |  69|0x0000000611400000, 0x0000000611800000, 0x0000000611800000|100%| O|  |TAMS 0x0000000611800000, 0x0000000611400000| Untracked  |  70|0x0000000611800000, 0x0000000611c00000, 0x0000000611c00000|100%| O|  |TAMS 0x0000000611c00000, 0x0000000611800000| Untracked  |  71|0x0000000611c00000, 0x0000000612000000, 0x0000000612000000|100%| O|  |TAMS 0x0000000612000000, 0x0000000611c00000| Untracked  |  72|0x0000000612000000, 0x0000000612400000, 0x0000000612400000|100%| O|  |TAMS 0x0000000612400000, 0x0000000612000000| Untracked  |  73|0x0000000612400000, 0x0000000612800000, 0x0000000612800000|100%| O|  |TAMS 0x0000000612800000, 0x0000000612400000| Untracked  |  74|0x0000000612800000, 0x0000000612c00000, 0x0000000612c00000|100%| O|  |TAMS 0x0000000612c00000, 0x0000000612800000| Untracked  |  75|0x0000000612c00000, 0x0000000613000000, 0x0000000613000000|100%| O|  |TAMS 0x0000000613000000, 0x0000000612c00000| Untracked  |  76|0x0000000613000000, 0x0000000613400000, 0x0000000613400000|100%| O|  |TAMS 0x0000000613400000, 0x0000000613000000| Untracked  |  77|0x0000000613400000, 0x0000000613800000, 0x0000000613800000|100%| O|  |TAMS 0x0000000613800000, 0x0000000613400000| Untracked  |  78|0x0000000613800000, 0x0000000613c00000, 0x0000000613c00000|100%| O|  |TAMS 0x0000000613c00000, 0x0000000613800000| Untracked  |  79|0x0000000613c00000, 0x0000000614000000, 0x0000000614000000|100%| O|  |TAMS 0x0000000614000000, 0x0000000613c00000| Untracked  |  80|0x0000000614000000, 0x0000000614400000, 0x0000000614400000|100%| O|  |TAMS 0x0000000614400000, 0x0000000614000000| Untracked  |  81|0x0000000614400000, 0x0000000614800000, 0x0000000614800000|100%| O|  |TAMS 0x0000000614800000, 0x0000000614400000| Untracked  |  82|0x0000000614800000, 0x0000000614c00000, 0x0000000614c00000|100%|HS|  |TAMS 0x0000000614c00000, 0x0000000614800000| Complete  |  83|0x0000000614c00000, 0x0000000615000000, 0x0000000615000000|100%|HC|  |TAMS 0x0000000615000000, 0x0000000614c00000| Complete  |  84|0x0000000615000000, 0x0000000615400000, 0x0000000615400000|100%|HC|  |TAMS 0x0000000615400000, 0x0000000615000000| Complete  |  85|0x0000000615400000, 0x0000000615800000, 0x0000000615800000|100%| O|  |TAMS 0x0000000615800000, 0x0000000615400000| Untracked  |  86|0x0000000615800000, 0x0000000615c00000, 0x0000000615c00000|100%| O|  |TAMS 0x0000000615c00000, 0x0000000615800000| Untracked  |  87|0x0000000615c00000, 0x0000000616000000, 0x0000000616000000|100%| O|  |TAMS 0x0000000616000000, 0x0000000615c00000| Untracked  |  88|0x0000000616000000, 0x0000000616400000, 0x0000000616400000|100%| O|  |TAMS 0x0000000616400000, 0x0000000616000000| Untracked  |  89|0x0000000616400000, 0x0000000616800000, 0x0000000616800000|100%| O|  |TAMS 0x0000000616800000, 0x0000000616400000| Untracked  |  90|0x0000000616800000, 0x0000000616c00000, 0x0000000616c00000|100%| O|  |TAMS 0x0000000616c00000, 0x0000000616800000| Untracked  |  91|0x0000000616c00000, 0x0000000617000000, 0x0000000617000000|100%| O|  |TAMS 0x0000000617000000, 0x0000000616c00000| Untracked  |  92|0x0000000617000000, 0x0000000617400000, 0x0000000617400000|100%| O|  |TAMS 0x0000000617400000, 0x0000000617000000| Untracked  |  93|0x0000000617400000, 0x0000000617800000, 0x0000000617800000|100%| O|  |TAMS 0x0000000617800000, 0x0000000617400000| Untracked  |  94|0x0000000617800000, 0x0000000617c00000, 0x0000000617c00000|100%| O|  |TAMS 0x0000000617c00000, 0x0000000617800000| Untracked  |  95|0x0000000617c00000, 0x0000000618000000, 0x0000000618000000|100%| O|  |TAMS 0x0000000618000000, 0x0000000617c00000| Untracked  |  96|0x0000000618000000, 0x0000000618400000, 0x0000000618400000|100%| O|  |TAMS 0x0000000618400000, 0x0000000618000000| Untracked  |  97|0x0000000618400000, 0x0000000618800000, 0x0000000618800000|100%| O|  |TAMS 0x0000000618800000, 0x0000000618400000| Untracked  |  98|0x0000000618800000, 0x0000000618c00000, 0x0000000618c00000|100%| O|  |TAMS 0x0000000618c00000, 0x0000000618800000| Untracked  |  99|0x0000000618c00000, 0x0000000619000000, 0x0000000619000000|100%| O|  |TAMS 0x0000000619000000, 0x0000000618c00000| Untracked  | 100|0x0000000619000000, 0x0000000619400000, 0x0000000619400000|100%| O|  |TAMS 0x0000000619400000, 0x0000000619000000| Untracked  | 101|0x0000000619400000, 0x0000000619800000, 0x0000000619800000|100%| O|  |TAMS 0x0000000619800000, 0x0000000619400000| Untracked  | 102|0x0000000619800000, 0x0000000619c00000, 0x0000000619c00000|100%| O|  |TAMS 0x0000000619c00000, 0x0000000619800000| Untracked  | 103|0x0000000619c00000, 0x0000000619c4ea00, 0x000000061a000000|  7%| O|  |TAMS 0x0000000619c4ea00, 0x0000000619c00000| Complete  | 104|0x000000061a000000, 0x000000061a000000, 0x000000061a400000|  0%| F|  |TAMS 0x000000061a000000, 0x000000061a000000| Untracked  | 105|0x000000061a400000, 0x000000061a400000, 0x000000061a800000|  0%| F|  |TAMS 0x000000061a400000, 0x000000061a400000| Untracked  | 106|0x000000061a800000, 0x000000061a800000, 0x000000061ac00000|  0%| F|  |TAMS 0x000000061a800000, 0x000000061a800000| Untracked  | 107|0x000000061ac00000, 0x000000061ac00000, 0x000000061b000000|  0%| F|  |TAMS 0x000000061ac00000, 0x000000061ac00000| Untracked  | 108|0x000000061b000000, 0x000000061b000000, 0x000000061b400000|  0%| F|  |TAMS 0x000000061b000000, 0x000000061b000000| Untracked  | 109|0x000000061b400000, 0x000000061b400000, 0x000000061b800000|  0%| F|  |TAMS 0x000000061b400000, 0x000000061b400000| Untracked  | 110|0x000000061b800000, 0x000000061b800000, 0x000000061bc00000|  0%| F|  |TAMS 0x000000061b800000, 0x000000061b800000| Untracked  | 111|0x000000061bc00000, 0x000000061bc00000, 0x000000061c000000|  0%| F|  |TAMS 0x000000061bc00000, 0x000000061bc00000| Untracked  | 112|0x000000061c000000, 0x000000061c000000, 0x000000061c400000|  0%| F|  |TAMS 0x000000061c000000, 0x000000061c000000| Untracked  | 113|0x000000061c400000, 0x000000061c400000, 0x000000061c800000|  0%| F|  |TAMS 0x000000061c400000, 0x000000061c400000| Untracked  | 114|0x000000061c800000, 0x000000061c800000, 0x000000061cc00000|  0%| F|  |TAMS 0x000000061c800000, 0x000000061c800000| Untracked  | 115|0x000000061cc00000, 0x000000061cc00000, 0x000000061d000000|  0%| F|  |TAMS 0x000000061cc00000, 0x000000061cc00000| Untracked  | 116|0x000000061d000000, 0x000000061d000000, 0x000000061d400000|  0%| F|  |TAMS 0x000000061d000000, 0x000000061d000000| Untracked  | 117|0x000000061d400000, 0x000000061d400000, 0x000000061d800000|  0%| F|  |TAMS 0x000000061d400000, 0x000000061d400000| Untracked  | 118|0x000000061d800000, 0x000000061d800000, 0x000000061dc00000|  0%| F|  |TAMS 0x000000061d800000, 0x000000061d800000| Untracked  | 119|0x000000061dc00000, 0x000000061dc00000, 0x000000061e000000|  0%| F|  |TAMS 0x000000061dc00000, 0x000000061dc00000| Untracked  | 120|0x000000061e000000, 0x000000061e000000, 0x000000061e400000|  0%| F|  |TAMS 0x000000061e000000, 0x000000061e000000| Untracked  | 121|0x000000061e400000, 0x000000061e400000, 0x000000061e800000|  0%| F|  |TAMS 0x000000061e400000, 0x000000061e400000| Untracked  | 122|0x000000061e800000, 0x000000061e800000, 0x000000061ec00000|  0%| F|  |TAMS 0x000000061e800000, 0x000000061e800000| Untracked  | 123|0x000000061ec00000, 0x000000061ec00000, 0x000000061f000000|  0%| F|  |TAMS 0x000000061ec00000, 0x000000061ec00000| Untracked  | 124|0x000000061f000000, 0x000000061f000000, 0x000000061f400000|  0%| F|  |TAMS 0x000000061f000000, 0x000000061f000000| Untracked  | 125|0x000000061f400000, 0x000000061f400000, 0x000000061f800000|  0%| F|  |TAMS 0x000000061f400000, 0x000000061f400000| Untracked  | 126|0x000000061f800000, 0x000000061f800000, 0x000000061fc00000|  0%| F|  |TAMS 0x000000061f800000, 0x000000061f800000| Untracked  | 127|0x000000061fc00000, 0x000000061fc00000, 0x0000000620000000|  0%| F|  |TAMS 0x000000061fc00000, 0x000000061fc00000| Untracked  | 128|0x0000000620000000, 0x0000000620000000, 0x0000000620400000|  0%| F|  |TAMS 0x0000000620000000, 0x0000000620000000| Untracked  | 129|0x0000000620400000, 0x0000000620400000, 0x0000000620800000|  0%| F|  |TAMS 0x0000000620400000, 0x0000000620400000| Untracked  | 130|0x0000000620800000, 0x0000000620800000, 0x0000000620c00000|  0%| F|  |TAMS 0x0000000620800000, 0x0000000620800000| Untracked  | 131|0x0000000620c00000, 0x0000000620c00000, 0x0000000621000000|  0%| F|  |TAMS 0x0000000620c00000, 0x0000000620c00000| Untracked  | 132|0x0000000621000000, 0x0000000621000000, 0x0000000621400000|  0%| F|  |TAMS 0x0000000621000000, 0x0000000621000000| Untracked  | 133|0x0000000621400000, 0x0000000621400000, 0x0000000621800000|  0%| F|  |TAMS 0x0000000621400000, 0x0000000621400000| Untracked  | 134|0x0000000621800000, 0x0000000621800000, 0x0000000621c00000|  0%| F|  |TAMS 0x0000000621800000, 0x0000000621800000| Untracked  | 135|0x0000000621c00000, 0x0000000621c00000, 0x0000000622000000|  0%| F|  |TAMS 0x0000000621c00000, 0x0000000621c00000| Untracked  | 136|0x0000000622000000, 0x0000000622000000, 0x0000000622400000|  0%| F|  |TAMS 0x0000000622000000, 0x0000000622000000| Untracked  | 137|0x0000000622400000, 0x0000000622400000, 0x0000000622800000|  0%| F|  |TAMS 0x0000000622400000, 0x0000000622400000| Untracked  | 138|0x0000000622800000, 0x0000000622800000, 0x0000000622c00000|  0%| F|  |TAMS 0x0000000622800000, 0x0000000622800000| Untracked  | 139|0x0000000622c00000, 0x0000000622dc6920, 0x0000000623000000| 44%| S|CS|TAMS 0x0000000622c00000, 0x0000000622c00000| Complete  | 140|0x0000000623000000, 0x0000000623400000, 0x0000000623400000|100%| S|CS|TAMS 0x0000000623000000, 0x0000000623000000| Complete  | 141|0x0000000623400000, 0x0000000623800000, 0x0000000623800000|100%| S|CS|TAMS 0x0000000623400000, 0x0000000623400000| Complete  | 142|0x0000000623800000, 0x0000000623800000, 0x0000000623c00000|  0%| F|  |TAMS 0x0000000623800000, 0x0000000623800000| Untracked  | 143|0x0000000623c00000, 0x0000000623c00000, 0x0000000624000000|  0%| F|  |TAMS 0x0000000623c00000, 0x0000000623c00000| Untracked  | 144|0x0000000624000000, 0x0000000624000000, 0x0000000624400000|  0%| F|  |TAMS 0x0000000624000000, 0x0000000624000000| Untracked  | 145|0x0000000624400000, 0x0000000624400000, 0x0000000624800000|  0%| F|  |TAMS 0x0000000624400000, 0x0000000624400000| Untracked  | 146|0x0000000624800000, 0x0000000624800000, 0x0000000624c00000|  0%| F|  |TAMS 0x0000000624800000, 0x0000000624800000| Untracked  | 147|0x0000000624c00000, 0x0000000624c00000, 0x0000000625000000|  0%| F|  |TAMS 0x0000000624c00000, 0x0000000624c00000| Untracked  | 148|0x0000000625000000, 0x0000000625000000, 0x0000000625400000|  0%| F|  |TAMS 0x0000000625000000, 0x0000000625000000| Untracked  | 149|0x0000000625400000, 0x0000000625400000, 0x0000000625800000|  0%| F|  |TAMS 0x0000000625400000, 0x0000000625400000| Untracked  | 150|0x0000000625800000, 0x0000000625800000, 0x0000000625c00000|  0%| F|  |TAMS 0x0000000625800000, 0x0000000625800000| Untracked  | 151|0x0000000625c00000, 0x0000000625c00000, 0x0000000626000000|  0%| F|  |TAMS 0x0000000625c00000, 0x0000000625c00000| Untracked  | 152|0x0000000626000000, 0x0000000626000000, 0x0000000626400000|  0%| F|  |TAMS 0x0000000626000000, 0x0000000626000000| Untracked  | 153|0x0000000626400000, 0x0000000626400000, 0x0000000626800000|  0%| F|  |TAMS 0x0000000626400000, 0x0000000626400000| Untracked  | 154|0x0000000626800000, 0x0000000626800000, 0x0000000626c00000|  0%| F|  |TAMS 0x0000000626800000, 0x0000000626800000| Untracked  | 155|0x0000000626c00000, 0x0000000626c00000, 0x0000000627000000|  0%| F|  |TAMS 0x0000000626c00000, 0x0000000626c00000| Untracked  | 156|0x0000000627000000, 0x0000000627000000, 0x0000000627400000|  0%| F|  |TAMS 0x0000000627000000, 0x0000000627000000| Untracked  | 157|0x0000000627400000, 0x0000000627400000, 0x0000000627800000|  0%| F|  |TAMS 0x0000000627400000, 0x0000000627400000| Untracked  | 158|0x0000000627800000, 0x0000000627800000, 0x0000000627c00000|  0%| F|  |TAMS 0x0000000627800000, 0x0000000627800000| Untracked  | 159|0x0000000627c00000, 0x0000000627c00000, 0x0000000628000000|  0%| F|  |TAMS 0x0000000627c00000, 0x0000000627c00000| Untracked  | 160|0x0000000628000000, 0x0000000628000000, 0x0000000628400000|  0%| F|  |TAMS 0x0000000628000000, 0x0000000628000000| Untracked  | 161|0x0000000628400000, 0x0000000628400000, 0x0000000628800000|  0%| F|  |TAMS 0x0000000628400000, 0x0000000628400000| Untracked  | 162|0x0000000628800000, 0x0000000628800000, 0x0000000628c00000|  0%| F|  |TAMS 0x0000000628800000, 0x0000000628800000| Untracked  | 163|0x0000000628c00000, 0x0000000628c00000, 0x0000000629000000|  0%| F|  |TAMS 0x0000000628c00000, 0x0000000628c00000| Untracked  | 164|0x0000000629000000, 0x0000000629000000, 0x0000000629400000|  0%| F|  |TAMS 0x0000000629000000, 0x0000000629000000| Untracked  | 165|0x0000000629400000, 0x0000000629400000, 0x0000000629800000|  0%| F|  |TAMS 0x0000000629400000, 0x0000000629400000| Untracked  | 166|0x0000000629800000, 0x0000000629800000, 0x0000000629c00000|  0%| F|  |TAMS 0x0000000629800000, 0x0000000629800000| Untracked  | 167|0x0000000629c00000, 0x0000000629c00000, 0x000000062a000000|  0%| F|  |TAMS 0x0000000629c00000, 0x0000000629c00000| Untracked  | 168|0x000000062a000000, 0x000000062a000000, 0x000000062a400000|  0%| F|  |TAMS 0x000000062a000000, 0x000000062a000000| Untracked  | 169|0x000000062a400000, 0x000000062a400000, 0x000000062a800000|  0%| F|  |TAMS 0x000000062a400000, 0x000000062a400000| Untracked  | 170|0x000000062a800000, 0x000000062a800000, 0x000000062ac00000|  0%| F|  |TAMS 0x000000062a800000, 0x000000062a800000| Untracked  | 171|0x000000062ac00000, 0x000000062ac00000, 0x000000062b000000|  0%| F|  |TAMS 0x000000062ac00000, 0x000000062ac00000| Untracked  | 172|0x000000062b000000, 0x000000062b000000, 0x000000062b400000|  0%| F|  |TAMS 0x000000062b000000, 0x000000062b000000| Untracked  | 173|0x000000062b400000, 0x000000062b400000, 0x000000062b800000|  0%| F|  |TAMS 0x000000062b400000, 0x000000062b400000| Untracked  | 174|0x000000062b800000, 0x000000062b800000, 0x000000062bc00000|  0%| F|  |TAMS 0x000000062b800000, 0x000000062b800000| Untracked  | 175|0x000000062bc00000, 0x000000062bc00000, 0x000000062c000000|  0%| F|  |TAMS 0x000000062bc00000, 0x000000062bc00000| Untracked  | 176|0x000000062c000000, 0x000000062c000000, 0x000000062c400000|  0%| F|  |TAMS 0x000000062c000000, 0x000000062c000000| Untracked  | 177|0x000000062c400000, 0x000000062c400000, 0x000000062c800000|  0%| F|  |TAMS 0x000000062c400000, 0x000000062c400000| Untracked  | 178|0x000000062c800000, 0x000000062c800000, 0x000000062cc00000|  0%| F|  |TAMS 0x000000062c800000, 0x000000062c800000| Untracked  | 179|0x000000062cc00000, 0x000000062cc00000, 0x000000062d000000|  0%| F|  |TAMS 0x000000062cc00000, 0x000000062cc00000| Untracked  | 180|0x000000062d000000, 0x000000062d000000, 0x000000062d400000|  0%| F|  |TAMS 0x000000062d000000, 0x000000062d000000| Untracked  | 181|0x000000062d400000, 0x000000062d400000, 0x000000062d800000|  0%| F|  |TAMS 0x000000062d400000, 0x000000062d400000| Untracked  | 182|0x000000062d800000, 0x000000062d800000, 0x000000062dc00000|  0%| F|  |TAMS 0x000000062d800000, 0x000000062d800000| Untracked  | 183|0x000000062dc00000, 0x000000062dc00000, 0x000000062e000000|  0%| F|  |TAMS 0x000000062dc00000, 0x000000062dc00000| Untracked  | 184|0x000000062e000000, 0x000000062e000000, 0x000000062e400000|  0%| F|  |TAMS 0x000000062e000000, 0x000000062e000000| Untracked  | 185|0x000000062e400000, 0x000000062e400000, 0x000000062e800000|  0%| F|  |TAMS 0x000000062e400000, 0x000000062e400000| Untracked  | 186|0x000000062e800000, 0x000000062e800000, 0x000000062ec00000|  0%| F|  |TAMS 0x000000062e800000, 0x000000062e800000| Untracked  | 187|0x000000062ec00000, 0x000000062ec00000, 0x000000062f000000|  0%| F|  |TAMS 0x000000062ec00000, 0x000000062ec00000| Untracked  | 188|0x000000062f000000, 0x000000062f000000, 0x000000062f400000|  0%| F|  |TAMS 0x000000062f000000, 0x000000062f000000| Untracked  | 189|0x000000062f400000, 0x000000062f400000, 0x000000062f800000|  0%| F|  |TAMS 0x000000062f400000, 0x000000062f400000| Untracked  | 190|0x000000062f800000, 0x000000062f800000, 0x000000062fc00000|  0%| F|  |TAMS 0x000000062f800000, 0x000000062f800000| Untracked  | 191|0x000000062fc00000, 0x000000062fc00000, 0x0000000630000000|  0%| F|  |TAMS 0x000000062fc00000, 0x000000062fc00000| Untracked  | 192|0x0000000630000000, 0x0000000630000000, 0x0000000630400000|  0%| F|  |TAMS 0x0000000630000000, 0x0000000630000000| Untracked  | 193|0x0000000630400000, 0x0000000630400000, 0x0000000630800000|  0%| F|  |TAMS 0x0000000630400000, 0x0000000630400000| Untracked  | 194|0x0000000630800000, 0x0000000630800000, 0x0000000630c00000|  0%| F|  |TAMS 0x0000000630800000, 0x0000000630800000| Untracked  | 195|0x0000000630c00000, 0x0000000630c00000, 0x0000000631000000|  0%| F|  |TAMS 0x0000000630c00000, 0x0000000630c00000| Untracked  | 196|0x0000000631000000, 0x0000000631000000, 0x0000000631400000|  0%| F|  |TAMS 0x0000000631000000, 0x0000000631000000| Untracked  | 197|0x0000000631400000, 0x0000000631400000, 0x0000000631800000|  0%| F|  |TAMS 0x0000000631400000, 0x0000000631400000| Untracked  | 198|0x0000000631800000, 0x0000000631800000, 0x0000000631c00000|  0%| F|  |TAMS 0x0000000631800000, 0x0000000631800000| Untracked  | 199|0x0000000631c00000, 0x0000000631c00000, 0x0000000632000000|  0%| F|  |TAMS 0x0000000631c00000, 0x0000000631c00000| Untracked  | 200|0x0000000632000000, 0x0000000632000000, 0x0000000632400000|  0%| F|  |TAMS 0x0000000632000000, 0x0000000632000000| Untracked  | 201|0x0000000632400000, 0x0000000632400000, 0x0000000632800000|  0%| F|  |TAMS 0x0000000632400000, 0x0000000632400000| Untracked  | 202|0x0000000632800000, 0x0000000632800000, 0x0000000632c00000|  0%| F|  |TAMS 0x0000000632800000, 0x0000000632800000| Untracked  | 203|0x0000000632c00000, 0x0000000632c00000, 0x0000000633000000|  0%| F|  |TAMS 0x0000000632c00000, 0x0000000632c00000| Untracked  | 204|0x0000000633000000, 0x0000000633000000, 0x0000000633400000|  0%| F|  |TAMS 0x0000000633000000, 0x0000000633000000| Untracked  | 205|0x0000000633400000, 0x0000000633400000, 0x0000000633800000|  0%| F|  |TAMS 0x0000000633400000, 0x0000000633400000| Untracked  | 206|0x0000000633800000, 0x0000000633800000, 0x0000000633c00000|  0%| F|  |TAMS 0x0000000633800000, 0x0000000633800000| Untracked  | 207|0x0000000633c00000, 0x0000000633c00000, 0x0000000634000000|  0%| F|  |TAMS 0x0000000633c00000, 0x0000000633c00000| Untracked  | 208|0x0000000634000000, 0x0000000634000000, 0x0000000634400000|  0%| F|  |TAMS 0x0000000634000000, 0x0000000634000000| Untracked  | 209|0x0000000634400000, 0x0000000634400000, 0x0000000634800000|  0%| F|  |TAMS 0x0000000634400000, 0x0000000634400000| Untracked  | 210|0x0000000634800000, 0x0000000634800000, 0x0000000634c00000|  0%| F|  |TAMS 0x0000000634800000, 0x0000000634800000| Untracked  | 211|0x0000000634c00000, 0x0000000634c00000, 0x0000000635000000|  0%| F|  |TAMS 0x0000000634c00000, 0x0000000634c00000| Untracked  | 212|0x0000000635000000, 0x0000000635000000, 0x0000000635400000|  0%| F|  |TAMS 0x0000000635000000, 0x0000000635000000| Untracked  | 213|0x0000000635400000, 0x0000000635400000, 0x0000000635800000|  0%| F|  |TAMS 0x0000000635400000, 0x0000000635400000| Untracked  | 214|0x0000000635800000, 0x0000000635800000, 0x0000000635c00000|  0%| F|  |TAMS 0x0000000635800000, 0x0000000635800000| Untracked  | 215|0x0000000635c00000, 0x0000000635c00000, 0x0000000636000000|  0%| F|  |TAMS 0x0000000635c00000, 0x0000000635c00000| Untracked  | 216|0x0000000636000000, 0x0000000636000000, 0x0000000636400000|  0%| F|  |TAMS 0x0000000636000000, 0x0000000636000000| Untracked  | 217|0x0000000636400000, 0x0000000636400000, 0x0000000636800000|  0%| F|  |TAMS 0x0000000636400000, 0x0000000636400000| Untracked  | 218|0x0000000636800000, 0x0000000636800000, 0x0000000636c00000|  0%| F|  |TAMS 0x0000000636800000, 0x0000000636800000| Untracked  | 219|0x0000000636c00000, 0x0000000636c00000, 0x0000000637000000|  0%| F|  |TAMS 0x0000000636c00000, 0x0000000636c00000| Untracked  | 220|0x0000000637000000, 0x0000000637000000, 0x0000000637400000|  0%| F|  |TAMS 0x0000000637000000, 0x0000000637000000| Untracked  | 221|0x0000000637400000, 0x0000000637400000, 0x0000000637800000|  0%| F|  |TAMS 0x0000000637400000, 0x0000000637400000| Untracked  | 222|0x0000000637800000, 0x0000000637800000, 0x0000000637c00000|  0%| F|  |TAMS 0x0000000637800000, 0x0000000637800000| Untracked  | 223|0x0000000637c00000, 0x0000000637c00000, 0x0000000638000000|  0%| F|  |TAMS 0x0000000637c00000, 0x0000000637c00000| Untracked  | 224|0x0000000638000000, 0x0000000638000000, 0x0000000638400000|  0%| F|  |TAMS 0x0000000638000000, 0x0000000638000000| Untracked  | 225|0x0000000638400000, 0x0000000638400800, 0x0000000638800000|  0%| E|  |TAMS 0x0000000638400000, 0x0000000638400000| Complete  | 226|0x0000000638800000, 0x0000000638c00000, 0x0000000638c00000|100%| E|CS|TAMS 0x0000000638800000, 0x0000000638800000| Complete  | 227|0x0000000638c00000, 0x0000000639000000, 0x0000000639000000|100%| E|CS|TAMS 0x0000000638c00000, 0x0000000638c00000| Complete  | 228|0x0000000639000000, 0x0000000639400000, 0x0000000639400000|100%| E|CS|TAMS 0x0000000639000000, 0x0000000639000000| Complete  | 229|0x0000000639400000, 0x0000000639800000, 0x0000000639800000|100%| E|CS|TAMS 0x0000000639400000, 0x0000000639400000| Complete  | 230|0x0000000639800000, 0x0000000639c00000, 0x0000000639c00000|100%| E|CS|TAMS 0x0000000639800000, 0x0000000639800000| Complete  | 231|0x0000000639c00000, 0x000000063a000000, 0x000000063a000000|100%| E|CS|TAMS 0x0000000639c00000, 0x0000000639c00000| Complete  | 232|0x000000063a000000, 0x000000063a400000, 0x000000063a400000|100%| E|CS|TAMS 0x000000063a000000, 0x000000063a000000| Complete  | 233|0x000000063a400000, 0x000000063a800000, 0x000000063a800000|100%| E|CS|TAMS 0x000000063a400000, 0x000000063a400000| Complete  | 234|0x000000063a800000, 0x000000063ac00000, 0x000000063ac00000|100%| E|CS|TAMS 0x000000063a800000, 0x000000063a800000| Complete  | 235|0x000000063ac00000, 0x000000063b000000, 0x000000063b000000|100%| E|CS|TAMS 0x000000063ac00000, 0x000000063ac00000| Complete  | 236|0x000000063b000000, 0x000000063b400000, 0x000000063b400000|100%| E|CS|TAMS 0x000000063b000000, 0x000000063b000000| Complete  | 237|0x000000063b400000, 0x000000063b800000, 0x000000063b800000|100%| E|CS|TAMS 0x000000063b400000, 0x000000063b400000| Complete  | 238|0x000000063b800000, 0x000000063bc00000, 0x000000063bc00000|100%| E|CS|TAMS 0x000000063b800000, 0x000000063b800000| Complete  | 239|0x000000063bc00000, 0x000000063c000000, 0x000000063c000000|100%| E|CS|TAMS 0x000000063bc00000, 0x000000063bc00000| Complete  | 240|0x000000063c000000, 0x000000063c400000, 0x000000063c400000|100%| E|CS|TAMS 0x000000063c000000, 0x000000063c000000| Complete  | 241|0x000000063c400000, 0x000000063c800000, 0x000000063c800000|100%| E|CS|TAMS 0x000000063c400000, 0x000000063c400000| Complete  | 242|0x000000063c800000, 0x000000063cc00000, 0x000000063cc00000|100%| E|CS|TAMS 0x000000063c800000, 0x000000063c800000| Complete  | 243|0x000000063cc00000, 0x000000063d000000, 0x000000063d000000|100%| E|CS|TAMS 0x000000063cc00000, 0x000000063cc00000| Complete  | 244|0x000000063d000000, 0x000000063d400000, 0x000000063d400000|100%| E|CS|TAMS 0x000000063d000000, 0x000000063d000000| Complete  | 245|0x000000063d400000, 0x000000063d800000, 0x000000063d800000|100%| E|CS|TAMS 0x000000063d400000, 0x000000063d400000| Complete  | 246|0x000000063d800000, 0x000000063dc00000, 0x000000063dc00000|100%| E|CS|TAMS 0x000000063d800000, 0x000000063d800000| Complete  | 247|0x000000063dc00000, 0x000000063e000000, 0x000000063e000000|100%| E|CS|TAMS 0x000000063dc00000, 0x000000063dc00000| Complete  | 248|0x000000063e000000, 0x000000063e400000, 0x000000063e400000|100%| E|CS|TAMS 0x000000063e000000, 0x000000063e000000| Complete  | 249|0x000000063e400000, 0x000000063e800000, 0x000000063e800000|100%| E|CS|TAMS 0x000000063e400000, 0x000000063e400000| Complete  | 250|0x000000063e800000, 0x000000063ec00000, 0x000000063ec00000|100%| E|CS|TAMS 0x000000063e800000, 0x000000063e800000| Complete  | 251|0x000000063ec00000, 0x000000063f000000, 0x000000063f000000|100%| E|CS|TAMS 0x000000063ec00000, 0x000000063ec00000| Complete  | 252|0x000000063f000000, 0x000000063f400000, 0x000000063f400000|100%| E|CS|TAMS 0x000000063f000000, 0x000000063f000000| Complete  | 253|0x000000063f400000, 0x000000063f800000, 0x000000063f800000|100%| E|CS|TAMS 0x000000063f400000, 0x000000063f400000| Complete  | 254|0x000000063f800000, 0x000000063fc00000, 0x000000063fc00000|100%| E|CS|TAMS 0x000000063f800000, 0x000000063f800000| Complete  | 255|0x000000063fc00000, 0x0000000640000000, 0x0000000640000000|100%| E|CS|TAMS 0x000000063fc00000, 0x000000063fc00000| Complete  | 256|0x0000000640000000, 0x0000000640400000, 0x0000000640400000|100%| E|CS|TAMS 0x0000000640000000, 0x0000000640000000| Complete  | 257|0x0000000640400000, 0x0000000640800000, 0x0000000640800000|100%| E|CS|TAMS 0x0000000640400000, 0x0000000640400000| Complete  | 258|0x0000000640800000, 0x0000000640c00000, 0x0000000640c00000|100%| E|CS|TAMS 0x0000000640800000, 0x0000000640800000| Complete  | 259|0x0000000640c00000, 0x0000000641000000, 0x0000000641000000|100%| E|CS|TAMS 0x0000000640c00000, 0x0000000640c00000| Complete  | 260|0x0000000641000000, 0x0000000641400000, 0x0000000641400000|100%| E|CS|TAMS 0x0000000641000000, 0x0000000641000000| Complete  | 261|0x0000000641400000, 0x0000000641800000, 0x0000000641800000|100%| E|CS|TAMS 0x0000000641400000, 0x0000000641400000| Complete  | 262|0x0000000641800000, 0x0000000641c00000, 0x0000000641c00000|100%| E|CS|TAMS 0x0000000641800000, 0x0000000641800000| Complete  | 263|0x0000000641c00000, 0x0000000642000000, 0x0000000642000000|100%| E|CS|TAMS 0x0000000641c00000, 0x0000000641c00000| Complete  | 264|0x0000000642000000, 0x0000000642400000, 0x0000000642400000|100%| E|CS|TAMS 0x0000000642000000, 0x0000000642000000| Complete  | 265|0x0000000642400000, 0x0000000642800000, 0x0000000642800000|100%| E|CS|TAMS 0x0000000642400000, 0x0000000642400000| Complete  | 266|0x0000000642800000, 0x0000000642c00000, 0x0000000642c00000|100%| E|CS|TAMS 0x0000000642800000, 0x0000000642800000| Complete  | 267|0x0000000642c00000, 0x0000000643000000, 0x0000000643000000|100%| E|CS|TAMS 0x0000000642c00000, 0x0000000642c00000| Complete  | 268|0x0000000643000000, 0x0000000643400000, 0x0000000643400000|100%| E|CS|TAMS 0x0000000643000000, 0x0000000643000000| Complete  | 269|0x0000000643400000, 0x0000000643800000, 0x0000000643800000|100%| E|CS|TAMS 0x0000000643400000, 0x0000000643400000| Complete  | 270|0x0000000643800000, 0x0000000643c00000, 0x0000000643c00000|100%| E|CS|TAMS 0x0000000643800000, 0x0000000643800000| Complete  | 271|0x0000000643c00000, 0x0000000644000000, 0x0000000644000000|100%| E|CS|TAMS 0x0000000643c00000, 0x0000000643c00000| Complete  | 272|0x0000000644000000, 0x0000000644400000, 0x0000000644400000|100%| E|CS|TAMS 0x0000000644000000, 0x0000000644000000| Complete  | 273|0x0000000644400000, 0x0000000644800000, 0x0000000644800000|100%| E|CS|TAMS 0x0000000644400000, 0x0000000644400000| Complete  | 274|0x0000000644800000, 0x0000000644c00000, 0x0000000644c00000|100%| E|CS|TAMS 0x0000000644800000, 0x0000000644800000| Complete  | 275|0x0000000644c00000, 0x0000000645000000, 0x0000000645000000|100%| E|CS|TAMS 0x0000000644c00000, 0x0000000644c00000| Complete  | 276|0x0000000645000000, 0x0000000645400000, 0x0000000645400000|100%| E|CS|TAMS 0x0000000645000000, 0x0000000645000000| Complete  | 277|0x0000000645400000, 0x0000000645800000, 0x0000000645800000|100%| E|CS|TAMS 0x0000000645400000, 0x0000000645400000| Complete  | 278|0x0000000645800000, 0x0000000645c00000, 0x0000000645c00000|100%| E|CS|TAMS 0x0000000645800000, 0x0000000645800000| Complete  | 279|0x0000000645c00000, 0x0000000646000000, 0x0000000646000000|100%| E|CS|TAMS 0x0000000645c00000, 0x0000000645c00000| Complete  | 280|0x0000000646000000, 0x0000000646400000, 0x0000000646400000|100%| E|CS|TAMS 0x0000000646000000, 0x0000000646000000| Complete  | 281|0x0000000646400000, 0x0000000646800000, 0x0000000646800000|100%| E|CS|TAMS 0x0000000646400000, 0x0000000646400000| Complete  | 282|0x0000000646800000, 0x0000000646c00000, 0x0000000646c00000|100%| E|CS|TAMS 0x0000000646800000, 0x0000000646800000| Complete  | 283|0x0000000646c00000, 0x0000000647000000, 0x0000000647000000|100%| E|CS|TAMS 0x0000000646c00000, 0x0000000646c00000| Complete  | 284|0x0000000647000000, 0x0000000647400000, 0x0000000647400000|100%| E|CS|TAMS 0x0000000647000000, 0x0000000647000000| Complete  | 285|0x0000000647400000, 0x0000000647800000, 0x0000000647800000|100%| E|CS|TAMS 0x0000000647400000, 0x0000000647400000| Complete  | 286|0x0000000647800000, 0x0000000647c00000, 0x0000000647c00000|100%| E|CS|TAMS 0x0000000647800000, 0x0000000647800000| Complete  | 287|0x0000000647c00000, 0x0000000648000000, 0x0000000648000000|100%| E|CS|TAMS 0x0000000647c00000, 0x0000000647c00000| Complete  | 288|0x0000000648000000, 0x0000000648400000, 0x0000000648400000|100%| E|CS|TAMS 0x0000000648000000, 0x0000000648000000| Complete  | 289|0x0000000648400000, 0x0000000648800000, 0x0000000648800000|100%| E|CS|TAMS 0x0000000648400000, 0x0000000648400000| Complete  | 290|0x0000000648800000, 0x0000000648c00000, 0x0000000648c00000|100%| E|CS|TAMS 0x0000000648800000, 0x0000000648800000| Complete  | 291|0x0000000648c00000, 0x0000000649000000, 0x0000000649000000|100%| E|CS|TAMS 0x0000000648c00000, 0x0000000648c00000| Complete  | 292|0x0000000649000000, 0x0000000649400000, 0x0000000649400000|100%| E|CS|TAMS 0x0000000649000000, 0x0000000649000000| Complete  | 293|0x0000000649400000, 0x0000000649800000, 0x0000000649800000|100%| E|CS|TAMS 0x0000000649400000, 0x0000000649400000| Complete  | 294|0x0000000649800000, 0x0000000649c00000, 0x0000000649c00000|100%| E|CS|TAMS 0x0000000649800000, 0x0000000649800000| Complete  | 295|0x0000000649c00000, 0x000000064a000000, 0x000000064a000000|100%| E|CS|TAMS 0x0000000649c00000, 0x0000000649c00000| Complete  | 296|0x000000064a000000, 0x000000064a400000, 0x000000064a400000|100%| E|CS|TAMS 0x000000064a000000, 0x000000064a000000| Complete  | 297|0x000000064a400000, 0x000000064a800000, 0x000000064a800000|100%| E|CS|TAMS 0x000000064a400000, 0x000000064a400000| Complete  | 298|0x000000064a800000, 0x000000064ac00000, 0x000000064ac00000|100%| E|CS|TAMS 0x000000064a800000, 0x000000064a800000| Complete  | 299|0x000000064ac00000, 0x000000064b000000, 0x000000064b000000|100%| E|CS|TAMS 0x000000064ac00000, 0x000000064ac00000| Complete  | 300|0x000000064b000000, 0x000000064b400000, 0x000000064b400000|100%| E|CS|TAMS 0x000000064b000000, 0x000000064b000000| Complete  | 301|0x000000064b400000, 0x000000064b800000, 0x000000064b800000|100%| E|CS|TAMS 0x000000064b400000, 0x000000064b400000| Complete  | 302|0x000000064b800000, 0x000000064bc00000, 0x000000064bc00000|100%| E|CS|TAMS 0x000000064b800000, 0x000000064b800000| Complete  | 303|0x000000064bc00000, 0x000000064c000000, 0x000000064c000000|100%| E|CS|TAMS 0x000000064bc00000, 0x000000064bc00000| Complete  | 304|0x000000064c000000, 0x000000064c400000, 0x000000064c400000|100%| E|CS|TAMS 0x000000064c000000, 0x000000064c000000| Complete  | 305|0x000000064c400000, 0x000000064c800000, 0x000000064c800000|100%| E|CS|TAMS 0x000000064c400000, 0x000000064c400000| Complete  | 306|0x000000064c800000, 0x000000064cc00000, 0x000000064cc00000|100%| E|CS|TAMS 0x000000064c800000, 0x000000064c800000| Complete  | 307|0x000000064cc00000, 0x000000064d000000, 0x000000064d000000|100%| E|CS|TAMS 0x000000064cc00000, 0x000000064cc00000| Complete  | 308|0x000000064d000000, 0x000000064d400000, 0x000000064d400000|100%| E|CS|TAMS 0x000000064d000000, 0x000000064d000000| Complete  | 309|0x000000064d400000, 0x000000064d800000, 0x000000064d800000|100%| E|CS|TAMS 0x000000064d400000, 0x000000064d400000| Complete  | 310|0x000000064d800000, 0x000000064dc00000, 0x000000064dc00000|100%| E|CS|TAMS 0x000000064d800000, 0x000000064d800000| Complete  | 311|0x000000064dc00000, 0x000000064e000000, 0x000000064e000000|100%| E|CS|TAMS 0x000000064dc00000, 0x000000064dc00000| Complete  | 312|0x000000064e000000, 0x000000064e400000, 0x000000064e400000|100%| E|CS|TAMS 0x000000064e000000, 0x000000064e000000| Complete  | 313|0x000000064e400000, 0x000000064e800000, 0x000000064e800000|100%| E|CS|TAMS 0x000000064e400000, 0x000000064e400000| Complete  | 314|0x000000064e800000, 0x000000064ec00000, 0x000000064ec00000|100%| E|CS|TAMS 0x000000064e800000, 0x000000064e800000| Complete  | 315|0x000000064ec00000, 0x000000064f000000, 0x000000064f000000|100%| E|CS|TAMS 0x000000064ec00000, 0x000000064ec00000| Complete  | 316|0x000000064f000000, 0x000000064f400000, 0x000000064f400000|100%| E|CS|TAMS 0x000000064f000000, 0x000000064f000000| Complete  | 317|0x000000064f400000, 0x000000064f800000, 0x000000064f800000|100%| E|CS|TAMS 0x000000064f400000, 0x000000064f400000| Complete  | 318|0x000000064f800000, 0x000000064fc00000, 0x000000064fc00000|100%| E|CS|TAMS 0x000000064f800000, 0x000000064f800000| Complete  | 319|0x000000064fc00000, 0x0000000650000000, 0x0000000650000000|100%| E|CS|TAMS 0x000000064fc00000, 0x000000064fc00000| Complete  | 320|0x0000000650000000, 0x0000000650400000, 0x0000000650400000|100%| E|CS|TAMS 0x0000000650000000, 0x0000000650000000| Complete  | 321|0x0000000650400000, 0x0000000650800000, 0x0000000650800000|100%| E|CS|TAMS 0x0000000650400000, 0x0000000650400000| Complete  | 322|0x0000000650800000, 0x0000000650c00000, 0x0000000650c00000|100%| E|CS|TAMS 0x0000000650800000, 0x0000000650800000| Complete  | 323|0x0000000650c00000, 0x0000000651000000, 0x0000000651000000|100%| E|CS|TAMS 0x0000000650c00000, 0x0000000650c00000| Complete  | 324|0x0000000651000000, 0x0000000651400000, 0x0000000651400000|100%| E|CS|TAMS 0x0000000651000000, 0x0000000651000000| Complete  | 325|0x0000000651400000, 0x0000000651800000, 0x0000000651800000|100%| E|CS|TAMS 0x0000000651400000, 0x0000000651400000| Complete  | 326|0x0000000651800000, 0x0000000651c00000, 0x0000000651c00000|100%| E|CS|TAMS 0x0000000651800000, 0x0000000651800000| Complete  | 327|0x0000000651c00000, 0x0000000652000000, 0x0000000652000000|100%| E|CS|TAMS 0x0000000651c00000, 0x0000000651c00000| Complete  | 328|0x0000000652000000, 0x0000000652400000, 0x0000000652400000|100%| E|CS|TAMS 0x0000000652000000, 0x0000000652000000| Complete  | 329|0x0000000652400000, 0x0000000652800000, 0x0000000652800000|100%| E|CS|TAMS 0x0000000652400000, 0x0000000652400000| Complete  | 330|0x0000000652800000, 0x0000000652c00000, 0x0000000652c00000|100%| E|CS|TAMS 0x0000000652800000, 0x0000000652800000| Complete  | 331|0x0000000652c00000, 0x0000000653000000, 0x0000000653000000|100%| E|CS|TAMS 0x0000000652c00000, 0x0000000652c00000| Complete  | 332|0x0000000653000000, 0x0000000653400000, 0x0000000653400000|100%| E|CS|TAMS 0x0000000653000000, 0x0000000653000000| Complete  | 333|0x0000000653400000, 0x0000000653800000, 0x0000000653800000|100%| E|CS|TAMS 0x0000000653400000, 0x0000000653400000| Complete  | 334|0x0000000653800000, 0x0000000653c00000, 0x0000000653c00000|100%| E|CS|TAMS 0x0000000653800000, 0x0000000653800000| Complete  | 335|0x0000000653c00000, 0x0000000654000000, 0x0000000654000000|100%| E|CS|TAMS 0x0000000653c00000, 0x0000000653c00000| Complete  | 336|0x0000000654000000, 0x0000000654400000, 0x0000000654400000|100%| E|CS|TAMS 0x0000000654000000, 0x0000000654000000| Complete  | 337|0x0000000654400000, 0x0000000654800000, 0x0000000654800000|100%| E|CS|TAMS 0x0000000654400000, 0x0000000654400000| Complete  | 338|0x0000000654800000, 0x0000000654c00000, 0x0000000654c00000|100%| E|CS|TAMS 0x0000000654800000, 0x0000000654800000| Complete  | 339|0x0000000654c00000, 0x0000000655000000, 0x0000000655000000|100%| E|CS|TAMS 0x0000000654c00000, 0x0000000654c00000| Complete  | 340|0x0000000655000000, 0x0000000655400000, 0x0000000655400000|100%| E|CS|TAMS 0x0000000655000000, 0x0000000655000000| Complete  | 341|0x0000000655400000, 0x0000000655800000, 0x0000000655800000|100%| E|CS|TAMS 0x0000000655400000, 0x0000000655400000| Complete  | 342|0x0000000655800000, 0x0000000655c00000, 0x0000000655c00000|100%| E|CS|TAMS 0x0000000655800000, 0x0000000655800000| Complete  | 343|0x0000000655c00000, 0x0000000656000000, 0x0000000656000000|100%| E|CS|TAMS 0x0000000655c00000, 0x0000000655c00000| Complete  | 344|0x0000000656000000, 0x0000000656400000, 0x0000000656400000|100%| E|CS|TAMS 0x0000000656000000, 0x0000000656000000| Complete  | 345|0x0000000656400000, 0x0000000656800000, 0x0000000656800000|100%| E|CS|TAMS 0x0000000656400000, 0x0000000656400000| Complete  | 346|0x0000000656800000, 0x0000000656c00000, 0x0000000656c00000|100%| E|CS|TAMS 0x0000000656800000, 0x0000000656800000| Complete  | 347|0x0000000656c00000, 0x0000000657000000, 0x0000000657000000|100%| E|CS|TAMS 0x0000000656c00000, 0x0000000656c00000| Complete  | 348|0x0000000657000000, 0x0000000657400000, 0x0000000657400000|100%| E|CS|TAMS 0x0000000657000000, 0x0000000657000000| Complete  | 349|0x0000000657400000, 0x0000000657800000, 0x0000000657800000|100%| E|CS|TAMS 0x0000000657400000, 0x0000000657400000| Complete  | 350|0x0000000657800000, 0x0000000657c00000, 0x0000000657c00000|100%| E|CS|TAMS 0x0000000657800000, 0x0000000657800000| Complete  | 351|0x0000000657c00000, 0x0000000658000000, 0x0000000658000000|100%| E|CS|TAMS 0x0000000657c00000, 0x0000000657c00000| Complete  | 352|0x0000000658000000, 0x0000000658400000, 0x0000000658400000|100%| E|CS|TAMS 0x0000000658000000, 0x0000000658000000| Complete  | 353|0x0000000658400000, 0x0000000658800000, 0x0000000658800000|100%| E|CS|TAMS 0x0000000658400000, 0x0000000658400000| Complete  | 354|0x0000000658800000, 0x0000000658c00000, 0x0000000658c00000|100%| E|CS|TAMS 0x0000000658800000, 0x0000000658800000| Complete  | 355|0x0000000658c00000, 0x0000000659000000, 0x0000000659000000|100%| E|CS|TAMS 0x0000000658c00000, 0x0000000658c00000| Complete  | 356|0x0000000659000000, 0x0000000659400000, 0x0000000659400000|100%| E|CS|TAMS 0x0000000659000000, 0x0000000659000000| Complete  | 357|0x0000000659400000, 0x0000000659800000, 0x0000000659800000|100%| E|CS|TAMS 0x0000000659400000, 0x0000000659400000| Complete  | 358|0x0000000659800000, 0x0000000659c00000, 0x0000000659c00000|100%| E|CS|TAMS 0x0000000659800000, 0x0000000659800000| Complete  | 359|0x0000000659c00000, 0x000000065a000000, 0x000000065a000000|100%| E|CS|TAMS 0x0000000659c00000, 0x0000000659c00000| Complete  | 360|0x000000065a000000, 0x000000065a400000, 0x000000065a400000|100%| E|CS|TAMS 0x000000065a000000, 0x000000065a000000| Complete  | 361|0x000000065a400000, 0x000000065a800000, 0x000000065a800000|100%| E|CS|TAMS 0x000000065a400000, 0x000000065a400000| Complete  | 362|0x000000065a800000, 0x000000065ac00000, 0x000000065ac00000|100%| E|CS|TAMS 0x000000065a800000, 0x000000065a800000| Complete  | 363|0x000000065ac00000, 0x000000065b000000, 0x000000065b000000|100%| E|CS|TAMS 0x000000065ac00000, 0x000000065ac00000| Complete  | 364|0x000000065b000000, 0x000000065b400000, 0x000000065b400000|100%| E|CS|TAMS 0x000000065b000000, 0x000000065b000000| Complete  | 365|0x000000065b400000, 0x000000065b800000, 0x000000065b800000|100%| E|CS|TAMS 0x000000065b400000, 0x000000065b400000| Complete  | 366|0x000000065b800000, 0x000000065bc00000, 0x000000065bc00000|100%| E|CS|TAMS 0x000000065b800000, 0x000000065b800000| Complete  | 367|0x000000065bc00000, 0x000000065c000000, 0x000000065c000000|100%| E|CS|TAMS 0x000000065bc00000, 0x000000065bc00000| Complete  | 368|0x000000065c000000, 0x000000065c400000, 0x000000065c400000|100%| E|CS|TAMS 0x000000065c000000, 0x000000065c000000| Complete  | 369|0x000000065c400000, 0x000000065c800000, 0x000000065c800000|100%| E|CS|TAMS 0x000000065c400000, 0x000000065c400000| Complete  | 370|0x000000065c800000, 0x000000065cc00000, 0x000000065cc00000|100%| E|CS|TAMS 0x000000065c800000, 0x000000065c800000| Complete  | 371|0x000000065cc00000, 0x000000065d000000, 0x000000065d000000|100%| E|CS|TAMS 0x000000065cc00000, 0x000000065cc00000| Complete  | 372|0x000000065d000000, 0x000000065d400000, 0x000000065d400000|100%| E|CS|TAMS 0x000000065d000000, 0x000000065d000000| Complete  | 373|0x000000065d400000, 0x000000065d800000, 0x000000065d800000|100%| E|CS|TAMS 0x000000065d400000, 0x000000065d400000| Complete  | 374|0x000000065d800000, 0x000000065dc00000, 0x000000065dc00000|100%| E|CS|TAMS 0x000000065d800000, 0x000000065d800000| Complete  | 375|0x000000065dc00000, 0x000000065e000000, 0x000000065e000000|100%| E|CS|TAMS 0x000000065dc00000, 0x000000065dc00000| Complete  | 376|0x000000065e000000, 0x000000065e400000, 0x000000065e400000|100%| E|CS|TAMS 0x000000065e000000, 0x000000065e000000| Complete  | 377|0x000000065e400000, 0x000000065e800000, 0x000000065e800000|100%| E|CS|TAMS 0x000000065e400000, 0x000000065e400000| Complete  | 378|0x000000065e800000, 0x000000065ec00000, 0x000000065ec00000|100%| E|CS|TAMS 0x000000065e800000, 0x000000065e800000| Complete  | 379|0x000000065ec00000, 0x000000065f000000, 0x000000065f000000|100%| E|CS|TAMS 0x000000065ec00000, 0x000000065ec00000| Complete  | 380|0x000000065f000000, 0x000000065f400000, 0x000000065f400000|100%| E|CS|TAMS 0x000000065f000000, 0x000000065f000000| Complete  | 381|0x000000065f400000, 0x000000065f800000, 0x000000065f800000|100%| E|CS|TAMS 0x000000065f400000, 0x000000065f400000| Complete  | 382|0x000000065f800000, 0x000000065fc00000, 0x000000065fc00000|100%| E|CS|TAMS 0x000000065f800000, 0x000000065f800000| Complete  | 383|0x000000065fc00000, 0x0000000660000000, 0x0000000660000000|100%| E|CS|TAMS 0x000000065fc00000, 0x000000065fc00000| Complete  | 384|0x0000000660000000, 0x0000000660400000, 0x0000000660400000|100%| E|CS|TAMS 0x0000000660000000, 0x0000000660000000| Complete  | 385|0x0000000660400000, 0x0000000660800000, 0x0000000660800000|100%| E|CS|TAMS 0x0000000660400000, 0x0000000660400000| Complete  | 386|0x0000000660800000, 0x0000000660c00000, 0x0000000660c00000|100%| E|CS|TAMS 0x0000000660800000, 0x0000000660800000| Complete  | 387|0x0000000660c00000, 0x0000000661000000, 0x0000000661000000|100%| E|CS|TAMS 0x0000000660c00000, 0x0000000660c00000| Complete  | 388|0x0000000661000000, 0x0000000661400000, 0x0000000661400000|100%| E|CS|TAMS 0x0000000661000000, 0x0000000661000000| Complete  | 389|0x0000000661400000, 0x0000000661800000, 0x0000000661800000|100%| E|CS|TAMS 0x0000000661400000, 0x0000000661400000| Complete  | 390|0x0000000661800000, 0x0000000661c00000, 0x0000000661c00000|100%| E|CS|TAMS 0x0000000661800000, 0x0000000661800000| Complete  | 391|0x0000000661c00000, 0x0000000662000000, 0x0000000662000000|100%| E|CS|TAMS 0x0000000661c00000, 0x0000000661c00000| Complete  | 392|0x0000000662000000, 0x0000000662400000, 0x0000000662400000|100%| E|CS|TAMS 0x0000000662000000, 0x0000000662000000| Complete  | 393|0x0000000662400000, 0x0000000662800000, 0x0000000662800000|100%| E|CS|TAMS 0x0000000662400000, 0x0000000662400000| Complete  | 394|0x0000000662800000, 0x0000000662c00000, 0x0000000662c00000|100%| E|CS|TAMS 0x0000000662800000, 0x0000000662800000| Complete  | 395|0x0000000662c00000, 0x0000000663000000, 0x0000000663000000|100%| E|CS|TAMS 0x0000000662c00000, 0x0000000662c00000| Complete  | 396|0x0000000663000000, 0x0000000663400000, 0x0000000663400000|100%| E|CS|TAMS 0x0000000663000000, 0x0000000663000000| Complete  | 397|0x0000000663400000, 0x0000000663800000, 0x0000000663800000|100%| E|CS|TAMS 0x0000000663400000, 0x0000000663400000| Complete  | 398|0x0000000663800000, 0x0000000663c00000, 0x0000000663c00000|100%| E|CS|TAMS 0x0000000663800000, 0x0000000663800000| Complete  | 399|0x0000000663c00000, 0x0000000664000000, 0x0000000664000000|100%| E|CS|TAMS 0x0000000663c00000, 0x0000000663c00000| Complete  | 400|0x0000000664000000, 0x0000000664400000, 0x0000000664400000|100%| E|CS|TAMS 0x0000000664000000, 0x0000000664000000| Complete  | 401|0x0000000664400000, 0x0000000664800000, 0x0000000664800000|100%| E|CS|TAMS 0x0000000664400000, 0x0000000664400000| Complete  | 402|0x0000000664800000, 0x0000000664c00000, 0x0000000664c00000|100%| E|CS|TAMS 0x0000000664800000, 0x0000000664800000| Complete  | 591|0x0000000693c00000, 0x0000000694000000, 0x0000000694000000|100%| E|CS|TAMS 0x0000000693c00000, 0x0000000693c00000| Complete  | 592|0x0000000694000000, 0x0000000694400000, 0x0000000694400000|100%| E|CS|TAMS 0x0000000694000000, 0x0000000694000000| Complete  | 593|0x0000000694400000, 0x0000000694800000, 0x0000000694800000|100%| E|CS|TAMS 0x0000000694400000, 0x0000000694400000| Complete  | 594|0x0000000694800000, 0x0000000694c00000, 0x0000000694c00000|100%| E|CS|TAMS 0x0000000694800000, 0x0000000694800000| Complete  | 595|0x0000000694c00000, 0x0000000695000000, 0x0000000695000000|100%| E|CS|TAMS 0x0000000694c00000, 0x0000000694c00000| Complete  | 596|0x0000000695000000, 0x0000000695400000, 0x0000000695400000|100%| E|CS|TAMS 0x0000000695000000, 0x0000000695000000| Complete  | 597|0x0000000695400000, 0x0000000695800000, 0x0000000695800000|100%| E|CS|TAMS 0x0000000695400000, 0x0000000695400000| Complete  | 598|0x0000000695800000, 0x0000000695c00000, 0x0000000695c00000|100%| E|CS|TAMS 0x0000000695800000, 0x0000000695800000| Complete  | 599|0x0000000695c00000, 0x0000000696000000, 0x0000000696000000|100%| E|CS|TAMS 0x0000000695c00000, 0x0000000695c00000| Complete  | 600|0x0000000696000000, 0x0000000696400000, 0x0000000696400000|100%| E|CS|TAMS 0x0000000696000000, 0x0000000696000000| Complete  | 601|0x0000000696400000, 0x0000000696800000, 0x0000000696800000|100%| E|CS|TAMS 0x0000000696400000, 0x0000000696400000| Complete  | 602|0x0000000696800000, 0x0000000696c00000, 0x0000000696c00000|100%| E|CS|TAMS 0x0000000696800000, 0x0000000696800000| Complete  | 603|0x0000000696c00000, 0x0000000697000000, 0x0000000697000000|100%| E|CS|TAMS 0x0000000696c00000, 0x0000000696c00000| Complete  | 604|0x0000000697000000, 0x0000000697400000, 0x0000000697400000|100%| E|CS|TAMS 0x0000000697000000, 0x0000000697000000| Complete  | 605|0x0000000697400000, 0x0000000697800000, 0x0000000697800000|100%| E|CS|TAMS 0x0000000697400000, 0x0000000697400000| Complete  | 606|0x0000000697800000, 0x0000000697c00000, 0x0000000697c00000|100%| E|CS|TAMS 0x0000000697800000, 0x0000000697800000| Complete  | 607|0x0000000697c00000, 0x0000000698000000, 0x0000000698000000|100%| E|CS|TAMS 0x0000000697c00000, 0x0000000697c00000| Complete  | 608|0x0000000698000000, 0x0000000698400000, 0x0000000698400000|100%| E|CS|TAMS 0x0000000698000000, 0x0000000698000000| Complete  | 609|0x0000000698400000, 0x0000000698800000, 0x0000000698800000|100%| E|CS|TAMS 0x0000000698400000, 0x0000000698400000| Complete  | 610|0x0000000698800000, 0x0000000698c00000, 0x0000000698c00000|100%| E|CS|TAMS 0x0000000698800000, 0x0000000698800000| Complete  | 611|0x0000000698c00000, 0x0000000699000000, 0x0000000699000000|100%| E|CS|TAMS 0x0000000698c00000, 0x0000000698c00000| Complete  Card table byte_map: [0x000002abcdcb0000,0x000002abcecb0000] _byte_map_base: 0x000002abcacb0000 Marking Bits (Prev, Next): (CMBitMap*) 0x000002abba0465a0, (CMBitMap*) 0x000002abba046560  Prev Bits: [0x000002abd7cb0000, 0x000002abdfcb0000)  Next Bits: [0x000002abcfcb0000, 0x000002abd7cb0000) Polling page: 0x000002abb7f30000 Metaspace: Usage:   Non-class:     82.05 MB used.       Class:     13.30 MB used.        Both:     95.35 MB used. Virtual space:   Non-class space:      128.00 MB reserved,      83.31 MB ( 65%) committed,  2 nodes.       Class space:        1.00 GB reserved,      14.19 MB (  1%) committed,  1 nodes.              Both:        1.12 GB reserved,      97.50 MB (  8%) committed.  Chunk freelists:    Non-Class:  12.74 MB        Class:  1.82 MB         Both:  14.56 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 134.69 MB CDS: off MetaspaceReclaimPolicy: balanced  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - new_chunks_are_fully_committed: 0.  - uncommit_free_chunks: 1.  - use_allocation_guard: 0.  - handle_deallocations: 1. Internal statistics: num_allocs_failed_limit: 12. num_arena_births: 3130. num_arena_deaths: 0. num_vsnodes_births: 3. num_vsnodes_deaths: 0. num_space_committed: 1557. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 12. num_chunks_taken_from_freelist: 7021. num_chunk_merges: 9. num_chunk_splits: 4427. num_chunks_enlarged: 2676. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=120000Kb used=10090Kb max_used=10197Kb free=109909Kb  bounds [0x000002abc5230000, 0x000002abc5c30000, 0x000002abcc760000] CodeHeap 'profiled nmethods': size=120000Kb used=20190Kb max_used=20876Kb free=99809Kb  bounds [0x000002abbd760000, 0x000002abbebd0000, 0x000002abc4c90000] CodeHeap 'non-nmethods': size=5760Kb used=2055Kb max_used=2109Kb free=3704Kb  bounds [0x000002abc4c90000, 0x000002abc4f00000, 0x000002abc5230000]  total_blobs=13316 nmethods=11722 adapters=1504  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 19.921 Thread 0x000002abe9fd5b10 nmethod 16770 0x000002abc5abbf90 code [0x000002abc5abc140, 0x000002abc5abc578] Event: 19.940 Thread 0x000002abe2a7c060 16788       3       sun.misc.Unsafe::getInt (9 bytes) Event: 19.940 Thread 0x000002abe2a7c060 nmethod 16788 0x000002abbe782410 code [0x000002abbe7825a0, 0x000002abbe7826b8] Event: 19.940 Thread 0x000002abe2a7c060 16789       3       org.lwjgl.system.CustomBuffer::address (19 bytes) Event: 19.940 Thread 0x000002abe2a7c060 nmethod 16789 0x000002abbd861810 code [0x000002abbd8619c0, 0x000002abbd861c28] Event: 19.941 Thread 0x000002abe2a7c060 16790       3       org.apache.logging.log4j.util.StackLocator$$Lambda$389/0x000000080028c2d0::test (12 bytes) Event: 19.941 Thread 0x000002abe2a7c060 nmethod 16790 0x000002abbd860b90 code [0x000002abbd860da0, 0x000002abbd861558] Event: 19.942 Thread 0x000002abe2a7c060 16791       3       org.apache.logging.log4j.util.StackLocator::lambda$getCallerClass$3 (19 bytes) Event: 19.942 Thread 0x000002abe2a7c060 nmethod 16791 0x000002abbd860110 code [0x000002abbd860300, 0x000002abbd860918] Event: 19.950 Thread 0x000002abe9fd5b10 16792       4       java.util.regex.Pattern$BitClass::is (22 bytes) Event: 19.950 Thread 0x000002abe9fd5b10 nmethod 16792 0x000002abc5abb990 code [0x000002abc5abbb00, 0x000002abc5abbbd8] Event: 19.951 Thread 0x000002abe9fd5b10 16793       4       java.lang.invoke.LambdaForm$MH/0x00000008000ccc00::invoke (27 bytes) Event: 19.951 Thread 0x000002abe2a7c060 16794       3       java.lang.invoke.BoundMethodHandle::bindArgumentJ (11 bytes) Event: 19.951 Thread 0x000002abe2a7c060 nmethod 16794 0x000002abbd85f810 code [0x000002abbd85f9e0, 0x000002abbd85fed8] Event: 19.951 Thread 0x000002abe2a7c060 16795       1       de.keksuccino.konkrete.config.ConfigEntry::getCategory (5 bytes) Event: 19.951 Thread 0x000002abe2a7c060 nmethod 16795 0x000002abc5abb690 code [0x000002abc5abb820, 0x000002abc5abb8f8] Event: 19.951 Thread 0x000002abe9fd5b10 nmethod 16793 0x000002abc5abb290 code [0x000002abc5abb420, 0x000002abc5abb518] Event: 19.954 Thread 0x000002abe9fd5b10 16796 %     4       java.lang.StringCoding::implEncodeAsciiArray @ 3 (47 bytes) Event: 19.955 Thread 0x000002abef76c470 nmethod 16744 0x000002abc5883810 code [0x000002abc5883b60, 0x000002abc58887d0] Event: 19.957 Thread 0x000002abe9fd5b10 nmethod 16796% 0x000002abc5b75590 code [0x000002abc5b75720, 0x000002abc5b75b18] GC Heap History (20 events): Event: 11.773 GC heap before {Heap before GC invocations=36 (full 0):  garbage-first heap   total 983040K, used 836900K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 140 young (573440K), 11 survivors (45056K)  Metaspace       used 44664K, committed 46272K, reserved 1114112K   class space    used 5083K, committed 5760K, reserved 1048576K } Event: 11.787 GC heap after {Heap after GC invocations=37 (full 0):  garbage-first heap   total 983040K, used 322942K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 13 young (53248K), 13 survivors (53248K)  Metaspace       used 44664K, committed 46272K, reserved 1114112K   class space    used 5083K, committed 5760K, reserved 1048576K } Event: 12.093 GC heap before {Heap before GC invocations=37 (full 0):  garbage-first heap   total 983040K, used 826750K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 136 young (557056K), 13 survivors (53248K)  Metaspace       used 45207K, committed 46912K, reserved 1114112K   class space    used 5143K, committed 5824K, reserved 1048576K } Event: 12.110 GC heap after {Heap after GC invocations=38 (full 0):  garbage-first heap   total 1179648K, used 342311K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 14 young (57344K), 14 survivors (57344K)  Metaspace       used 45207K, committed 46912K, reserved 1114112K   class space    used 5143K, committed 5824K, reserved 1048576K } Event: 12.714 GC heap before {Heap before GC invocations=38 (full 0):  garbage-first heap   total 1179648K, used 989479K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 172 young (704512K), 14 survivors (57344K)  Metaspace       used 45450K, committed 47168K, reserved 1114112K   class space    used 5174K, committed 5888K, reserved 1048576K } Event: 12.734 GC heap after {Heap after GC invocations=39 (full 0):  garbage-first heap   total 1179648K, used 373320K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 19 young (77824K), 19 survivors (77824K)  Metaspace       used 45450K, committed 47168K, reserved 1114112K   class space    used 5174K, committed 5888K, reserved 1048576K } Event: 13.225 GC heap before {Heap before GC invocations=39 (full 0):  garbage-first heap   total 1179648K, used 979528K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 167 young (684032K), 19 survivors (77824K)  Metaspace       used 46312K, committed 48064K, reserved 1114112K   class space    used 5275K, committed 6016K, reserved 1048576K } Event: 13.244 GC heap after {Heap after GC invocations=40 (full 0):  garbage-first heap   total 1179648K, used 384978K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 12 young (49152K), 12 survivors (49152K)  Metaspace       used 46312K, committed 48064K, reserved 1114112K   class space    used 5275K, committed 6016K, reserved 1048576K } Event: 14.424 GC heap before {Heap before GC invocations=40 (full 0):  garbage-first heap   total 1179648K, used 1011666K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 162 young (663552K), 12 survivors (49152K)  Metaspace       used 52679K, committed 54528K, reserved 1114112K   class space    used 6083K, committed 6848K, reserved 1048576K } Event: 14.438 GC heap after {Heap after GC invocations=41 (full 0):  garbage-first heap   total 1179648K, used 401408K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 13 young (53248K), 13 survivors (53248K)  Metaspace       used 52679K, committed 54528K, reserved 1114112K   class space    used 6083K, committed 6848K, reserved 1048576K } Event: 15.105 GC heap before {Heap before GC invocations=41 (full 0):  garbage-first heap   total 1179648K, used 1007616K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 161 young (659456K), 13 survivors (53248K)  Metaspace       used 56032K, committed 57920K, reserved 1114112K   class space    used 6423K, committed 7232K, reserved 1048576K } Event: 15.119 GC heap after {Heap after GC invocations=42 (full 0):  garbage-first heap   total 1179648K, used 407429K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 8 young (32768K), 8 survivors (32768K)  Metaspace       used 56032K, committed 57920K, reserved 1114112K   class space    used 6423K, committed 7232K, reserved 1048576K } Event: 15.803 GC heap before {Heap before GC invocations=42 (full 0):  garbage-first heap   total 1179648K, used 755589K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 94 young (385024K), 8 survivors (32768K)  Metaspace       used 62701K, committed 64640K, reserved 1114112K   class space    used 7548K, committed 8384K, reserved 1048576K } Event: 15.813 GC heap after {Heap after GC invocations=43 (full 0):  garbage-first heap   total 1179648K, used 410851K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 9 young (36864K), 9 survivors (36864K)  Metaspace       used 62701K, committed 64640K, reserved 1114112K   class space    used 7548K, committed 8384K, reserved 1048576K } Event: 16.833 GC heap before {Heap before GC invocations=44 (full 0):  garbage-first heap   total 1179648K, used 1017059K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 157 young (643072K), 9 survivors (36864K)  Metaspace       used 70363K, committed 72384K, reserved 1114112K   class space    used 8986K, committed 9856K, reserved 1048576K } Event: 16.848 GC heap after {Heap after GC invocations=45 (full 0):  garbage-first heap   total 1179648K, used 423110K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 12 young (49152K), 12 survivors (49152K)  Metaspace       used 70363K, committed 72384K, reserved 1114112K   class space    used 8986K, committed 9856K, reserved 1048576K } Event: 16.859 GC heap before {Heap before GC invocations=45 (full 0):  garbage-first heap   total 1179648K, used 431302K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 14 young (57344K), 12 survivors (49152K)  Metaspace       used 70463K, committed 72448K, reserved 1114112K   class space    used 9019K, committed 9856K, reserved 1048576K } Event: 16.870 GC heap after {Heap after GC invocations=46 (full 0):  garbage-first heap   total 1179648K, used 425381K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 2 young (8192K), 2 survivors (8192K)  Metaspace       used 70463K, committed 72448K, reserved 1114112K   class space    used 9019K, committed 9856K, reserved 1048576K } Event: 17.920 GC heap before {Heap before GC invocations=46 (full 0):  garbage-first heap   total 1179648K, used 1015205K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 146 young (598016K), 2 survivors (8192K)  Metaspace       used 80151K, committed 82240K, reserved 1179648K   class space    used 11029K, committed 11904K, reserved 1048576K } Event: 17.928 GC heap after {Heap after GC invocations=47 (full 0):  garbage-first heap   total 2506752K, used 428116K [0x0000000600000000, 0x0000000800000000)   region size 4096K, 3 young (12288K), 3 survivors (12288K)  Metaspace       used 80151K, committed 82240K, reserved 1179648K   class space    used 11029K, committed 11904K, reserved 1048576K } Dll operation events (12 events): Event: 0.005 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll Event: 0.022 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll Event: 0.175 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll Event: 0.177 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll Event: 0.185 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll Event: 0.255 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll Event: 0.417 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll Event: 1.553 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll Event: 1.556 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll Event: 13.561 Loaded shared library C:\Users\missm\AppData\Local\Temp\jna-103906033\jna8614400180150369691.dll Event: 18.906 Loaded shared library C:\Users\missm\AppData\Local\Temp\lwjglmissm\3.3.1-build-7\lwjgl.dll Event: 19.026 Loaded shared library C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll Deoptimization events (20 events): Event: 19.777 Thread 0x000002abb9fdb9c0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002abc52cfcc4 relative=0x0000000000000f84 Event: 19.777 Thread 0x000002abb9fdb9c0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002abc52cfcc4 method=java.util.AbstractMap.equals(Ljava/lang/Object;)Z @ 8 c2 Event: 19.777 Thread 0x000002abb9fdb9c0 DEOPT PACKING pc=0x000002abc52cfcc4 sp=0x000000e76e6fcdd0 Event: 19.777 Thread 0x000002abb9fdb9c0 DEOPT UNPACKING pc=0x000002abc4ce69a3 sp=0x000000e76e6fcd98 mode 2 Event: 19.802 Thread 0x000002abb9fdb9c0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002abc59972e8 relative=0x00000000000003c8 Event: 19.802 Thread 0x000002abb9fdb9c0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002abc59972e8 method=com.google.common.collect.ImmutableCollection$Builder.expandedCapacity(II)I @ 24 c2 Event: 19.802 Thread 0x000002abb9fdb9c0 DEOPT PACKING pc=0x000002abc59972e8 sp=0x000000e76e6fcbd0 Event: 19.802 Thread 0x000002abb9fdb9c0 DEOPT UNPACKING pc=0x000002abc4ce69a3 sp=0x000000e76e6fcb28 mode 2 Event: 19.893 Thread 0x000002abb9fdb9c0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002abc5bf3090 relative=0x0000000000000830 Event: 19.893 Thread 0x000002abb9fdb9c0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002abc5bf3090 method=com.google.gson.stream.JsonReader.peekKeyword()I @ 181 c2 Event: 19.894 Thread 0x000002abb9fdb9c0 DEOPT PACKING pc=0x000002abc5bf3090 sp=0x000000e76e6fe0a0 Event: 19.894 Thread 0x000002abb9fdb9c0 DEOPT UNPACKING pc=0x000002abc4ce69a3 sp=0x000000e76e6fdfb8 mode 2 Event: 19.895 Thread 0x000002abb9fdb9c0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002abc59feb78 relative=0x0000000000000078 Event: 19.895 Thread 0x000002abb9fdb9c0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002abc59feb78 method=java.lang.Boolean.equals(Ljava/lang/Object;)Z @ 18 c2 Event: 19.895 Thread 0x000002abb9fdb9c0 DEOPT PACKING pc=0x000002abc59feb78 sp=0x000000e76e6fde70 Event: 19.895 Thread 0x000002abb9fdb9c0 DEOPT UNPACKING pc=0x000002abc4ce69a3 sp=0x000000e76e6fde08 mode 2 Event: 19.900 Thread 0x000002abb9fdb9c0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002abc55d8294 relative=0x0000000000000b54 Event: 19.900 Thread 0x000002abb9fdb9c0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002abc55d8294 method=com.google.gson.stream.JsonReader.nextQuotedValue(C)Ljava/lang/String; @ 96 c2 Event: 19.900 Thread 0x000002abb9fdb9c0 DEOPT PACKING pc=0x000002abc55d8294 sp=0x000000e76e6fdde0 Event: 19.900 Thread 0x000002abb9fdb9c0 DEOPT UNPACKING pc=0x000002abc4ce69a3 sp=0x000000e76e6fdd88 mode 2 Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 18.915 Thread 0x000002abb9fdb9c0 Exception <a 'sun/nio/fs/WindowsException'{0x00000006480bbe80}> (0x00000006480bbe80)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 18.930 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x00000006482db970}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, int)'> (0x00000006482db970)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 18.931 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x00000006482f60d0}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int)'> (0x00000006482f60d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 18.955 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000064538ef50}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object)'> (0x000000064538ef50)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.001 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000064286aaf0}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object, java.lang.Object, int, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, int)'> (0x000000064286aaf0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.042 Thread 0x000002abb9fdb9c0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000642b77198}> (0x0000000642b77198)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.562 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000063de22768}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, int, java.lang.Object, java.lang.Object)'> (0x000000063de22768)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.568 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000063ded05d0}: 'int java.lang.invoke.Invokers$Holder.invokeExact_MT(java.lang.Object, java.lang.Object)'> (0x000000063ded05d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.571 Thread 0x000002abb9fdb9c0 Exception <a 'sun/nio/fs/WindowsException'{0x000000063dfdb0e8}> (0x000000063dfdb0e8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.571 Thread 0x000002abb9fdb9c0 Exception <a 'sun/nio/fs/WindowsException'{0x000000063dfdb448}> (0x000000063dfdb448)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.577 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000063d974058}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, double)'> (0x000000063d974058)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.577 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x000000063d97a8b8}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x000000063d97a8b8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.583 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NullPointerException'{0x000000063da2f530}> (0x000000063da2f530)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 1350] Event: 19.583 Thread 0x000002abb9fdb9c0 Exception <a 'sun/nio/fs/WindowsException'{0x000000063da2fb90}> (0x000000063da2fb90)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.878 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x00000006399e41f8}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeSpecialIFC(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x00000006399e41f8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.895 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x0000000639008ec0}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x0000000639008ec0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.931 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x00000006388e4eb0}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x00000006388e4eb0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.932 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x00000006389304e0}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, long)'> (0x00000006389304e0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.954 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x0000000638afe040}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object, int, long)'> (0x0000000638afe040)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.955 Thread 0x000002abb9fdb9c0 Exception <a 'java/lang/NoSuchMethodError'{0x0000000638b03fa8}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, int, long)'> (0x0000000638b03fa8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] VM Operations (20 events): Event: 19.187 Executing VM operation: HandshakeAllThreads Event: 19.187 Executing VM operation: HandshakeAllThreads done Event: 19.204 Executing VM operation: HandshakeAllThreads Event: 19.204 Executing VM operation: HandshakeAllThreads done Event: 19.284 Executing VM operation: HandshakeAllThreads Event: 19.284 Executing VM operation: HandshakeAllThreads done Event: 19.414 Executing VM operation: HandshakeAllThreads Event: 19.414 Executing VM operation: HandshakeAllThreads done Event: 19.415 Executing VM operation: HandshakeAllThreads Event: 19.415 Executing VM operation: HandshakeAllThreads done Event: 19.416 Executing VM operation: HandshakeAllThreads Event: 19.416 Executing VM operation: HandshakeAllThreads done Event: 19.417 Executing VM operation: HandshakeAllThreads Event: 19.417 Executing VM operation: HandshakeAllThreads done Event: 19.511 Executing VM operation: ICBufferFull Event: 19.511 Executing VM operation: ICBufferFull done Event: 19.798 Executing VM operation: ICBufferFull Event: 19.798 Executing VM operation: ICBufferFull done Event: 19.899 Executing VM operation: HandshakeAllThreads Event: 19.899 Executing VM operation: HandshakeAllThreads done Events (20 events): Event: 19.417 loading class sun/net/www/http/KeepAliveCache$1 done Event: 19.417 Thread 0x000002abee47da00 Thread added: 0x000002abee47da00 Event: 19.417 loading class sun/net/www/http/ClientVector Event: 19.417 loading class sun/net/www/http/ClientVector done Event: 19.417 loading class sun/net/www/http/KeepAliveEntry Event: 19.417 loading class sun/net/www/http/KeepAliveEntry done Event: 19.419 loading class jdk/internal/vm/annotation/ForceInline Event: 19.419 loading class jdk/internal/vm/annotation/ForceInline done Event: 19.440 Thread 0x000002abef76c470 Thread added: 0x000002abef76c470 Event: 19.575 loading class java/util/function/DoubleFunction Event: 19.575 loading class java/util/function/DoubleFunction done Event: 19.590 loading class java/io/BufferedReader$1 Event: 19.590 loading class java/io/BufferedReader$1 done Event: 19.608 Thread 0x000002abf090e4c0 Thread added: 0x000002abf090e4c0 Event: 19.881 loading class java/util/regex/Pattern$LineEnding Event: 19.881 loading class java/util/regex/Pattern$LineEnding done Event: 19.903 loading class java/util/EnumMap$Values Event: 19.903 loading class java/util/EnumMap$Values done Event: 19.903 loading class java/util/EnumMap$ValueIterator Event: 19.903 loading class java/util/EnumMap$ValueIterator done Dynamic libraries: 0x00007ff670cb0000 - 0x00007ff670cbe000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\javaw.exe 0x00007ffca45b0000 - 0x00007ffca47c7000     C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ffca2420000 - 0x00007ffca24e4000     C:\WINDOWS\System32\KERNEL32.DLL 0x00007ffca19f0000 - 0x00007ffca1d97000     C:\WINDOWS\System32\KERNELBASE.dll 0x00007ffca1f60000 - 0x00007ffca2071000     C:\WINDOWS\System32\ucrtbase.dll 0x00007ffc93830000 - 0x00007ffc93847000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jli.dll 0x00007ffc8d0c0000 - 0x00007ffc8d0db000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\VCRUNTIME140.dll 0x00007ffca2eb0000 - 0x00007ffca305e000     C:\WINDOWS\System32\USER32.dll 0x00007ffca1e40000 - 0x00007ffca1e66000     C:\WINDOWS\System32\win32u.dll 0x00007ffca38a0000 - 0x00007ffca38c9000     C:\WINDOWS\System32\GDI32.dll 0x00007ffca18d0000 - 0x00007ffca19e9000     C:\WINDOWS\System32\gdi32full.dll 0x00007ffc82010000 - 0x00007ffc822a3000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3527_none_270e469b73872a76\COMCTL32.dll 0x00007ffca1da0000 - 0x00007ffca1e3a000     C:\WINDOWS\System32\msvcp_win.dll 0x00007ffca30c0000 - 0x00007ffca3167000     C:\WINDOWS\System32\msvcrt.dll 0x00007ffca36f0000 - 0x00007ffca3721000     C:\WINDOWS\System32\IMM32.DLL 0x00007ffc9eb40000 - 0x00007ffc9eb4c000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\vcruntime140_1.dll 0x00007ffc7ee40000 - 0x00007ffc7eecd000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\msvcp140.dll 0x00007ffc1bf80000 - 0x00007ffc1cbe5000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server\jvm.dll 0x00007ffca22e0000 - 0x00007ffca2392000     C:\WINDOWS\System32\ADVAPI32.dll 0x00007ffca2d50000 - 0x00007ffca2df8000     C:\WINDOWS\System32\sechost.dll 0x00007ffca1f30000 - 0x00007ffca1f58000     C:\WINDOWS\System32\bcrypt.dll 0x00007ffca3c10000 - 0x00007ffca3d25000     C:\WINDOWS\System32\RPCRT4.dll 0x00007ffc828b0000 - 0x00007ffc828b9000     C:\WINDOWS\SYSTEM32\WSOCK32.dll 0x00007ffca23a0000 - 0x00007ffca2411000     C:\WINDOWS\System32\WS2_32.dll 0x00007ffc9aeb0000 - 0x00007ffc9aee4000     C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ffca1530000 - 0x00007ffca157d000     C:\WINDOWS\SYSTEM32\POWRPROF.dll 0x00007ffc98cd0000 - 0x00007ffc98cda000     C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ffca1510000 - 0x00007ffca1523000     C:\WINDOWS\SYSTEM32\UMPDC.dll 0x00007ffca08b0000 - 0x00007ffca08c8000     C:\WINDOWS\SYSTEM32\kernel.appcore.dll 0x00007ffc9e400000 - 0x00007ffc9e40a000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll 0x00007ffc992e0000 - 0x00007ffc99513000     C:\WINDOWS\SYSTEM32\DBGHELP.DLL 0x00007ffca3d50000 - 0x00007ffca40d8000     C:\WINDOWS\System32\combase.dll 0x00007ffca35f0000 - 0x00007ffca36c7000     C:\WINDOWS\System32\OLEAUT32.dll 0x00007ffc91e00000 - 0x00007ffc91e32000     C:\WINDOWS\SYSTEM32\dbgcore.DLL 0x00007ffca20f0000 - 0x00007ffca2169000     C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ffc8a060000 - 0x00007ffc8a085000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll 0x00007ffc8a430000 - 0x00007ffc8a448000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll 0x00007ffc79270000 - 0x00007ffc79347000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll 0x00007ffca24f0000 - 0x00007ffca2d4c000     C:\WINDOWS\System32\SHELL32.dll 0x00007ffc9f7c0000 - 0x00007ffca00b6000     C:\WINDOWS\SYSTEM32\windows.storage.dll 0x00007ffc9f680000 - 0x00007ffc9f7be000     C:\WINDOWS\SYSTEM32\wintypes.dll 0x00007ffca39b0000 - 0x00007ffca3aa5000     C:\WINDOWS\System32\SHCORE.dll 0x00007ffca3060000 - 0x00007ffca30be000     C:\WINDOWS\System32\shlwapi.dll 0x00007ffca1800000 - 0x00007ffca1821000     C:\WINDOWS\SYSTEM32\profapi.dll 0x00007ffc89da0000 - 0x00007ffc89db9000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll 0x00007ffc9b9c0000 - 0x00007ffc9baf6000     C:\WINDOWS\SYSTEM32\WINHTTP.dll 0x00007ffca0d10000 - 0x00007ffca0d79000     C:\WINDOWS\system32\mswsock.dll 0x00007ffc86c90000 - 0x00007ffc86ca6000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll 0x00007ffc9cf70000 - 0x00007ffc9cf80000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll 0x00007ffc939b0000 - 0x00007ffc939b9000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll 0x00007ffc93950000 - 0x00007ffc9395b000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll 0x00007ffca41f0000 - 0x00007ffca41f8000     C:\WINDOWS\System32\PSAPI.DLL 0x00007ffc4d2f0000 - 0x00007ffc4d307000     C:\WINDOWS\system32\napinsp.dll 0x00007ffc4d310000 - 0x00007ffc4d32b000     C:\WINDOWS\system32\pnrpnsp.dll 0x00007ffca0390000 - 0x00007ffca0489000     C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ffca0360000 - 0x00007ffca038d000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ffca36e0000 - 0x00007ffca36e9000     C:\WINDOWS\System32\NSI.dll 0x00007ffc4d330000 - 0x00007ffc4d341000     C:\WINDOWS\System32\winrnr.dll 0x00007ffc86dc0000 - 0x00007ffc86dd5000     C:\WINDOWS\system32\wshbth.dll 0x00007ffc67500000 - 0x00007ffc67521000     C:\WINDOWS\system32\nlansp_c.dll 0x00007ffc937d0000 - 0x00007ffc937da000     C:\Windows\System32\rasadhlp.dll 0x00007ffc997b0000 - 0x00007ffc99833000     C:\WINDOWS\System32\fwpuclnt.dll 0x00007ffca1060000 - 0x00007ffca107b000     C:\WINDOWS\SYSTEM32\CRYPTSP.dll 0x00007ffca0810000 - 0x00007ffca0845000     C:\WINDOWS\system32\rsaenh.dll 0x00007ffca0db0000 - 0x00007ffca0dd8000     C:\WINDOWS\SYSTEM32\USERENV.dll 0x00007ffca1040000 - 0x00007ffca104c000     C:\WINDOWS\SYSTEM32\CRYPTBASE.dll 0x00007ffc9b860000 - 0x00007ffc9b879000     C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL 0x00007ffc9b670000 - 0x00007ffc9b68f000     C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL 0x00007ffc7ef00000 - 0x00007ffc7ef45000     C:\Users\missm\AppData\Local\Temp\jna-103906033\jna8614400180150369691.dll 0x00007ffca4200000 - 0x00007ffca43a5000     C:\WINDOWS\System32\Ole32.dll 0x00007ffca2e00000 - 0x00007ffca2eb0000     C:\WINDOWS\System32\clbcatq.dll 0x00007ffc87e90000 - 0x00007ffc87ead000     C:\WINDOWS\SYSTEM32\amsi.dll 0x00007ffc87de0000 - 0x00007ffc87e61000     C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24030.9-0\MpOav.dll 0x00007ffc92ec0000 - 0x00007ffc92f10000     C:\WINDOWS\SYSTEM32\Pdh.dll 0x00007ffc930f0000 - 0x00007ffc93100000     C:\WINDOWS\System32\perfos.dll 0x00007ffc9eeb0000 - 0x00007ffc9eec0000     C:\WINDOWS\SYSTEM32\pfclient.dll 0x00007ffc78f20000 - 0x00007ffc78f95000     C:\Users\missm\AppData\Local\Temp\lwjglmissm\3.3.1-build-7\lwjgl.dll 0x00007ffc35340000 - 0x00007ffc35599000     C:\Users\missm\AppData\Local\Temp\lwjglmissm\3.3.1-build-7\jemalloc.dll 0x00007ffc93170000 - 0x00007ffc9317e000     C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll 0x00007ffca2170000 - 0x00007ffca22d7000     C:\WINDOWS\System32\CRYPT32.dll 0x00007ffca11f0000 - 0x00007ffca121e000     C:\WINDOWS\SYSTEM32\ncrypt.dll 0x00007ffca11b0000 - 0x00007ffca11e7000     C:\WINDOWS\SYSTEM32\NTASN1.dll 0x00007ffc7ece0000 - 0x00007ffc7ed41000     C:\Users\missm\AppData\Local\Temp\lwjglmissm\3.3.1-build-7\glfw.dll 0x00007ffc79ae0000 - 0x00007ffc79b26000     C:\WINDOWS\SYSTEM32\dinput8.dll 0x00007ffc82bc0000 - 0x00007ffc82bd1000     C:\WINDOWS\SYSTEM32\xinput1_4.dll 0x00007ffca15b0000 - 0x00007ffca15fe000     C:\WINDOWS\SYSTEM32\cfgmgr32.dll 0x00007ffca1580000 - 0x00007ffca15ac000     C:\WINDOWS\SYSTEM32\DEVOBJ.dll 0x00007ffc9f030000 - 0x00007ffc9f05b000     C:\WINDOWS\SYSTEM32\dwmapi.dll 0x00007ffc94360000 - 0x00007ffc9456c000     C:\WINDOWS\SYSTEM32\inputhost.dll 0x00007ffc9e830000 - 0x00007ffc9e963000     C:\WINDOWS\SYSTEM32\CoreMessaging.dll 0x00007ffc9edd0000 - 0x00007ffc9ee7b000     C:\WINDOWS\system32\uxtheme.dll 0x00007ffca3ab0000 - 0x00007ffca3c03000     C:\WINDOWS\System32\MSCTF.dll 0x00007ffc73800000 - 0x00007ffc73900000     C:\WINDOWS\SYSTEM32\opengl32.dll 0x00007ffc827f0000 - 0x00007ffc8281d000     C:\WINDOWS\SYSTEM32\GLU32.dll 0x00007ffc9eee0000 - 0x00007ffc9ef19000     C:\WINDOWS\SYSTEM32\dxcore.dll 0x00007ffc9b620000 - 0x00007ffc9b66a000     C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll 0x00007ffc80560000 - 0x00007ffc8058d000     C:\WINDOWS\System32\DriverStore\FileRepository\u0381941.inf_amd64_e1aaf87b06e2b6d9\B380668\atig6pxx.dll 0x00007ffbfb6b0000 - 0x00007ffbfeffc000     C:\WINDOWS\System32\DriverStore\FileRepository\u0381941.inf_amd64_e1aaf87b06e2b6d9\B380668\atio6axx.dll 0x00007ffca3170000 - 0x00007ffca35e4000     C:\WINDOWS\System32\SETUPAPI.dll 0x00007ffca2080000 - 0x00007ffca20eb000     C:\WINDOWS\System32\WINTRUST.dll 0x00007ffca10b0000 - 0x00007ffca10c2000     C:\WINDOWS\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3527_none_270e469b73872a76;C:\Users\missm\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server;C:\Users\missm\AppData\Local\Temp\jna-103906033;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24030.9-0;C:\Users\missm\AppData\Local\Temp\lwjglmissm\3.3.1-build-7;C:\WINDOWS\System32\DriverStore\FileRepository\u0381941.inf_amd64_e1aaf87b06e2b6d9\B380668 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\missm\curseforge\minecraft\Install\bin\cd9a214c260ade54ca3eb374da45b2f5d47ba217 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.23.7 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.5.jar,forge-43.3.5 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\missm\curseforge\minecraft\Install\libraries --module-path=C:\Users\missm\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx8192m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\missm\curseforge\minecraft\Instances\SteamPunk [LPS] -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=C:\Users\missm\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=C:\Users\missm\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml  java_command: cpw.mods.bootstraplauncher.BootstrapLauncher --username DanishCheez2 --version forge-43.3.5 --gameDir C:\Users\missm\curseforge\minecraft\Instances\SteamPunk [LPS] --assetsDir C:\Users\missm\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid 097efe2c9665416d8a9db6f836237c35 --clientId ZTQwZjBlN2MtMmZhOS00OTg1LTllNWItYTkzMGI3NDVjOTYx --xuid 2535422650757774 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.5 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 java_class_path (initial): C:\Users\missm\curseforge\minecraft\Install\libraries\cpw\mods\securejarhandler\2.1.4\securejarhandler-2.1.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.5\asm-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.5\asm-commons-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.5\asm-tree-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.5\asm-util-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.5\asm-analysis-9.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.0.4\accesstransformers-8.0.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\antlr\antlr4-runtime\4.9.1\antlr4-runtime-4.9.1.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.0.3\eventbus-6.0.3.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\6.0.0\forgespi-6.0.0.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.0.1\coremods-5.0.1.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\cpw\mods\modlauncher\10.0.8\modlauncher-10.0.8.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.2.0\unsafe-0.2.0.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.6.4\core-3.6.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.6.4\toml-3.6.4.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.5\maven-artifact-3.8.5.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.8.3\typetools-0.8.3.jar;C:\Users\missm\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;C:\Users\missm\curseforge\minecraft\Ins Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 4                                         {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 10                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 4194304                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 8589934592                                {product} {command line}    size_t MaxNewSize                               = 5150605312                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 4194304                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 5839372                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122909434                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122909434                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 8589934592                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedClassPointers               = true                           {product lp64_product} {ergonomic}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags  #1: stderr all=off uptime,level,tags Environment Variables: PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Common Files\Propellerhead Software\ReWire\;C:\Program Files\Common Files\Propellerhead Software\ReWire\;C:\Program Files\dotnet\;C:\Users\missm\AppData\Local\Microsoft\WindowsApps; USERNAME=missm OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 25 Model 80 Stepping 0, AuthenticAMD TMP=C:\Users\missm\AppData\Local\Temp TEMP=C:\Users\missm\AppData\Local\Temp ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 22621 (10.0.22621.3527) OS uptime: 2 days 22:52 hours Hyper-V role detected CPU: total 12 (initial active 12) (12 cores per cpu, 2 threads per core) family 25 model 80 stepping 0 microcode 0x0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, hv Processor Information for all 12 processors :   Max Mhz: 3901, Current Mhz: 3901, Mhz Limit: 3901 Memory: 4k page, system-wide physical 32105M (21646M free) TotalPageFile size 34153M (AvailPageFile size 23060M) current process WorkingSet (physical memory assigned to process): 2072M, peak: 2072M current process commit charge ("private bytes"): 2151M, peak: 2876M vm_info: OpenJDK 64-Bit Server VM (17.0.8+7-LTS) for windows-amd64 JRE (17.0.8+7-LTS), built on Jul  7 2023 17:21:55 by "MicrosoftCorporation" with MS VC++ 16.10 / 16.11 (VS2019) END.  
    • Hey! Could you please tell what was the solution to this problem since all the replies were deleted for some reason. I would be really grateful for a reply!
    • I also want to mention that I need someone who can create custom particles for each zombies.
    • Hello, I'm a 3D artist who makes models in Blockbench out of passion. I'm making this post to reach out to people with experience modding Minecraft. Showcase of the models I've made for this project : I'll pay you 50 to 100 euros for the work done.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.