Jump to content

How to set texture for dynamically registered blocks from already existing blocks [1.18.2]


X-Lomir

Recommended Posts

10 minutes ago, diesieben07 said:

I don't know. Perfectly mimicking other blocks becomes more and more impossible the further you go. Using the bare getLightEmissinon is probably your best bet.

What if I were to wrap

referringBlockState.getLightEmission(level, pos)

with a try & catch, catching any Exception that may arise, and if I get an exception I call the bare getLightEmission instead?

Something like this basically:

try {
	blockstate = blockstate.setValue(LEVEL, referringBlockState.getLightEmission(level, pos));
} catch (Exception e) {
	blockstate = blockstate.setValue(LEVEL, referringBlockState.getLightEmission());
}

To have my mod to its best to get as accurate as possible.

Edited by X-Lomir
Added snippet
Link to comment
Share on other sites

  • Replies 92
  • Created
  • Last Reply

Top Posters In This Topic

2 minutes ago, diesieben07 said:

But you can try it, but at least log the exception as a warning once per block state, if it happens. Swallowing exceptions completely is never a good idea.

Sure thing, I need to add some logs here and there throughout my code, I will start from here.

Link to comment
Share on other sites

I was testing my mod with other mods and it works fine, I have a few notes on some points I'd like to improve it in the future, but for now it's just fine.

Apart from one thing: texture overlays.

I was testing my mod with SlabGen and I noticed the vertical slab grass block had 2 issues with its texture:

  1. Grass color was grayscale
  2. Side overlays were not showing

For point 1 I found out that grass color depends on the biome and biome blend setting, while the sprite is in grayscale. The same thing goes on for foliage. I would like to get the correct tint index, but I don't know how to do that. It seemed to me that grass/foliage color is based on the biome and position the block is being rendered, however I can't find a way to get both info in my baked model. I'm not even sure getting them in the baked model is correct, since I would then cache the color.

It would be nice to find a way to take advantage of whatever Minecraft does to set the correct color simply by adding vertical slabs to blocks that need grass/foliage color and then get the biome color if the referring block is instanceof GrassBlock or LeavesBlock, otherwise get the default sprite color.

For point 2 I remembered we had said that in my baked model I'd settle with taking the first referring sprite for the given direction. So I changed my getQuads code to take into account all BakedQuads for the given direction:

@Override
public List<BakedQuad> getQuads(@Nullable BlockState state, @Nullable Direction side, @Nonnull Random rand, @Nonnull IModelData modelData) {
  BlockState referringBlockState = modelData.getData(VerticalSlabUtils.REFERRING_BLOCK_STATE);
  if (referringBlockState != null) {
    VerticalSlabModelKey verticalSlabModelKey = new VerticalSlabModelKey(side, referringBlockState);
    if (!bakedQuadsCache.containsKey(verticalSlabModelKey)) {
      ArrayList<BakedQuad> bakedQuads = new ArrayList<BakedQuad>();
      for (BakedQuad jsonBakedQuad : jsonBakedModel.getQuads(state, side, rand, modelData)) {
        Direction orientation = jsonBakedQuad.getDirection();
        for (BakedQuad referringBakedQuad : getReferringBakedQuads(referringBlockState, orientation, rand, modelData)) {
          bakedQuads.add(getNewBakedQuad(jsonBakedQuad, referringBakedQuad.getSprite(), orientation));
          JustVerticalSlabsLoader.LOGGER.warn(side + " " + referringBakedQuad.getSprite().toString()); // Added only for tests. To be removed.
        }
      }
      bakedQuadsCache.put(verticalSlabModelKey, bakedQuads);
    }
    return bakedQuadsCache.get(verticalSlabModelKey);
  }
  return jsonBakedModel.getQuads(state, side, rand, modelData);
}

private List<BakedQuad> getReferringBakedQuads(BlockState referringBlockState, Direction side, Random rand, IModelData modelData) {
  BakedModel referringBakedModel = getReferringBakedModel(referringBlockState);
  IModelData referringModelData = getReferringModelData(referringBlockState, modelData);
  List<BakedQuad> referringBakedQuads = referringBakedModel.getQuads(referringBlockState, side, rand, referringModelData);
  for (BakedQuad referringBakedQuad : referringBakedModel.getQuads(referringBlockState, null, rand, referringModelData)) {
    if (referringBakedQuad.getDirection() == side) {
      referringBakedQuads.add(referringBakedQuad);
    }
  }
  if (referringBakedQuads.size() == 0) {
    JustVerticalSlabsLoader.LOGGER.warn("Referred Block has no texture for " + side + " face. No texture will be generated for that face.");
  }
  return referringBakedQuads;
}

// Updates vertices as I had explained in a previous post.
private BakedQuad getNewBakedQuad(BakedQuad jsonBakedQuad, TextureAtlasSprite referringSprite, Direction orientation) {
    return new BakedQuad(updateVertices(jsonBakedQuad.getVertices(), jsonBakedQuad.getSprite(), referringSprite), jsonBakedQuad.getTintIndex(), orientation, referringSprite, jsonBakedQuad.isShade());
  }

And it still worked fine for all Vanilla blocks and more, however with grass now I get the overlay on the side, which is in grayscale (see point 1), but the background is black:

https://imgur.com/a/BLoHmQx

However the sprites, and so the vertices, are correct:

[11:59:19] [Worker-Main-34/WARN]: down TextureAtlasSprite{name='minecraft:block/dirt', frameCount=1, x=192, y=416, height=16, width=16, u0=0.1875, u1=0.203125, v0=0.40625, v1=0.421875}
[11:59:19] [Worker-Main-34/WARN]: up TextureAtlasSprite{name='minecraft:block/grass_block_top', frameCount=1, x=512, y=272, height=16, width=16, u0=0.5, u1=0.515625, v0=0.265625, v1=0.28125}
[11:59:19] [Worker-Main-34/WARN]: south TextureAtlasSprite{name='minecraft:block/grass_block_side', frameCount=1, x=512, y=224, height=16, width=16, u0=0.5, u1=0.515625, v0=0.21875, v1=0.234375}
[11:59:19] [Worker-Main-34/WARN]: south TextureAtlasSprite{name='minecraft:block/grass_block_side_overlay', frameCount=1, x=512, y=240, height=16, width=16, u0=0.5, u1=0.515625, v0=0.234375, v1=0.25}
[11:59:19] [Worker-Main-34/WARN]: west TextureAtlasSprite{name='minecraft:block/grass_block_side', frameCount=1, x=512, y=224, height=16, width=16, u0=0.5, u1=0.515625, v0=0.21875, v1=0.234375}
[11:59:19] [Worker-Main-34/WARN]: west TextureAtlasSprite{name='minecraft:block/grass_block_side_overlay', frameCount=1, x=512, y=240, height=16, width=16, u0=0.5, u1=0.515625, v0=0.234375, v1=0.25}
[11:59:19] [Worker-Main-34/WARN]: east TextureAtlasSprite{name='minecraft:block/grass_block_side', frameCount=1, x=512, y=224, height=16, width=16, u0=0.5, u1=0.515625, v0=0.21875, v1=0.234375}
[11:59:19] [Worker-Main-34/WARN]: east TextureAtlasSprite{name='minecraft:block/grass_block_side_overlay', frameCount=1, x=512, y=240, height=16, width=16, u0=0.5, u1=0.515625, v0=0.234375, v1=0.25}
[11:59:19] [Worker-Main-34/WARN]: null TextureAtlasSprite{name='minecraft:block/grass_block_side', frameCount=1, x=512, y=224, height=16, width=16, u0=0.5, u1=0.515625, v0=0.21875, v1=0.234375}
[11:59:19] [Worker-Main-34/WARN]: null TextureAtlasSprite{name='minecraft:block/grass_block_side_overlay', frameCount=1, x=512, y=240, height=16, width=16, u0=0.5, u1=0.515625, v0=0.234375, v1=0.25}

My guess is that the wrong RenderType is being used for my vertical slabs and I should use CUTOUT rather than SOLID. But I'm not sure how to do that and if it's correct.

EDIT: This is what I get when I print out MinecraftForgeClient.getRenderType().toString() in my baked model:

RenderType[solid:CompositeState[[texture[Optional[minecraft:textures/atlas/blocks.png](blur=false, mipmap=true)], shader[Optional[net.minecraft.client.renderer.RenderStateShard$$Lambda$4781/0x0000000800bcc238@3d572b5f]], no_transparency, depth_test[<=], cull[true], lightmap[true], overlay[false], no_layering, main_target, default_texturing, write_mask_state[writeColor=true, writeDepth=true], line_width[1.0]], outlineProperty=affects_outline]]

So yes it is SOLID and maybe CUTOUT is not needed but just a way to set that overlay property to true? Also I think a similar problem will arise when vertical slabs will need to mimic blocks that have transparency, but I couldn't find any mod that adds transparent slabs to test it out.

Edited by X-Lomir
Added extra info.
Link to comment
Share on other sites

I managed to solve the overlay texture problem by doing this:

public class FMLClientSetupEventHandler {
  /**
   * Sets the correct {@link RenderType} for {@link crystalspider.justverticalslabs.blocks.VerticalSlabBlock VerticalSlabBlocks}.
   * 
   * @param event
   */
  @SubscribeEvent
  public void setup(FMLClientSetupEvent event) {
    event.enqueueWork(() -> {
      // TODO: Check if it works also for translucent blocks.
      ItemBlockRenderTypes.setRenderLayer(JustVerticalSlabsLoader.VERTICAL_SLAB_BLOCK.get(), RenderType.cutoutMipped());
    });
  }
}

I also tried to solve the color problem by doing this:

public class ColorHandlerEventHandler {
  @SubscribeEvent
  public void onColorHandlerEventBlock(ColorHandlerEvent.Block event) {
    event.getBlockColors().register(new BlockColor() {
      public int getColor(BlockState state, @Nullable BlockAndTintGetter getter, @Nullable BlockPos pos, int tintIndex) {
        if (getter != null && pos != null) {
          BlockState referredSlabState = VerticalSlabUtils.getReferredSlabState(getter, pos);
          if (referredSlabState != null) {
            Block slab = referredSlabState.getBlock();
            if (slab instanceof GrassBlock || slab instanceof LeavesBlock) {
              return event.getBlockColors().getColor(Block.byItem(VerticalSlabUtils.slabMap.get(slab.asItem())).defaultBlockState(), getter, pos, tintIndex);
            }
          }
        }
        return -1;
      }
    }, JustVerticalSlabsLoader.VERTICAL_SLAB_BLOCK.get());
  }

  @SubscribeEvent
  public void onColorHandlerEventItem(ColorHandlerEvent.Item event) {
    event.getItemColors().register(new ItemColor() {
      public int getColor(ItemStack itemStack, int tintIndex) {
        BlockState referredSlabState = VerticalSlabUtils.getReferredSlabState(itemStack);
        if (referredSlabState != null) {
          Block slab = referredSlabState.getBlock();
          if (slab instanceof GrassBlock || slab instanceof LeavesBlock) {
            return event.getItemColors().getColor(VerticalSlabUtils.slabMap.get(slab.asItem()).getDefaultInstance(), tintIndex);
          }
        }
        return -1;
      }
    }, JustVerticalSlabsLoader.VERTICAL_SLAB_ITEM.get());
  }
}

And I tried registering this class first with

FMLJavaModLoadingContext.get().getModEventBus().register(new ColorHandlerEventHandler());

and after with 

MinecraftForge.EVENT_BUS.register(new ColorHandlerEventHandler());

however either way I get this (and no errors):

https://imgur.com/a/M9sfwVw

EDIT: I forgot to add that I moved the code in this new branch.

Edited by X-Lomir
Added extra info.
Link to comment
Share on other sites

In the end it was just me being stupid. What you said I had already did by using the tint index of the referred sprite rather than of my model JSON.

The real problem was that I was checking instanceof on the slab, but I needed to check on the block.

I changed my code to this and it works:

public class ColorHandlerEventHandler {
  @SubscribeEvent
  public void onColorHandlerEventBlock(ColorHandlerEvent.Block event) {
    event.getBlockColors().register(new BlockColor() {
      public int getColor(BlockState state, @Nullable BlockAndTintGetter getter, @Nullable BlockPos pos, int tintIndex) {
        if (getter != null && pos != null) {
          BlockState referredSlabState = VerticalSlabUtils.getReferredSlabState(getter, pos);
          if (referredSlabState != null) {
            // Edited here
            Block block = Block.byItem(VerticalSlabUtils.slabMap.get(referredSlabState.getBlock().asItem()));
            if (block instanceof GrassBlock || block instanceof LeavesBlock) {
              return event.getBlockColors().getColor(block.defaultBlockState(), getter, pos, tintIndex);
            }
          }
        }
        return -1;
      }
    }, JustVerticalSlabsLoader.VERTICAL_SLAB_BLOCK.get());
  }

  @SubscribeEvent
  public void onColorHandlerEventItem(ColorHandlerEvent.Item event) {
    event.getItemColors().register(new ItemColor() {
      public int getColor(ItemStack itemStack, int tintIndex) {
        BlockState referredSlabState = VerticalSlabUtils.getReferredSlabState(itemStack);
        if (referredSlabState != null) {
          // Edited here
          Block block = Block.byItem(VerticalSlabUtils.slabMap.get(referredSlabState.getBlock().asItem()));
          if (block instanceof GrassBlock || block instanceof LeavesBlock) {
            return event.getItemColors().getColor(block.asItem().getDefaultInstance(), tintIndex);
          }
        }
        return -1;
      }
    }, JustVerticalSlabsLoader.VERTICAL_SLAB_ITEM.get());
  }
}

The correct bus seems to be FMLJavaModLoadingContext.get().getModEventBus().

Link to comment
Share on other sites

38 minutes ago, diesieben07 said:

Why do you even have that instanceof check? You can just call BlockColors / ItemColors#getColor directly for all blocks. Not just grass and leaves can be colored.

Yeah you're right. I thought I would break colors of normal blocks if I did that, I don't know why.

Link to comment
Share on other sites

I noticed that some mods can add slabs for blocks that are not full height, like soulsand and dirt path. That caused a couple of problems with my vertical slabs, however I managed to make so that vertical slabs can also be not full height and their textures adapt too.

There is one problem that arose which is that vertical slabs not full height still make other blocks cull their faces: https://imgur.com/a/ZBUpszZ

I don't know why this is happening nor how to solve this. You can see the textures and the shape of the vertical slab being correct, however it's as if it's considered as a full height block.

Code is here.

Link to comment
Share on other sites

Okay, thanks, it works.

I'm testing my mod with transparent slabs, like glass, and, as I expected given I set the render layer as cutout mipped, transparent blocks don't work well at all.

Is there a way to set the render layer depending on the block entity? Or what else could I do to make so that only vertical slabs referring transparent blocks are rendered in translucent render layer?

Link to comment
Share on other sites

2 hours ago, diesieben07 said:

No, RenderType can only be set on the Block level (not even BlockState). You'll have to make multiple blocks, one for each RenderType you want to support.

However then you still need a hardcoded map that stores which Block maps to which RenderType, because this information is normally not available server side.

Okay, I figured out as much. I guess I will make another kind of block and use it for certain blocks on a best-effort base, like checking if the ID of the mimicked block contains "glass", "leaf", "leaves", or something like that. Maybe add a config option to add another keyword to use to render a specific kind of block with the translucent layer.

Link to comment
Share on other sites

I added a class for transparent vertical slabs. Everything works fine so far except one thing that is transparent vertical slabs still cull their faces and the faces of their neighboring blocks.

Is there some method or property I can override in my new class or do I necessarily have to duplicate my JSON models and remove the cullfaces?

EDIT: I found getOcclusionShape and it looks like it's working.

Edited by X-Lomir
Added found solution.
Link to comment
Share on other sites

It was pointed out to me a bug my mod has when using shaders other than Minecraft defaults, for example with Optifine internal shaders and BSL Shaders.

The bug consists in all textures, apart from the oak planks, for my vertical slabs to be completely messed up. I guess this has to do with how I'm forcefully writing in the vertexes of my model.

Is there a way to test and debug my mod with Optifine and, optionally, an external shader pack?

Do you have any suggestions or insights about what may be causing the problem and how to fix it? I'm also trying to ask for some help on Minecraft Shaders Discord, I'll update here if I find a solution.

Link to comment
Share on other sites

I managed to solve the issue. The fix was actually quite simple, and I'm also not exactly sure why it works, but it does and I'm satisfied with it 🤣

I think it works because the BLOCK VertexFormat has, in order, a position element, a color element and the 2 UVs elements. A position elements uses 3 vertex elements (x, y and z), a color element takes 1 vertex element, U and V elements take 1 vertex element each. So the index for U is 3 + 1 + vertexIndex, where vertexIndex is the index of the current vertex, which increases every iteration by the size each vertex takes in the vertices array. Similarly, the index for V is 3 + 1 + vertexIndex + 1, accounting for the previous U vertex element.

However I'm not sure this is the correct explanation, but I'll leave here my intuition and the fixed method to update vertices:

private int[] updateVertices(int[] vertices, int[] referredVertices, TextureAtlasSprite oldSprite, TextureAtlasSprite newSprite, boolean faceUp) {
  int[] updatedVertices = vertices.clone();
  for (int vertexIndex = 0; vertexIndex < DefaultVertexFormat.BLOCK.getVertexSize(); vertexIndex += DefaultVertexFormat.BLOCK.getIntegerSize()) {
    float y = Float.intBitsToFloat(referredVertices[vertexIndex + 1]);
    // Lower only top face since RenderType CutoutMipped will remove extra transparent texture bits that go out of the shape. 
    if (faceUp && y > 0 && y < 0.5) {
      updatedVertices[vertexIndex + 1] = Float.floatToRawIntBits(y + 0.5F);
    }
    updatedVertices[vertexIndex + 4] = changeUVertexSprite(oldSprite, newSprite, updatedVertices[vertexIndex + 4]);
    updatedVertices[vertexIndex + 5] = changeVVertexSprite(oldSprite, newSprite, updatedVertices[vertexIndex + 5]);
  }
  return updatedVertices;
}

 

Link to comment
Share on other sites

I'm wondering... Couldn't I put a property into my BlockState that will hold the referredBlockState?

Basically in VerticalSlabBlock#getStateForPlacement I could read the NBT tag from the itemstack and save it in my BlockState, the same way I do for light. This way I could get rid of BEs altogether and make better use of BlockState chaching system. Also it would allow my blocks to be pushed by pistons and to mimic properties I currently cannot mimic because their getter only takes a BlockState as input.

The only problem I can see would be how to handle VerticalSlabBakedModel#getQuads because of that thing with the breaking progress animation.

Link to comment
Share on other sites

I'm trying to put my mod on a server and I get this error:

-- Head --
Thread: main
Stacktrace:
        at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:138) ~[securejarhandler-1.0.3.jar:?] {}
-- MOD justverticalslabs --
Details:
        Caused by 0: java.lang.reflect.InvocationTargetException
                at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
                at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
                at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
                at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
                at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
                at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.20.jar%23126!/:?] {}
                at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.20.jar%23125!/:?] {}
                at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
                at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
                at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
                at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
                at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames}
                at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames}
                at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}

        Caused by 1: java.lang.NoClassDefFoundError: net/minecraft/client/color/item/ItemColor
                at crystalspider.justverticalslabs.JustVerticalSlabsLoader.<init>(JustVerticalSlabsLoader.java:159) ~[justverticalslabs-1.18.2-3.0.0.0.jar%2390!/:1.18.2-3.0.0.0] {re:classloading}
                at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
                at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
                at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
                at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
                at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
                at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.20.jar%23126!/:?] {}
                at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.20.jar%23125!/:?] {}
                at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
                at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
                at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
                at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
                at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames}
                at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames}
                at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}

        Mod File: justverticalslabs-1.18.2-3.0.0.0.jar
        Failure message: Just Vertical Slabs (justverticalslabs) has failed to load correctly
                java.lang.reflect.InvocationTargetException: null
        Mod Version: 1.18.2-3.0.0.0
        Mod Issue URL: https://github.com/Nyphet/just-vertical-slabs/issues
        Exception message: java.lang.ClassNotFoundException: net.minecraft.client.color.item.ItemColor
Stacktrace:
        at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:138) ~[securejarhandler-1.0.3.jar:?] {}
        at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {}
        at crystalspider.justverticalslabs.JustVerticalSlabsLoader.<init>(JustVerticalSlabsLoader.java:159) ~[justverticalslabs-1.18.2-3.0.0.0.jar%2390!/:1.18.2-3.0.0.0] {re:classloading}
        at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}
        at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}
        at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}
        at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}
        at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}
        at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.20.jar%23126!/:?] {}
        at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.20.jar%23125!/:?] {}
        at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}
        at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}
        at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}
        at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}
        at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames}
        at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames}
        at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}

How do I fix this? Should I put a @OnlyIn(Dist.CLIENT) in my color event handler class? Or add a check for the side in the methods that register BlockColors and ItemColors? Or something else entirely?

Link to comment
Share on other sites

38 minutes ago, diesieben07 said:

Do not use @OnlyIn.

You should use a separate @EventBusSubscriber with the Dist.CLIENT argument for a client-only event handler and do all your client only event handling there.

I did this:

@EventBusSubscriber(value = Dist.CLIENT, bus = Bus.MOD)
public class ColorHandlerEventHandler

And removed the manual subscribing in my mod loader class.

However now in single player my grass vertical slabs are back to being greyscale.

Link to comment
Share on other sites

Here the code of the handler class.

It is not updated with the annotation, however all I did in local was to add the annotation as shown before and remove the line to register that class in my mod loader class.

Before this change it would crash when server side only, but would color correctly in single player.

After this change it's not coloring correctly in single player. I didn't check if it fixed the crash server side.

Link to comment
Share on other sites

Thanks, it works now!

I found another problem unfortunately: when the version of the mod that's on the client tries to access the volatile immutable maps the game crashes. The issue is that those maps are never instantiated on the client.

How do I fix this? Do I have to register a packet and every time I want to access those maps I must send and receive a packet? Or is there a smarter way?

Also I'm wondering why on the Forge docs it's written to use a separate class when creating a simple channel object. Wouldn't it be okay if I did it in my JustVerticalSlabsLoader?

Link to comment
Share on other sites

Just now, diesieben07 said:

Why do you need them on the client?

Because I actually use them also to render. I had changed my code to make so that my vertical slabs refer the slab and not the block to fix some issues, however this caused some problems in rendering. So I needed the maps during rendering to go from slab to block whenever possible, and also I have a map holding all the translucent slabs.

Link to comment
Share on other sites

Okay, now it works without crashing and without major inconveniences. However I found two issues:

  1. Vertical slabs don't show up in the creative inventory, neither the dedicated tab nor the search tab.
  2. In the stonecutter menu the recipes are there but they are not visible, resulting in a shift of the visual recipes compared to the actual output recipe.

They most probably originate from the same problem, that is when I compute the maps I use ForgeRegistries.ITEMS.tags().getTag(ItemTags.SLABS), but this returns null. This is because in ForgeRegistryTagManager I can see the field tags being a map with size 0, client side.

I'm guessing it's because Minecraft registries, and the same Forge registries, are only server side. However I'm not sure what to do to get the Item list of slabs client side.

Link to comment
Share on other sites

However if I compute my maps during that event I won't have access to the recipe manager anymore, am I right?

Also, other than the recipe manager, I need my maps to be computed before I do

MutableSearchTree<ItemStack> creativeSearchTree = Minecraft.getInstance().getSearchTree(SearchRegistry.CREATIVE_NAMES);
for(BlockState referredSlabState : VerticalSlabUtils.slabStateMap.values()) {
  creativeSearchTree.add(VerticalSlabUtils.getVerticalSlabItem(referredSlabState, VerticalSlabUtils.isTranslucent(referredSlabState)));
}
creativeSearchTree.refresh();

during the RecipesUpdateEvent.

Link to comment
Share on other sites

  • 2 weeks later...

I'm actually working on a similar kind of mod, that adds vertical slabs. I made them so they can connect like stairs.

GitHub Branch

Now I have a "Connectable_Oak_Leaf_Wall" that get's registered in my ModBuildingBlocks Class.

The Forge Documentation on tinting is pretty minimalistic: https://mcforge.readthedocs.io/en/1.18.x/resources/client/models/tinting/#blockcoloritemcolor

So I call this in my Main:

unknown.png

Why does it not work? I'm obviously doing something very wrong since you wrote like 30 lines to change the color. But since your Half Slabs probably are getting created in a very different way I thought maybe you could help?

Link to comment
Share on other sites

11 minutes ago, Brainterminator said:

I'm actually working on a similar kind of mod, that adds vertical slabs. I made them so they can connect like stairs.

GitHub Branch

Now I have a "Connectable_Oak_Leaf_Wall" that get's registered in my ModBuildingBlocks Class.

The Forge Documentation on tinting is pretty minimalistic: https://mcforge.readthedocs.io/en/1.18.x/resources/client/models/tinting/#blockcoloritemcolor

So I call this in my Main:

unknown.png

Why does it not work? I'm obviously doing something very wrong since you wrote like 30 lines to change the color. But since your Half Slabs probably are getting created in a very different way I thought maybe you could help?

That register method takes as first parameter a instance of BlockColor, you are passing it an int (FoliageColor#getDefaultColor returns an int).

A BlockColor instance is quite easy as BlockColor is just an interface with a single method:

public interface BlockColor {
   int getColor(BlockState p_92567_, @Nullable BlockAndTintGetter p_92568_, @Nullable BlockPos p_92569_, int p_92570_);
}

Since you basically want to copy the coloring foliage gets, you can do something similar to me:

@SubscribeEvent
public static void onColorHandlerEventBlock(ColorHandlerEvent.Block event) {
  event.getBlockColors().register(
    new BlockColor() {
      public int getColor(BlockState state, @Nullable BlockAndTintGetter getter, @Nullable BlockPos pos, int tintIndex) {
        return getter != null && pos != null ? event.getBlockColors().getColor(Blocks.OAK_LEAVES.defaultBlockState(), getter, pos, tintIndex) : -1;
      }
    },
    ModBuildingBlocks.CONNECTABLE_OAK_LEAF_WALL
  );
}

Where you basically create a new BlockColor instance that returns the same coloring for oak leaves.

Alternatively you can also create a separate class implementing BlockColor:

public class ConnectableOakLeafWallBlockColor implements BlockColor {
  public int getColor(BlockState state, @Nullable BlockAndTintGetter getter, @Nullable BlockPos pos, int tintIndex) {
    return getter != null && pos != null ? Minecraft.getInstance().getBlockColors().getColor(Blocks.OAK_LEAVES.defaultBlockState(), getter, pos, tintIndex) : -1;
  }
}

And just pass it to register:

@SubscribeEvent
public static void onColorHandlerEventBlock(ColorHandlerEvent.Block event) {
  event.getBlockColors().register(new ConnectableOakLeafWallBlockColor(), ModBuildingBlocks.CONNECTABLE_OAK_LEAF_WALL);
}

The choice is yours.

 

Also be careful because you need to avoid having this part of the code when your mod runs only server-side or it will just crash being unable to find BlockColor (which indeed exists only client-side). I fixed this problem by having a separate class handling my color registering annotated like so (be careful to make your methods static if you do the same):

@EventBusSubscriber(value = Dist.CLIENT, bus = Bus.MOD)
public class ColorHandlerEventHandler {

  @SubscribeEvent
  public static void onColorHandlerEventBlock(ColorHandlerEvent.Block event) {
    // do stuff
  }

  @SubscribeEvent
  public static void onColorHandlerEventItem(ColorHandlerEvent.Item event) {
    // do stuff
  }
}

I speak from experience 🤣

I hope I was of help, if you need to look more at my code the most updated branch is this one.

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.