Jump to content

[1.13] [Solved] DimensionType.create(...) returns null (cannot create DimensionType)


Recommended Posts

Posted (edited)

Hi,

 

When I try using the DimensionType.create method, it just returns null. I don't know if that's the case with other enums, but I assume the RuntimeEnumExtender is not doing its job properly.

 

Here's my code :
registerWorld() :

Spoiler

private void registerWorld(int dimension, WorldConfig<? extends Dimension> config) {
        if (!DimensionManager.isDimensionRegistered(dimension)) {
            DimensionType type = DimensionType.create(dimension, config.getName(), config.getSuffix(), config.getDimensionFactory(), config.isKeepLoaded());
            if (type == null) { // TODO : remove when DimensionType.create doesn't return null
                this.messenger.severe("Couldn't create world type " + config.getName() + " with id " + dimension + " - fallback to default type");
                for (DimensionType dimensiontype : DimensionType.values()) {
                    if (dimensiontype.getId() == dimension) {
                        type = dimensiontype;
                        break;
                    }
                }
                if (type == null) {
                    type = DimensionType.OVERWORLD;
                }
                this.messenger.severe("---> " + type.name());
            } else {
                throw new RuntimeException("DimensionType.create now returns non nulls, please update // TODOs (ctrl+r 'DimensionType.create')");
            }
            DimensionManager.registerDimension(dimension, type);
            this.messenger.info("Registered world " + config.getName() + " with id " + dimension);
        } else {
            this.messenger.warning("Dimension " + dimension + " already registered !");
        }
    }

 

 

 

registerWorld() is called from the FMLServerAboutToStartEvent event.

 

Here's my debug log :

Spoiler

[07Feb2019 20:07:12.819] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher starting: java version 1.8.0_192
[07Feb2019 20:07:12.849] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmluserdevclient,fmluserdevserver,fmlclient,fmlserver,fmldevclient,fmldevserver,minecraft,testharness]
[07Feb2019 20:07:12.861] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [fml]
[07Feb2019 20:07:12.871] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services []
[07Feb2019 20:07:12.880] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,accesstransformer,capability_inject_definalize,runtimedistcleaner]
[07Feb2019 20:07:12.880] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevserver, --fml.forgeVersion, 24.0.166-1.13-pre, --fml.mcpVersion, 2018.09.12.04.11.00, --fml.mcpMappings, stable_43-1.13, --fml.mcVersion, 1.13, --fml.forgeGroup, net.minecraftforge.test]
[07Feb2019 20:07:12.881] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[07Feb2019 20:07:12.882] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[07Feb2019 20:07:12.884] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 24.0
[07Feb2019 20:07:12.884] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 24.0 loading
[07Feb2019 20:07:12.884] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 0.9.3+33+4fbaba1
[07Feb2019 20:07:12.885] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Initializing modjar URL handler
[07Feb2019 20:07:12.885] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 0.14.4+42+59f903b
[07Feb2019 20:07:12.886] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 0.6.0+30+d997416
[07Feb2019 20:07:12.886] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner
[07Feb2019 20:07:12.889] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 0.2.0+14+c94c813
[07Feb2019 20:07:12.889] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[07Feb2019 20:07:12.892] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[07Feb2019 20:07:12.913] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[07Feb2019 20:07:12.913] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[07Feb2019 20:07:12.914] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories
[07Feb2019 20:07:12.916] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing GAMEDIR directory : S:\dev\lighthouse\run\server
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is S:\dev\lighthouse\run\server
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing MODSDIR directory : S:\dev\lighthouse\run\server\mods
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is S:\dev\lighthouse\run\server\mods
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing CONFIGDIR directory : S:\dev\lighthouse\run\server\config
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is S:\dev\lighthouse\run\server\config
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is S:\dev\lighthouse\run\server\config\fml.toml
[07Feb2019 20:07:12.917] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration
[07Feb2019 20:07:12.964] [main/DEBUG] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Loaded FML config from S:\dev\lighthouse\run\server\config\fml.toml
[07Feb2019 20:07:12.964] [main/DEBUG] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Splash screen is true
[07Feb2019 20:07:12.964] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler
[07Feb2019 20:07:12.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using fmluserdevserver as launch service
[07Feb2019 20:07:12.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data  : MC Version: '1.13' MCP Version: '2018.09.12.04.11.00' Forge Version: '24.0.166-1.13-pre' Forge group: 'net.minecraftforge.test'
[07Feb2019 20:07:12.966] [main/DEBUG] [net.minecraftforge.fml.loading.LibraryFinder/CORE]: Found JAR forge at path C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\test\forge\1.13-24.0.166-1.13-pre_mapped_stable_43-1.13\forge-1.13-24.0.166-1.13-pre_mapped_stable_43-1.13-recomp.jar
[07Feb2019 20:07:12.966] [main/DEBUG] [net.minecraftforge.fml.loading.LibraryFinder/CORE]: Found JAR mcdata at path C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_repo\versions\1.13\client-data.jar
[07Feb2019 20:07:12.966] [main/DEBUG] [net.minecraftforge.userdev.FMLUserdevLaunchProvider/CORE]: Injecting forge as mod 1.13-24.0.166-1.13-pre_mapped_stable_43-1.13 from maven path C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_user_repo
[07Feb2019 20:07:12.969] [main/DEBUG] [net.minecraftforge.fml.loading.FMLCommonLaunchHandler/CORE]: Got mod coordinates S:\dev\lighthouse\build\server\resources\main;S:\dev\lighthouse\build\server\classes\java\main from env
[07Feb2019 20:07:12.972] [main/DEBUG] [net.minecraftforge.fml.loading.FMLCommonLaunchHandler/CORE]: Found supplied mod coordinates [{defaultmodid=[S:\dev\lighthouse\build\server\resources\main, S:\dev\lighthouse\build\server\classes\java\main]}]
[07Feb2019 20:07:12.976] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 1 language providers
[07Feb2019 20:07:12.977] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 24.0
[07Feb2019 20:07:12.979] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Skipping adding forge jar - javafml is already present
[07Feb2019 20:07:12.981] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan
[07Feb2019 20:07:13.019] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Parsing mod file candidate C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\test\forge\1.13-24.0.166-1.13-pre_mapped_stable_43-1.13\forge-1.13-24.0.166-1.13-pre_mapped_stable_43-1.13.jar
[07Feb2019 20:07:13.051] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\test\forge\1.13-24.0.166-1.13-pre_mapped_stable_43-1.13\forge-1.13-24.0.166-1.13-pre_mapped_stable_43-1.13.jar with language javafml
[07Feb2019 20:07:13.052] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Parsing mod file candidate S:\dev\lighthouse\build\server\resources\main
[07Feb2019 20:07:13.054] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file S:\dev\lighthouse\build\server\resources\main with language javafml
[07Feb2019 20:07:13.068] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mandatory requirements
[07Feb2019 20:07:13.069] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mandatory mod requirements missing
[07Feb2019 20:07:13.241] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[07Feb2019 20:07:13.241] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers
[07Feb2019 20:07:13.242] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml
[07Feb2019 20:07:13.242] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers
[07Feb2019 20:07:13.244] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml
[07Feb2019 20:07:13.253] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmluserdevserver' with arguments [--gameDir, ., --launchTarget, fmluserdevserver, --fml.forgeVersion, 24.0.166-1.13-pre, --fml.mcpVersion, 2018.09.12.04.11.00, --fml.mcpMappings, stable_43-1.13, --fml.mcVersion, 1.13, --fml.forgeGroup, net.minecraftforge.test]
[07Feb2019 20:07:13.254] [main/DEBUG] [net.minecraftforge.userdev.FMLUserdevServerLaunchProvider/CORE]: Launching minecraft in cpw.mods.modlauncher.TransformingClassLoader@3277e499 with arguments [--gameDir, ., --launchTarget, fmluserdevserver, --fml.forgeVersion, 24.0.166-1.13-pre, --fml.mcpVersion, 2018.09.12.04.11.00, --fml.mcpMappings, stable_43-1.13, --fml.mcVersion, 1.13, --fml.forgeGroup, net.minecraftforge.test]
[07Feb2019 20:07:13.263] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/MinecraftServer.class got resource net/minecraft/server/MinecraftServer.class true
[07Feb2019 20:07:13.329] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IThreadListener.class got resource net/minecraft/util/IThreadListener.class true
[07Feb2019 20:07:13.332] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/profiler/ISnooperInfo.class got resource net/minecraft/profiler/ISnooperInfo.class true
[07Feb2019 20:07:13.336] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/ICommandSource.class got resource net/minecraft/command/ICommandSource.class true
[07Feb2019 20:07:13.343] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IReloadableResourceManager.class got resource net/minecraft/resources/IReloadableResourceManager.class true
[07Feb2019 20:07:13.346] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IResourceManager.class got resource net/minecraft/resources/IResourceManager.class true
[07Feb2019 20:07:13.350] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/ISaveFormat.class got resource net/minecraft/world/storage/ISaveFormat.class true
[07Feb2019 20:07:13.355] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IResourceManagerReloadListener.class got resource net/minecraft/resources/IResourceManagerReloadListener.class true
[07Feb2019 20:07:13.362] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/MinecraftServer$2.class got resource net/minecraft/server/MinecraftServer$2.class true
[07Feb2019 20:07:13.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/ITextComponent.class got resource net/minecraft/util/text/ITextComponent.class true
[07Feb2019 20:07:13.424] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/thread/SidedThreadGroup.class got resource net/minecraftforge/fml/common/thread/SidedThreadGroup.class true
[07Feb2019 20:07:13.433] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/Vec3i.class got resource net/minecraft/util/math/Vec3i.class true
[07Feb2019 20:07:13.437] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/BlockPos.class got resource net/minecraft/util/math/BlockPos.class true
[07Feb2019 20:07:13.443] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/SessionLockException.class got resource net/minecraft/world/storage/SessionLockException.class true
[07Feb2019 20:07:13.447] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IWorld.class got resource net/minecraft/world/IWorld.class true
[07Feb2019 20:07:13.451] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IWorldReaderBase.class got resource net/minecraft/world/IWorldReaderBase.class true
[07Feb2019 20:07:13.459] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IBlockReader.class got resource net/minecraft/world/IBlockReader.class true
[07Feb2019 20:07:13.465] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IWorldWriter.class got resource net/minecraft/world/IWorldWriter.class true
[07Feb2019 20:07:13.469] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent$Unload.class got resource net/minecraftforge/event/world/WorldEvent$Unload.class true
[07Feb2019 20:07:13.472] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent.class got resource net/minecraftforge/event/world/WorldEvent.class true
[07Feb2019 20:07:13.476] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IWorldEventListener.class got resource net/minecraft/world/IWorldEventListener.class true
[07Feb2019 20:07:13.479] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent$Load.class got resource net/minecraftforge/event/world/WorldEvent$Load.class true
[07Feb2019 20:07:13.483] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IPackFinder.class got resource net/minecraft/resources/IPackFinder.class true
[07Feb2019 20:07:13.487] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/Packet.class got resource net/minecraft/network/Packet.class true
[07Feb2019 20:07:13.490] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/World.class got resource net/minecraft/world/World.class true
[07Feb2019 20:07:13.522] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IWorldReader.class got resource net/minecraft/world/IWorldReader.class true
[07Feb2019 20:07:13.527] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeWorld.class got resource net/minecraftforge/common/extensions/IForgeWorld.class true
[07Feb2019 20:07:13.531] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/ICapabilityProvider.class got resource net/minecraftforge/common/capabilities/ICapabilityProvider.class true
[07Feb2019 20:07:13.535] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/CapabilityProvider.class got resource net/minecraftforge/common/capabilities/CapabilityProvider.class true
[07Feb2019 20:07:13.538] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldServer.class got resource net/minecraft/world/WorldServer.class true
[07Feb2019 20:07:13.551] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeWorldServer.class got resource net/minecraftforge/common/extensions/IForgeWorldServer.class true
[07Feb2019 20:07:13.554] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/crash/ReportedException.class got resource net/minecraft/crash/ReportedException.class true
[07Feb2019 20:07:13.560] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IProgressUpdate.class got resource net/minecraft/util/IProgressUpdate.class true
[07Feb2019 20:07:13.619] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/profiler/Snooper.class got resource net/minecraft/profiler/Snooper.class true
[07Feb2019 20:07:13.637] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootTableManager.class got resource net/minecraft/world/storage/loot/LootTableManager.class true
[07Feb2019 20:07:13.645] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/CommandSource.class got resource net/minecraft/command/CommandSource.class true
[07Feb2019 20:07:13.653] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/ISuggestionProvider.class got resource net/minecraft/command/ISuggestionProvider.class true
[07Feb2019 20:07:13.659] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/NetworkTagManager.class got resource net/minecraft/tags/NetworkTagManager.class true
[07Feb2019 20:07:13.666] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerProfileCache.class got resource net/minecraft/server/management/PlayerProfileCache.class true
[07Feb2019 20:07:13.673] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/Commands.class got resource net/minecraft/command/Commands.class true
[07Feb2019 20:07:13.680] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/ServerScoreboard.class got resource net/minecraft/scoreboard/ServerScoreboard.class true
[07Feb2019 20:07:13.684] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/Scoreboard.class got resource net/minecraft/scoreboard/Scoreboard.class true
[07Feb2019 20:07:13.690] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/ServerStatusResponse.class got resource net/minecraft/network/ServerStatusResponse.class true
[07Feb2019 20:07:13.695] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementManager.class got resource net/minecraft/advancements/AdvancementManager.class true
[07Feb2019 20:07:13.700] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackList.class got resource net/minecraft/resources/ResourcePackList.class true
[07Feb2019 20:07:13.704] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerList.class got resource net/minecraft/server/management/PlayerList.class true
[07Feb2019 20:07:13.713] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/player/EntityPlayer.class got resource net/minecraft/entity/player/EntityPlayer.class true
[07Feb2019 20:07:13.730] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityLivingBase.class got resource net/minecraft/entity/EntityLivingBase.class true
[07Feb2019 20:07:13.755] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/Entity.class got resource net/minecraft/entity/Entity.class true
[07Feb2019 20:07:13.771] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/INameable.class got resource net/minecraft/util/INameable.class true
[07Feb2019 20:07:13.775] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeEntity.class got resource net/minecraftforge/common/extensions/IForgeEntity.class true
[07Feb2019 20:07:13.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/ICapabilitySerializable.class got resource net/minecraftforge/common/capabilities/ICapabilitySerializable.class true
[07Feb2019 20:07:13.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/INBTSerializable.class got resource net/minecraftforge/common/util/INBTSerializable.class true
[07Feb2019 20:07:13.786] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/GameType.class got resource net/minecraft/world/GameType.class true
[07Feb2019 20:07:13.792] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeManager.class got resource net/minecraft/item/crafting/RecipeManager.class true
[07Feb2019 20:07:13.821] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/ForgeRecipeManager.class got resource net/minecraftforge/common/extensions/ForgeRecipeManager.class true
[07Feb2019 20:07:13.825] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/crash/CrashReport.class got resource net/minecraft/crash/CrashReport.class true
[07Feb2019 20:07:13.831] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/NetworkSystem.class got resource net/minecraft/network/NetworkSystem.class true
[07Feb2019 20:07:13.835] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldType.class got resource net/minecraft/world/WorldType.class true
[07Feb2019 20:07:13.840] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeWorldType.class got resource net/minecraftforge/common/extensions/IForgeWorldType.class true
[07Feb2019 20:07:13.844] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/DimensionType.class got resource net/minecraft/world/dimension/DimensionType.class true
[07Feb2019 20:07:13.849] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/WorldInfo.class got resource net/minecraft/world/storage/WorldInfo.class true
[07Feb2019 20:07:13.854] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/EnumDifficulty.class got resource net/minecraft/world/EnumDifficulty.class true
[07Feb2019 20:07:13.858] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/FunctionManager.class got resource net/minecraft/advancements/FunctionManager.class true
[07Feb2019 20:07:13.863] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ITickable.class got resource net/minecraft/util/ITickable.class true
[07Feb2019 20:07:13.866] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/CustomBossEvents.class got resource net/minecraft/server/CustomBossEvents.class true
[07Feb2019 20:07:13.870] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/ISaveHandler.class got resource net/minecraft/world/storage/ISaveHandler.class true
[07Feb2019 20:07:13.873] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/GameRules.class got resource net/minecraft/world/GameRules.class true
[07Feb2019 20:07:13.879] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/ServerEula.class got resource net/minecraft/server/ServerEula.class true
[07Feb2019 20:07:13.884] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/SharedConstants.class got resource net/minecraft/util/SharedConstants.class true
[07Feb2019 20:07:13.903] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/TranslatableExceptionProvider.class got resource net/minecraft/command/TranslatableExceptionProvider.class true
[07Feb2019 20:07:13.911] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentTranslation.class got resource net/minecraft/util/text/TextComponentTranslation.class true
[07Feb2019 20:07:13.918] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentBase.class got resource net/minecraft/util/text/TextComponentBase.class true
[07Feb2019 20:07:13.921] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentTranslationFormatException.class got resource net/minecraft/util/text/TextComponentTranslationFormatException.class true
[07Feb2019 20:07:13.926] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/translation/LanguageMap.class got resource net/minecraft/util/text/translation/LanguageMap.class true
[07Feb2019 20:07:14.076] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/JsonUtils.class got resource net/minecraft/util/JsonUtils.class true
[07Feb2019 20:07:14.089] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/server/LanguageHook.class got resource net/minecraftforge/fml/server/LanguageHook.class true
[07Feb2019 20:07:14.094] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Util.class got resource net/minecraft/util/Util.class true
[07Feb2019 20:07:14.115] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/NamespacedSchema.class got resource net/minecraft/util/datafix/NamespacedSchema.class true
[07Feb2019 20:07:14.130] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap.class got resource net/minecraft/init/Bootstrap.class true
[07Feb2019 20:07:14.134] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/registry/RegistryNamespaced.class got resource net/minecraft/util/registry/RegistryNamespaced.class true
[07Feb2019 20:07:14.137] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IObjectIntIterable.class got resource net/minecraft/util/IObjectIntIterable.class true
[07Feb2019 20:07:14.140] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/registry/RegistrySimple.class got resource net/minecraft/util/registry/RegistrySimple.class true
[07Feb2019 20:07:14.143] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/registry/IRegistry.class got resource net/minecraft/util/registry/IRegistry.class true
[07Feb2019 20:07:14.146] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/registry/RegistryNamespacedDefaultedByKey.class got resource net/minecraft/util/registry/RegistryNamespacedDefaultedByKey.class true
[07Feb2019 20:07:14.149] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/IBehaviorDispenseItem.class got resource net/minecraft/dispenser/IBehaviorDispenseItem.class true
[07Feb2019 20:07:14.152] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IItemProvider.class got resource net/minecraft/util/IItemProvider.class true
[07Feb2019 20:07:14.154] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/DebugLoggingPrintStream.class got resource net/minecraft/server/DebugLoggingPrintStream.class true
[07Feb2019 20:07:14.158] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/LoggingPrintStream.class got resource net/minecraft/util/LoggingPrintStream.class true
[07Feb2019 20:07:14.160] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/SoundEvent.class got resource net/minecraft/util/SoundEvent.class true
[07Feb2019 20:07:14.164] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistryEntry.class got resource net/minecraftforge/registries/ForgeRegistryEntry.class true
[07Feb2019 20:07:14.167] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistryEntry.class got resource net/minecraftforge/registries/IForgeRegistryEntry.class true
[07Feb2019 20:07:14.170] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistryEntry$1.class got resource net/minecraftforge/registries/ForgeRegistryEntry$1.class true
[07Feb2019 20:07:14.173] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IRegistryDelegate.class got resource net/minecraftforge/registries/IRegistryDelegate.class true
[07Feb2019 20:07:14.176] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData.class got resource net/minecraftforge/registries/GameData.class true
[07Feb2019 20:07:14.183] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/RegistryEvent$NewRegistry.class got resource net/minecraftforge/event/RegistryEvent$NewRegistry.class true
[07Feb2019 20:07:14.186] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/RegistryEvent$Register.class got resource net/minecraftforge/event/RegistryEvent$Register.class true
[07Feb2019 20:07:14.189] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/RegistryEvent.class got resource net/minecraftforge/event/RegistryEvent.class true
[07Feb2019 20:07:14.193] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/RegistryEvent$MissingMappings.class got resource net/minecraftforge/event/RegistryEvent$MissingMappings.class true
[07Feb2019 20:07:14.197] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$1.class got resource net/minecraftforge/registries/GameData$1.class true
[07Feb2019 20:07:14.200] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/EnhancedRuntimeException.class got resource net/minecraftforge/fml/common/EnhancedRuntimeException.class true
[07Feb2019 20:07:14.204] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ResourceLocation.class got resource net/minecraft/util/ResourceLocation.class true
[07Feb2019 20:07:14.207] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ResourceLocationException.class got resource net/minecraft/util/ResourceLocationException.class true
[07Feb2019 20:07:14.213] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistry.class got resource net/minecraftforge/registries/ForgeRegistry.class true
[07Feb2019 20:07:14.218] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistryInternal.class got resource net/minecraftforge/registries/IForgeRegistryInternal.class true
[07Feb2019 20:07:14.221] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry.class got resource net/minecraftforge/registries/IForgeRegistry.class true
[07Feb2019 20:07:14.224] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistryModifiable.class got resource net/minecraftforge/registries/IForgeRegistryModifiable.class true
[07Feb2019 20:07:14.227] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/Block.class got resource net/minecraft/block/Block.class true
[07Feb2019 20:07:14.236] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeBlock.class got resource net/minecraftforge/common/extensions/IForgeBlock.class true
[07Feb2019 20:07:14.240] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/RegistryBuilder.class got resource net/minecraftforge/registries/RegistryBuilder.class true
[07Feb2019 20:07:14.244] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/NamespacedDefaultedWrapper$Factory.class got resource net/minecraftforge/registries/NamespacedDefaultedWrapper$Factory.class true
[07Feb2019 20:07:14.247] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$CreateCallback.class got resource net/minecraftforge/registries/IForgeRegistry$CreateCallback.class true
[07Feb2019 20:07:14.249] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$AddCallback.class got resource net/minecraftforge/registries/IForgeRegistry$AddCallback.class true
[07Feb2019 20:07:14.251] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$ClearCallback.class got resource net/minecraftforge/registries/IForgeRegistry$ClearCallback.class true
[07Feb2019 20:07:14.253] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$ValidateCallback.class got resource net/minecraftforge/registries/IForgeRegistry$ValidateCallback.class true
[07Feb2019 20:07:14.255] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$BakeCallback.class got resource net/minecraftforge/registries/IForgeRegistry$BakeCallback.class true
[07Feb2019 20:07:14.258] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$DummyFactory.class got resource net/minecraftforge/registries/IForgeRegistry$DummyFactory.class true
[07Feb2019 20:07:14.260] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/IForgeRegistry$MissingFactory.class got resource net/minecraftforge/registries/IForgeRegistry$MissingFactory.class true
[07Feb2019 20:07:14.262] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$BlockCallbacks.class got resource net/minecraftforge/registries/GameData$BlockCallbacks.class true
[07Feb2019 20:07:14.266] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$BlockCallbacks$BlockDummyAir.class got resource net/minecraftforge/registries/GameData$BlockCallbacks$BlockDummyAir.class true
[07Feb2019 20:07:14.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockAir.class got resource net/minecraft/block/BlockAir.class true
[07Feb2019 20:07:14.273] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/RegistryManager.class got resource net/minecraftforge/registries/RegistryManager.class true
[07Feb2019 20:07:14.287] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/NamespacedDefaultedWrapper.class got resource net/minecraftforge/registries/NamespacedDefaultedWrapper.class true
[07Feb2019 20:07:14.291] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ILockableRegistry.class got resource net/minecraftforge/registries/ILockableRegistry.class true
[07Feb2019 20:07:14.294] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IntIdentityHashBiMap.class got resource net/minecraft/util/IntIdentityHashBiMap.class true
[07Feb2019 20:07:14.297] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$BlockCallbacks$1.class got resource net/minecraftforge/registries/GameData$BlockCallbacks$1.class true
[07Feb2019 20:07:14.299] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap.class got resource net/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap.class true
[07Feb2019 20:07:14.301] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ObjectIntIdentityMap.class got resource net/minecraft/util/ObjectIntIdentityMap.class true
[07Feb2019 20:07:14.307] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/Item.class got resource net/minecraft/item/Item.class true
[07Feb2019 20:07:14.313] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeItem.class got resource net/minecraftforge/common/extensions/IForgeItem.class true
[07Feb2019 20:07:14.317] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/NamespacedWrapper$Factory.class got resource net/minecraftforge/registries/NamespacedWrapper$Factory.class true
[07Feb2019 20:07:14.319] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/GameData$ItemCallbacks.class got resource net/minecraftforge/registries/GameData$ItemCallbacks.class true
[07Feb2019 20:07:14.322] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/NamespacedWrapper.class got resource net/minecraftforge/registries/NamespacedWrapper.class true
[07Feb2019 20:07:14.326] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/Potion.class got resource net/minecraft/potion/Potion.class true
[07Feb2019 20:07:14.332] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/Biome.class got resource net/minecraft/world/biome/Biome.class true
[07Feb2019 20:07:14.337] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionType.class got resource net/minecraft/potion/PotionType.class true
[07Feb2019 20:07:14.340] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/Enchantment.class got resource net/minecraft/enchantment/Enchantment.class true
[07Feb2019 20:07:14.343] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/registry/VillagerRegistry$VillagerProfession.class got resource net/minecraftforge/fml/common/registry/VillagerRegistry$VillagerProfession.class true
[07Feb2019 20:07:14.346] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityType.class got resource net/minecraft/entity/EntityType.class true
[07Feb2019 20:07:14.351] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityType.class got resource net/minecraft/tileentity/TileEntityType.class true
[07Feb2019 20:07:14.364] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/RegistryDelegate.class got resource net/minecraftforge/registries/RegistryDelegate.class true
[07Feb2019 20:07:14.368] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModThreadContext.class got resource net/minecraftforge/fml/ModThreadContext.class true
[07Feb2019 20:07:14.371] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/DefaultModContainers.class got resource net/minecraftforge/fml/DefaultModContainers.class true
[07Feb2019 20:07:14.373] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModContainer.class got resource net/minecraftforge/fml/ModContainer.class true
[07Feb2019 20:07:14.376] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/DefaultModContainers$1.class got resource net/minecraftforge/fml/DefaultModContainers$1.class true
[07Feb2019 20:07:14.378] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/config/ModConfig$Type.class got resource net/minecraftforge/fml/config/ModConfig$Type.class true
[07Feb2019 20:07:14.381] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModLoadingException.class got resource net/minecraftforge/fml/ModLoadingException.class true
[07Feb2019 20:07:14.384] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModLoadingStage.class got resource net/minecraftforge/fml/ModLoadingStage.class true
[07Feb2019 20:07:14.387] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/SidedProvider.class got resource net/minecraftforge/fml/SidedProvider.class true
[07Feb2019 20:07:14.390] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent.class got resource net/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent.class true
[07Feb2019 20:07:14.393] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/ModLifecycleEvent.class got resource net/minecraftforge/fml/event/lifecycle/ModLifecycleEvent.class true
[07Feb2019 20:07:14.396] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent.class got resource net/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent.class true
[07Feb2019 20:07:14.401] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistry$OverrideOwner.class got resource net/minecraftforge/registries/ForgeRegistry$OverrideOwner.class true
[07Feb2019 20:07:14.433] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/Fluid.class got resource net/minecraft/fluid/Fluid.class true
[07Feb2019 20:07:14.437] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeFluid.class got resource net/minecraftforge/common/extensions/IForgeFluid.class true
[07Feb2019 20:07:14.439] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/EmptyFluid.class got resource net/minecraft/fluid/EmptyFluid.class true
[07Feb2019 20:07:14.443] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/WaterFluid$Flowing.class got resource net/minecraft/fluid/WaterFluid$Flowing.class true
[07Feb2019 20:07:14.446] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/WaterFluid.class got resource net/minecraft/fluid/WaterFluid.class true
[07Feb2019 20:07:14.449] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/FlowingFluid.class got resource net/minecraft/fluid/FlowingFluid.class true
[07Feb2019 20:07:14.453] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/WaterFluid$Source.class got resource net/minecraft/fluid/WaterFluid$Source.class true
[07Feb2019 20:07:14.457] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/LavaFluid$Flowing.class got resource net/minecraft/fluid/LavaFluid$Flowing.class true
[07Feb2019 20:07:14.461] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/LavaFluid.class got resource net/minecraft/fluid/LavaFluid.class true
[07Feb2019 20:07:14.464] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/LavaFluid$Source.class got resource net/minecraft/fluid/LavaFluid$Source.class true
[07Feb2019 20:07:14.467] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/StateContainer$Builder.class got resource net/minecraft/state/StateContainer$Builder.class true
[07Feb2019 20:07:14.470] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/AbstractStateHolder.class got resource net/minecraft/state/AbstractStateHolder.class true
[07Feb2019 20:07:14.475] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/IStateHolder.class got resource net/minecraft/state/IStateHolder.class true
[07Feb2019 20:07:14.478] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/FluidState.class got resource net/minecraft/fluid/FluidState.class true
[07Feb2019 20:07:14.482] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/fluid/IFluidState.class got resource net/minecraft/fluid/IFluidState.class true
[07Feb2019 20:07:14.485] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeFluidState.class got resource net/minecraftforge/common/extensions/IForgeFluidState.class true
[07Feb2019 20:07:14.490] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/StateContainer$IFactory.class got resource net/minecraft/state/StateContainer$IFactory.class true
[07Feb2019 20:07:14.493] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/StateContainer.class got resource net/minecraft/state/StateContainer.class true
[07Feb2019 20:07:14.506] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/MapPopulator.class got resource net/minecraft/util/MapPopulator.class true
[07Feb2019 20:07:14.508] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/AbstractStateHolder$1.class got resource net/minecraft/state/AbstractStateHolder$1.class true
[07Feb2019 20:07:14.512] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/MathHelper.class got resource net/minecraft/util/math/MathHelper.class true
[07Feb2019 20:07:14.524] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/IProperty.class got resource net/minecraft/state/IProperty.class true
[07Feb2019 20:07:14.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/BlockPos$PooledMutableBlockPos.class got resource net/minecraft/util/math/BlockPos$PooledMutableBlockPos.class true
[07Feb2019 20:07:14.530] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/BlockPos$MutableBlockPos.class got resource net/minecraft/util/math/BlockPos$MutableBlockPos.class true
[07Feb2019 20:07:14.533] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/BlockStateProperties.class got resource net/minecraft/state/properties/BlockStateProperties.class true
[07Feb2019 20:07:14.536] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$Axis.class got resource net/minecraft/util/EnumFacing$Axis.class true
[07Feb2019 20:07:14.540] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IStringSerializable.class got resource net/minecraft/util/IStringSerializable.class true
[07Feb2019 20:07:14.543] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/BooleanProperty.class got resource net/minecraft/state/BooleanProperty.class true
[07Feb2019 20:07:14.546] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/AbstractProperty.class got resource net/minecraft/state/AbstractProperty.class true
[07Feb2019 20:07:14.549] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$Axis$1.class got resource net/minecraft/util/EnumFacing$Axis$1.class true
[07Feb2019 20:07:14.552] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$Axis$2.class got resource net/minecraft/util/EnumFacing$Axis$2.class true
[07Feb2019 20:07:14.555] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$Axis$3.class got resource net/minecraft/util/EnumFacing$Axis$3.class true
[07Feb2019 20:07:14.560] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/EnumProperty.class got resource net/minecraft/state/EnumProperty.class true
[07Feb2019 20:07:14.565] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing.class got resource net/minecraft/util/EnumFacing.class true
[07Feb2019 20:07:14.569] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$Plane.class got resource net/minecraft/util/EnumFacing$Plane.class true
[07Feb2019 20:07:14.753] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$AxisDirection.class got resource net/minecraft/util/EnumFacing$AxisDirection.class true
[07Feb2019 20:07:14.758] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/DirectionProperty.class got resource net/minecraft/state/DirectionProperty.class true
[07Feb2019 20:07:14.761] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumFacing$1.class got resource net/minecraft/util/EnumFacing$1.class true
[07Feb2019 20:07:14.764] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/AttachFace.class got resource net/minecraft/state/properties/AttachFace.class true
[07Feb2019 20:07:14.766] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/RedstoneSide.class got resource net/minecraft/state/properties/RedstoneSide.class true
[07Feb2019 20:07:14.769] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/DoubleBlockHalf.class got resource net/minecraft/state/properties/DoubleBlockHalf.class true
[07Feb2019 20:07:14.772] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/Half.class got resource net/minecraft/state/properties/Half.class true
[07Feb2019 20:07:14.775] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/RailShape.class got resource net/minecraft/state/properties/RailShape.class true
[07Feb2019 20:07:14.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/IntegerProperty.class got resource net/minecraft/state/IntegerProperty.class true
[07Feb2019 20:07:14.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/BedPart.class got resource net/minecraft/state/properties/BedPart.class true
[07Feb2019 20:07:14.785] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/ChestType.class got resource net/minecraft/state/properties/ChestType.class true
[07Feb2019 20:07:14.787] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/ComparatorMode.class got resource net/minecraft/state/properties/ComparatorMode.class true
[07Feb2019 20:07:14.790] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/DoorHingeSide.class got resource net/minecraft/state/properties/DoorHingeSide.class true
[07Feb2019 20:07:14.793] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/NoteBlockInstrument.class got resource net/minecraft/state/properties/NoteBlockInstrument.class true
[07Feb2019 20:07:14.796] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/IBlockState.class got resource net/minecraft/block/state/IBlockState.class true
[07Feb2019 20:07:14.799] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeBlockState.class got resource net/minecraftforge/common/extensions/IForgeBlockState.class true
[07Feb2019 20:07:14.803] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/SoundEvents.class got resource net/minecraft/init/SoundEvents.class true
[07Feb2019 20:07:14.819] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/PistonType.class got resource net/minecraft/state/properties/PistonType.class true
[07Feb2019 20:07:14.822] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/SlabType.class got resource net/minecraft/state/properties/SlabType.class true
[07Feb2019 20:07:14.825] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/StairsShape.class got resource net/minecraft/state/properties/StairsShape.class true
[07Feb2019 20:07:14.828] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/state/properties/StructureMode.class got resource net/minecraft/state/properties/StructureMode.class true
[07Feb2019 20:07:14.842] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/IParticleData.class got resource net/minecraft/particles/IParticleData.class true
[07Feb2019 20:07:14.850] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/Block$1.class got resource net/minecraft/block/Block$1.class true
[07Feb2019 20:07:14.856] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityXPOrb.class got resource net/minecraft/entity/item/EntityXPOrb.class true
[07Feb2019 20:07:14.861] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityItem.class got resource net/minecraft/entity/item/EntityItem.class true
[07Feb2019 20:07:14.865] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStone.class got resource net/minecraft/block/BlockStone.class true
[07Feb2019 20:07:14.869] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGrass.class got resource net/minecraft/block/BlockGrass.class true
[07Feb2019 20:07:14.873] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/IGrowable.class got resource net/minecraft/block/IGrowable.class true
[07Feb2019 20:07:14.876] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDirtSnowySpreadable.class got resource net/minecraft/block/BlockDirtSnowySpreadable.class true
[07Feb2019 20:07:14.878] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDirtSnowy.class got resource net/minecraft/block/BlockDirtSnowy.class true
[07Feb2019 20:07:14.880] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/AbstractTree.class got resource net/minecraft/block/trees/AbstractTree.class true
[07Feb2019 20:07:14.883] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/OakTree.class got resource net/minecraft/block/trees/OakTree.class true
[07Feb2019 20:07:14.886] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/SpruceTree.class got resource net/minecraft/block/trees/SpruceTree.class true
[07Feb2019 20:07:14.888] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/AbstractBigTree.class got resource net/minecraft/block/trees/AbstractBigTree.class true
[07Feb2019 20:07:14.891] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/BirchTree.class got resource net/minecraft/block/trees/BirchTree.class true
[07Feb2019 20:07:14.893] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/JungleTree.class got resource net/minecraft/block/trees/JungleTree.class true
[07Feb2019 20:07:14.896] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/AcaciaTree.class got resource net/minecraft/block/trees/AcaciaTree.class true
[07Feb2019 20:07:14.898] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/trees/DarkOakTree.class got resource net/minecraft/block/trees/DarkOakTree.class true
[07Feb2019 20:07:14.901] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSapling.class got resource net/minecraft/block/BlockSapling.class true
[07Feb2019 20:07:14.904] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBush.class got resource net/minecraft/block/BlockBush.class true
[07Feb2019 20:07:14.907] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/IPlantable.class got resource net/minecraftforge/common/IPlantable.class true
[07Feb2019 20:07:14.909] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEmptyDrops.class got resource net/minecraft/block/BlockEmptyDrops.class true
[07Feb2019 20:07:14.913] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFlowingFluid.class got resource net/minecraft/block/BlockFlowingFluid.class true
[07Feb2019 20:07:14.917] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/IBucketPickupHandler.class got resource net/minecraft/block/IBucketPickupHandler.class true
[07Feb2019 20:07:14.919] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSand.class got resource net/minecraft/block/BlockSand.class true
[07Feb2019 20:07:14.923] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFalling.class got resource net/minecraft/block/BlockFalling.class true
[07Feb2019 20:07:14.926] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGravel.class got resource net/minecraft/block/BlockGravel.class true
[07Feb2019 20:07:14.930] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockOre.class got resource net/minecraft/block/BlockOre.class true
[07Feb2019 20:07:14.934] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLog.class got resource net/minecraft/block/BlockLog.class true
[07Feb2019 20:07:14.938] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRotatedPillar.class got resource net/minecraft/block/BlockRotatedPillar.class true
[07Feb2019 20:07:14.941] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLeaves.class got resource net/minecraft/block/BlockLeaves.class true
[07Feb2019 20:07:14.945] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/IShearable.class got resource net/minecraftforge/common/IShearable.class true
[07Feb2019 20:07:14.948] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSponge.class got resource net/minecraft/block/BlockSponge.class true
[07Feb2019 20:07:14.952] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockWetSponge.class got resource net/minecraft/block/BlockWetSponge.class true
[07Feb2019 20:07:14.956] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGlass.class got resource net/minecraft/block/BlockGlass.class true
[07Feb2019 20:07:14.960] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBreakable.class got resource net/minecraft/block/BlockBreakable.class true
[07Feb2019 20:07:14.962] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDispenser.class got resource net/minecraft/block/BlockDispenser.class true
[07Feb2019 20:07:14.967] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockContainer.class got resource net/minecraft/block/BlockContainer.class true
[07Feb2019 20:07:14.969] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/ITileEntityProvider.class got resource net/minecraft/block/ITileEntityProvider.class true
[07Feb2019 20:07:14.971] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockNote.class got resource net/minecraft/block/BlockNote.class true
[07Feb2019 20:07:14.976] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBed.class got resource net/minecraft/block/BlockBed.class true
[07Feb2019 20:07:14.981] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockHorizontal.class got resource net/minecraft/block/BlockHorizontal.class true
[07Feb2019 20:07:14.983] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRailPowered.class got resource net/minecraft/block/BlockRailPowered.class true
[07Feb2019 20:07:14.987] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRailBase.class got resource net/minecraft/block/BlockRailBase.class true
[07Feb2019 20:07:14.991] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRailDetector.class got resource net/minecraft/block/BlockRailDetector.class true
[07Feb2019 20:07:14.996] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPistonBase.class got resource net/minecraft/block/BlockPistonBase.class true
[07Feb2019 20:07:15.001] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDirectional.class got resource net/minecraft/block/BlockDirectional.class true
[07Feb2019 20:07:15.003] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockWeb.class got resource net/minecraft/block/BlockWeb.class true
[07Feb2019 20:07:15.007] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTallGrass.class got resource net/minecraft/block/BlockTallGrass.class true
[07Feb2019 20:07:15.012] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDeadBush.class got resource net/minecraft/block/BlockDeadBush.class true
[07Feb2019 20:07:15.017] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSeaGrass.class got resource net/minecraft/block/BlockSeaGrass.class true
[07Feb2019 20:07:15.021] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/ILiquidContainer.class got resource net/minecraft/block/ILiquidContainer.class true
[07Feb2019 20:07:15.024] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSeaGrassTall.class got resource net/minecraft/block/BlockSeaGrassTall.class true
[07Feb2019 20:07:15.028] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockShearableDoublePlant.class got resource net/minecraft/block/BlockShearableDoublePlant.class true
[07Feb2019 20:07:15.032] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDoublePlant.class got resource net/minecraft/block/BlockDoublePlant.class true
[07Feb2019 20:07:15.035] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPistonExtension.class got resource net/minecraft/block/BlockPistonExtension.class true
[07Feb2019 20:07:15.039] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPistonMoving.class got resource net/minecraft/block/BlockPistonMoving.class true
[07Feb2019 20:07:15.044] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFlower.class got resource net/minecraft/block/BlockFlower.class true
[07Feb2019 20:07:15.048] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockMushroom.class got resource net/minecraft/block/BlockMushroom.class true
[07Feb2019 20:07:15.052] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTNT.class got resource net/minecraft/block/BlockTNT.class true
[07Feb2019 20:07:15.056] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBookshelf.class got resource net/minecraft/block/BlockBookshelf.class true
[07Feb2019 20:07:15.060] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTorch.class got resource net/minecraft/block/BlockTorch.class true
[07Feb2019 20:07:15.063] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTorchWall.class got resource net/minecraft/block/BlockTorchWall.class true
[07Feb2019 20:07:15.068] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFire.class got resource net/minecraft/block/BlockFire.class true
[07Feb2019 20:07:15.073] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockMobSpawner.class got resource net/minecraft/block/BlockMobSpawner.class true
[07Feb2019 20:07:15.077] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStairs.class got resource net/minecraft/block/BlockStairs.class true
[07Feb2019 20:07:15.082] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockChest.class got resource net/minecraft/block/BlockChest.class true
[07Feb2019 20:07:15.090] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneWire.class got resource net/minecraft/block/BlockRedstoneWire.class true
[07Feb2019 20:07:15.095] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockWorkbench.class got resource net/minecraft/block/BlockWorkbench.class true
[07Feb2019 20:07:15.098] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCrops.class got resource net/minecraft/block/BlockCrops.class true
[07Feb2019 20:07:15.103] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFarmland.class got resource net/minecraft/block/BlockFarmland.class true
[07Feb2019 20:07:15.107] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFurnace.class got resource net/minecraft/block/BlockFurnace.class true
[07Feb2019 20:07:15.111] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStandingSign.class got resource net/minecraft/block/BlockStandingSign.class true
[07Feb2019 20:07:15.116] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSign.class got resource net/minecraft/block/BlockSign.class true
[07Feb2019 20:07:15.118] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDoor.class got resource net/minecraft/block/BlockDoor.class true
[07Feb2019 20:07:15.122] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLadder.class got resource net/minecraft/block/BlockLadder.class true
[07Feb2019 20:07:15.127] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRail.class got resource net/minecraft/block/BlockRail.class true
[07Feb2019 20:07:15.131] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockWallSign.class got resource net/minecraft/block/BlockWallSign.class true
[07Feb2019 20:07:15.135] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLever.class got resource net/minecraft/block/BlockLever.class true
[07Feb2019 20:07:15.139] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockHorizontalFace.class got resource net/minecraft/block/BlockHorizontalFace.class true
[07Feb2019 20:07:15.142] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPressurePlate.class got resource net/minecraft/block/BlockPressurePlate.class true
[07Feb2019 20:07:15.145] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBasePressurePlate.class got resource net/minecraft/block/BlockBasePressurePlate.class true
[07Feb2019 20:07:15.148] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneOre.class got resource net/minecraft/block/BlockRedstoneOre.class true
[07Feb2019 20:07:15.152] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneTorch.class got resource net/minecraft/block/BlockRedstoneTorch.class true
[07Feb2019 20:07:15.157] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneTorchWall.class got resource net/minecraft/block/BlockRedstoneTorchWall.class true
[07Feb2019 20:07:15.261] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockButtonStone.class got resource net/minecraft/block/BlockButtonStone.class true
[07Feb2019 20:07:15.265] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockButton.class got resource net/minecraft/block/BlockButton.class true
[07Feb2019 20:07:15.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSnowLayer.class got resource net/minecraft/block/BlockSnowLayer.class true
[07Feb2019 20:07:15.272] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockIce.class got resource net/minecraft/block/BlockIce.class true
[07Feb2019 20:07:15.276] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSnow.class got resource net/minecraft/block/BlockSnow.class true
[07Feb2019 20:07:15.280] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCactus.class got resource net/minecraft/block/BlockCactus.class true
[07Feb2019 20:07:15.284] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockClay.class got resource net/minecraft/block/BlockClay.class true
[07Feb2019 20:07:15.287] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockReed.class got resource net/minecraft/block/BlockReed.class true
[07Feb2019 20:07:15.291] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockJukebox.class got resource net/minecraft/block/BlockJukebox.class true
[07Feb2019 20:07:15.295] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFence.class got resource net/minecraft/block/BlockFence.class true
[07Feb2019 20:07:15.299] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFourWay.class got resource net/minecraft/block/BlockFourWay.class true
[07Feb2019 20:07:15.302] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPumpkin.class got resource net/minecraft/block/BlockPumpkin.class true
[07Feb2019 20:07:15.305] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStemGrown.class got resource net/minecraft/block/BlockStemGrown.class true
[07Feb2019 20:07:15.308] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSoulSand.class got resource net/minecraft/block/BlockSoulSand.class true
[07Feb2019 20:07:15.311] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGlowstone.class got resource net/minecraft/block/BlockGlowstone.class true
[07Feb2019 20:07:15.315] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPortal.class got resource net/minecraft/block/BlockPortal.class true
[07Feb2019 20:07:15.319] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCarvedPumpkin.class got resource net/minecraft/block/BlockCarvedPumpkin.class true
[07Feb2019 20:07:15.324] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCake.class got resource net/minecraft/block/BlockCake.class true
[07Feb2019 20:07:15.327] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneRepeater.class got resource net/minecraft/block/BlockRedstoneRepeater.class true
[07Feb2019 20:07:15.331] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneDiode.class got resource net/minecraft/block/BlockRedstoneDiode.class true
[07Feb2019 20:07:15.334] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStainedGlass.class got resource net/minecraft/block/BlockStainedGlass.class true
[07Feb2019 20:07:15.338] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTrapDoor.class got resource net/minecraft/block/BlockTrapDoor.class true
[07Feb2019 20:07:15.342] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSilverfish.class got resource net/minecraft/block/BlockSilverfish.class true
[07Feb2019 20:07:15.346] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockHugeMushroom.class got resource net/minecraft/block/BlockHugeMushroom.class true
[07Feb2019 20:07:15.350] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockIronBars.class got resource net/minecraft/block/BlockIronBars.class true
[07Feb2019 20:07:15.354] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGlassPane.class got resource net/minecraft/block/BlockGlassPane.class true
[07Feb2019 20:07:15.358] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockMelon.class got resource net/minecraft/block/BlockMelon.class true
[07Feb2019 20:07:15.362] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockAttachedStem.class got resource net/minecraft/block/BlockAttachedStem.class true
[07Feb2019 20:07:15.366] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStem.class got resource net/minecraft/block/BlockStem.class true
[07Feb2019 20:07:15.370] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockVine.class got resource net/minecraft/block/BlockVine.class true
[07Feb2019 20:07:15.375] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFenceGate.class got resource net/minecraft/block/BlockFenceGate.class true
[07Feb2019 20:07:15.379] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockMycelium.class got resource net/minecraft/block/BlockMycelium.class true
[07Feb2019 20:07:15.383] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLilyPad.class got resource net/minecraft/block/BlockLilyPad.class true
[07Feb2019 20:07:15.387] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockNetherWart.class got resource net/minecraft/block/BlockNetherWart.class true
[07Feb2019 20:07:15.391] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEnchantmentTable.class got resource net/minecraft/block/BlockEnchantmentTable.class true
[07Feb2019 20:07:15.395] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBrewingStand.class got resource net/minecraft/block/BlockBrewingStand.class true
[07Feb2019 20:07:15.399] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCauldron.class got resource net/minecraft/block/BlockCauldron.class true
[07Feb2019 20:07:15.403] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEndPortal.class got resource net/minecraft/block/BlockEndPortal.class true
[07Feb2019 20:07:15.408] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEndPortalFrame.class got resource net/minecraft/block/BlockEndPortalFrame.class true
[07Feb2019 20:07:15.412] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDragonEgg.class got resource net/minecraft/block/BlockDragonEgg.class true
[07Feb2019 20:07:15.415] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneLamp.class got resource net/minecraft/block/BlockRedstoneLamp.class true
[07Feb2019 20:07:15.419] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCocoa.class got resource net/minecraft/block/BlockCocoa.class true
[07Feb2019 20:07:15.423] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEnderChest.class got resource net/minecraft/block/BlockEnderChest.class true
[07Feb2019 20:07:15.428] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTripWireHook.class got resource net/minecraft/block/BlockTripWireHook.class true
[07Feb2019 20:07:15.432] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTripWire.class got resource net/minecraft/block/BlockTripWire.class true
[07Feb2019 20:07:15.436] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCommandBlock.class got resource net/minecraft/block/BlockCommandBlock.class true
[07Feb2019 20:07:15.442] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBeacon.class got resource net/minecraft/block/BlockBeacon.class true
[07Feb2019 20:07:15.446] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockWall.class got resource net/minecraft/block/BlockWall.class true
[07Feb2019 20:07:15.450] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFlowerPot.class got resource net/minecraft/block/BlockFlowerPot.class true
[07Feb2019 20:07:15.454] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCarrot.class got resource net/minecraft/block/BlockCarrot.class true
[07Feb2019 20:07:15.458] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPotato.class got resource net/minecraft/block/BlockPotato.class true
[07Feb2019 20:07:15.463] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockButtonWood.class got resource net/minecraft/block/BlockButtonWood.class true
[07Feb2019 20:07:15.466] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkull$ISkullType.class got resource net/minecraft/block/BlockSkull$ISkullType.class true
[07Feb2019 20:07:15.469] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkullWall.class got resource net/minecraft/block/BlockSkullWall.class true
[07Feb2019 20:07:15.472] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockAbstractSkull.class got resource net/minecraft/block/BlockAbstractSkull.class true
[07Feb2019 20:07:15.475] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkull.class got resource net/minecraft/block/BlockSkull.class true
[07Feb2019 20:07:15.479] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkullWitherWall.class got resource net/minecraft/block/BlockSkullWitherWall.class true
[07Feb2019 20:07:15.483] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkullWither.class got resource net/minecraft/block/BlockSkullWither.class true
[07Feb2019 20:07:15.487] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkullWallPlayer.class got resource net/minecraft/block/BlockSkullWallPlayer.class true
[07Feb2019 20:07:15.491] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkullPlayer.class got resource net/minecraft/block/BlockSkullPlayer.class true
[07Feb2019 20:07:15.495] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockAnvil.class got resource net/minecraft/block/BlockAnvil.class true
[07Feb2019 20:07:15.499] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTrappedChest.class got resource net/minecraft/block/BlockTrappedChest.class true
[07Feb2019 20:07:15.503] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPressurePlateWeighted.class got resource net/minecraft/block/BlockPressurePlateWeighted.class true
[07Feb2019 20:07:15.507] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstoneComparator.class got resource net/minecraft/block/BlockRedstoneComparator.class true
[07Feb2019 20:07:15.512] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDaylightDetector.class got resource net/minecraft/block/BlockDaylightDetector.class true
[07Feb2019 20:07:15.515] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockRedstone.class got resource net/minecraft/block/BlockRedstone.class true
[07Feb2019 20:07:15.519] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockHopper.class got resource net/minecraft/block/BlockHopper.class true
[07Feb2019 20:07:15.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDropper.class got resource net/minecraft/block/BlockDropper.class true
[07Feb2019 20:07:15.528] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStainedGlassPane.class got resource net/minecraft/block/BlockStainedGlassPane.class true
[07Feb2019 20:07:15.532] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSlime.class got resource net/minecraft/block/BlockSlime.class true
[07Feb2019 20:07:15.535] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBarrier.class got resource net/minecraft/block/BlockBarrier.class true
[07Feb2019 20:07:15.539] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSlab.class got resource net/minecraft/block/BlockSlab.class true
[07Feb2019 20:07:15.543] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSeaLantern.class got resource net/minecraft/block/BlockSeaLantern.class true
[07Feb2019 20:07:15.547] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockHay.class got resource net/minecraft/block/BlockHay.class true
[07Feb2019 20:07:15.550] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCarpet.class got resource net/minecraft/block/BlockCarpet.class true
[07Feb2019 20:07:15.554] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPackedIce.class got resource net/minecraft/block/BlockPackedIce.class true
[07Feb2019 20:07:15.558] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTallFlower.class got resource net/minecraft/block/BlockTallFlower.class true
[07Feb2019 20:07:15.562] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBanner.class got resource net/minecraft/block/BlockBanner.class true
[07Feb2019 20:07:15.566] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockAbstractBanner.class got resource net/minecraft/block/BlockAbstractBanner.class true
[07Feb2019 20:07:15.568] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBannerWall.class got resource net/minecraft/block/BlockBannerWall.class true
[07Feb2019 20:07:15.573] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEndRod.class got resource net/minecraft/block/BlockEndRod.class true
[07Feb2019 20:07:15.577] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockChorusPlant.class got resource net/minecraft/block/BlockChorusPlant.class true
[07Feb2019 20:07:15.580] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSixWay.class got resource net/minecraft/block/BlockSixWay.class true
[07Feb2019 20:07:15.583] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockChorusFlower.class got resource net/minecraft/block/BlockChorusFlower.class true
[07Feb2019 20:07:15.587] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBeetroot.class got resource net/minecraft/block/BlockBeetroot.class true
[07Feb2019 20:07:15.591] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGrassPath.class got resource net/minecraft/block/BlockGrassPath.class true
[07Feb2019 20:07:15.595] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockEndGateway.class got resource net/minecraft/block/BlockEndGateway.class true
[07Feb2019 20:07:15.598] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockFrostedIce.class got resource net/minecraft/block/BlockFrostedIce.class true
[07Feb2019 20:07:15.602] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockMagma.class got resource net/minecraft/block/BlockMagma.class true
[07Feb2019 20:07:15.606] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStructureVoid.class got resource net/minecraft/block/BlockStructureVoid.class true
[07Feb2019 20:07:15.610] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockObserver.class got resource net/minecraft/block/BlockObserver.class true
[07Feb2019 20:07:15.614] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockShulkerBox.class got resource net/minecraft/block/BlockShulkerBox.class true
[07Feb2019 20:07:15.619] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockGlazedTerracotta.class got resource net/minecraft/block/BlockGlazedTerracotta.class true
[07Feb2019 20:07:15.622] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockConcretePowder.class got resource net/minecraft/block/BlockConcretePowder.class true
[07Feb2019 20:07:15.626] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockKelpTop.class got resource net/minecraft/block/BlockKelpTop.class true
[07Feb2019 20:07:15.630] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockKelp.class got resource net/minecraft/block/BlockKelp.class true
[07Feb2019 20:07:15.634] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockTurtleEgg.class got resource net/minecraft/block/BlockTurtleEgg.class true
[07Feb2019 20:07:15.638] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoral.class got resource net/minecraft/block/BlockCoral.class true
[07Feb2019 20:07:15.641] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoralPlant.class got resource net/minecraft/block/BlockCoralPlant.class true
[07Feb2019 20:07:15.645] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoralWallFanDead.class got resource net/minecraft/block/BlockCoralWallFanDead.class true
[07Feb2019 20:07:15.650] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoralFan.class got resource net/minecraft/block/BlockCoralFan.class true
[07Feb2019 20:07:15.653] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoralWallFan.class got resource net/minecraft/block/BlockCoralWallFan.class true
[07Feb2019 20:07:15.658] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockCoralFin.class got resource net/minecraft/block/BlockCoralFin.class true
[07Feb2019 20:07:15.662] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSeaPickle.class got resource net/minecraft/block/BlockSeaPickle.class true
[07Feb2019 20:07:15.666] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBlueIce.class got resource net/minecraft/block/BlockBlueIce.class true
[07Feb2019 20:07:15.670] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockConduit.class got resource net/minecraft/block/BlockConduit.class true
[07Feb2019 20:07:15.674] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockBubbleColumn.class got resource net/minecraft/block/BlockBubbleColumn.class true
[07Feb2019 20:07:15.678] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockStructure.class got resource net/minecraft/block/BlockStructure.class true
[07Feb2019 20:07:15.684] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/NonNullList.class got resource net/minecraft/util/NonNullList.class true
[07Feb2019 20:07:15.687] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ToolType.class got resource net/minecraftforge/common/ToolType.class true
[07Feb2019 20:07:15.690] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeHooks.class got resource net/minecraftforge/common/ForgeHooks.class true
[07Feb2019 20:07:15.695] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem.class true
[07Feb2019 20:07:15.697] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent.class true
[07Feb2019 20:07:15.699] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent.class got resource net/minecraftforge/event/entity/player/PlayerEvent.class true
[07Feb2019 20:07:15.701] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEvent.class got resource net/minecraftforge/event/entity/living/LivingEvent.class true
[07Feb2019 20:07:15.703] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityEvent.class got resource net/minecraftforge/event/entity/EntityEvent.class true
[07Feb2019 20:07:15.708] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LootingLevelEvent.class got resource net/minecraftforge/event/entity/living/LootingLevelEvent.class true
[07Feb2019 20:07:15.711] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$CropGrowEvent$Post.class got resource net/minecraftforge/event/world/BlockEvent$CropGrowEvent$Post.class true
[07Feb2019 20:07:15.713] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$CropGrowEvent.class got resource net/minecraftforge/event/world/BlockEvent$CropGrowEvent.class true
[07Feb2019 20:07:15.714] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent.class got resource net/minecraftforge/event/world/BlockEvent.class true
[07Feb2019 20:07:15.718] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$CropGrowEvent$Pre.class got resource net/minecraftforge/event/world/BlockEvent$CropGrowEvent$Pre.class true
[07Feb2019 20:07:15.720] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock.class true
[07Feb2019 20:07:15.724] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty.class true
[07Feb2019 20:07:15.727] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/AnvilRepairEvent.class got resource net/minecraftforge/event/entity/player/AnvilRepairEvent.class true
[07Feb2019 20:07:15.730] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/AnvilUpdateEvent.class got resource net/minecraftforge/event/AnvilUpdateEvent.class true
[07Feb2019 20:07:15.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty.class true
[07Feb2019 20:07:15.736] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/player/EntityPlayerMP.class got resource net/minecraft/entity/player/EntityPlayerMP.class true
[07Feb2019 20:07:15.742] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/IContainerListener.class got resource net/minecraft/inventory/IContainerListener.class true
[07Feb2019 20:07:15.744] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/AdvancementEvent.class got resource net/minecraftforge/event/entity/player/AdvancementEvent.class true
[07Feb2019 20:07:15.747] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$Visibility.class got resource net/minecraftforge/event/entity/player/PlayerEvent$Visibility.class true
[07Feb2019 20:07:15.750] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityTravelToDimensionEvent.class got resource net/minecraftforge/event/entity/EntityTravelToDimensionEvent.class true
[07Feb2019 20:07:15.753] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/NoteBlockEvent$Change.class got resource net/minecraftforge/event/world/NoteBlockEvent$Change.class true
[07Feb2019 20:07:15.755] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/NoteBlockEvent.class got resource net/minecraftforge/event/world/NoteBlockEvent.class true
[07Feb2019 20:07:15.759] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingAttackEvent.class got resource net/minecraftforge/event/entity/living/LivingAttackEvent.class true
[07Feb2019 20:07:15.762] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract.class true
[07Feb2019 20:07:15.765] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/CriticalHitEvent.class got resource net/minecraftforge/event/entity/player/CriticalHitEvent.class true
[07Feb2019 20:07:15.768] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingHurtEvent.class got resource net/minecraftforge/event/entity/living/LivingHurtEvent.class true
[07Feb2019 20:07:15.771] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingDamageEvent.class got resource net/minecraftforge/event/entity/living/LivingDamageEvent.class true
[07Feb2019 20:07:15.774] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingDeathEvent.class got resource net/minecraftforge/event/entity/living/LivingDeathEvent.class true
[07Feb2019 20:07:15.777] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/item/ItemTossEvent.class got resource net/minecraftforge/event/entity/item/ItemTossEvent.class true
[07Feb2019 20:07:15.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/item/ItemEvent.class got resource net/minecraftforge/event/entity/item/ItemEvent.class true
[07Feb2019 20:07:15.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/AttackEntityEvent.class got resource net/minecraftforge/event/entity/player/AttackEntityEvent.class true
[07Feb2019 20:07:15.786] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingKnockBackEvent.class got resource net/minecraftforge/event/entity/living/LivingKnockBackEvent.class true
[07Feb2019 20:07:15.928] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.class got resource net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.class true
[07Feb2019 20:07:15.932] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingDropsEvent.class got resource net/minecraftforge/event/entity/living/LivingDropsEvent.class true
[07Feb2019 20:07:15.936] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingFallEvent.class got resource net/minecraftforge/event/entity/living/LivingFallEvent.class true
[07Feb2019 20:07:15.939] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEvent$LivingUpdateEvent.class got resource net/minecraftforge/event/entity/living/LivingEvent$LivingUpdateEvent.class true
[07Feb2019 20:07:15.942] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent.class got resource net/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent.class true
[07Feb2019 20:07:15.945] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$FarmlandTrampleEvent.class got resource net/minecraftforge/event/world/BlockEvent$FarmlandTrampleEvent.class true
[07Feb2019 20:07:15.948] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock.class true
[07Feb2019 20:07:15.951] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$BreakEvent.class got resource net/minecraftforge/event/world/BlockEvent$BreakEvent.class true
[07Feb2019 20:07:15.954] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/DifficultyChangeEvent.class got resource net/minecraftforge/event/DifficultyChangeEvent.class true
[07Feb2019 20:07:15.956] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/ServerChatEvent.class got resource net/minecraftforge/event/ServerChatEvent.class true
[07Feb2019 20:07:15.959] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific.class got resource net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific.class true
[07Feb2019 20:07:15.962] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$ITagEntry.class got resource net/minecraft/tags/Tag$ITagEntry.class true
[07Feb2019 20:07:15.967] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeHooks$DummyBlockReader.class got resource net/minecraftforge/common/ForgeHooks$DummyBlockReader.class true
[07Feb2019 20:07:15.970] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/material/Material.class got resource net/minecraft/block/material/Material.class true
[07Feb2019 20:07:15.972] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/material/Material$Builder.class got resource net/minecraft/block/material/Material$Builder.class true
[07Feb2019 20:07:15.974] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/material/MapColor.class got resource net/minecraft/block/material/MapColor.class true
[07Feb2019 20:07:15.977] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/material/EnumPushReaction.class got resource net/minecraft/block/material/EnumPushReaction.class true
[07Feb2019 20:07:15.980] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/Block$Builder.class got resource net/minecraft/block/Block$Builder.class true
[07Feb2019 20:07:15.983] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/SoundType.class got resource net/minecraft/block/SoundType.class true
[07Feb2019 20:07:15.986] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/BlockState.class got resource net/minecraft/block/state/BlockState.class true
[07Feb2019 20:07:15.994] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/ShapeUtils.class got resource net/minecraft/util/math/shapes/ShapeUtils.class true
[07Feb2019 20:07:15.997] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShape.class got resource net/minecraft/util/math/shapes/VoxelShape.class true
[07Feb2019 20:07:16.000] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/ShapeUtils$1.class got resource net/minecraft/util/math/shapes/ShapeUtils$1.class true
[07Feb2019 20:07:16.002] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapePart.class got resource net/minecraft/util/math/shapes/VoxelShapePart.class true
[07Feb2019 20:07:16.005] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapePartBitSet.class got resource net/minecraft/util/math/shapes/VoxelShapePartBitSet.class true
[07Feb2019 20:07:16.008] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapeCube.class got resource net/minecraft/util/math/shapes/VoxelShapeCube.class true
[07Feb2019 20:07:16.012] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapeArray.class got resource net/minecraft/util/math/shapes/VoxelShapeArray.class true
[07Feb2019 20:07:16.015] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/IDoubleListMerger.class got resource net/minecraft/util/math/shapes/IDoubleListMerger.class true
[07Feb2019 20:07:16.018] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapeSplit.class got resource net/minecraft/util/math/shapes/VoxelShapeSplit.class true
[07Feb2019 20:07:16.021] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapePart$1.class got resource net/minecraft/util/math/shapes/VoxelShapePart$1.class true
[07Feb2019 20:07:16.024] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/AxisAlignedBB.class got resource net/minecraft/util/math/AxisAlignedBB.class true
[07Feb2019 20:07:16.028] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IFeatureConfig.class got resource net/minecraft/world/gen/feature/IFeatureConfig.class true
[07Feb2019 20:07:16.030] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/AbstractTreeFeature.class got resource net/minecraft/world/gen/feature/AbstractTreeFeature.class true
[07Feb2019 20:07:16.033] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/Feature.class got resource net/minecraft/world/gen/feature/Feature.class true
[07Feb2019 20:07:16.035] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BigTreeFeature.class got resource net/minecraft/world/gen/feature/BigTreeFeature.class true
[07Feb2019 20:07:16.038] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TreeFeature.class got resource net/minecraft/world/gen/feature/TreeFeature.class true
[07Feb2019 20:07:16.041] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/MegaPineTree.class got resource net/minecraft/world/gen/feature/MegaPineTree.class true
[07Feb2019 20:07:16.044] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/HugeTreesFeature.class got resource net/minecraft/world/gen/feature/HugeTreesFeature.class true
[07Feb2019 20:07:16.047] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TallTaigaTreeFeature.class got resource net/minecraft/world/gen/feature/TallTaigaTreeFeature.class true
[07Feb2019 20:07:16.050] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BirchTreeFeature.class got resource net/minecraft/world/gen/feature/BirchTreeFeature.class true
[07Feb2019 20:07:16.054] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SavannaTreeFeature.class got resource net/minecraft/world/gen/feature/SavannaTreeFeature.class true
[07Feb2019 20:07:16.057] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CanopyTreeFeature.class got resource net/minecraft/world/gen/feature/CanopyTreeFeature.class true
[07Feb2019 20:07:16.061] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Fluids.class got resource net/minecraft/init/Fluids.class true
[07Feb2019 20:07:16.066] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityFallingBlock.class got resource net/minecraft/entity/item/EntityFallingBlock.class true
[07Feb2019 20:07:16.080] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntity.class got resource net/minecraft/tileentity/TileEntity.class true
[07Feb2019 20:07:16.084] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeTileEntity.class got resource net/minecraftforge/common/extensions/IForgeTileEntity.class true
[07Feb2019 20:07:16.086] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityDispenser.class got resource net/minecraft/tileentity/TileEntityDispenser.class true
[07Feb2019 20:07:16.090] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityLockableLoot.class got resource net/minecraft/tileentity/TileEntityLockableLoot.class true
[07Feb2019 20:07:16.092] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/ILootContainer.class got resource net/minecraft/world/storage/loot/ILootContainer.class true
[07Feb2019 20:07:16.094] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityLockable.class got resource net/minecraft/tileentity/TileEntityLockable.class true
[07Feb2019 20:07:16.097] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ILockableContainer.class got resource net/minecraft/world/ILockableContainer.class true
[07Feb2019 20:07:16.098] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/IInventory.class got resource net/minecraft/inventory/IInventory.class true
[07Feb2019 20:07:16.100] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/IInteractionObject.class got resource net/minecraft/world/IInteractionObject.class true
[07Feb2019 20:07:16.103] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/IBlockSource.class got resource net/minecraft/dispenser/IBlockSource.class true
[07Feb2019 20:07:16.106] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/ILocatableSource.class got resource net/minecraft/dispenser/ILocatableSource.class true
[07Feb2019 20:07:16.109] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/ILocation.class got resource net/minecraft/dispenser/ILocation.class true
[07Feb2019 20:07:16.111] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/IPosition.class got resource net/minecraft/dispenser/IPosition.class true
[07Feb2019 20:07:16.113] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/registry/RegistryDefaulted.class got resource net/minecraft/util/registry/RegistryDefaulted.class true
[07Feb2019 20:07:16.116] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/BehaviorDefaultDispenseItem.class got resource net/minecraft/dispenser/BehaviorDefaultDispenseItem.class true
[07Feb2019 20:07:16.119] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/NoteBlockEvent$Play.class got resource net/minecraftforge/event/world/NoteBlockEvent$Play.class true
[07Feb2019 20:07:16.150] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityBed.class got resource net/minecraft/tileentity/TileEntityBed.class true
[07Feb2019 20:07:16.160] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/EnumDyeColor.class got resource net/minecraft/item/EnumDyeColor.class true
[07Feb2019 20:07:16.164] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag.class got resource net/minecraft/tags/Tag.class true
[07Feb2019 20:07:16.168] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/ItemTags$Wrapper.class got resource net/minecraft/tags/ItemTags$Wrapper.class true
[07Feb2019 20:07:16.186] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityPiston.class got resource net/minecraft/tileentity/TileEntityPiston.class true
[07Feb2019 20:07:16.192] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityTNTPrimed.class got resource net/minecraft/entity/item/EntityTNTPrimed.class true
[07Feb2019 20:07:16.224] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityMobSpawner.class got resource net/minecraft/tileentity/TileEntityMobSpawner.class true
[07Feb2019 20:07:16.231] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/IBooleanFunction.class got resource net/minecraft/util/math/shapes/IBooleanFunction.class true
[07Feb2019 20:07:16.236] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/DoubleRangeList.class got resource net/minecraft/util/math/shapes/DoubleRangeList.class true
[07Feb2019 20:07:16.242] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/DoubleCubeMergingList.class got resource net/minecraft/util/math/shapes/DoubleCubeMergingList.class true
[07Feb2019 20:07:16.248] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/IDoubleListMerger$Consumer.class got resource net/minecraft/util/math/shapes/IDoubleListMerger$Consumer.class true
[07Feb2019 20:07:16.253] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/ShapeUtils$LineConsumer.class got resource net/minecraft/util/math/shapes/ShapeUtils$LineConsumer.class true
[07Feb2019 20:07:16.256] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapePart$LineConsumer.class got resource net/minecraft/util/math/shapes/VoxelShapePart$LineConsumer.class true
[07Feb2019 20:07:16.265] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityChest.class got resource net/minecraft/tileentity/TileEntityChest.class true
[07Feb2019 20:07:16.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/IChestLid.class got resource net/minecraft/tileentity/IChestLid.class true
[07Feb2019 20:07:16.301] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityFurnace.class got resource net/minecraft/tileentity/TileEntityFurnace.class true
[07Feb2019 20:07:16.306] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ISidedInventory.class got resource net/minecraft/inventory/ISidedInventory.class true
[07Feb2019 20:07:16.309] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/IRecipeHolder.class got resource net/minecraft/inventory/IRecipeHolder.class true
[07Feb2019 20:07:16.311] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/IRecipeHelperPopulator.class got resource net/minecraft/inventory/IRecipeHelperPopulator.class true
[07Feb2019 20:07:16.314] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntitySign.class got resource net/minecraft/tileentity/TileEntitySign.class true
[07Feb2019 20:07:16.323] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockPressurePlate$Sensitivity.class got resource net/minecraft/block/BlockPressurePlate$Sensitivity.class true
[07Feb2019 20:07:16.330] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityJukebox.class got resource net/minecraft/tileentity/TileEntityJukebox.class true
[07Feb2019 20:07:16.335] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapeArray$1.class got resource net/minecraft/util/math/shapes/VoxelShapeArray$1.class true
[07Feb2019 20:07:16.340] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/IndirectMerger.class got resource net/minecraft/util/math/shapes/IndirectMerger.class true
[07Feb2019 20:07:16.356] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/SimpleDoubleMerger.class got resource net/minecraft/util/math/shapes/SimpleDoubleMerger.class true
[07Feb2019 20:07:16.374] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySnowman.class got resource net/minecraft/entity/monster/EntitySnowman.class true
[07Feb2019 20:07:16.381] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IRangedAttackMob.class got resource net/minecraft/entity/IRangedAttackMob.class true
[07Feb2019 20:07:16.383] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGolem.class got resource net/minecraft/entity/monster/EntityGolem.class true
[07Feb2019 20:07:16.386] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/IAnimal.class got resource net/minecraft/entity/passive/IAnimal.class true
[07Feb2019 20:07:16.388] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityCreature.class got resource net/minecraft/entity/EntityCreature.class true
[07Feb2019 20:07:16.391] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityLiving.class got resource net/minecraft/entity/EntityLiving.class true
[07Feb2019 20:07:16.396] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityIronGolem.class got resource net/minecraft/entity/monster/EntityIronGolem.class true
[07Feb2019 20:07:16.409] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySilverfish.class got resource net/minecraft/entity/monster/EntitySilverfish.class true
[07Feb2019 20:07:16.415] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityMob.class got resource net/minecraft/entity/monster/EntityMob.class true
[07Feb2019 20:07:16.417] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/IMob.class got resource net/minecraft/entity/monster/IMob.class true
[07Feb2019 20:07:16.428] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/NonOverlappingMerger.class got resource net/minecraft/util/math/shapes/NonOverlappingMerger.class true
[07Feb2019 20:07:16.440] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityEnchantmentTable.class got resource net/minecraft/tileentity/TileEntityEnchantmentTable.class true
[07Feb2019 20:07:16.445] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityBrewingStand.class got resource net/minecraft/tileentity/TileEntityBrewingStand.class true
[07Feb2019 20:07:16.451] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityEndPortal.class got resource net/minecraft/tileentity/TileEntityEndPortal.class true
[07Feb2019 20:07:16.457] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityEnderChest.class got resource net/minecraft/tileentity/TileEntityEnderChest.class true
[07Feb2019 20:07:16.465] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityCommandBlock.class got resource net/minecraft/tileentity/TileEntityCommandBlock.class true
[07Feb2019 20:07:16.469] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityBeacon.class got resource net/minecraft/tileentity/TileEntityBeacon.class true
[07Feb2019 20:07:16.482] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntitySkull.class got resource net/minecraft/tileentity/TileEntitySkull.class true
[07Feb2019 20:07:16.485] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/INBTBase.class got resource net/minecraft/nbt/INBTBase.class true
[07Feb2019 20:07:16.488] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockSkull$Types.class got resource net/minecraft/block/BlockSkull$Types.class true
[07Feb2019 20:07:16.492] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/boss/EntityWither.class got resource net/minecraft/entity/boss/EntityWither.class true
[07Feb2019 20:07:16.502] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityTrappedChest.class got resource net/minecraft/tileentity/TileEntityTrappedChest.class true
[07Feb2019 20:07:16.508] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityComparator.class got resource net/minecraft/tileentity/TileEntityComparator.class true
[07Feb2019 20:07:16.511] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityDaylightDetector.class got resource net/minecraft/tileentity/TileEntityDaylightDetector.class true
[07Feb2019 20:07:16.515] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityHopper.class got resource net/minecraft/tileentity/TileEntityHopper.class true
[07Feb2019 20:07:16.521] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/IHopper.class got resource net/minecraft/tileentity/IHopper.class true
[07Feb2019 20:07:16.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityDropper.class got resource net/minecraft/tileentity/TileEntityDropper.class true
[07Feb2019 20:07:16.550] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityBanner.class got resource net/minecraft/tileentity/TileEntityBanner.class true
[07Feb2019 20:07:16.704] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityEndGateway.class got resource net/minecraft/tileentity/TileEntityEndGateway.class true
[07Feb2019 20:07:16.710] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityShulkerBox.class got resource net/minecraft/tileentity/TileEntityShulkerBox.class true
[07Feb2019 20:07:16.718] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle.class got resource net/minecraft/entity/passive/EntityTurtle.class true
[07Feb2019 20:07:16.725] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityAnimal.class got resource net/minecraft/entity/passive/EntityAnimal.class true
[07Feb2019 20:07:16.727] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityAgeable.class got resource net/minecraft/entity/EntityAgeable.class true
[07Feb2019 20:07:16.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityConduit.class got resource net/minecraft/tileentity/TileEntityConduit.class true
[07Feb2019 20:07:16.738] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityStructure.class got resource net/minecraft/tileentity/TileEntityStructure.class true
[07Feb2019 20:07:16.744] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Blocks.class got resource net/minecraft/init/Blocks.class true
[07Feb2019 20:07:16.756] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/SharedMonsterAttributes.class got resource net/minecraft/entity/SharedMonsterAttributes.class true
[07Feb2019 20:07:16.759] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/IAttribute.class got resource net/minecraft/entity/ai/attributes/IAttribute.class true
[07Feb2019 20:07:16.761] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/RangedAttribute.class got resource net/minecraft/entity/ai/attributes/RangedAttribute.class true
[07Feb2019 20:07:16.765] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/BaseAttribute.class got resource net/minecraft/entity/ai/attributes/BaseAttribute.class true
[07Feb2019 20:07:16.768] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/AttributeModifier.class got resource net/minecraft/entity/ai/attributes/AttributeModifier.class true
[07Feb2019 20:07:16.772] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionAttackDamage.class got resource net/minecraft/potion/PotionAttackDamage.class true
[07Feb2019 20:07:16.776] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionInstant.class got resource net/minecraft/potion/PotionInstant.class true
[07Feb2019 20:07:16.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionHealthBoost.class got resource net/minecraft/potion/PotionHealthBoost.class true
[07Feb2019 20:07:16.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionAbsorption.class got resource net/minecraft/potion/PotionAbsorption.class true
[07Feb2019 20:07:16.786] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentProtection.class got resource net/minecraft/enchantment/EnchantmentProtection.class true
[07Feb2019 20:07:16.789] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentOxygen.class got resource net/minecraft/enchantment/EnchantmentOxygen.class true
[07Feb2019 20:07:16.792] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentWaterWorker.class got resource net/minecraft/enchantment/EnchantmentWaterWorker.class true
[07Feb2019 20:07:16.795] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentThorns.class got resource net/minecraft/enchantment/EnchantmentThorns.class true
[07Feb2019 20:07:16.797] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentWaterWalker.class got resource net/minecraft/enchantment/EnchantmentWaterWalker.class true
[07Feb2019 20:07:16.800] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentFrostWalker.class got resource net/minecraft/enchantment/EnchantmentFrostWalker.class true
[07Feb2019 20:07:16.804] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentBindingCurse.class got resource net/minecraft/enchantment/EnchantmentBindingCurse.class true
[07Feb2019 20:07:16.807] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentDamage.class got resource net/minecraft/enchantment/EnchantmentDamage.class true
[07Feb2019 20:07:16.809] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentKnockback.class got resource net/minecraft/enchantment/EnchantmentKnockback.class true
[07Feb2019 20:07:16.812] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentFireAspect.class got resource net/minecraft/enchantment/EnchantmentFireAspect.class true
[07Feb2019 20:07:16.815] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentLootBonus.class got resource net/minecraft/enchantment/EnchantmentLootBonus.class true
[07Feb2019 20:07:16.818] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentSweepingEdge.class got resource net/minecraft/enchantment/EnchantmentSweepingEdge.class true
[07Feb2019 20:07:16.821] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentDigging.class got resource net/minecraft/enchantment/EnchantmentDigging.class true
[07Feb2019 20:07:16.824] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentUntouching.class got resource net/minecraft/enchantment/EnchantmentUntouching.class true
[07Feb2019 20:07:16.827] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentDurability.class got resource net/minecraft/enchantment/EnchantmentDurability.class true
[07Feb2019 20:07:16.830] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentArrowDamage.class got resource net/minecraft/enchantment/EnchantmentArrowDamage.class true
[07Feb2019 20:07:16.833] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentArrowKnockback.class got resource net/minecraft/enchantment/EnchantmentArrowKnockback.class true
[07Feb2019 20:07:16.836] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentArrowFire.class got resource net/minecraft/enchantment/EnchantmentArrowFire.class true
[07Feb2019 20:07:16.839] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentArrowInfinite.class got resource net/minecraft/enchantment/EnchantmentArrowInfinite.class true
[07Feb2019 20:07:16.842] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentFishingSpeed.class got resource net/minecraft/enchantment/EnchantmentFishingSpeed.class true
[07Feb2019 20:07:16.845] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentLoyalty.class got resource net/minecraft/enchantment/EnchantmentLoyalty.class true
[07Feb2019 20:07:16.848] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentImpaling.class got resource net/minecraft/enchantment/EnchantmentImpaling.class true
[07Feb2019 20:07:16.850] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentRiptide.class got resource net/minecraft/enchantment/EnchantmentRiptide.class true
[07Feb2019 20:07:16.854] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentChanneling.class got resource net/minecraft/enchantment/EnchantmentChanneling.class true
[07Feb2019 20:07:16.857] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentMending.class got resource net/minecraft/enchantment/EnchantmentMending.class true
[07Feb2019 20:07:16.860] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentVanishingCurse.class got resource net/minecraft/enchantment/EnchantmentVanishingCurse.class true
[07Feb2019 20:07:16.863] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/EntityEquipmentSlot.class got resource net/minecraft/inventory/EntityEquipmentSlot.class true
[07Feb2019 20:07:16.866] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/EntityEquipmentSlot$Type.class got resource net/minecraft/inventory/EntityEquipmentSlot$Type.class true
[07Feb2019 20:07:16.871] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/Enchantment$Rarity.class got resource net/minecraft/enchantment/Enchantment$Rarity.class true
[07Feb2019 20:07:16.875] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentProtection$Type.class got resource net/minecraft/enchantment/EnchantmentProtection$Type.class true
[07Feb2019 20:07:16.879] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType.class got resource net/minecraft/enchantment/EnumEnchantmentType.class true
[07Feb2019 20:07:16.887] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$1.class got resource net/minecraft/enchantment/EnumEnchantmentType$1.class true
[07Feb2019 20:07:16.891] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$2.class got resource net/minecraft/enchantment/EnumEnchantmentType$2.class true
[07Feb2019 20:07:16.895] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$3.class got resource net/minecraft/enchantment/EnumEnchantmentType$3.class true
[07Feb2019 20:07:16.900] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$4.class got resource net/minecraft/enchantment/EnumEnchantmentType$4.class true
[07Feb2019 20:07:16.904] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$5.class got resource net/minecraft/enchantment/EnumEnchantmentType$5.class true
[07Feb2019 20:07:16.908] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$6.class got resource net/minecraft/enchantment/EnumEnchantmentType$6.class true
[07Feb2019 20:07:16.912] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$7.class got resource net/minecraft/enchantment/EnumEnchantmentType$7.class true
[07Feb2019 20:07:16.915] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$8.class got resource net/minecraft/enchantment/EnumEnchantmentType$8.class true
[07Feb2019 20:07:16.918] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$9.class got resource net/minecraft/enchantment/EnumEnchantmentType$9.class true
[07Feb2019 20:07:16.921] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$10.class got resource net/minecraft/enchantment/EnumEnchantmentType$10.class true
[07Feb2019 20:07:16.924] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$11.class got resource net/minecraft/enchantment/EnumEnchantmentType$11.class true
[07Feb2019 20:07:16.927] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$12.class got resource net/minecraft/enchantment/EnumEnchantmentType$12.class true
[07Feb2019 20:07:16.930] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnumEnchantmentType$13.class got resource net/minecraft/enchantment/EnumEnchantmentType$13.class true
[07Feb2019 20:07:16.936] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityAreaEffectCloud.class got resource net/minecraft/entity/EntityAreaEffectCloud.class true
[07Feb2019 20:07:16.944] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityEvent$EntityConstructing.class got resource net/minecraftforge/event/entity/EntityEvent$EntityConstructing.class true
[07Feb2019 20:07:16.948] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/Team.class got resource net/minecraft/scoreboard/Team.class true
[07Feb2019 20:07:16.951] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/ScorePlayerTeam.class got resource net/minecraft/scoreboard/ScorePlayerTeam.class true
[07Feb2019 20:07:16.955] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/ITeleporter.class got resource net/minecraftforge/common/util/ITeleporter.class true
[07Feb2019 20:07:16.958] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityType$Builder.class got resource net/minecraft/entity/EntityType$Builder.class true
[07Feb2019 20:07:16.961] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/DataFixesManager.class got resource net/minecraft/util/datafix/DataFixesManager.class true
[07Feb2019 20:07:16.966] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityArmorAndHeld.class got resource net/minecraft/util/datafix/fixes/EntityArmorAndHeld.class true
[07Feb2019 20:07:16.969] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SignStrictJSON.class got resource net/minecraft/util/datafix/fixes/SignStrictJSON.class true
[07Feb2019 20:07:16.972] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/NamedEntityFix.class got resource net/minecraft/util/datafix/fixes/NamedEntityFix.class true
[07Feb2019 20:07:16.974] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemIntIDToString.class got resource net/minecraft/util/datafix/fixes/ItemIntIDToString.class true
[07Feb2019 20:07:16.978] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PotionItems.class got resource net/minecraft/util/datafix/fixes/PotionItems.class true
[07Feb2019 20:07:16.980] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SpawnEggNames.class got resource net/minecraft/util/datafix/fixes/SpawnEggNames.class true
[07Feb2019 20:07:16.983] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SpawnerEntityTypes.class got resource net/minecraft/util/datafix/fixes/SpawnerEntityTypes.class true
[07Feb2019 20:07:16.986] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/MinecartEntityTypes.class got resource net/minecraft/util/datafix/fixes/MinecartEntityTypes.class true
[07Feb2019 20:07:16.989] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/StringToUUID.class got resource net/minecraft/util/datafix/fixes/StringToUUID.class true
[07Feb2019 20:07:16.992] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityHealth.class got resource net/minecraft/util/datafix/fixes/EntityHealth.class true
[07Feb2019 20:07:16.995] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/HorseSaddle.class got resource net/minecraft/util/datafix/fixes/HorseSaddle.class true
[07Feb2019 20:07:16.997] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PaintingDirection.class got resource net/minecraft/util/datafix/fixes/PaintingDirection.class true
[07Feb2019 20:07:17.000] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/RedundantChanceTags.class got resource net/minecraft/util/datafix/fixes/RedundantChanceTags.class true
[07Feb2019 20:07:17.003] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/RidingToPassengers.class got resource net/minecraft/util/datafix/fixes/RidingToPassengers.class true
[07Feb2019 20:07:17.006] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/TippedArrow.class got resource net/minecraft/util/datafix/fixes/TippedArrow.class true
[07Feb2019 20:07:17.008] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/TypedEntityRenameHelper.class got resource net/minecraft/util/datafix/fixes/TypedEntityRenameHelper.class true
[07Feb2019 20:07:17.011] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ArmorStandSilent.class got resource net/minecraft/util/datafix/fixes/ArmorStandSilent.class true
[07Feb2019 20:07:17.013] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BookPagesStrictJSON.class got resource net/minecraft/util/datafix/fixes/BookPagesStrictJSON.class true
[07Feb2019 20:07:17.016] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/AddNewChoices.class got resource net/minecraft/util/datafix/fixes/AddNewChoices.class true
[07Feb2019 20:07:17.019] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ZombieProfToType.class got resource net/minecraft/util/datafix/fixes/ZombieProfToType.class true
[07Feb2019 20:07:17.021] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ForceVBOOn.class got resource net/minecraft/util/datafix/fixes/ForceVBOOn.class true
[07Feb2019 20:07:17.027] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ElderGuardianSplit.class got resource net/minecraft/util/datafix/fixes/ElderGuardianSplit.class true
[07Feb2019 20:07:17.033] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityRenameHelper.class got resource net/minecraft/util/datafix/fixes/EntityRenameHelper.class true
[07Feb2019 20:07:17.038] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityRename.class got resource net/minecraft/util/datafix/fixes/EntityRename.class true
[07Feb2019 20:07:17.042] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SkeletonSplit.class got resource net/minecraft/util/datafix/fixes/SkeletonSplit.class true
[07Feb2019 20:07:17.045] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ZombieSplit.class got resource net/minecraft/util/datafix/fixes/ZombieSplit.class true
[07Feb2019 20:07:17.048] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/HorseSplit.class got resource net/minecraft/util/datafix/fixes/HorseSplit.class true
[07Feb2019 20:07:17.050] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/TileEntityId.class got resource net/minecraft/util/datafix/fixes/TileEntityId.class true
[07Feb2019 20:07:17.053] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityId.class got resource net/minecraft/util/datafix/fixes/EntityId.class true
[07Feb2019 20:07:17.056] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BannerItemColor.class got resource net/minecraft/util/datafix/fixes/BannerItemColor.class true
[07Feb2019 20:07:17.059] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PotionWater.class got resource net/minecraft/util/datafix/fixes/PotionWater.class true
[07Feb2019 20:07:17.061] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ShulkerBoxEntityColor.class got resource net/minecraft/util/datafix/fixes/ShulkerBoxEntityColor.class true
[07Feb2019 20:07:17.064] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ShulkerBoxItemColor.class got resource net/minecraft/util/datafix/fixes/ShulkerBoxItemColor.class true
[07Feb2019 20:07:17.066] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ShulkerBoxTileColor.class got resource net/minecraft/util/datafix/fixes/ShulkerBoxTileColor.class true
[07Feb2019 20:07:17.069] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguage.class got resource net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguage.class true
[07Feb2019 20:07:17.072] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/WriteAndReadDataFix.class got resource net/minecraft/util/datafix/WriteAndReadDataFix.class true
[07Feb2019 20:07:17.074] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/AddBedTileEntity.class got resource net/minecraft/util/datafix/fixes/AddBedTileEntity.class true
[07Feb2019 20:07:17.077] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BedItemColor.class got resource net/minecraft/util/datafix/fixes/BedItemColor.class true
[07Feb2019 20:07:17.079] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/LWJGL3KeyOptions.class got resource net/minecraft/util/datafix/fixes/LWJGL3KeyOptions.class true
[07Feb2019 20:07:17.082] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/KeyOptionsTranslation.class got resource net/minecraft/util/datafix/fixes/KeyOptionsTranslation.class true
[07Feb2019 20:07:17.085] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockStateFlattenStructures.class got resource net/minecraft/util/datafix/fixes/BlockStateFlattenStructures.class true
[07Feb2019 20:07:17.087] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ChunkPaletteFormat.class got resource net/minecraft/util/datafix/fixes/ChunkPaletteFormat.class true
[07Feb2019 20:07:17.091] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PistonPushedBlock.class got resource net/minecraft/util/datafix/fixes/PistonPushedBlock.class true
[07Feb2019 20:07:17.093] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockStateFlatternEntities.class got resource net/minecraft/util/datafix/fixes/BlockStateFlatternEntities.class true
[07Feb2019 20:07:17.096] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemFilledMapMetadata.class got resource net/minecraft/util/datafix/fixes/ItemFilledMapMetadata.class true
[07Feb2019 20:07:17.099] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockNameFlattening.class got resource net/minecraft/util/datafix/fixes/BlockNameFlattening.class true
[07Feb2019 20:07:17.101] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemStackDataFlattening.class got resource net/minecraft/util/datafix/fixes/ItemStackDataFlattening.class true
[07Feb2019 20:07:17.105] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemSpawnEggSplit.class got resource net/minecraft/util/datafix/fixes/ItemSpawnEggSplit.class true
[07Feb2019 20:07:17.108] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/WolfCollarColor.class got resource net/minecraft/util/datafix/fixes/WolfCollarColor.class true
[07Feb2019 20:07:17.111] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockEntityBannerColor.class got resource net/minecraft/util/datafix/fixes/BlockEntityBannerColor.class true
[07Feb2019 20:07:17.113] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockStateFlattenGenOptions.class got resource net/minecraft/util/datafix/fixes/BlockStateFlattenGenOptions.class true
[07Feb2019 20:07:17.116] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/StatsRenaming.class got resource net/minecraft/util/datafix/fixes/StatsRenaming.class true
[07Feb2019 20:07:17.119] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/JukeboxRecordItem.class got resource net/minecraft/util/datafix/fixes/JukeboxRecordItem.class true
[07Feb2019 20:07:17.122] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockStateFlattenVillageCrops.class got resource net/minecraft/util/datafix/fixes/BlockStateFlattenVillageCrops.class true
[07Feb2019 20:07:17.125] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/VillagerTrades.class got resource net/minecraft/util/datafix/fixes/VillagerTrades.class true
[07Feb2019 20:07:17.127] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityItemFrameFacing.class got resource net/minecraft/util/datafix/fixes/EntityItemFrameFacing.class true
[07Feb2019 20:07:17.130] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/CustomNameStringToComponentEntity.class got resource net/minecraft/util/datafix/fixes/CustomNameStringToComponentEntity.class true
[07Feb2019 20:07:17.132] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/CustomNameStringToComponentItem.class got resource net/minecraft/util/datafix/fixes/CustomNameStringToComponentItem.class true
[07Feb2019 20:07:17.135] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/CustomNameStringToComponentFixTileEntity.class got resource net/minecraft/util/datafix/fixes/CustomNameStringToComponentFixTileEntity.class true
[07Feb2019 20:07:17.137] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PaintingMotive.class got resource net/minecraft/util/datafix/fixes/PaintingMotive.class true
[07Feb2019 20:07:17.140] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ChunkGenStatus.class got resource net/minecraft/util/datafix/fixes/ChunkGenStatus.class true
[07Feb2019 20:07:17.143] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix.class got resource net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix.class true
[07Feb2019 20:07:17.145] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/PufferfishRename.class got resource net/minecraft/util/datafix/fixes/PufferfishRename.class true
[07Feb2019 20:07:17.148] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/HeightmapRenamingFix.class got resource net/minecraft/util/datafix/fixes/HeightmapRenamingFix.class true
[07Feb2019 20:07:17.151] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityCodSalmonFix.class got resource net/minecraft/util/datafix/fixes/EntityCodSalmonFix.class true
[07Feb2019 20:07:17.153] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/DataFixesManager$1.class got resource net/minecraft/util/datafix/DataFixesManager$1.class true
[07Feb2019 20:07:17.156] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/DataFixesManager$2.class got resource net/minecraft/util/datafix/DataFixesManager$2.class true
[07Feb2019 20:07:17.159] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/IglooMetadataRemoval.class got resource net/minecraft/util/datafix/fixes/IglooMetadataRemoval.class true
[07Feb2019 20:07:17.162] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix.class got resource net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix.class true
[07Feb2019 20:07:17.165] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemStackEnchantmentFix.class got resource net/minecraft/util/datafix/fixes/ItemStackEnchantmentFix.class true
[07Feb2019 20:07:17.168] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/LeavesFix.class got resource net/minecraft/util/datafix/fixes/LeavesFix.class true
[07Feb2019 20:07:17.171] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockEntityKeepPacked.class got resource net/minecraft/util/datafix/fixes/BlockEntityKeepPacked.class true
[07Feb2019 20:07:17.174] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/AdvancementsFix.class got resource net/minecraft/util/datafix/fixes/AdvancementsFix.class true
[07Feb2019 20:07:17.177] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/RenamedRecipes.class got resource net/minecraft/util/datafix/fixes/RenamedRecipes.class true
[07Feb2019 20:07:17.179] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix.class got resource net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix.class true
[07Feb2019 20:07:17.182] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BiomeRenames.class got resource net/minecraft/util/datafix/fixes/BiomeRenames.class true
[07Feb2019 20:07:17.185] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/RecipesRenaming.class got resource net/minecraft/util/datafix/fixes/RecipesRenaming.class true
[07Feb2019 20:07:17.188] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/EntityRenameing1510.class got resource net/minecraft/util/datafix/fixes/EntityRenameing1510.class true
[07Feb2019 20:07:17.191] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SwimStatsRename.class got resource net/minecraft/util/datafix/fixes/SwimStatsRename.class true
[07Feb2019 20:07:17.193] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ObjectiveDisplayName.class got resource net/minecraft/util/datafix/fixes/ObjectiveDisplayName.class true
[07Feb2019 20:07:17.196] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/TeamDisplayName.class got resource net/minecraft/util/datafix/fixes/TeamDisplayName.class true
[07Feb2019 20:07:17.199] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ObjectiveRenderType.class got resource net/minecraft/util/datafix/fixes/ObjectiveRenderType.class true
[07Feb2019 20:07:17.212] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0099.class got resource net/minecraft/util/datafix/versions/V0099.class true
[07Feb2019 20:07:17.219] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0099$1.class got resource net/minecraft/util/datafix/versions/V0099$1.class true
[07Feb2019 20:07:17.229] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/TypeReferences.class got resource net/minecraft/util/datafix/TypeReferences.class true
[07Feb2019 20:07:17.263] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0100.class got resource net/minecraft/util/datafix/versions/V0100.class true
[07Feb2019 20:07:17.282] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/SignStrictJSON$1.class got resource net/minecraft/util/datafix/fixes/SignStrictJSON$1.class true
[07Feb2019 20:07:17.287] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0102.class got resource net/minecraft/util/datafix/versions/V0102.class true
[07Feb2019 20:07:17.294] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0106.class got resource net/minecraft/util/datafix/versions/V0106.class true
[07Feb2019 20:07:17.298] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0107.class got resource net/minecraft/util/datafix/versions/V0107.class true
[07Feb2019 20:07:17.305] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0135.class got resource net/minecraft/util/datafix/versions/V0135.class true
[07Feb2019 20:07:17.310] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0143.class got resource net/minecraft/util/datafix/versions/V0143.class true
[07Feb2019 20:07:17.315] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0501.class got resource net/minecraft/util/datafix/versions/V0501.class true
[07Feb2019 20:07:17.319] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemRename.class got resource net/minecraft/util/datafix/fixes/ItemRename.class true
[07Feb2019 20:07:17.322] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/ItemRename$1.class got resource net/minecraft/util/datafix/fixes/ItemRename$1.class true
[07Feb2019 20:07:17.326] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0700.class got resource net/minecraft/util/datafix/versions/V0700.class true
[07Feb2019 20:07:17.330] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0701.class got resource net/minecraft/util/datafix/versions/V0701.class true
[07Feb2019 20:07:17.335] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0702.class got resource net/minecraft/util/datafix/versions/V0702.class true
[07Feb2019 20:07:17.340] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0703.class got resource net/minecraft/util/datafix/versions/V0703.class true
[07Feb2019 20:07:17.345] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0704.class got resource net/minecraft/util/datafix/versions/V0704.class true
[07Feb2019 20:07:17.349] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0704$1.class got resource net/minecraft/util/datafix/versions/V0704$1.class true
[07Feb2019 20:07:17.354] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0705.class got resource net/minecraft/util/datafix/versions/V0705.class true
[07Feb2019 20:07:17.358] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0705$1.class got resource net/minecraft/util/datafix/versions/V0705$1.class true
[07Feb2019 20:07:17.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V0808.class got resource net/minecraft/util/datafix/versions/V0808.class true
[07Feb2019 20:07:17.373] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1022.class got resource net/minecraft/util/datafix/versions/V1022.class true
[07Feb2019 20:07:17.378] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1125.class got resource net/minecraft/util/datafix/versions/V1125.class true
[07Feb2019 20:07:17.384] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451.class got resource net/minecraft/util/datafix/versions/V1451.class true
[07Feb2019 20:07:17.388] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_1.class got resource net/minecraft/util/datafix/versions/V1451_1.class true
[07Feb2019 20:07:17.393] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockStateFlatteningMap.class got resource net/minecraft/util/datafix/fixes/BlockStateFlatteningMap.class true
[07Feb2019 20:07:17.416] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTDynamicOps.class got resource net/minecraft/nbt/NBTDynamicOps.class true
[07Feb2019 20:07:17.421] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagCollection.class got resource net/minecraft/nbt/NBTTagCollection.class true
[07Feb2019 20:07:17.423] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagList.class got resource net/minecraft/nbt/NBTTagList.class true
[07Feb2019 20:07:17.426] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/JsonToNBT.class got resource net/minecraft/nbt/JsonToNBT.class true
[07Feb2019 20:07:17.431] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagCompound.class got resource net/minecraft/nbt/NBTTagCompound.class true
[07Feb2019 20:07:17.435] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextFormatting.class got resource net/minecraft/util/text/TextFormatting.class true
[07Feb2019 20:07:17.438] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagString.class got resource net/minecraft/nbt/NBTTagString.class true
[07Feb2019 20:07:17.508] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_2.class got resource net/minecraft/util/datafix/versions/V1451_2.class true
[07Feb2019 20:07:17.515] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_3.class got resource net/minecraft/util/datafix/versions/V1451_3.class true
[07Feb2019 20:07:17.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_4.class got resource net/minecraft/util/datafix/versions/V1451_4.class true
[07Feb2019 20:07:17.529] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_5.class got resource net/minecraft/util/datafix/versions/V1451_5.class true
[07Feb2019 20:07:17.547] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_6.class got resource net/minecraft/util/datafix/versions/V1451_6.class true
[07Feb2019 20:07:17.553] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1451_7.class got resource net/minecraft/util/datafix/versions/V1451_7.class true
[07Feb2019 20:07:17.559] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1460.class got resource net/minecraft/util/datafix/versions/V1460.class true
[07Feb2019 20:07:17.573] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1466.class got resource net/minecraft/util/datafix/versions/V1466.class true
[07Feb2019 20:07:17.579] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1470.class got resource net/minecraft/util/datafix/versions/V1470.class true
[07Feb2019 20:07:17.584] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockRename.class got resource net/minecraft/util/datafix/fixes/BlockRename.class true
[07Feb2019 20:07:17.587] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/fixes/BlockRename$1.class got resource net/minecraft/util/datafix/fixes/BlockRename$1.class true
[07Feb2019 20:07:17.593] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1481.class got resource net/minecraft/util/datafix/versions/V1481.class true
[07Feb2019 20:07:17.597] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1483.class got resource net/minecraft/util/datafix/versions/V1483.class true
[07Feb2019 20:07:17.602] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1486.class got resource net/minecraft/util/datafix/versions/V1486.class true
[07Feb2019 20:07:17.614] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/datafix/versions/V1510.class got resource net/minecraft/util/datafix/versions/V1510.class true
[07Feb2019 20:07:17.639] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityArmorStand.class got resource net/minecraft/entity/item/EntityArmorStand.class true
[07Feb2019 20:07:17.646] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEquipmentChangeEvent.class got resource net/minecraftforge/event/entity/living/LivingEquipmentChangeEvent.class true
[07Feb2019 20:07:17.650] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/AbstractAttributeMap.class got resource net/minecraft/entity/ai/attributes/AbstractAttributeMap.class true
[07Feb2019 20:07:17.653] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/AttributeMap.class got resource net/minecraft/entity/ai/attributes/AttributeMap.class true
[07Feb2019 20:07:17.657] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/PotionColorCalculationEvent.class got resource net/minecraftforge/event/entity/living/PotionColorCalculationEvent.class true
[07Feb2019 20:07:17.665] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityTippedArrow.class got resource net/minecraft/entity/projectile/EntityTippedArrow.class true
[07Feb2019 20:07:17.670] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityArrow.class got resource net/minecraft/entity/projectile/EntityArrow.class true
[07Feb2019 20:07:17.674] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IProjectile.class got resource net/minecraft/entity/IProjectile.class true
[07Feb2019 20:07:17.678] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityBat.class got resource net/minecraft/entity/passive/EntityBat.class true
[07Feb2019 20:07:17.684] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityAmbientCreature.class got resource net/minecraft/entity/passive/EntityAmbientCreature.class true
[07Feb2019 20:07:17.688] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNavigate.class got resource net/minecraft/pathfinding/PathNavigate.class true
[07Feb2019 20:07:17.691] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNavigateGround.class got resource net/minecraft/pathfinding/PathNavigateGround.class true
[07Feb2019 20:07:17.695] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityLeashKnot.class got resource net/minecraft/entity/EntityLeashKnot.class true
[07Feb2019 20:07:17.699] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityHanging.class got resource net/minecraft/entity/EntityHanging.class true
[07Feb2019 20:07:17.705] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityBlaze.class got resource net/minecraft/entity/monster/EntityBlaze.class true
[07Feb2019 20:07:17.711] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIBase.class got resource net/minecraft/entity/ai/EntityAIBase.class true
[07Feb2019 20:07:17.714] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityBlaze$AIFireballAttack.class got resource net/minecraft/entity/monster/EntityBlaze$AIFireballAttack.class true
[07Feb2019 20:07:17.717] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMoveTowardsRestriction.class got resource net/minecraft/entity/ai/EntityAIMoveTowardsRestriction.class true
[07Feb2019 20:07:17.719] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWanderAvoidWater.class got resource net/minecraft/entity/ai/EntityAIWanderAvoidWater.class true
[07Feb2019 20:07:17.723] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWander.class got resource net/minecraft/entity/ai/EntityAIWander.class true
[07Feb2019 20:07:18.083] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWatchClosest.class got resource net/minecraft/entity/ai/EntityAIWatchClosest.class true
[07Feb2019 20:07:18.089] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILookIdle.class got resource net/minecraft/entity/ai/EntityAILookIdle.class true
[07Feb2019 20:07:18.092] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIHurtByTarget.class got resource net/minecraft/entity/ai/EntityAIHurtByTarget.class true
[07Feb2019 20:07:18.098] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITarget.class got resource net/minecraft/entity/ai/EntityAITarget.class true
[07Feb2019 20:07:18.101] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAINearestAttackableTarget.class got resource net/minecraft/entity/ai/EntityAINearestAttackableTarget.class true
[07Feb2019 20:07:18.105] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityBoat.class got resource net/minecraft/entity/item/EntityBoat.class true
[07Feb2019 20:07:18.113] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityCaveSpider.class got resource net/minecraft/entity/monster/EntityCaveSpider.class true
[07Feb2019 20:07:18.121] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpider.class got resource net/minecraft/entity/monster/EntitySpider.class true
[07Feb2019 20:07:18.127] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySkeleton.class got resource net/minecraft/entity/monster/EntitySkeleton.class true
[07Feb2019 20:07:18.134] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/AbstractSkeleton.class got resource net/minecraft/entity/monster/AbstractSkeleton.class true
[07Feb2019 20:07:18.138] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IEntityLivingData.class got resource net/minecraft/entity/IEntityLivingData.class true
[07Feb2019 20:07:18.141] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAISwimming.class got resource net/minecraft/entity/ai/EntityAISwimming.class true
[07Feb2019 20:07:18.144] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILeapAtTarget.class got resource net/minecraft/entity/ai/EntityAILeapAtTarget.class true
[07Feb2019 20:07:18.147] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpider$AISpiderAttack.class got resource net/minecraft/entity/monster/EntitySpider$AISpiderAttack.class true
[07Feb2019 20:07:18.150] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIAttackMelee.class got resource net/minecraft/entity/ai/EntityAIAttackMelee.class true
[07Feb2019 20:07:18.153] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpider$AISpiderTarget.class got resource net/minecraft/entity/monster/EntitySpider$AISpiderTarget.class true
[07Feb2019 20:07:18.156] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNavigateClimber.class got resource net/minecraft/pathfinding/PathNavigateClimber.class true
[07Feb2019 20:07:18.160] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityChicken.class got resource net/minecraft/entity/passive/EntityChicken.class true
[07Feb2019 20:07:18.167] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIPanic.class got resource net/minecraft/entity/ai/EntityAIPanic.class true
[07Feb2019 20:07:18.170] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMate.class got resource net/minecraft/entity/ai/EntityAIMate.class true
[07Feb2019 20:07:18.174] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITempt.class got resource net/minecraft/entity/ai/EntityAITempt.class true
[07Feb2019 20:07:18.178] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowParent.class got resource net/minecraft/entity/ai/EntityAIFollowParent.class true
[07Feb2019 20:07:18.181] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityCod.class got resource net/minecraft/entity/passive/EntityCod.class true
[07Feb2019 20:07:18.187] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/AbstractFish.class got resource net/minecraft/entity/passive/AbstractFish.class true
[07Feb2019 20:07:18.191] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityWaterMob.class got resource net/minecraft/entity/passive/EntityWaterMob.class true
[07Feb2019 20:07:18.195] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityMoveHelper.class got resource net/minecraft/entity/ai/EntityMoveHelper.class true
[07Feb2019 20:07:18.197] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/AbstractFish$MoveHelper.class got resource net/minecraft/entity/passive/AbstractFish$MoveHelper.class true
[07Feb2019 20:07:18.201] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIAvoidEntity.class got resource net/minecraft/entity/ai/EntityAIAvoidEntity.class true
[07Feb2019 20:07:18.205] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/AbstractFish$AISwim.class got resource net/minecraft/entity/passive/AbstractFish$AISwim.class true
[07Feb2019 20:07:18.208] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWanderSwim.class got resource net/minecraft/entity/ai/EntityAIWanderSwim.class true
[07Feb2019 20:07:18.211] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNavigateSwimmer.class got resource net/minecraft/pathfinding/PathNavigateSwimmer.class true
[07Feb2019 20:07:18.215] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowGroupLeader.class got resource net/minecraft/entity/ai/EntityAIFollowGroupLeader.class true
[07Feb2019 20:07:18.219] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityCow.class got resource net/minecraft/entity/passive/EntityCow.class true
[07Feb2019 20:07:18.225] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityCreeper.class got resource net/minecraft/entity/monster/EntityCreeper.class true
[07Feb2019 20:07:18.234] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAICreeperSwell.class got resource net/minecraft/entity/ai/EntityAICreeperSwell.class true
[07Feb2019 20:07:18.239] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDonkey.class got resource net/minecraft/entity/passive/EntityDonkey.class true
[07Feb2019 20:07:18.251] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/AbstractChestHorse.class got resource net/minecraft/entity/passive/AbstractChestHorse.class true
[07Feb2019 20:07:18.254] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/AbstractHorse.class got resource net/minecraft/entity/passive/AbstractHorse.class true
[07Feb2019 20:07:18.259] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/IInventoryChangedListener.class got resource net/minecraft/inventory/IInventoryChangedListener.class true
[07Feb2019 20:07:18.261] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IJumpingMount.class got resource net/minecraft/entity/IJumpingMount.class true
[07Feb2019 20:07:18.265] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy.class got resource net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy.class true
[07Feb2019 20:07:18.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityMule.class got resource net/minecraft/entity/passive/EntityMule.class true
[07Feb2019 20:07:18.271] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDolphin.class got resource net/minecraft/entity/passive/EntityDolphin.class true
[07Feb2019 20:07:18.277] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDolphin$MoveHelper.class got resource net/minecraft/entity/passive/EntityDolphin$MoveHelper.class true
[07Feb2019 20:07:18.280] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityLookHelper.class got resource net/minecraft/entity/ai/EntityLookHelper.class true
[07Feb2019 20:07:18.283] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityDolphinHelper.class got resource net/minecraft/entity/ai/EntityDolphinHelper.class true
[07Feb2019 20:07:18.286] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIBreathAir.class got resource net/minecraft/entity/ai/EntityAIBreathAir.class true
[07Feb2019 20:07:18.290] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFindWater.class got resource net/minecraft/entity/ai/EntityAIFindWater.class true
[07Feb2019 20:07:18.293] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDolphin$AISwimToTreasure.class got resource net/minecraft/entity/passive/EntityDolphin$AISwimToTreasure.class true
[07Feb2019 20:07:18.296] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDolphin$AISwimWithPlayer.class got resource net/minecraft/entity/passive/EntityDolphin$AISwimWithPlayer.class true
[07Feb2019 20:07:18.300] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIJump.class got resource net/minecraft/entity/ai/EntityAIJump.class true
[07Feb2019 20:07:18.302] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityDolphin$AIPlayWithItems.class got resource net/minecraft/entity/passive/EntityDolphin$AIPlayWithItems.class true
[07Feb2019 20:07:18.305] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowBoat.class got resource net/minecraft/entity/ai/EntityAIFollowBoat.class true
[07Feb2019 20:07:18.309] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityDragonFireball.class got resource net/minecraft/entity/projectile/EntityDragonFireball.class true
[07Feb2019 20:07:18.317] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityFireball.class got resource net/minecraft/entity/projectile/EntityFireball.class true
[07Feb2019 20:07:18.323] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned.class got resource net/minecraft/entity/monster/EntityDrowned.class true
[07Feb2019 20:07:18.334] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityZombie.class got resource net/minecraft/entity/monster/EntityZombie.class true
[07Feb2019 20:07:18.340] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIBreakDoor.class got resource net/minecraft/entity/ai/EntityAIBreakDoor.class true
[07Feb2019 20:07:18.342] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIDoorInteract.class got resource net/minecraft/entity/ai/EntityAIDoorInteract.class true
[07Feb2019 20:07:18.345] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager.class got resource net/minecraft/entity/passive/EntityVillager.class true
[07Feb2019 20:07:18.354] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/INpc.class got resource net/minecraft/entity/INpc.class true
[07Feb2019 20:07:18.357] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IMerchant.class got resource net/minecraft/entity/IMerchant.class true
[07Feb2019 20:07:18.360] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityZombieVillager.class got resource net/minecraft/entity/monster/EntityZombieVillager.class true
[07Feb2019 20:07:18.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityZombie$AIAttackTurtleEgg.class got resource net/minecraft/entity/monster/EntityZombie$AIAttackTurtleEgg.class true
[07Feb2019 20:07:18.371] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIBreakBlock.class got resource net/minecraft/entity/ai/EntityAIBreakBlock.class true
[07Feb2019 20:07:18.373] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMoveToBlock.class got resource net/minecraft/entity/ai/EntityAIMoveToBlock.class true
[07Feb2019 20:07:18.377] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIZombieAttack.class got resource net/minecraft/entity/ai/EntityAIZombieAttack.class true
[07Feb2019 20:07:18.380] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMoveThroughVillage.class got resource net/minecraft/entity/ai/EntityAIMoveThroughVillage.class true
[07Feb2019 20:07:18.383] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$MoveHelper.class got resource net/minecraft/entity/monster/EntityDrowned$MoveHelper.class true
[07Feb2019 20:07:18.385] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityTrident.class got resource net/minecraft/entity/projectile/EntityTrident.class true
[07Feb2019 20:07:18.390] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$AIGoToWater.class got resource net/minecraft/entity/monster/EntityDrowned$AIGoToWater.class true
[07Feb2019 20:07:18.394] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$AITridentAttack.class got resource net/minecraft/entity/monster/EntityDrowned$AITridentAttack.class true
[07Feb2019 20:07:18.397] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIAttackRanged.class got resource net/minecraft/entity/ai/EntityAIAttackRanged.class true
[07Feb2019 20:07:18.400] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$AIAttack.class got resource net/minecraft/entity/monster/EntityDrowned$AIAttack.class true
[07Feb2019 20:07:18.404] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$AIGoToBeach.class got resource net/minecraft/entity/monster/EntityDrowned$AIGoToBeach.class true
[07Feb2019 20:07:18.407] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityDrowned$AISwimUp.class got resource net/minecraft/entity/monster/EntityDrowned$AISwimUp.class true
[07Feb2019 20:07:18.410] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityElderGuardian.class got resource net/minecraft/entity/monster/EntityElderGuardian.class true
[07Feb2019 20:07:18.416] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGuardian.class got resource net/minecraft/entity/monster/EntityGuardian.class true
[07Feb2019 20:07:18.420] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGuardian$GuardianMoveHelper.class got resource net/minecraft/entity/monster/EntityGuardian$GuardianMoveHelper.class true
[07Feb2019 20:07:18.422] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGuardian$AIGuardianAttack.class got resource net/minecraft/entity/monster/EntityGuardian$AIGuardianAttack.class true
[07Feb2019 20:07:18.426] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityEnderCrystal.class got resource net/minecraft/entity/item/EntityEnderCrystal.class true
[07Feb2019 20:07:18.431] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/boss/EntityDragon.class got resource net/minecraft/entity/boss/EntityDragon.class true
[07Feb2019 20:07:18.438] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IEntityMultiPart.class got resource net/minecraft/entity/IEntityMultiPart.class true
[07Feb2019 20:07:18.440] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/MultiPartEntityPart.class got resource net/minecraft/entity/MultiPartEntityPart.class true
[07Feb2019 20:07:18.445] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEnderman.class got resource net/minecraft/entity/monster/EntityEnderman.class true
[07Feb2019 20:07:18.451] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/EnderTeleportEvent.class got resource net/minecraftforge/event/entity/living/EnderTeleportEvent.class true
[07Feb2019 20:07:18.454] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEnderman$AIPlaceBlock.class got resource net/minecraft/entity/monster/EntityEnderman$AIPlaceBlock.class true
[07Feb2019 20:07:18.457] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEnderman$AITakeBlock.class got resource net/minecraft/entity/monster/EntityEnderman$AITakeBlock.class true
[07Feb2019 20:07:18.460] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEnderman$AIFindPlayer.class got resource net/minecraft/entity/monster/EntityEnderman$AIFindPlayer.class true
[07Feb2019 20:07:18.463] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEndermite.class got resource net/minecraft/entity/monster/EntityEndermite.class true
[07Feb2019 20:07:18.469] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityEvokerFangs.class got resource net/minecraft/entity/projectile/EntityEvokerFangs.class true
[07Feb2019 20:07:18.474] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEvoker.class got resource net/minecraft/entity/monster/EntityEvoker.class true
[07Feb2019 20:07:18.480] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpellcasterIllager.class got resource net/minecraft/entity/monster/EntitySpellcasterIllager.class true
[07Feb2019 20:07:18.482] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/AbstractIllager.class got resource net/minecraft/entity/monster/AbstractIllager.class true
[07Feb2019 20:07:18.485] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEvoker$AICastingSpell.class got resource net/minecraft/entity/monster/EntityEvoker$AICastingSpell.class true
[07Feb2019 20:07:18.488] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpellcasterIllager$AICastingApell.class got resource net/minecraft/entity/monster/EntitySpellcasterIllager$AICastingApell.class true
[07Feb2019 20:07:18.490] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEvoker$AISummonSpell.class got resource net/minecraft/entity/monster/EntityEvoker$AISummonSpell.class true
[07Feb2019 20:07:18.493] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySpellcasterIllager$AIUseSpell.class got resource net/minecraft/entity/monster/EntitySpellcasterIllager$AIUseSpell.class true
[07Feb2019 20:07:18.495] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEvoker$AIAttackSpell.class got resource net/minecraft/entity/monster/EntityEvoker$AIAttackSpell.class true
[07Feb2019 20:07:18.498] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityEvoker$AIWololoSpell.class got resource net/minecraft/entity/monster/EntityEvoker$AIWololoSpell.class true
[07Feb2019 20:07:18.502] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerPickupXpEvent.class got resource net/minecraftforge/event/entity/player/PlayerPickupXpEvent.class true
[07Feb2019 20:07:18.505] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityEnderEye.class got resource net/minecraft/entity/item/EntityEnderEye.class true
[07Feb2019 20:07:18.511] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityFireworkRocket.class got resource net/minecraft/entity/item/EntityFireworkRocket.class true
[07Feb2019 20:07:18.515] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGhast.class got resource net/minecraft/entity/monster/EntityGhast.class true
[07Feb2019 20:07:18.521] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityFlying.class got resource net/minecraft/entity/EntityFlying.class true
[07Feb2019 20:07:18.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGhast$GhastMoveHelper.class got resource net/minecraft/entity/monster/EntityGhast$GhastMoveHelper.class true
[07Feb2019 20:07:18.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGhast$AIRandomFly.class got resource net/minecraft/entity/monster/EntityGhast$AIRandomFly.class true
[07Feb2019 20:07:18.529] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGhast$AILookAround.class got resource net/minecraft/entity/monster/EntityGhast$AILookAround.class true
[07Feb2019 20:07:18.531] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGhast$AIFireballAttack.class got resource net/minecraft/entity/monster/EntityGhast$AIFireballAttack.class true
[07Feb2019 20:07:18.533] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer.class got resource net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer.class true
[07Feb2019 20:07:18.536] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityGiantZombie.class got resource net/minecraft/entity/monster/EntityGiantZombie.class true
[07Feb2019 20:07:18.544] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityHorse.class got resource net/minecraft/entity/passive/EntityHorse.class true
[07Feb2019 20:07:18.551] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityHusk.class got resource net/minecraft/entity/monster/EntityHusk.class true
[07Feb2019 20:07:18.557] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityIllusionIllager.class got resource net/minecraft/entity/monster/EntityIllusionIllager.class true
[07Feb2019 20:07:18.564] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityIllusionIllager$AIMirriorSpell.class got resource net/minecraft/entity/monster/EntityIllusionIllager$AIMirriorSpell.class true
[07Feb2019 20:07:18.566] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityIllusionIllager$AIBlindnessSpell.class got resource net/minecraft/entity/monster/EntityIllusionIllager$AIBlindnessSpell.class true
[07Feb2019 20:07:18.569] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIAttackRangedBow.class got resource net/minecraft/entity/ai/EntityAIAttackRangedBow.class true
[07Feb2019 20:07:18.572] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemStack.class got resource net/minecraft/item/ItemStack.class true
[07Feb2019 20:07:18.579] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeItemStack.class got resource net/minecraftforge/common/extensions/IForgeItemStack.class true
[07Feb2019 20:07:18.583] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityItemFrame.class got resource net/minecraft/entity/item/EntityItemFrame.class true
[07Feb2019 20:07:18.589] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityLargeFireball.class got resource net/minecraft/entity/projectile/EntityLargeFireball.class true
[07Feb2019 20:07:18.595] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityLlama.class got resource net/minecraft/entity/passive/EntityLlama.class true
[07Feb2019 20:07:18.731] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILlamaFollowCaravan.class got resource net/minecraft/entity/ai/EntityAILlamaFollowCaravan.class true
[07Feb2019 20:07:18.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityLlama$AIHurtByTarget.class got resource net/minecraft/entity/passive/EntityLlama$AIHurtByTarget.class true
[07Feb2019 20:07:18.736] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityLlama$AIDefendTarget.class got resource net/minecraft/entity/passive/EntityLlama$AIDefendTarget.class true
[07Feb2019 20:07:18.739] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityLlamaSpit.class got resource net/minecraft/entity/projectile/EntityLlamaSpit.class true
[07Feb2019 20:07:18.747] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityMagmaCube.class got resource net/minecraft/entity/monster/EntityMagmaCube.class true
[07Feb2019 20:07:18.753] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime.class got resource net/minecraft/entity/monster/EntitySlime.class true
[07Feb2019 20:07:18.757] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime$SlimeMoveHelper.class got resource net/minecraft/entity/monster/EntitySlime$SlimeMoveHelper.class true
[07Feb2019 20:07:18.759] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime$AISlimeFloat.class got resource net/minecraft/entity/monster/EntitySlime$AISlimeFloat.class true
[07Feb2019 20:07:18.762] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime$AISlimeAttack.class got resource net/minecraft/entity/monster/EntitySlime$AISlimeAttack.class true
[07Feb2019 20:07:18.764] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom.class got resource net/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom.class true
[07Feb2019 20:07:18.767] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySlime$AISlimeHop.class got resource net/minecraft/entity/monster/EntitySlime$AISlimeHop.class true
[07Feb2019 20:07:18.770] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFindEntityNearest.class got resource net/minecraft/entity/ai/EntityAIFindEntityNearest.class true
[07Feb2019 20:07:18.773] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartEmpty.class got resource net/minecraft/entity/item/EntityMinecartEmpty.class true
[07Feb2019 20:07:18.778] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecart.class got resource net/minecraft/entity/item/EntityMinecart.class true
[07Feb2019 20:07:18.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeEntityMinecart.class got resource net/minecraftforge/common/extensions/IForgeEntityMinecart.class true
[07Feb2019 20:07:18.785] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartChest.class got resource net/minecraft/entity/item/EntityMinecartChest.class true
[07Feb2019 20:07:18.790] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartContainer.class got resource net/minecraft/entity/item/EntityMinecartContainer.class true
[07Feb2019 20:07:18.793] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartFurnace.class got resource net/minecraft/entity/item/EntityMinecartFurnace.class true
[07Feb2019 20:07:18.798] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartTNT.class got resource net/minecraft/entity/item/EntityMinecartTNT.class true
[07Feb2019 20:07:18.802] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartMobSpawner.class got resource net/minecraft/entity/item/EntityMinecartMobSpawner.class true
[07Feb2019 20:07:18.807] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartHopper.class got resource net/minecraft/entity/item/EntityMinecartHopper.class true
[07Feb2019 20:07:18.813] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartCommandBlock.class got resource net/minecraft/entity/item/EntityMinecartCommandBlock.class true
[07Feb2019 20:07:18.819] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/Container.class got resource net/minecraft/inventory/Container.class true
[07Feb2019 20:07:18.822] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerChest.class got resource net/minecraft/inventory/ContainerChest.class true
[07Feb2019 20:07:18.826] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/CommandBlockBaseLogic.class got resource net/minecraft/tileentity/CommandBlockBaseLogic.class true
[07Feb2019 20:07:18.828] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartCommandBlock$MinecartCommandLogic.class got resource net/minecraft/entity/item/EntityMinecartCommandBlock$MinecartCommandLogic.class true
[07Feb2019 20:07:18.832] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerHopper.class got resource net/minecraft/inventory/ContainerHopper.class true
[07Feb2019 20:07:18.835] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/MobSpawnerBaseLogic.class got resource net/minecraft/tileentity/MobSpawnerBaseLogic.class true
[07Feb2019 20:07:18.838] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecartMobSpawner$1.class got resource net/minecraft/entity/item/EntityMinecartMobSpawner$1.class true
[07Feb2019 20:07:18.841] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityMooshroom.class got resource net/minecraft/entity/passive/EntityMooshroom.class true
[07Feb2019 20:07:18.848] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityOcelot.class got resource net/minecraft/entity/passive/EntityOcelot.class true
[07Feb2019 20:07:18.854] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTameable.class got resource net/minecraft/entity/passive/EntityTameable.class true
[07Feb2019 20:07:18.856] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/IEntityOwnable.class got resource net/minecraft/entity/IEntityOwnable.class true
[07Feb2019 20:07:18.859] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAISit.class got resource net/minecraft/entity/ai/EntityAISit.class true
[07Feb2019 20:07:18.861] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowOwner.class got resource net/minecraft/entity/ai/EntityAIFollowOwner.class true
[07Feb2019 20:07:18.864] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIOcelotSit.class got resource net/minecraft/entity/ai/EntityAIOcelotSit.class true
[07Feb2019 20:07:18.866] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIOcelotAttack.class got resource net/minecraft/entity/ai/EntityAIOcelotAttack.class true
[07Feb2019 20:07:18.868] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITargetNonTamed.class got resource net/minecraft/entity/ai/EntityAITargetNonTamed.class true
[07Feb2019 20:07:18.871] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityPainting.class got resource net/minecraft/entity/item/EntityPainting.class true
[07Feb2019 20:07:18.877] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityParrot.class got resource net/minecraft/entity/passive/EntityParrot.class true
[07Feb2019 20:07:18.884] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/IFlyingAnimal.class got resource net/minecraft/entity/passive/IFlyingAnimal.class true
[07Feb2019 20:07:18.886] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityShoulderRiding.class got resource net/minecraft/entity/passive/EntityShoulderRiding.class true
[07Feb2019 20:07:18.888] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityFlyHelper.class got resource net/minecraft/entity/ai/EntityFlyHelper.class true
[07Feb2019 20:07:18.891] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowOwnerFlying.class got resource net/minecraft/entity/ai/EntityAIFollowOwnerFlying.class true
[07Feb2019 20:07:18.893] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWanderAvoidWaterFlying.class got resource net/minecraft/entity/ai/EntityAIWanderAvoidWaterFlying.class true
[07Feb2019 20:07:18.896] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILandOnOwnersShoulder.class got resource net/minecraft/entity/ai/EntityAILandOnOwnersShoulder.class true
[07Feb2019 20:07:18.898] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollow.class got resource net/minecraft/entity/ai/EntityAIFollow.class true
[07Feb2019 20:07:18.901] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNavigateFlying.class got resource net/minecraft/pathfinding/PathNavigateFlying.class true
[07Feb2019 20:07:18.904] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityPig.class got resource net/minecraft/entity/passive/EntityPig.class true
[07Feb2019 20:07:18.909] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPigZombie.class got resource net/minecraft/entity/monster/EntityPigZombie.class true
[07Feb2019 20:07:18.916] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityPufferFish.class got resource net/minecraft/entity/passive/EntityPufferFish.class true
[07Feb2019 20:07:18.921] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityPufferFish$AIPuff.class got resource net/minecraft/entity/passive/EntityPufferFish$AIPuff.class true
[07Feb2019 20:07:18.924] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPigZombie$AIHurtByAggressor.class got resource net/minecraft/entity/monster/EntityPigZombie$AIHurtByAggressor.class true
[07Feb2019 20:07:18.927] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPigZombie$AITargetAggressor.class got resource net/minecraft/entity/monster/EntityPigZombie$AITargetAggressor.class true
[07Feb2019 20:07:18.930] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPolarBear.class got resource net/minecraft/entity/monster/EntityPolarBear.class true
[07Feb2019 20:07:18.936] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPolarBear$AIMeleeAttack.class got resource net/minecraft/entity/monster/EntityPolarBear$AIMeleeAttack.class true
[07Feb2019 20:07:18.938] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPolarBear$AIPanic.class got resource net/minecraft/entity/monster/EntityPolarBear$AIPanic.class true
[07Feb2019 20:07:18.941] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPolarBear$AIHurtByTarget.class got resource net/minecraft/entity/monster/EntityPolarBear$AIHurtByTarget.class true
[07Feb2019 20:07:18.943] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPolarBear$AIAttackPlayer.class got resource net/minecraft/entity/monster/EntityPolarBear$AIAttackPlayer.class true
[07Feb2019 20:07:18.947] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit.class got resource net/minecraft/entity/passive/EntityRabbit.class true
[07Feb2019 20:07:18.953] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityJumpHelper.class got resource net/minecraft/entity/ai/EntityJumpHelper.class true
[07Feb2019 20:07:18.955] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$RabbitJumpHelper.class got resource net/minecraft/entity/passive/EntityRabbit$RabbitJumpHelper.class true
[07Feb2019 20:07:18.957] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$RabbitMoveHelper.class got resource net/minecraft/entity/passive/EntityRabbit$RabbitMoveHelper.class true
[07Feb2019 20:07:18.960] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$AIPanic.class got resource net/minecraft/entity/passive/EntityRabbit$AIPanic.class true
[07Feb2019 20:07:18.962] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$AIAvoidEntity.class got resource net/minecraft/entity/passive/EntityRabbit$AIAvoidEntity.class true
[07Feb2019 20:07:18.965] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$AIRaidFarm.class got resource net/minecraft/entity/passive/EntityRabbit$AIRaidFarm.class true
[07Feb2019 20:07:18.967] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityRabbit$AIEvilAttack.class got resource net/minecraft/entity/passive/EntityRabbit$AIEvilAttack.class true
[07Feb2019 20:07:18.970] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySalmon.class got resource net/minecraft/entity/passive/EntitySalmon.class true
[07Feb2019 20:07:18.976] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySheep.class got resource net/minecraft/entity/passive/EntitySheep.class true
[07Feb2019 20:07:18.982] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySheep$1.class got resource net/minecraft/entity/passive/EntitySheep$1.class true
[07Feb2019 20:07:18.984] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIEatGrass.class got resource net/minecraft/entity/ai/EntityAIEatGrass.class true
[07Feb2019 20:07:18.987] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker.class got resource net/minecraft/entity/monster/EntityShulker.class true
[07Feb2019 20:07:18.993] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker$AIAttack.class got resource net/minecraft/entity/monster/EntityShulker$AIAttack.class true
[07Feb2019 20:07:18.996] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker$AIPeek.class got resource net/minecraft/entity/monster/EntityShulker$AIPeek.class true
[07Feb2019 20:07:18.998] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker$AIAttackNearest.class got resource net/minecraft/entity/monster/EntityShulker$AIAttackNearest.class true
[07Feb2019 20:07:19.000] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker$AIDefenseAttack.class got resource net/minecraft/entity/monster/EntityShulker$AIDefenseAttack.class true
[07Feb2019 20:07:19.003] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityBodyHelper.class got resource net/minecraft/entity/EntityBodyHelper.class true
[07Feb2019 20:07:19.005] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityShulker$BodyHelper.class got resource net/minecraft/entity/monster/EntityShulker$BodyHelper.class true
[07Feb2019 20:07:19.008] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityShulkerBullet.class got resource net/minecraft/entity/projectile/EntityShulkerBullet.class true
[07Feb2019 20:07:19.013] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish.class got resource net/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish.class true
[07Feb2019 20:07:19.016] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntitySilverfish$AIHideInStone.class got resource net/minecraft/entity/monster/EntitySilverfish$AIHideInStone.class true
[07Feb2019 20:07:19.019] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/AbstractSkeleton$1.class got resource net/minecraft/entity/monster/AbstractSkeleton$1.class true
[07Feb2019 20:07:19.021] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIRestrictSun.class got resource net/minecraft/entity/ai/EntityAIRestrictSun.class true
[07Feb2019 20:07:19.024] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFleeSun.class got resource net/minecraft/entity/ai/EntityAIFleeSun.class true
[07Feb2019 20:07:19.026] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntitySpectralArrow.class got resource net/minecraft/entity/projectile/EntitySpectralArrow.class true
[07Feb2019 20:07:19.031] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySkeletonHorse.class got resource net/minecraft/entity/passive/EntitySkeletonHorse.class true
[07Feb2019 20:07:19.036] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAISkeletonRiders.class got resource net/minecraft/entity/ai/EntityAISkeletonRiders.class true
[07Feb2019 20:07:19.040] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntitySmallFireball.class got resource net/minecraft/entity/projectile/EntitySmallFireball.class true
[07Feb2019 20:07:19.044] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntitySnowball.class got resource net/minecraft/entity/projectile/EntitySnowball.class true
[07Feb2019 20:07:19.048] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityThrowable.class got resource net/minecraft/entity/projectile/EntityThrowable.class true
[07Feb2019 20:07:19.053] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySquid.class got resource net/minecraft/entity/passive/EntitySquid.class true
[07Feb2019 20:07:19.058] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySquid$AIMoveRandom.class got resource net/minecraft/entity/passive/EntitySquid$AIMoveRandom.class true
[07Feb2019 20:07:19.061] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntitySquid$AIFlee.class got resource net/minecraft/entity/passive/EntitySquid$AIFlee.class true
[07Feb2019 20:07:19.063] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityStray.class got resource net/minecraft/entity/monster/EntityStray.class true
[07Feb2019 20:07:19.069] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTropicalFish.class got resource net/minecraft/entity/passive/EntityTropicalFish.class true
[07Feb2019 20:07:19.076] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$MoveHelper.class got resource net/minecraft/entity/passive/EntityTurtle$MoveHelper.class true
[07Feb2019 20:07:19.078] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIPanic.class got resource net/minecraft/entity/passive/EntityTurtle$AIPanic.class true
[07Feb2019 20:07:19.080] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIMate.class got resource net/minecraft/entity/passive/EntityTurtle$AIMate.class true
[07Feb2019 20:07:19.083] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AILayEgg.class got resource net/minecraft/entity/passive/EntityTurtle$AILayEgg.class true
[07Feb2019 20:07:19.085] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIPlayerTempt.class got resource net/minecraft/entity/passive/EntityTurtle$AIPlayerTempt.class true
[07Feb2019 20:07:19.088] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIGoToWater.class got resource net/minecraft/entity/passive/EntityTurtle$AIGoToWater.class true
[07Feb2019 20:07:19.090] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIGoHome.class got resource net/minecraft/entity/passive/EntityTurtle$AIGoHome.class true
[07Feb2019 20:07:19.093] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AITravel.class got resource net/minecraft/entity/passive/EntityTurtle$AITravel.class true
[07Feb2019 20:07:19.095] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$AIWander.class got resource net/minecraft/entity/passive/EntityTurtle$AIWander.class true
[07Feb2019 20:07:19.097] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityTurtle$PathNavigater.class got resource net/minecraft/entity/passive/EntityTurtle$PathNavigater.class true
[07Feb2019 20:07:19.101] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityEgg.class got resource net/minecraft/entity/projectile/EntityEgg.class true
[07Feb2019 20:07:19.105] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityEnderPearl.class got resource net/minecraft/entity/item/EntityEnderPearl.class true
[07Feb2019 20:07:19.110] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityExpBottle.class got resource net/minecraft/entity/item/EntityExpBottle.class true
[07Feb2019 20:07:19.115] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityPotion.class got resource net/minecraft/entity/projectile/EntityPotion.class true
[07Feb2019 20:07:19.120] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVex.class got resource net/minecraft/entity/monster/EntityVex.class true
[07Feb2019 20:07:19.126] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVex$AIMoveControl.class got resource net/minecraft/entity/monster/EntityVex$AIMoveControl.class true
[07Feb2019 20:07:19.129] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVex$AIChargeAttack.class got resource net/minecraft/entity/monster/EntityVex$AIChargeAttack.class true
[07Feb2019 20:07:19.131] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVex$AIMoveRandom.class got resource net/minecraft/entity/monster/EntityVex$AIMoveRandom.class true
[07Feb2019 20:07:19.134] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVex$AICopyOwnerTarget.class got resource net/minecraft/entity/monster/EntityVex$AICopyOwnerTarget.class true
[07Feb2019 20:07:19.137] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIPlay.class got resource net/minecraft/entity/ai/EntityAIPlay.class true
[07Feb2019 20:07:19.140] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIHarvestFarmland.class got resource net/minecraft/entity/ai/EntityAIHarvestFarmland.class true
[07Feb2019 20:07:19.143] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityWitch.class got resource net/minecraft/entity/monster/EntityWitch.class true
[07Feb2019 20:07:19.149] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITradePlayer.class got resource net/minecraft/entity/ai/EntityAITradePlayer.class true
[07Feb2019 20:07:19.152] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILookAtTradePlayer.class got resource net/minecraft/entity/ai/EntityAILookAtTradePlayer.class true
[07Feb2019 20:07:19.154] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMoveIndoors.class got resource net/minecraft/entity/ai/EntityAIMoveIndoors.class true
[07Feb2019 20:07:19.157] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIRestrictOpenDoor.class got resource net/minecraft/entity/ai/EntityAIRestrictOpenDoor.class true
[07Feb2019 20:07:19.159] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIOpenDoor.class got resource net/minecraft/entity/ai/EntityAIOpenDoor.class true
[07Feb2019 20:07:19.161] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIVillagerMate.class got resource net/minecraft/entity/ai/EntityAIVillagerMate.class true
[07Feb2019 20:07:19.163] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIFollowGolem.class got resource net/minecraft/entity/ai/EntityAIFollowGolem.class true
[07Feb2019 20:07:19.166] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIWatchClosestWithoutMoving.class got resource net/minecraft/entity/ai/EntityAIWatchClosestWithoutMoving.class true
[07Feb2019 20:07:19.168] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIVillagerInteract.class got resource net/minecraft/entity/ai/EntityAIVillagerInteract.class true
[07Feb2019 20:07:19.172] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIMoveTowardsTarget.class got resource net/minecraft/entity/ai/EntityAIMoveTowardsTarget.class true
[07Feb2019 20:07:19.174] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAILookAtVillager.class got resource net/minecraft/entity/ai/EntityAILookAtVillager.class true
[07Feb2019 20:07:19.176] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIDefendVillage.class got resource net/minecraft/entity/ai/EntityAIDefendVillage.class true
[07Feb2019 20:07:19.180] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVindicator.class got resource net/minecraft/entity/monster/EntityVindicator.class true
[07Feb2019 20:07:19.186] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityVindicator$AIJohnnyAttack.class got resource net/minecraft/entity/monster/EntityVindicator$AIJohnnyAttack.class true
[07Feb2019 20:07:19.189] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityWitherSkull.class got resource net/minecraft/entity/projectile/EntityWitherSkull.class true
[07Feb2019 20:07:19.194] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/boss/EntityWither$AIDoNothing.class got resource net/minecraft/entity/boss/EntityWither$AIDoNothing.class true
[07Feb2019 20:07:19.197] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityWitherSkeleton.class got resource net/minecraft/entity/monster/EntityWitherSkeleton.class true
[07Feb2019 20:07:19.203] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityWolf.class got resource net/minecraft/entity/passive/EntityWolf.class true
[07Feb2019 20:07:19.210] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityWolf$AIAvoidEntity.class got resource net/minecraft/entity/passive/EntityWolf$AIAvoidEntity.class true
[07Feb2019 20:07:19.212] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIBeg.class got resource net/minecraft/entity/ai/EntityAIBeg.class true
[07Feb2019 20:07:19.215] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIOwnerHurtByTarget.class got resource net/minecraft/entity/ai/EntityAIOwnerHurtByTarget.class true
[07Feb2019 20:07:19.217] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIOwnerHurtTarget.class got resource net/minecraft/entity/ai/EntityAIOwnerHurtTarget.class true
[07Feb2019 20:07:19.220] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityZombieHorse.class got resource net/minecraft/entity/passive/EntityZombieHorse.class true
[07Feb2019 20:07:19.227] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom.class got resource net/minecraft/entity/monster/EntityPhantom.class true
[07Feb2019 20:07:19.233] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$MoveHelper.class got resource net/minecraft/entity/monster/EntityPhantom$MoveHelper.class true
[07Feb2019 20:07:19.236] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$LookHelper.class got resource net/minecraft/entity/monster/EntityPhantom$LookHelper.class true
[07Feb2019 20:07:19.238] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$AIPickAttack.class got resource net/minecraft/entity/monster/EntityPhantom$AIPickAttack.class true
[07Feb2019 20:07:19.240] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$AISweepAttack.class got resource net/minecraft/entity/monster/EntityPhantom$AISweepAttack.class true
[07Feb2019 20:07:19.242] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$AIMove.class got resource net/minecraft/entity/monster/EntityPhantom$AIMove.class true
[07Feb2019 20:07:19.245] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$AIOrbitPoint.class got resource net/minecraft/entity/monster/EntityPhantom$AIOrbitPoint.class true
[07Feb2019 20:07:19.248] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$AIAttackPlayer.class got resource net/minecraft/entity/monster/EntityPhantom$AIAttackPlayer.class true
[07Feb2019 20:07:19.250] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/monster/EntityPhantom$BodyHelper.class got resource net/minecraft/entity/monster/EntityPhantom$BodyHelper.class true
[07Feb2019 20:07:19.253] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/effect/EntityLightningBolt.class got resource net/minecraft/entity/effect/EntityLightningBolt.class true
[07Feb2019 20:07:19.258] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/effect/EntityWeatherEffect.class got resource net/minecraft/entity/effect/EntityWeatherEffect.class true
[07Feb2019 20:07:19.261] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/projectile/EntityFishHook.class got resource net/minecraft/entity/projectile/EntityFishHook.class true
[07Feb2019 20:07:19.267] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBlock.class got resource net/minecraft/item/ItemBlock.class true
[07Feb2019 20:07:19.271] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemAir.class got resource net/minecraft/item/ItemAir.class true
[07Feb2019 20:07:19.433] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemWallOrFloor.class got resource net/minecraft/item/ItemWallOrFloor.class true
[07Feb2019 20:07:19.437] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemLilyPad.class got resource net/minecraft/item/ItemLilyPad.class true
[07Feb2019 20:07:19.441] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGMOnly.class got resource net/minecraft/item/ItemGMOnly.class true
[07Feb2019 20:07:19.444] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBlockTall.class got resource net/minecraft/item/ItemBlockTall.class true
[07Feb2019 20:07:19.448] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/IArmorMaterial.class got resource net/minecraft/item/IArmorMaterial.class true
[07Feb2019 20:07:19.450] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemArmor.class got resource net/minecraft/item/ItemArmor.class true
[07Feb2019 20:07:19.454] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/IItemTier.class got resource net/minecraft/item/IItemTier.class true
[07Feb2019 20:07:19.456] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSpade.class got resource net/minecraft/item/ItemSpade.class true
[07Feb2019 20:07:19.461] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemTool.class got resource net/minecraft/item/ItemTool.class true
[07Feb2019 20:07:19.463] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemTiered.class got resource net/minecraft/item/ItemTiered.class true
[07Feb2019 20:07:19.466] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemPickaxe.class got resource net/minecraft/item/ItemPickaxe.class true
[07Feb2019 20:07:19.470] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemAxe.class got resource net/minecraft/item/ItemAxe.class true
[07Feb2019 20:07:19.473] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFlintAndSteel.class got resource net/minecraft/item/ItemFlintAndSteel.class true
[07Feb2019 20:07:19.476] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFood.class got resource net/minecraft/item/ItemFood.class true
[07Feb2019 20:07:19.480] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBow.class got resource net/minecraft/item/ItemBow.class true
[07Feb2019 20:07:19.483] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemArrow.class got resource net/minecraft/item/ItemArrow.class true
[07Feb2019 20:07:19.486] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSword.class got resource net/minecraft/item/ItemSword.class true
[07Feb2019 20:07:19.489] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSoup.class got resource net/minecraft/item/ItemSoup.class true
[07Feb2019 20:07:19.493] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemString.class got resource net/minecraft/item/ItemString.class true
[07Feb2019 20:07:19.496] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemHoe.class got resource net/minecraft/item/ItemHoe.class true
[07Feb2019 20:07:19.499] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSeeds.class got resource net/minecraft/item/ItemSeeds.class true
[07Feb2019 20:07:19.502] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemArmorDyeable.class got resource net/minecraft/item/ItemArmorDyeable.class true
[07Feb2019 20:07:19.506] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemHangingEntity.class got resource net/minecraft/item/ItemHangingEntity.class true
[07Feb2019 20:07:19.509] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSign.class got resource net/minecraft/item/ItemSign.class true
[07Feb2019 20:07:19.512] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBucket.class got resource net/minecraft/item/ItemBucket.class true
[07Feb2019 20:07:19.516] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemMinecart.class got resource net/minecraft/item/ItemMinecart.class true
[07Feb2019 20:07:19.519] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSaddle.class got resource net/minecraft/item/ItemSaddle.class true
[07Feb2019 20:07:19.522] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSnowball.class got resource net/minecraft/item/ItemSnowball.class true
[07Feb2019 20:07:19.525] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBoat.class got resource net/minecraft/item/ItemBoat.class true
[07Feb2019 20:07:19.529] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBucketMilk.class got resource net/minecraft/item/ItemBucketMilk.class true
[07Feb2019 20:07:19.532] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBucketFish.class got resource net/minecraft/item/ItemBucketFish.class true
[07Feb2019 20:07:19.535] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBook.class got resource net/minecraft/item/ItemBook.class true
[07Feb2019 20:07:19.538] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEgg.class got resource net/minecraft/item/ItemEgg.class true
[07Feb2019 20:07:19.541] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemCompass.class got resource net/minecraft/item/ItemCompass.class true
[07Feb2019 20:07:19.544] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFishingRod.class got resource net/minecraft/item/ItemFishingRod.class true
[07Feb2019 20:07:19.547] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemClock.class got resource net/minecraft/item/ItemClock.class true
[07Feb2019 20:07:19.550] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFishFood.class got resource net/minecraft/item/ItemFishFood.class true
[07Feb2019 20:07:19.554] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemDye.class got resource net/minecraft/item/ItemDye.class true
[07Feb2019 20:07:19.557] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemCocoa.class got resource net/minecraft/item/ItemCocoa.class true
[07Feb2019 20:07:19.560] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBoneMeal.class got resource net/minecraft/item/ItemBoneMeal.class true
[07Feb2019 20:07:19.564] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBed.class got resource net/minecraft/item/ItemBed.class true
[07Feb2019 20:07:19.567] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemMap.class got resource net/minecraft/item/ItemMap.class true
[07Feb2019 20:07:19.571] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemMapBase.class got resource net/minecraft/item/ItemMapBase.class true
[07Feb2019 20:07:19.573] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemShears.class got resource net/minecraft/item/ItemShears.class true
[07Feb2019 20:07:19.576] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEnderPearl.class got resource net/minecraft/item/ItemEnderPearl.class true
[07Feb2019 20:07:19.580] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemPotion.class got resource net/minecraft/item/ItemPotion.class true
[07Feb2019 20:07:19.584] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGlassBottle.class got resource net/minecraft/item/ItemGlassBottle.class true
[07Feb2019 20:07:19.587] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEnderEye.class got resource net/minecraft/item/ItemEnderEye.class true
[07Feb2019 20:07:19.591] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSpawnEgg.class got resource net/minecraft/item/ItemSpawnEgg.class true
[07Feb2019 20:07:19.595] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemExpBottle.class got resource net/minecraft/item/ItemExpBottle.class true
[07Feb2019 20:07:19.598] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFireCharge.class got resource net/minecraft/item/ItemFireCharge.class true
[07Feb2019 20:07:19.601] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemWritableBook.class got resource net/minecraft/item/ItemWritableBook.class true
[07Feb2019 20:07:19.604] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemWrittenBook.class got resource net/minecraft/item/ItemWrittenBook.class true
[07Feb2019 20:07:19.608] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemItemFrame.class got resource net/minecraft/item/ItemItemFrame.class true
[07Feb2019 20:07:19.611] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSeedFood.class got resource net/minecraft/item/ItemSeedFood.class true
[07Feb2019 20:07:19.614] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEmptyMap.class got resource net/minecraft/item/ItemEmptyMap.class true
[07Feb2019 20:07:19.618] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSkull.class got resource net/minecraft/item/ItemSkull.class true
[07Feb2019 20:07:19.621] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemCarrotOnAStick.class got resource net/minecraft/item/ItemCarrotOnAStick.class true
[07Feb2019 20:07:19.625] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSimpleFoiled.class got resource net/minecraft/item/ItemSimpleFoiled.class true
[07Feb2019 20:07:19.628] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFireworkRocket.class got resource net/minecraft/item/ItemFireworkRocket.class true
[07Feb2019 20:07:19.631] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFireworkStar.class got resource net/minecraft/item/ItemFireworkStar.class true
[07Feb2019 20:07:19.635] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEnchantedBook.class got resource net/minecraft/item/ItemEnchantedBook.class true
[07Feb2019 20:07:19.638] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemArmorStand.class got resource net/minecraft/item/ItemArmorStand.class true
[07Feb2019 20:07:19.641] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemLead.class got resource net/minecraft/item/ItemLead.class true
[07Feb2019 20:07:19.645] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemNameTag.class got resource net/minecraft/item/ItemNameTag.class true
[07Feb2019 20:07:19.649] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemBanner.class got resource net/minecraft/item/ItemBanner.class true
[07Feb2019 20:07:19.652] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemEndCrystal.class got resource net/minecraft/item/ItemEndCrystal.class true
[07Feb2019 20:07:19.656] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSplashPotion.class got resource net/minecraft/item/ItemSplashPotion.class true
[07Feb2019 20:07:19.660] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemSpectralArrow.class got resource net/minecraft/item/ItemSpectralArrow.class true
[07Feb2019 20:07:19.663] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemTippedArrow.class got resource net/minecraft/item/ItemTippedArrow.class true
[07Feb2019 20:07:19.667] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemLingeringPotion.class got resource net/minecraft/item/ItemLingeringPotion.class true
[07Feb2019 20:07:19.670] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemShield.class got resource net/minecraft/item/ItemShield.class true
[07Feb2019 20:07:19.675] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemElytra.class got resource net/minecraft/item/ItemElytra.class true
[07Feb2019 20:07:19.678] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemKnowledgeBook.class got resource net/minecraft/item/ItemKnowledgeBook.class true
[07Feb2019 20:07:19.682] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemDebugStick.class got resource net/minecraft/item/ItemDebugStick.class true
[07Feb2019 20:07:19.686] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemRecord.class got resource net/minecraft/item/ItemRecord.class true
[07Feb2019 20:07:19.690] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemTrident.class got resource net/minecraft/item/ItemTrident.class true
[07Feb2019 20:07:19.696] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/IItemPropertyGetter.class got resource net/minecraft/item/IItemPropertyGetter.class true
[07Feb2019 20:07:19.699] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/Item$Builder.class got resource net/minecraft/item/Item$Builder.class true
[07Feb2019 20:07:19.702] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/EnumRarity.class got resource net/minecraft/item/EnumRarity.class true
[07Feb2019 20:07:19.704] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup.class got resource net/minecraft/item/ItemGroup.class true
[07Feb2019 20:07:19.707] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$2.class got resource net/minecraft/item/ItemGroup$2.class true
[07Feb2019 20:07:19.709] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$3.class got resource net/minecraft/item/ItemGroup$3.class true
[07Feb2019 20:07:19.711] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$4.class got resource net/minecraft/item/ItemGroup$4.class true
[07Feb2019 20:07:19.713] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$5.class got resource net/minecraft/item/ItemGroup$5.class true
[07Feb2019 20:07:19.716] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$7.class got resource net/minecraft/item/ItemGroup$7.class true
[07Feb2019 20:07:19.718] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$10.class got resource net/minecraft/item/ItemGroup$10.class true
[07Feb2019 20:07:19.720] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$11.class got resource net/minecraft/item/ItemGroup$11.class true
[07Feb2019 20:07:19.722] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$1.class got resource net/minecraft/item/ItemGroup$1.class true
[07Feb2019 20:07:19.726] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$6.class got resource net/minecraft/item/ItemGroup$6.class true
[07Feb2019 20:07:19.728] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$8.class got resource net/minecraft/item/ItemGroup$8.class true
[07Feb2019 20:07:19.731] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$9.class got resource net/minecraft/item/ItemGroup$9.class true
[07Feb2019 20:07:19.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemGroup$12.class got resource net/minecraft/item/ItemGroup$12.class true
[07Feb2019 20:07:19.747] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemArmor$1.class got resource net/minecraft/item/ItemArmor$1.class true
[07Feb2019 20:07:19.750] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ArmorMaterial.class got resource net/minecraft/item/ArmorMaterial.class true
[07Feb2019 20:07:19.754] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/Ingredient.class got resource net/minecraft/item/crafting/Ingredient.class true
[07Feb2019 20:07:19.758] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/LazyLoadBase.class got resource net/minecraft/util/LazyLoadBase.class true
[07Feb2019 20:07:19.762] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemTier.class got resource net/minecraft/item/ItemTier.class true
[07Feb2019 20:07:19.768] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemAppleGold.class got resource net/minecraft/item/ItemAppleGold.class true
[07Feb2019 20:07:19.772] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemAppleGoldEnchanted.class got resource net/minecraft/item/ItemAppleGoldEnchanted.class true
[07Feb2019 20:07:19.776] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemMinecart$1.class got resource net/minecraft/item/ItemMinecart$1.class true
[07Feb2019 20:07:19.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecart$Type.class got resource net/minecraft/entity/item/EntityMinecart$Type.class true
[07Feb2019 20:07:19.783] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityBoat$Type.class got resource net/minecraft/entity/item/EntityBoat$Type.class true
[07Feb2019 20:07:19.787] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemCompass$1.class got resource net/minecraft/item/ItemCompass$1.class true
[07Feb2019 20:07:19.790] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemClock$1.class got resource net/minecraft/item/ItemClock$1.class true
[07Feb2019 20:07:19.792] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFishFood$FishType.class got resource net/minecraft/item/ItemFishFood$FishType.class true
[07Feb2019 20:07:19.796] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/FakePlayer.class got resource net/minecraftforge/common/util/FakePlayer.class true
[07Feb2019 20:07:19.802] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/WorldSavedData.class got resource net/minecraft/world/storage/WorldSavedData.class true
[07Feb2019 20:07:19.804] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/MapData.class got resource net/minecraft/world/storage/MapData.class true
[07Feb2019 20:07:19.809] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionEffect.class got resource net/minecraft/potion/PotionEffect.class true
[07Feb2019 20:07:19.812] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/MobEffects.class got resource net/minecraft/init/MobEffects.class true
[07Feb2019 20:07:19.818] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemChorusFruit.class got resource net/minecraft/item/ItemChorusFruit.class true
[07Feb2019 20:07:19.825] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionBrewing.class got resource net/minecraft/potion/PotionBrewing.class true
[07Feb2019 20:07:19.828] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Items.class got resource net/minecraft/init/Items.class true
[07Feb2019 20:07:19.834] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/Ingredient$IItemList.class got resource net/minecraft/item/crafting/Ingredient$IItemList.class true
[07Feb2019 20:07:19.838] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/Ingredient$SingleItemList.class got resource net/minecraft/item/crafting/Ingredient$SingleItemList.class true
[07Feb2019 20:07:19.841] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/ForgeEventFactory.class got resource net/minecraftforge/event/ForgeEventFactory.class true
[07Feb2019 20:07:19.845] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/AnimalTameEvent.class got resource net/minecraftforge/event/entity/living/AnimalTameEvent.class true
[07Feb2019 20:07:19.848] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/ProjectileImpactEvent$Arrow.class got resource net/minecraftforge/event/entity/ProjectileImpactEvent$Arrow.class true
[07Feb2019 20:07:19.850] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/ProjectileImpactEvent.class got resource net/minecraftforge/event/entity/ProjectileImpactEvent.class true
[07Feb2019 20:07:19.853] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/ProjectileImpactEvent$Fireball.class got resource net/minecraftforge/event/entity/ProjectileImpactEvent$Fireball.class true
[07Feb2019 20:07:19.855] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/ProjectileImpactEvent$Throwable.class got resource net/minecraftforge/event/entity/ProjectileImpactEvent$Throwable.class true
[07Feb2019 20:07:19.857] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent.class got resource net/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent.class true
[07Feb2019 20:07:19.860] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/ZombieEvent.class got resource net/minecraftforge/event/entity/living/ZombieEvent.class true
[07Feb2019 20:07:19.863] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.class got resource net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.class true
[07Feb2019 20:07:19.865] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$NeighborNotifyEvent.class got resource net/minecraftforge/event/world/BlockEvent$NeighborNotifyEvent.class true
[07Feb2019 20:07:19.867] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityEvent$CanUpdate.class got resource net/minecraftforge/event/entity/EntityEvent$CanUpdate.class true
[07Feb2019 20:07:19.870] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ExplosionEvent$Start.class got resource net/minecraftforge/event/world/ExplosionEvent$Start.class true
[07Feb2019 20:07:19.872] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ExplosionEvent.class got resource net/minecraftforge/event/world/ExplosionEvent.class true
[07Feb2019 20:07:19.875] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent$CreateSpawnPosition.class got resource net/minecraftforge/event/world/WorldEvent$CreateSpawnPosition.class true
[07Feb2019 20:07:19.878] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/LootTableLoadEvent.class got resource net/minecraftforge/event/LootTableLoadEvent.class true
[07Feb2019 20:07:19.881] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/PlaySoundAtEntityEvent.class got resource net/minecraftforge/event/entity/PlaySoundAtEntityEvent.class true
[07Feb2019 20:07:19.883] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$PortalSpawnEvent.class got resource net/minecraftforge/event/world/BlockEvent$PortalSpawnEvent.class true
[07Feb2019 20:07:19.886] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$HarvestDropsEvent.class got resource net/minecraftforge/event/world/BlockEvent$HarvestDropsEvent.class true
[07Feb2019 20:07:19.888] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/AttachCapabilitiesEvent.class got resource net/minecraftforge/event/AttachCapabilitiesEvent.class true
[07Feb2019 20:07:19.892] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent$PotentialSpawns.class got resource net/minecraftforge/event/world/WorldEvent$PotentialSpawns.class true
[07Feb2019 20:07:19.894] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/ItemTooltipEvent.class got resource net/minecraftforge/event/entity/player/ItemTooltipEvent.class true
[07Feb2019 20:07:19.897] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/client/event/ClientChatReceivedEvent.class got resource net/minecraftforge/client/event/ClientChatReceivedEvent.class true
[07Feb2019 20:07:19.899] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$Clone.class got resource net/minecraftforge/event/entity/player/PlayerEvent$Clone.class true
[07Feb2019 20:07:19.902] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$SaveToFile.class got resource net/minecraftforge/event/entity/player/PlayerEvent$SaveToFile.class true
[07Feb2019 20:07:19.905] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/client/event/RenderBlockOverlayEvent.class got resource net/minecraftforge/client/event/RenderBlockOverlayEvent.class true
[07Feb2019 20:07:19.907] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/client/event/ClientChatEvent.class got resource net/minecraftforge/client/event/ClientChatEvent.class true
[07Feb2019 20:07:19.909] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$StopTracking.class got resource net/minecraftforge/event/entity/player/PlayerEvent$StopTracking.class true
[07Feb2019 20:07:19.912] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/GetCollisionBoxesEvent.class got resource net/minecraftforge/event/world/GetCollisionBoxesEvent.class true
[07Feb2019 20:07:19.914] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$CreateFluidSourceEvent.class got resource net/minecraftforge/event/world/BlockEvent$CreateFluidSourceEvent.class true
[07Feb2019 20:07:19.917] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/enchanting/EnchantmentLevelSetEvent.class got resource net/minecraftforge/event/enchanting/EnchantmentLevelSetEvent.class true
[07Feb2019 20:07:19.919] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$FluidPlaceBlockEvent.class got resource net/minecraftforge/event/world/BlockEvent$FluidPlaceBlockEvent.class true
[07Feb2019 20:07:19.922] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$StartTracking.class got resource net/minecraftforge/event/entity/player/PlayerEvent$StartTracking.class true
[07Feb2019 20:07:19.924] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$MultiPlaceEvent.class got resource net/minecraftforge/event/world/BlockEvent$MultiPlaceEvent.class true
[07Feb2019 20:07:19.927] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/BlockEvent$PlaceEvent.class got resource net/minecraftforge/event/world/BlockEvent$PlaceEvent.class true
[07Feb2019 20:07:19.930] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingPackSizeEvent.class got resource net/minecraftforge/event/entity/living/LivingPackSizeEvent.class true
[07Feb2019 20:07:19.932] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$NameFormat.class got resource net/minecraftforge/event/entity/player/PlayerEvent$NameFormat.class true
[07Feb2019 20:07:19.935] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/brewing/PlayerBrewedPotionEvent.class got resource net/minecraftforge/event/brewing/PlayerBrewedPotionEvent.class true
[07Feb2019 20:07:19.937] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/ChunkGeneratorEvent$ReplaceBiomeBlocks.class got resource net/minecraftforge/event/terraingen/ChunkGeneratorEvent$ReplaceBiomeBlocks.class true
[07Feb2019 20:07:19.939] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/ChunkGeneratorEvent.class got resource net/minecraftforge/event/terraingen/ChunkGeneratorEvent.class true
[07Feb2019 20:07:19.942] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ExplosionEvent$Detonate.class got resource net/minecraftforge/event/world/ExplosionEvent$Detonate.class true
[07Feb2019 20:07:19.944] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityStruckByLightningEvent.class got resource net/minecraftforge/event/entity/EntityStruckByLightningEvent.class true
[07Feb2019 20:07:19.947] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityMobGriefingEvent.class got resource net/minecraftforge/event/entity/EntityMobGriefingEvent.class true
[07Feb2019 20:07:19.949] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/item/ItemExpireEvent.class got resource net/minecraftforge/event/entity/item/ItemExpireEvent.class true
[07Feb2019 20:07:19.952] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/SaplingGrowTreeEvent.class got resource net/minecraftforge/event/world/SaplingGrowTreeEvent.class true
[07Feb2019 20:07:19.954] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingSpawnEvent$CheckSpawn.class got resource net/minecraftforge/event/entity/living/LivingSpawnEvent$CheckSpawn.class true
[07Feb2019 20:07:19.956] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingSpawnEvent.class got resource net/minecraftforge/event/entity/living/LivingSpawnEvent.class true
[07Feb2019 20:07:19.959] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile.class got resource net/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile.class true
[07Feb2019 20:07:19.962] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed.class got resource net/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed.class true
[07Feb2019 20:07:19.965] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerWakeUpEvent.class got resource net/minecraftforge/event/entity/player/PlayerWakeUpEvent.class true
[07Feb2019 20:07:19.968] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerSetSpawnEvent.class got resource net/minecraftforge/event/entity/player/PlayerSetSpawnEvent.class true
[07Feb2019 20:07:19.970] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerFlyableFallEvent.class got resource net/minecraftforge/event/entity/player/PlayerFlyableFallEvent.class true
[07Feb2019 20:07:19.973] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingHealEvent.class got resource net/minecraftforge/event/entity/living/LivingHealEvent.class true
[07Feb2019 20:07:19.975] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerDropsEvent.class got resource net/minecraftforge/event/entity/player/PlayerDropsEvent.class true
[07Feb2019 20:07:19.978] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/SleepingTimeCheckEvent.class got resource net/minecraftforge/event/entity/player/SleepingTimeCheckEvent.class true
[07Feb2019 20:07:19.981] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerDestroyItemEvent.class got resource net/minecraftforge/event/entity/player/PlayerDestroyItemEvent.class true
[07Feb2019 20:07:19.984] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck.class got resource net/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck.class true
[07Feb2019 20:07:19.987] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/PlayerSleepInBedEvent.class got resource net/minecraftforge/event/entity/player/PlayerSleepInBedEvent.class true
[07Feb2019 20:07:19.989] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/SleepingLocationCheckEvent.class got resource net/minecraftforge/event/entity/player/SleepingLocationCheckEvent.class true
[07Feb2019 20:07:19.992] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingExperienceDropEvent.class got resource net/minecraftforge/event/entity/living/LivingExperienceDropEvent.class true
[07Feb2019 20:07:19.995] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/EntityItemPickupEvent.class got resource net/minecraftforge/event/entity/player/EntityItemPickupEvent.class true
[07Feb2019 20:07:19.997] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop.class got resource net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop.class true
[07Feb2019 20:07:20.000] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent.class got resource net/minecraftforge/event/entity/living/LivingEntityUseItemEvent.class true
[07Feb2019 20:07:20.003] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick.class got resource net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick.class true
[07Feb2019 20:07:20.005] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start.class got resource net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start.class true
[07Feb2019 20:07:20.008] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish.class got resource net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish.class true
[07Feb2019 20:07:20.011] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityMountEvent.class got resource net/minecraftforge/event/entity/EntityMountEvent.class true
[07Feb2019 20:07:20.013] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/brewing/PotionBrewEvent$Pre.class got resource net/minecraftforge/event/brewing/PotionBrewEvent$Pre.class true
[07Feb2019 20:07:20.016] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/brewing/PotionBrewEvent.class got resource net/minecraftforge/event/brewing/PotionBrewEvent.class true
[07Feb2019 20:07:20.018] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingDestroyBlockEvent.class got resource net/minecraftforge/event/entity/living/LivingDestroyBlockEvent.class true
[07Feb2019 20:07:20.021] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingSpawnEvent$AllowDespawn.class got resource net/minecraftforge/event/entity/living/LivingSpawnEvent$AllowDespawn.class true
[07Feb2019 20:07:20.024] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/brewing/PotionBrewEvent$Post.class got resource net/minecraftforge/event/brewing/PotionBrewEvent$Post.class true
[07Feb2019 20:07:20.026] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/LivingSpawnEvent$SpecialSpawn.class got resource net/minecraftforge/event/entity/living/LivingSpawnEvent$SpecialSpawn.class true
[07Feb2019 20:07:20.029] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/ArrowLooseEvent.class got resource net/minecraftforge/event/entity/player/ArrowLooseEvent.class true
[07Feb2019 20:07:20.032] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/UseHoeEvent.class got resource net/minecraftforge/event/entity/player/UseHoeEvent.class true
[07Feb2019 20:07:20.034] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/ArrowNockEvent.class got resource net/minecraftforge/event/entity/player/ArrowNockEvent.class true
[07Feb2019 20:07:20.037] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/FillBucketEvent.class got resource net/minecraftforge/event/entity/player/FillBucketEvent.class true
[07Feb2019 20:07:20.040] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/player/BonemealEvent.class got resource net/minecraftforge/event/entity/player/BonemealEvent.class true
[07Feb2019 20:07:20.044] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/MinecraftForge.class got resource net/minecraftforge/common/MinecraftForge.class true
[07Feb2019 20:07:20.050] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeInternalHandler.class got resource net/minecraftforge/common/ForgeInternalHandler.class true
[07Feb2019 20:07:20.053] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/potion/PotionBrewing$MixPredicate.class got resource net/minecraft/potion/PotionBrewing$MixPredicate.class true
[07Feb2019 20:07:20.056] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/PotionTypes.class got resource net/minecraft/init/PotionTypes.class true
[07Feb2019 20:07:20.060] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/WorldCarver.class got resource net/minecraft/world/gen/carver/WorldCarver.class true
[07Feb2019 20:07:20.063] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/IWorldCarver.class got resource net/minecraft/world/gen/carver/IWorldCarver.class true
[07Feb2019 20:07:20.065] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/CaveWorldCarver.class got resource net/minecraft/world/gen/carver/CaveWorldCarver.class true
[07Feb2019 20:07:20.068] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/NetherCaveWorldCarver.class got resource net/minecraft/world/gen/carver/NetherCaveWorldCarver.class true
[07Feb2019 20:07:20.071] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/CanyonWorldCarver.class got resource net/minecraft/world/gen/carver/CanyonWorldCarver.class true
[07Feb2019 20:07:20.074] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/UnderwaterCanyonWorldCarver.class got resource net/minecraft/world/gen/carver/UnderwaterCanyonWorldCarver.class true
[07Feb2019 20:07:20.077] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/UnderwaterCaveWorldCarver.class got resource net/minecraft/world/gen/carver/UnderwaterCaveWorldCarver.class true
[07Feb2019 20:07:20.079] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/BasePlacement.class got resource net/minecraft/world/gen/placement/BasePlacement.class true
[07Feb2019 20:07:20.082] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurface.class got resource net/minecraft/world/gen/placement/AtSurface.class true
[07Feb2019 20:07:20.084] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolid.class got resource net/minecraft/world/gen/placement/TopSolid.class true
[07Feb2019 20:07:20.086] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/SurfacePlus32.class got resource net/minecraft/world/gen/placement/SurfacePlus32.class true
[07Feb2019 20:07:20.089] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TwiceSurface.class got resource net/minecraft/world/gen/placement/TwiceSurface.class true
[07Feb2019 20:07:20.092] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtHeight64.class got resource net/minecraft/world/gen/placement/AtHeight64.class true
[07Feb2019 20:07:20.094] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/SurfacePlus32WithNoise.class got resource net/minecraft/world/gen/placement/SurfacePlus32WithNoise.class true
[07Feb2019 20:07:20.096] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TwiceSurfaceWithNoise.class got resource net/minecraft/world/gen/placement/TwiceSurfaceWithNoise.class true
[07Feb2019 20:07:20.099] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/Passthrough.class got resource net/minecraft/world/gen/placement/Passthrough.class true
[07Feb2019 20:07:20.102] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurfaceWithChance.class got resource net/minecraft/world/gen/placement/AtSurfaceWithChance.class true
[07Feb2019 20:07:20.104] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TwiceSurfaceWithChance.class got resource net/minecraft/world/gen/placement/TwiceSurfaceWithChance.class true
[07Feb2019 20:07:20.108] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/WithChance.class got resource net/minecraft/world/gen/placement/WithChance.class true
[07Feb2019 20:07:20.111] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolidWithChance.class got resource net/minecraft/world/gen/placement/TopSolidWithChance.class true
[07Feb2019 20:07:20.114] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurfaceWithExtra.class got resource net/minecraft/world/gen/placement/AtSurfaceWithExtra.class true
[07Feb2019 20:07:20.117] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/CountRange.class got resource net/minecraft/world/gen/placement/CountRange.class true
[07Feb2019 20:07:20.119] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/HeightBiasedRange.class got resource net/minecraft/world/gen/placement/HeightBiasedRange.class true
[07Feb2019 20:07:20.343] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/HeightVeryBiasedRange.class got resource net/minecraft/world/gen/placement/HeightVeryBiasedRange.class true
[07Feb2019 20:07:20.345] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/RandomCountWithRange.class got resource net/minecraft/world/gen/placement/RandomCountWithRange.class true
[07Feb2019 20:07:20.347] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/ChanceRange.class got resource net/minecraft/world/gen/placement/ChanceRange.class true
[07Feb2019 20:07:20.349] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurfaceWithChanceMultiple.class got resource net/minecraft/world/gen/placement/AtSurfaceWithChanceMultiple.class true
[07Feb2019 20:07:20.351] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TwiceSurfaceWithChanceMultiple.class got resource net/minecraft/world/gen/placement/TwiceSurfaceWithChanceMultiple.class true
[07Feb2019 20:07:20.354] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/DepthAverage.class got resource net/minecraft/world/gen/placement/DepthAverage.class true
[07Feb2019 20:07:20.356] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolidOnce.class got resource net/minecraft/world/gen/placement/TopSolidOnce.class true
[07Feb2019 20:07:20.358] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolidRange.class got resource net/minecraft/world/gen/placement/TopSolidRange.class true
[07Feb2019 20:07:20.360] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolidWithNoise.class got resource net/minecraft/world/gen/placement/TopSolidWithNoise.class true
[07Feb2019 20:07:20.362] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/CaveEdge.class got resource net/minecraft/world/gen/placement/CaveEdge.class true
[07Feb2019 20:07:20.364] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurfaceRandomCount.class got resource net/minecraft/world/gen/placement/AtSurfaceRandomCount.class true
[07Feb2019 20:07:20.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/NetherFire.class got resource net/minecraft/world/gen/placement/NetherFire.class true
[07Feb2019 20:07:20.369] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/NetherMagma.class got resource net/minecraft/world/gen/placement/NetherMagma.class true
[07Feb2019 20:07:20.371] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/Height4To32.class got resource net/minecraft/world/gen/placement/Height4To32.class true
[07Feb2019 20:07:20.374] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/LakeLava.class got resource net/minecraft/world/gen/placement/LakeLava.class true
[07Feb2019 20:07:20.376] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/LakeWater.class got resource net/minecraft/world/gen/placement/LakeWater.class true
[07Feb2019 20:07:20.379] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/DungeonRoom.class got resource net/minecraft/world/gen/placement/DungeonRoom.class true
[07Feb2019 20:07:20.382] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/RoofedTree.class got resource net/minecraft/world/gen/placement/RoofedTree.class true
[07Feb2019 20:07:20.384] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/IcebergPlacement.class got resource net/minecraft/world/gen/placement/IcebergPlacement.class true
[07Feb2019 20:07:20.387] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/NetherGlowstone.class got resource net/minecraft/world/gen/placement/NetherGlowstone.class true
[07Feb2019 20:07:20.389] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/EndSpikes.class got resource net/minecraft/world/gen/placement/EndSpikes.class true
[07Feb2019 20:07:20.391] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/EndIsland.class got resource net/minecraft/world/gen/placement/EndIsland.class true
[07Feb2019 20:07:20.394] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/ChorusPlant.class got resource net/minecraft/world/gen/placement/ChorusPlant.class true
[07Feb2019 20:07:20.398] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/EndGateway.class got resource net/minecraft/world/gen/placement/EndGateway.class true
[07Feb2019 20:07:20.401] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/ISurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/ISurfaceBuilder.class true
[07Feb2019 20:07:20.404] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/SharedSeedRandom.class got resource net/minecraft/util/SharedSeedRandom.class true
[07Feb2019 20:07:20.407] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/IPlacementConfig.class got resource net/minecraft/world/gen/placement/IPlacementConfig.class true
[07Feb2019 20:07:20.409] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/Structure.class got resource net/minecraft/world/gen/feature/structure/Structure.class true
[07Feb2019 20:07:20.412] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/OceanBiome.class got resource net/minecraft/world/biome/OceanBiome.class true
[07Feb2019 20:07:20.415] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/PlainsBiome.class got resource net/minecraft/world/biome/PlainsBiome.class true
[07Feb2019 20:07:20.419] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DesertBiome.class got resource net/minecraft/world/biome/DesertBiome.class true
[07Feb2019 20:07:20.422] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/MountainsBiome.class got resource net/minecraft/world/biome/MountainsBiome.class true
[07Feb2019 20:07:20.426] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ForestBiome.class got resource net/minecraft/world/biome/ForestBiome.class true
[07Feb2019 20:07:20.429] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TaigaBiome.class got resource net/minecraft/world/biome/TaigaBiome.class true
[07Feb2019 20:07:20.433] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SwampBiome.class got resource net/minecraft/world/biome/SwampBiome.class true
[07Feb2019 20:07:20.436] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/RiverBiome.class got resource net/minecraft/world/biome/RiverBiome.class true
[07Feb2019 20:07:20.440] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/NetherBiome.class got resource net/minecraft/world/biome/NetherBiome.class true
[07Feb2019 20:07:20.443] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TheEndBiome.class got resource net/minecraft/world/biome/TheEndBiome.class true
[07Feb2019 20:07:20.446] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/FrozenOceanBiome.class got resource net/minecraft/world/biome/FrozenOceanBiome.class true
[07Feb2019 20:07:20.449] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/FrozenRiverBiome.class got resource net/minecraft/world/biome/FrozenRiverBiome.class true
[07Feb2019 20:07:20.452] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyTundraBiome.class got resource net/minecraft/world/biome/SnowyTundraBiome.class true
[07Feb2019 20:07:20.455] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyMountainsBiome.class got resource net/minecraft/world/biome/SnowyMountainsBiome.class true
[07Feb2019 20:07:20.458] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/MushroomFieldsBiome.class got resource net/minecraft/world/biome/MushroomFieldsBiome.class true
[07Feb2019 20:07:20.462] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/MushroomFieldShoreBiome.class got resource net/minecraft/world/biome/MushroomFieldShoreBiome.class true
[07Feb2019 20:07:20.465] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BeachBiome.class got resource net/minecraft/world/biome/BeachBiome.class true
[07Feb2019 20:07:20.468] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DesertHillsBiome.class got resource net/minecraft/world/biome/DesertHillsBiome.class true
[07Feb2019 20:07:20.472] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/WoodedHillsBiome.class got resource net/minecraft/world/biome/WoodedHillsBiome.class true
[07Feb2019 20:07:20.476] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TaigaHillsBiome.class got resource net/minecraft/world/biome/TaigaHillsBiome.class true
[07Feb2019 20:07:20.479] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/MountainEdgeBiome.class got resource net/minecraft/world/biome/MountainEdgeBiome.class true
[07Feb2019 20:07:20.482] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/JungleBiome.class got resource net/minecraft/world/biome/JungleBiome.class true
[07Feb2019 20:07:20.485] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/JungleHillsBiome.class got resource net/minecraft/world/biome/JungleHillsBiome.class true
[07Feb2019 20:07:20.488] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/JungleEdgeBiome.class got resource net/minecraft/world/biome/JungleEdgeBiome.class true
[07Feb2019 20:07:20.492] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DeepOceanBiome.class got resource net/minecraft/world/biome/DeepOceanBiome.class true
[07Feb2019 20:07:20.495] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/StoneShoreBiome.class got resource net/minecraft/world/biome/StoneShoreBiome.class true
[07Feb2019 20:07:20.498] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyBeachBiome.class got resource net/minecraft/world/biome/SnowyBeachBiome.class true
[07Feb2019 20:07:20.501] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BirchForestBiome.class got resource net/minecraft/world/biome/BirchForestBiome.class true
[07Feb2019 20:07:20.504] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BirchForestHillsBiome.class got resource net/minecraft/world/biome/BirchForestHillsBiome.class true
[07Feb2019 20:07:20.507] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DarkForestBiome.class got resource net/minecraft/world/biome/DarkForestBiome.class true
[07Feb2019 20:07:20.511] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyTaigaBiome.class got resource net/minecraft/world/biome/SnowyTaigaBiome.class true
[07Feb2019 20:07:20.514] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyTaigaHillsBiome.class got resource net/minecraft/world/biome/SnowyTaigaHillsBiome.class true
[07Feb2019 20:07:20.517] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/GiantTreeTaigaBiome.class got resource net/minecraft/world/biome/GiantTreeTaigaBiome.class true
[07Feb2019 20:07:20.520] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/GiantTreeTaigaHillsBiome.class got resource net/minecraft/world/biome/GiantTreeTaigaHillsBiome.class true
[07Feb2019 20:07:20.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/WoodedMountainsBiome.class got resource net/minecraft/world/biome/WoodedMountainsBiome.class true
[07Feb2019 20:07:20.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SavannaBiome.class got resource net/minecraft/world/biome/SavannaBiome.class true
[07Feb2019 20:07:20.530] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SavannaPlateauBiome.class got resource net/minecraft/world/biome/SavannaPlateauBiome.class true
[07Feb2019 20:07:20.533] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BadlandsBiome.class got resource net/minecraft/world/biome/BadlandsBiome.class true
[07Feb2019 20:07:20.536] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/WoodedBadlandsPlateauBiome.class got resource net/minecraft/world/biome/WoodedBadlandsPlateauBiome.class true
[07Feb2019 20:07:20.539] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BadlandsPlateauBiome.class got resource net/minecraft/world/biome/BadlandsPlateauBiome.class true
[07Feb2019 20:07:20.542] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SmallEndIslandsBiome.class got resource net/minecraft/world/biome/SmallEndIslandsBiome.class true
[07Feb2019 20:07:20.545] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/EndMidlandsBiome.class got resource net/minecraft/world/biome/EndMidlandsBiome.class true
[07Feb2019 20:07:20.548] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/EndHighlandsBiome.class got resource net/minecraft/world/biome/EndHighlandsBiome.class true
[07Feb2019 20:07:20.551] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/EndBarrensBiome.class got resource net/minecraft/world/biome/EndBarrensBiome.class true
[07Feb2019 20:07:20.554] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/WarmOceanBiome.class got resource net/minecraft/world/biome/WarmOceanBiome.class true
[07Feb2019 20:07:20.557] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/LukewarmOceanBiome.class got resource net/minecraft/world/biome/LukewarmOceanBiome.class true
[07Feb2019 20:07:20.560] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ColdOceanBiome.class got resource net/minecraft/world/biome/ColdOceanBiome.class true
[07Feb2019 20:07:20.564] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DeepWarmOceanBiome.class got resource net/minecraft/world/biome/DeepWarmOceanBiome.class true
[07Feb2019 20:07:20.567] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DeepLukewarmOceanBiome.class got resource net/minecraft/world/biome/DeepLukewarmOceanBiome.class true
[07Feb2019 20:07:20.570] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DeepColdOceanBiome.class got resource net/minecraft/world/biome/DeepColdOceanBiome.class true
[07Feb2019 20:07:20.573] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DeepFrozenOceanBiome.class got resource net/minecraft/world/biome/DeepFrozenOceanBiome.class true
[07Feb2019 20:07:20.577] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TheVoidBiome.class got resource net/minecraft/world/biome/TheVoidBiome.class true
[07Feb2019 20:07:20.580] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SunflowerPlainsBiome.class got resource net/minecraft/world/biome/SunflowerPlainsBiome.class true
[07Feb2019 20:07:20.583] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DesertLakesBiome.class got resource net/minecraft/world/biome/DesertLakesBiome.class true
[07Feb2019 20:07:20.586] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/GravellyMountainsBiome.class got resource net/minecraft/world/biome/GravellyMountainsBiome.class true
[07Feb2019 20:07:20.589] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/FlowerForestBiome.class got resource net/minecraft/world/biome/FlowerForestBiome.class true
[07Feb2019 20:07:20.592] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TaigaMountainsBiome.class got resource net/minecraft/world/biome/TaigaMountainsBiome.class true
[07Feb2019 20:07:20.596] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SwampHillsBiome.class got resource net/minecraft/world/biome/SwampHillsBiome.class true
[07Feb2019 20:07:20.599] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/IceSpikesBiome.class got resource net/minecraft/world/biome/IceSpikesBiome.class true
[07Feb2019 20:07:20.602] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ModifiedJungleBiome.class got resource net/minecraft/world/biome/ModifiedJungleBiome.class true
[07Feb2019 20:07:20.605] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ModifiedJungleEdgeBiome.class got resource net/minecraft/world/biome/ModifiedJungleEdgeBiome.class true
[07Feb2019 20:07:20.608] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TallBirchForestBiome.class got resource net/minecraft/world/biome/TallBirchForestBiome.class true
[07Feb2019 20:07:20.611] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/TallBirchHillsBiome.class got resource net/minecraft/world/biome/TallBirchHillsBiome.class true
[07Feb2019 20:07:20.614] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/DarkForestHillsBiome.class got resource net/minecraft/world/biome/DarkForestHillsBiome.class true
[07Feb2019 20:07:20.618] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/SnowyTaigaMountainsBiome.class got resource net/minecraft/world/biome/SnowyTaigaMountainsBiome.class true
[07Feb2019 20:07:20.621] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/GiantSpruceTaigaBiome.class got resource net/minecraft/world/biome/GiantSpruceTaigaBiome.class true
[07Feb2019 20:07:20.624] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/GiantSpruceTaigaHillsBiome.class got resource net/minecraft/world/biome/GiantSpruceTaigaHillsBiome.class true
[07Feb2019 20:07:20.627] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ModifiedGravellyMountainsBiome.class got resource net/minecraft/world/biome/ModifiedGravellyMountainsBiome.class true
[07Feb2019 20:07:20.631] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ShatteredSavannaBiome.class got resource net/minecraft/world/biome/ShatteredSavannaBiome.class true
[07Feb2019 20:07:20.634] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ShatteredSavannaPlateauBiome.class got resource net/minecraft/world/biome/ShatteredSavannaPlateauBiome.class true
[07Feb2019 20:07:20.637] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ErodedBadlandsBiome.class got resource net/minecraft/world/biome/ErodedBadlandsBiome.class true
[07Feb2019 20:07:20.641] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ModifiedWoodedBadlandsPlateauBiome.class got resource net/minecraft/world/biome/ModifiedWoodedBadlandsPlateauBiome.class true
[07Feb2019 20:07:20.644] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/ModifiedBadlandsPlateauBiome.class got resource net/minecraft/world/biome/ModifiedBadlandsPlateauBiome.class true
[07Feb2019 20:07:20.653] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/EndSpikes$CacheLoader.class got resource net/minecraft/world/gen/placement/EndSpikes$CacheLoader.class true
[07Feb2019 20:07:20.673] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/SurfaceBuilderConfig.class got resource net/minecraft/world/gen/surfacebuilders/SurfaceBuilderConfig.class true
[07Feb2019 20:07:20.676] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/ISurfaceBuilderConfig.class got resource net/minecraft/world/gen/surfacebuilders/ISurfaceBuilderConfig.class true
[07Feb2019 20:07:20.678] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/DefaultSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/DefaultSurfaceBuilder.class true
[07Feb2019 20:07:20.681] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/ExtremeHillsSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/ExtremeHillsSurfaceBuilder.class true
[07Feb2019 20:07:20.684] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/SavanaMutatedSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/SavanaMutatedSurfaceBuilder.class true
[07Feb2019 20:07:20.686] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/ExtremeHillsMutatedSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/ExtremeHillsMutatedSurfaceBuilder.class true
[07Feb2019 20:07:20.689] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/TaigaMegaSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/TaigaMegaSurfaceBuilder.class true
[07Feb2019 20:07:20.692] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/SwampSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/SwampSurfaceBuilder.class true
[07Feb2019 20:07:20.694] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/MesaSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/MesaSurfaceBuilder.class true
[07Feb2019 20:07:20.697] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/MesaForestSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/MesaForestSurfaceBuilder.class true
[07Feb2019 20:07:20.701] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/MesaBryceSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/MesaBryceSurfaceBuilder.class true
[07Feb2019 20:07:20.703] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/FrozenOceanSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/FrozenOceanSurfaceBuilder.class true
[07Feb2019 20:07:20.706] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/NetherSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/NetherSurfaceBuilder.class true
[07Feb2019 20:07:20.709] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/NoopSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/NoopSurfaceBuilder.class true
[07Feb2019 20:07:20.711] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NoiseGeneratorPerlin.class got resource net/minecraft/world/gen/NoiseGeneratorPerlin.class true
[07Feb2019 20:07:20.714] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NoiseGenerator.class got resource net/minecraft/world/gen/NoiseGenerator.class true
[07Feb2019 20:07:20.716] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NoiseGeneratorSimplex.class got resource net/minecraft/world/gen/NoiseGeneratorSimplex.class true
[07Feb2019 20:07:20.720] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CompositeFeature.class got resource net/minecraft/world/gen/feature/CompositeFeature.class true
[07Feb2019 20:07:20.722] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CompositeFlowerFeature.class got resource net/minecraft/world/gen/feature/CompositeFlowerFeature.class true
[07Feb2019 20:07:20.725] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/Biome$BiomeBuilder.class got resource net/minecraft/world/biome/Biome$BiomeBuilder.class true
[07Feb2019 20:07:20.729] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/surfacebuilders/CompositeSurfaceBuilder.class got resource net/minecraft/world/gen/surfacebuilders/CompositeSurfaceBuilder.class true
[07Feb2019 20:07:20.731] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/Biome$RainType.class got resource net/minecraft/world/biome/Biome$RainType.class true
[07Feb2019 20:07:20.734] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/Biome$Category.class got resource net/minecraft/world/biome/Biome$Category.class true
[07Feb2019 20:07:20.736] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/GenerationStage$Decoration.class got resource net/minecraft/world/gen/GenerationStage$Decoration.class true
[07Feb2019 20:07:20.739] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EnumCreatureType.class got resource net/minecraft/entity/EnumCreatureType.class true
[07Feb2019 20:07:20.742] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillageStructure.class got resource net/minecraft/world/gen/feature/structure/VillageStructure.class true
[07Feb2019 20:07:20.744] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftStructure.class got resource net/minecraft/world/gen/feature/structure/MineshaftStructure.class true
[07Feb2019 20:07:20.747] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/WoodlandMansionStructure.class got resource net/minecraft/world/gen/feature/structure/WoodlandMansionStructure.class true
[07Feb2019 20:07:20.750] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/JunglePyramidStructure.class got resource net/minecraft/world/gen/feature/structure/JunglePyramidStructure.class true
[07Feb2019 20:07:20.752] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ScatteredStructure.class got resource net/minecraft/world/gen/feature/structure/ScatteredStructure.class true
[07Feb2019 20:07:20.755] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/DesertPyramidStructure.class got resource net/minecraft/world/gen/feature/structure/DesertPyramidStructure.class true
[07Feb2019 20:07:20.757] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/IglooStructure.class got resource net/minecraft/world/gen/feature/structure/IglooStructure.class true
[07Feb2019 20:07:20.760] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ShipwreckStructure.class got resource net/minecraft/world/gen/feature/structure/ShipwreckStructure.class true
[07Feb2019 20:07:20.763] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/SwampHutStructure.class got resource net/minecraft/world/gen/feature/structure/SwampHutStructure.class true
[07Feb2019 20:07:20.766] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdStructure.class got resource net/minecraft/world/gen/feature/structure/StrongholdStructure.class true
[07Feb2019 20:07:20.769] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentStructure.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentStructure.class true
[07Feb2019 20:07:20.772] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinStructure.class got resource net/minecraft/world/gen/feature/structure/OceanRuinStructure.class true
[07Feb2019 20:07:20.774] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressStructure.class got resource net/minecraft/world/gen/feature/structure/FortressStructure.class true
[07Feb2019 20:07:20.777] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityStructure.class got resource net/minecraft/world/gen/feature/structure/EndCityStructure.class true
[07Feb2019 20:07:20.779] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/BuriedTreasureStructure.class got resource net/minecraft/world/gen/feature/structure/BuriedTreasureStructure.class true
[07Feb2019 20:07:20.782] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ShrubFeature.class got resource net/minecraft/world/gen/feature/ShrubFeature.class true
[07Feb2019 20:07:20.784] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/PointyTaigaTreeFeature.class got resource net/minecraft/world/gen/feature/PointyTaigaTreeFeature.class true
[07Feb2019 20:07:20.787] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SwampTreeFeature.class got resource net/minecraft/world/gen/feature/SwampTreeFeature.class true
[07Feb2019 20:07:20.790] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/AbstractFlowersFeature.class got resource net/minecraft/world/gen/feature/AbstractFlowersFeature.class true
[07Feb2019 20:07:20.792] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DefaultFlowersFeature.class got resource net/minecraft/world/gen/feature/DefaultFlowersFeature.class true
[07Feb2019 20:07:20.794] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ForestFlowersFeature.class got resource net/minecraft/world/gen/feature/ForestFlowersFeature.class true
[07Feb2019 20:07:20.797] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/PlainsFlowersFeature.class got resource net/minecraft/world/gen/feature/PlainsFlowersFeature.class true
[07Feb2019 20:07:20.799] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SwampFlowersFeature.class got resource net/minecraft/world/gen/feature/SwampFlowersFeature.class true
[07Feb2019 20:07:20.801] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/JungleGrassFeature.class got resource net/minecraft/world/gen/feature/JungleGrassFeature.class true
[07Feb2019 20:07:20.804] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TaigaGrassFeature.class got resource net/minecraft/world/gen/feature/TaigaGrassFeature.class true
[07Feb2019 20:07:20.807] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TallGrassFeature.class got resource net/minecraft/world/gen/feature/TallGrassFeature.class true
[07Feb2019 20:07:20.809] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/VoidStartPlatformFeature.class got resource net/minecraft/world/gen/feature/VoidStartPlatformFeature.class true
[07Feb2019 20:07:20.812] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CactusFeature.class got resource net/minecraft/world/gen/feature/CactusFeature.class true
[07Feb2019 20:07:20.814] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DeadBushFeature.class got resource net/minecraft/world/gen/feature/DeadBushFeature.class true
[07Feb2019 20:07:20.817] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DesertWellsFeature.class got resource net/minecraft/world/gen/feature/DesertWellsFeature.class true
[07Feb2019 20:07:20.820] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/FossilsFeature.class got resource net/minecraft/world/gen/feature/FossilsFeature.class true
[07Feb2019 20:07:20.823] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/FireFeature.class got resource net/minecraft/world/gen/feature/FireFeature.class true
[07Feb2019 20:07:20.826] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BigRedMushroomFeature.class got resource net/minecraft/world/gen/feature/BigRedMushroomFeature.class true
[07Feb2019 20:07:20.829] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BigBrownMushroomFeature.class got resource net/minecraft/world/gen/feature/BigBrownMushroomFeature.class true
[07Feb2019 20:07:20.832] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IceSpikeFeature.class got resource net/minecraft/world/gen/feature/IceSpikeFeature.class true
[07Feb2019 20:07:20.835] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/GlowStoneFeature.class got resource net/minecraft/world/gen/feature/GlowStoneFeature.class true
[07Feb2019 20:07:20.838] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/MelonFeature.class got resource net/minecraft/world/gen/feature/MelonFeature.class true
[07Feb2019 20:07:20.841] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/PumpkinFeature.class got resource net/minecraft/world/gen/feature/PumpkinFeature.class true
[07Feb2019 20:07:20.844] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ReedFeature.class got resource net/minecraft/world/gen/feature/ReedFeature.class true
[07Feb2019 20:07:20.847] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IceAndSnowFeature.class got resource net/minecraft/world/gen/feature/IceAndSnowFeature.class true
[07Feb2019 20:07:20.851] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/VinesFeature.class got resource net/minecraft/world/gen/feature/VinesFeature.class true
[07Feb2019 20:07:20.854] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/WaterlilyFeature.class got resource net/minecraft/world/gen/feature/WaterlilyFeature.class true
[07Feb2019 20:07:20.857] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DungeonsFeature.class got resource net/minecraft/world/gen/feature/DungeonsFeature.class true
[07Feb2019 20:07:20.860] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BlueIceFeature.class got resource net/minecraft/world/gen/feature/BlueIceFeature.class true
[07Feb2019 20:07:20.864] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IcebergFeature.class got resource net/minecraft/world/gen/feature/IcebergFeature.class true
[07Feb2019 20:07:20.867] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BlockBlobFeature.class got resource net/minecraft/world/gen/feature/BlockBlobFeature.class true
[07Feb2019 20:07:20.871] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BushFeature.class got resource net/minecraft/world/gen/feature/BushFeature.class true
[07Feb2019 20:07:20.874] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SphereReplaceFeature.class got resource net/minecraft/world/gen/feature/SphereReplaceFeature.class true
[07Feb2019 20:07:20.877] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DoublePlantFeature.class got resource net/minecraft/world/gen/feature/DoublePlantFeature.class true
[07Feb2019 20:07:20.880] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/HellLavaFeature.class got resource net/minecraft/world/gen/feature/HellLavaFeature.class true
[07Feb2019 20:07:20.883] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IcePathFeature.class got resource net/minecraft/world/gen/feature/IcePathFeature.class true
[07Feb2019 20:07:20.886] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/LakesFeature.class got resource net/minecraft/world/gen/feature/LakesFeature.class true
[07Feb2019 20:07:20.889] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/MinableFeature.class got resource net/minecraft/world/gen/feature/MinableFeature.class true
[07Feb2019 20:07:20.892] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomDefaultFeatureList.class got resource net/minecraft/world/gen/feature/RandomDefaultFeatureList.class true
[07Feb2019 20:07:20.895] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomFeatureList.class got resource net/minecraft/world/gen/feature/RandomFeatureList.class true
[07Feb2019 20:07:20.897] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomFeatureWithConfigFeature.class got resource net/minecraft/world/gen/feature/RandomFeatureWithConfigFeature.class true
[07Feb2019 20:07:20.900] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TwoFeatureChoiceFeature.class got resource net/minecraft/world/gen/feature/TwoFeatureChoiceFeature.class true
[07Feb2019 20:07:20.903] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ReplaceBlockFeature.class got resource net/minecraft/world/gen/feature/ReplaceBlockFeature.class true
[07Feb2019 20:07:20.905] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/LiquidsFeature.class got resource net/minecraft/world/gen/feature/LiquidsFeature.class true
[07Feb2019 20:07:20.908] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/EndCrystalTowerFeature.class got resource net/minecraft/world/gen/feature/EndCrystalTowerFeature.class true
[07Feb2019 20:07:20.910] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/EndIslandFeature.class got resource net/minecraft/world/gen/feature/EndIslandFeature.class true
[07Feb2019 20:07:20.913] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ChorusPlantFeature.class got resource net/minecraft/world/gen/feature/ChorusPlantFeature.class true
[07Feb2019 20:07:20.916] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/EndGatewayFeature.class got resource net/minecraft/world/gen/feature/EndGatewayFeature.class true
[07Feb2019 20:07:20.918] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SeaGrassFeature.class got resource net/minecraft/world/gen/feature/SeaGrassFeature.class true
[07Feb2019 20:07:20.921] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/KelpFeature.class got resource net/minecraft/world/gen/feature/KelpFeature.class true
[07Feb2019 20:07:20.924] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CoralTreeFeature.class got resource net/minecraft/world/gen/feature/CoralTreeFeature.class true
[07Feb2019 20:07:20.927] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CoralFeature.class got resource net/minecraft/world/gen/feature/CoralFeature.class true
[07Feb2019 20:07:20.929] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CoralMushroomFeature.class got resource net/minecraft/world/gen/feature/CoralMushroomFeature.class true
[07Feb2019 20:07:21.151] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/CoralClawFeature.class got resource net/minecraft/world/gen/feature/CoralClawFeature.class true
[07Feb2019 20:07:21.155] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SeaPickleFeature.class got resource net/minecraft/world/gen/feature/SeaPickleFeature.class true
[07Feb2019 20:07:21.157] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BlockWithContextFeature.class got resource net/minecraft/world/gen/feature/BlockWithContextFeature.class true
[07Feb2019 20:07:21.162] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StructureStart.class got resource net/minecraft/world/gen/feature/structure/StructureStart.class true
[07Feb2019 20:07:21.165] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/Structure$1.class got resource net/minecraft/world/gen/feature/structure/Structure$1.class true
[07Feb2019 20:07:21.168] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillageStructure$Start.class got resource net/minecraft/world/gen/feature/structure/VillageStructure$Start.class true
[07Feb2019 20:07:21.172] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftStructure$Start.class got resource net/minecraft/world/gen/feature/structure/MineshaftStructure$Start.class true
[07Feb2019 20:07:21.174] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/WoodlandMansionStructure$Start.class got resource net/minecraft/world/gen/feature/structure/WoodlandMansionStructure$Start.class true
[07Feb2019 20:07:21.176] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/JunglePyramidStructure$Start.class got resource net/minecraft/world/gen/feature/structure/JunglePyramidStructure$Start.class true
[07Feb2019 20:07:21.179] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/DesertPyramidStructure$Start.class got resource net/minecraft/world/gen/feature/structure/DesertPyramidStructure$Start.class true
[07Feb2019 20:07:21.181] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/IglooStructure$Start.class got resource net/minecraft/world/gen/feature/structure/IglooStructure$Start.class true
[07Feb2019 20:07:21.184] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ShipwreckStructure$Start.class got resource net/minecraft/world/gen/feature/structure/ShipwreckStructure$Start.class true
[07Feb2019 20:07:21.187] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/SwampHutStructure$Start.class got resource net/minecraft/world/gen/feature/structure/SwampHutStructure$Start.class true
[07Feb2019 20:07:21.189] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/Biome$SpawnListEntry.class got resource net/minecraft/world/biome/Biome$SpawnListEntry.class true
[07Feb2019 20:07:21.191] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/WeightedRandom$Item.class got resource net/minecraft/util/WeightedRandom$Item.class true
[07Feb2019 20:07:21.193] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdStructure$Start.class got resource net/minecraft/world/gen/feature/structure/StrongholdStructure$Start.class true
[07Feb2019 20:07:21.196] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentStructure$Start.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentStructure$Start.class true
[07Feb2019 20:07:21.199] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinStructure$Start.class got resource net/minecraft/world/gen/feature/structure/OceanRuinStructure$Start.class true
[07Feb2019 20:07:21.201] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressStructure$Start.class got resource net/minecraft/world/gen/feature/structure/FortressStructure$Start.class true
[07Feb2019 20:07:21.203] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/IChunk.class got resource net/minecraft/world/chunk/IChunk.class true
[07Feb2019 20:07:21.206] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityStructure$Start.class got resource net/minecraft/world/gen/feature/structure/EndCityStructure$Start.class true
[07Feb2019 20:07:21.209] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/BuriedTreasureStructure$Start.class got resource net/minecraft/world/gen/feature/structure/BuriedTreasureStructure$Start.class true
[07Feb2019 20:07:21.212] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BigTreeFeature$FoliageCoordinates.class got resource net/minecraft/world/gen/feature/BigTreeFeature$FoliageCoordinates.class true
[07Feb2019 20:07:21.214] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/JungleTreeFeature.class got resource net/minecraft/world/gen/feature/JungleTreeFeature.class true
[07Feb2019 20:07:21.217] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/MegaJungleFeature.class got resource net/minecraft/world/gen/feature/MegaJungleFeature.class true
[07Feb2019 20:07:21.221] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockStateMatcher.class got resource net/minecraft/block/state/pattern/BlockStateMatcher.class true
[07Feb2019 20:07:21.227] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftConfig.class got resource net/minecraft/world/gen/feature/structure/MineshaftConfig.class true
[07Feb2019 20:07:21.229] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftStructure$Type.class got resource net/minecraft/world/gen/feature/structure/MineshaftStructure$Type.class true
[07Feb2019 20:07:21.231] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ShipwreckConfig.class got resource net/minecraft/world/gen/feature/structure/ShipwreckConfig.class true
[07Feb2019 20:07:21.234] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinConfig.class got resource net/minecraft/world/gen/feature/structure/OceanRuinConfig.class true
[07Feb2019 20:07:21.236] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinStructure$Type.class got resource net/minecraft/world/gen/feature/structure/OceanRuinStructure$Type.class true
[07Feb2019 20:07:21.238] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/GenerationStage$Carving.class got resource net/minecraft/world/gen/GenerationStage$Carving.class true
[07Feb2019 20:07:21.240] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ProbabilityConfig.class got resource net/minecraft/world/gen/feature/ProbabilityConfig.class true
[07Feb2019 20:07:21.243] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/carver/WorldCarverWrapper.class got resource net/minecraft/world/gen/carver/WorldCarverWrapper.class true
[07Feb2019 20:07:21.245] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/NoPlacementConfig.class got resource net/minecraft/world/gen/placement/NoPlacementConfig.class true
[07Feb2019 20:07:21.248] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillageConfig.class got resource net/minecraft/world/gen/feature/structure/VillageConfig.class true
[07Feb2019 20:07:21.250] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Type.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Type.class true
[07Feb2019 20:07:21.252] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdConfig.class got resource net/minecraft/world/gen/feature/structure/StrongholdConfig.class true
[07Feb2019 20:07:21.254] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/SwampHutConfig.class got resource net/minecraft/world/gen/feature/structure/SwampHutConfig.class true
[07Feb2019 20:07:21.257] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/DesertPyramidConfig.class got resource net/minecraft/world/gen/feature/structure/DesertPyramidConfig.class true
[07Feb2019 20:07:21.259] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/JunglePyramidConfig.class got resource net/minecraft/world/gen/feature/structure/JunglePyramidConfig.class true
[07Feb2019 20:07:21.261] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/IglooConfig.class got resource net/minecraft/world/gen/feature/structure/IglooConfig.class true
[07Feb2019 20:07:21.264] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentConfig.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentConfig.class true
[07Feb2019 20:07:21.266] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/WoodlandMansionConfig.class got resource net/minecraft/world/gen/feature/structure/WoodlandMansionConfig.class true
[07Feb2019 20:07:21.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/BuriedTreasureConfig.class got resource net/minecraft/world/gen/feature/structure/BuriedTreasureConfig.class true
[07Feb2019 20:07:21.270] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/LakesConfig.class got resource net/minecraft/world/gen/feature/LakesConfig.class true
[07Feb2019 20:07:21.273] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/LakeChanceConfig.class got resource net/minecraft/world/gen/placement/LakeChanceConfig.class true
[07Feb2019 20:07:21.276] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/NoFeatureConfig.class got resource net/minecraft/world/gen/feature/NoFeatureConfig.class true
[07Feb2019 20:07:21.278] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/DungeonRoomConfig.class got resource net/minecraft/world/gen/placement/DungeonRoomConfig.class true
[07Feb2019 20:07:21.280] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/MinableConfig.class got resource net/minecraft/world/gen/feature/MinableConfig.class true
[07Feb2019 20:07:21.283] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/CountRangeConfig.class got resource net/minecraft/world/gen/placement/CountRangeConfig.class true
[07Feb2019 20:07:21.285] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/DepthAverageConfig.class got resource net/minecraft/world/gen/placement/DepthAverageConfig.class true
[07Feb2019 20:07:21.287] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SphereReplaceConfig.class got resource net/minecraft/world/gen/feature/SphereReplaceConfig.class true
[07Feb2019 20:07:21.290] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/FrequencyConfig.class got resource net/minecraft/world/gen/placement/FrequencyConfig.class true
[07Feb2019 20:07:21.292] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomDefaultFeatureListConfig.class got resource net/minecraft/world/gen/feature/RandomDefaultFeatureListConfig.class true
[07Feb2019 20:07:21.294] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/AtSurfaceWithExtraConfig.class got resource net/minecraft/world/gen/placement/AtSurfaceWithExtraConfig.class true
[07Feb2019 20:07:21.297] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TallGrassConfig.class got resource net/minecraft/world/gen/feature/TallGrassConfig.class true
[07Feb2019 20:07:21.299] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BushConfig.class got resource net/minecraft/world/gen/feature/BushConfig.class true
[07Feb2019 20:07:21.301] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/ChanceConfig.class got resource net/minecraft/world/gen/placement/ChanceConfig.class true
[07Feb2019 20:07:21.303] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/LiquidsConfig.class got resource net/minecraft/world/gen/feature/LiquidsConfig.class true
[07Feb2019 20:07:21.306] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/SeaGrassConfig.class got resource net/minecraft/world/gen/feature/SeaGrassConfig.class true
[07Feb2019 20:07:21.308] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BlockWithContextConfig.class got resource net/minecraft/world/gen/feature/BlockWithContextConfig.class true
[07Feb2019 20:07:21.310] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/CaveEdgeConfig.class got resource net/minecraft/world/gen/placement/CaveEdgeConfig.class true
[07Feb2019 20:07:21.312] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/TopSolidWithNoiseConfig.class got resource net/minecraft/world/gen/placement/TopSolidWithNoiseConfig.class true
[07Feb2019 20:07:21.316] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/DoublePlantConfig.class got resource net/minecraft/world/gen/feature/DoublePlantConfig.class true
[07Feb2019 20:07:21.318] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/NoiseDependant.class got resource net/minecraft/world/gen/placement/NoiseDependant.class true
[07Feb2019 20:07:21.321] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/ReplaceBlockConfig.class got resource net/minecraft/world/gen/feature/ReplaceBlockConfig.class true
[07Feb2019 20:07:21.324] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockMatcher.class got resource net/minecraft/block/state/pattern/BlockMatcher.class true
[07Feb2019 20:07:21.327] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomFeatureListConfig.class got resource net/minecraft/world/gen/feature/RandomFeatureListConfig.class true
[07Feb2019 20:07:21.330] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/HeightWithChanceConfig.class got resource net/minecraft/world/gen/placement/HeightWithChanceConfig.class true
[07Feb2019 20:07:21.334] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressConfig.class got resource net/minecraft/world/gen/feature/structure/FortressConfig.class true
[07Feb2019 20:07:21.336] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/HellLavaConfig.class got resource net/minecraft/world/gen/feature/HellLavaConfig.class true
[07Feb2019 20:07:21.339] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/ChanceRangeConfig.class got resource net/minecraft/world/gen/placement/ChanceRangeConfig.class true
[07Feb2019 20:07:21.342] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityConfig.class got resource net/minecraft/world/gen/feature/structure/EndCityConfig.class true
[07Feb2019 20:07:21.345] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/IcebergConfig.class got resource net/minecraft/world/gen/feature/IcebergConfig.class true
[07Feb2019 20:07:21.349] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/TwoFeatureChoiceConfig.class got resource net/minecraft/world/gen/feature/TwoFeatureChoiceConfig.class true
[07Feb2019 20:07:21.361] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/BlockBlobConfig.class got resource net/minecraft/world/gen/feature/BlockBlobConfig.class true
[07Feb2019 20:07:21.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/EndGatewayConfig.class got resource net/minecraft/world/gen/feature/EndGatewayConfig.class true
[07Feb2019 20:07:21.370] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/RandomFeatureWithConfigConfig.class got resource net/minecraft/world/gen/feature/RandomFeatureWithConfigConfig.class true
[07Feb2019 20:07:21.373] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/placement/CountConfig.class got resource net/minecraft/world/gen/placement/CountConfig.class true
[07Feb2019 20:07:21.382] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/FeatureRadiusConfig.class got resource net/minecraft/world/gen/feature/FeatureRadiusConfig.class true
[07Feb2019 20:07:21.392] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Biomes.class got resource net/minecraft/init/Biomes.class true
[07Feb2019 20:07:21.396] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityOptions.class got resource net/minecraft/command/arguments/EntityOptions.class true
[07Feb2019 20:07:21.401] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntitySelectorParser.class got resource net/minecraft/command/arguments/EntitySelectorParser.class true
[07Feb2019 20:07:21.405] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityOptions$Filter.class got resource net/minecraft/command/arguments/EntityOptions$Filter.class true
[07Feb2019 20:07:21.407] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityOptions$IOptionHandler.class got resource net/minecraft/command/arguments/EntityOptions$IOptionHandler.class true
[07Feb2019 20:07:21.413] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/ParticleType.class got resource net/minecraft/particles/ParticleType.class true
[07Feb2019 20:07:21.416] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/BasicParticleType.class got resource net/minecraft/particles/BasicParticleType.class true
[07Feb2019 20:07:21.418] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/IParticleData$IDeserializer.class got resource net/minecraft/particles/IParticleData$IDeserializer.class true
[07Feb2019 20:07:21.420] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/BasicParticleType$1.class got resource net/minecraft/particles/BasicParticleType$1.class true
[07Feb2019 20:07:21.423] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/BlockParticleData.class got resource net/minecraft/particles/BlockParticleData.class true
[07Feb2019 20:07:21.425] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/BlockParticleData$1.class got resource net/minecraft/particles/BlockParticleData$1.class true
[07Feb2019 20:07:21.428] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/RedstoneParticleData.class got resource net/minecraft/particles/RedstoneParticleData.class true
[07Feb2019 20:07:21.430] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/RedstoneParticleData$1.class got resource net/minecraft/particles/RedstoneParticleData$1.class true
[07Feb2019 20:07:21.433] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/ItemParticleData.class got resource net/minecraft/particles/ItemParticleData.class true
[07Feb2019 20:07:21.435] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/particles/ItemParticleData$1.class got resource net/minecraft/particles/ItemParticleData$1.class true
[07Feb2019 20:07:21.438] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$1.class got resource net/minecraft/init/Bootstrap$1.class true
[07Feb2019 20:07:21.440] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/dispenser/BehaviorProjectileDispense.class got resource net/minecraft/dispenser/BehaviorProjectileDispense.class true
[07Feb2019 20:07:21.443] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$2.class got resource net/minecraft/init/Bootstrap$2.class true
[07Feb2019 20:07:21.445] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$3.class got resource net/minecraft/init/Bootstrap$3.class true
[07Feb2019 20:07:21.448] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$4.class got resource net/minecraft/init/Bootstrap$4.class true
[07Feb2019 20:07:21.451] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$5.class got resource net/minecraft/init/Bootstrap$5.class true
[07Feb2019 20:07:21.453] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$6.class got resource net/minecraft/init/Bootstrap$6.class true
[07Feb2019 20:07:21.456] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$7.class got resource net/minecraft/init/Bootstrap$7.class true
[07Feb2019 20:07:21.458] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$8.class got resource net/minecraft/init/Bootstrap$8.class true
[07Feb2019 20:07:21.460] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$9.class got resource net/minecraft/init/Bootstrap$9.class true
[07Feb2019 20:07:21.465] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$10.class got resource net/minecraft/init/Bootstrap$10.class true
[07Feb2019 20:07:21.467] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$11.class got resource net/minecraft/init/Bootstrap$11.class true
[07Feb2019 20:07:21.470] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$BehaviorDispenseBoat.class got resource net/minecraft/init/Bootstrap$BehaviorDispenseBoat.class true
[07Feb2019 20:07:21.473] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$12.class got resource net/minecraft/init/Bootstrap$12.class true
[07Feb2019 20:07:21.475] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/DispenseFluidContainer.class got resource net/minecraftforge/fluids/DispenseFluidContainer.class true
[07Feb2019 20:07:21.478] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$14.class got resource net/minecraft/init/Bootstrap$14.class true
[07Feb2019 20:07:21.481] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$BehaviorDispenseOptional.class got resource net/minecraft/init/Bootstrap$BehaviorDispenseOptional.class true
[07Feb2019 20:07:21.483] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$15.class got resource net/minecraft/init/Bootstrap$15.class true
[07Feb2019 20:07:21.486] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$16.class got resource net/minecraft/init/Bootstrap$16.class true
[07Feb2019 20:07:21.489] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$17.class got resource net/minecraft/init/Bootstrap$17.class true
[07Feb2019 20:07:21.491] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$18.class got resource net/minecraft/init/Bootstrap$18.class true
[07Feb2019 20:07:21.494] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$19.class got resource net/minecraft/init/Bootstrap$19.class true
[07Feb2019 20:07:21.497] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$BehaviorDispenseShulkerBox.class got resource net/minecraft/init/Bootstrap$BehaviorDispenseShulkerBox.class true
[07Feb2019 20:07:21.500] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/BlockItemUseContext.class got resource net/minecraft/item/BlockItemUseContext.class true
[07Feb2019 20:07:21.502] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemUseContext.class got resource net/minecraft/item/ItemUseContext.class true
[07Feb2019 20:07:21.505] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Bootstrap$DispensePlaceContext.class got resource net/minecraft/init/Bootstrap$DispensePlaceContext.class true
[07Feb2019 20:07:21.508] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockShulkerBox$1.class got resource net/minecraft/block/BlockShulkerBox$1.class true
[07Feb2019 20:07:21.510] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ArgumentTypes.class got resource net/minecraft/command/arguments/ArgumentTypes.class true
[07Feb2019 20:07:21.513] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/IArgumentSerializer.class got resource net/minecraft/command/arguments/IArgumentSerializer.class true
[07Feb2019 20:07:21.516] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/BrigadierSerializers.class got resource net/minecraft/command/arguments/serializers/BrigadierSerializers.class true
[07Feb2019 20:07:21.520] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ArgumentSerializer.class got resource net/minecraft/command/arguments/ArgumentSerializer.class true
[07Feb2019 20:07:21.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ArgumentTypes$Entry.class got resource net/minecraft/command/arguments/ArgumentTypes$Entry.class true
[07Feb2019 20:07:21.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/FloatSerializer.class got resource net/minecraft/command/arguments/serializers/FloatSerializer.class true
[07Feb2019 20:07:21.531] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/DoubleSerializer.class got resource net/minecraft/command/arguments/serializers/DoubleSerializer.class true
[07Feb2019 20:07:21.534] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/IntSerializer.class got resource net/minecraft/command/arguments/serializers/IntSerializer.class true
[07Feb2019 20:07:21.537] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/serializers/StringSerializer.class got resource net/minecraft/command/arguments/serializers/StringSerializer.class true
[07Feb2019 20:07:21.541] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityArgument.class got resource net/minecraft/command/arguments/EntityArgument.class true
[07Feb2019 20:07:21.544] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityArgument$Serializer.class got resource net/minecraft/command/arguments/EntityArgument$Serializer.class true
[07Feb2019 20:07:21.547] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/GameProfileArgument.class got resource net/minecraft/command/arguments/GameProfileArgument.class true
[07Feb2019 20:07:21.549] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/GameProfileArgument$IProfileProvider.class got resource net/minecraft/command/arguments/GameProfileArgument$IProfileProvider.class true
[07Feb2019 20:07:21.552] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/BlockPosArgument.class got resource net/minecraft/command/arguments/BlockPosArgument.class true
[07Feb2019 20:07:21.555] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ILocationArgument.class got resource net/minecraft/command/arguments/ILocationArgument.class true
[07Feb2019 20:07:21.557] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/Vec3Argument.class got resource net/minecraft/command/arguments/Vec3Argument.class true
[07Feb2019 20:07:21.561] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/Vec2Argument.class got resource net/minecraft/command/arguments/Vec2Argument.class true
[07Feb2019 20:07:21.564] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/BlockStateArgument.class got resource net/minecraft/command/arguments/BlockStateArgument.class true
[07Feb2019 20:07:21.566] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/BlockPredicateArgument.class got resource net/minecraft/command/arguments/BlockPredicateArgument.class true
[07Feb2019 20:07:21.570] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ItemArgument.class got resource net/minecraft/command/arguments/ItemArgument.class true
[07Feb2019 20:07:21.572] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ItemPredicateArgument.class got resource net/minecraft/command/arguments/ItemPredicateArgument.class true
[07Feb2019 20:07:21.575] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ColorArgument.class got resource net/minecraft/command/arguments/ColorArgument.class true
[07Feb2019 20:07:21.578] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ComponentArgument.class got resource net/minecraft/command/arguments/ComponentArgument.class true
[07Feb2019 20:07:21.581] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/MessageArgument.class got resource net/minecraft/command/arguments/MessageArgument.class true
[07Feb2019 20:07:21.584] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/NBTArgument.class got resource net/minecraft/command/arguments/NBTArgument.class true
[07Feb2019 20:07:21.586] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/NBTPathArgument.class got resource net/minecraft/command/arguments/NBTPathArgument.class true
[07Feb2019 20:07:21.589] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ObjectiveArgument.class got resource net/minecraft/command/arguments/ObjectiveArgument.class true
[07Feb2019 20:07:21.593] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ObjectiveCriteriaArgument.class got resource net/minecraft/command/arguments/ObjectiveCriteriaArgument.class true
[07Feb2019 20:07:21.596] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/OperationArgument.class got resource net/minecraft/command/arguments/OperationArgument.class true
[07Feb2019 20:07:21.599] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/OperationArgument$IOperation.class got resource net/minecraft/command/arguments/OperationArgument$IOperation.class true
[07Feb2019 20:07:21.601] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ParticleArgument.class got resource net/minecraft/command/arguments/ParticleArgument.class true
[07Feb2019 20:07:21.604] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RotationArgument.class got resource net/minecraft/command/arguments/RotationArgument.class true
[07Feb2019 20:07:21.607] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ScoreboardSlotArgument.class got resource net/minecraft/command/arguments/ScoreboardSlotArgument.class true
[07Feb2019 20:07:21.610] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ScoreHolderArgument.class got resource net/minecraft/command/arguments/ScoreHolderArgument.class true
[07Feb2019 20:07:21.613] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ScoreHolderArgument$Serializer.class got resource net/minecraft/command/arguments/ScoreHolderArgument$Serializer.class true
[07Feb2019 20:07:21.615] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SwizzleArgument.class got resource net/minecraft/command/arguments/SwizzleArgument.class true
[07Feb2019 20:07:21.618] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/TeamArgument.class got resource net/minecraft/command/arguments/TeamArgument.class true
[07Feb2019 20:07:21.621] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SlotArgument.class got resource net/minecraft/command/arguments/SlotArgument.class true
[07Feb2019 20:07:21.624] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ResourceLocationArgument.class got resource net/minecraft/command/arguments/ResourceLocationArgument.class true
[07Feb2019 20:07:21.627] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/PotionArgument.class got resource net/minecraft/command/arguments/PotionArgument.class true
[07Feb2019 20:07:21.630] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/FunctionArgument.class got resource net/minecraft/command/arguments/FunctionArgument.class true
[07Feb2019 20:07:21.633] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityAnchorArgument.class got resource net/minecraft/command/arguments/EntityAnchorArgument.class true
[07Feb2019 20:07:21.636] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument$IntRange.class got resource net/minecraft/command/arguments/RangeArgument$IntRange.class true
[07Feb2019 20:07:21.638] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument.class got resource net/minecraft/command/arguments/RangeArgument.class true
[07Feb2019 20:07:21.640] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument$IntRange$Serializer.class got resource net/minecraft/command/arguments/RangeArgument$IntRange$Serializer.class true
[07Feb2019 20:07:21.643] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument$Serializer.class got resource net/minecraft/command/arguments/RangeArgument$Serializer.class true
[07Feb2019 20:07:21.646] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument$FloatRange.class got resource net/minecraft/command/arguments/RangeArgument$FloatRange.class true
[07Feb2019 20:07:21.649] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/RangeArgument$FloatRange$Serializer.class got resource net/minecraft/command/arguments/RangeArgument$FloatRange$Serializer.class true
[07Feb2019 20:07:21.651] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EnchantmentArgument.class got resource net/minecraft/command/arguments/EnchantmentArgument.class true
[07Feb2019 20:07:21.654] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntitySummonArgument.class got resource net/minecraft/command/arguments/EntitySummonArgument.class true
[07Feb2019 20:07:21.657] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/PaintingType.class got resource net/minecraft/entity/item/PaintingType.class true
[07Feb2019 20:07:21.660] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistries.class got resource net/minecraftforge/registries/ForgeRegistries.class true
[07Feb2019 20:07:21.663] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/registry/VillagerRegistry.class got resource net/minecraftforge/fml/common/registry/VillagerRegistry.class true
[07Feb2019 20:07:21.666] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/RegistryObject.class got resource net/minecraftforge/fml/RegistryObject.class true
[07Feb2019 20:07:21.669] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/registry/VillagerRegistry$VanillaTrades.class got resource net/minecraftforge/fml/common/registry/VillagerRegistry$VanillaTrades.class true
[07Feb2019 20:07:21.672] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/registry/VillagerRegistry$VillagerCareer.class got resource net/minecraftforge/fml/common/registry/VillagerRegistry$VillagerCareer.class true
[07Feb2019 20:07:21.675] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers.class got resource net/minecraft/network/datasync/DataSerializers.class true
[07Feb2019 20:07:21.678] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializer.class got resource net/minecraft/network/datasync/DataSerializer.class true
[07Feb2019 20:07:21.680] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$1.class got resource net/minecraft/network/datasync/DataSerializers$1.class true
[07Feb2019 20:07:21.683] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$2.class got resource net/minecraft/network/datasync/DataSerializers$2.class true
[07Feb2019 20:07:21.685] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$3.class got resource net/minecraft/network/datasync/DataSerializers$3.class true
[07Feb2019 20:07:21.688] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$4.class got resource net/minecraft/network/datasync/DataSerializers$4.class true
[07Feb2019 20:07:21.691] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$5.class got resource net/minecraft/network/datasync/DataSerializers$5.class true
[07Feb2019 20:07:21.693] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$6.class got resource net/minecraft/network/datasync/DataSerializers$6.class true
[07Feb2019 20:07:21.696] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$7.class got resource net/minecraft/network/datasync/DataSerializers$7.class true
[07Feb2019 20:07:21.698] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$8.class got resource net/minecraft/network/datasync/DataSerializers$8.class true
[07Feb2019 20:07:21.701] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$9.class got resource net/minecraft/network/datasync/DataSerializers$9.class true
[07Feb2019 20:07:21.704] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$10.class got resource net/minecraft/network/datasync/DataSerializers$10.class true
[07Feb2019 20:07:21.706] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$11.class got resource net/minecraft/network/datasync/DataSerializers$11.class true
[07Feb2019 20:07:21.709] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$12.class got resource net/minecraft/network/datasync/DataSerializers$12.class true
[07Feb2019 20:07:21.711] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$13.class got resource net/minecraft/network/datasync/DataSerializers$13.class true
[07Feb2019 20:07:21.714] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$14.class got resource net/minecraft/network/datasync/DataSerializers$14.class true
[07Feb2019 20:07:21.716] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$15.class got resource net/minecraft/network/datasync/DataSerializers$15.class true
[07Feb2019 20:07:21.719] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataSerializers$16.class got resource net/minecraft/network/datasync/DataSerializers$16.class true
[07Feb2019 20:07:21.721] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/EntityDataManager.class got resource net/minecraft/network/datasync/EntityDataManager.class true
[07Feb2019 20:07:21.725] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/DataParameter.class got resource net/minecraft/network/datasync/DataParameter.class true
[07Feb2019 20:07:21.728] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$ITradeList.class got resource net/minecraft/entity/passive/EntityVillager$ITradeList.class true
[07Feb2019 20:07:21.731] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$EmeraldForItems.class got resource net/minecraft/entity/passive/EntityVillager$EmeraldForItems.class true
[07Feb2019 20:07:21.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$PriceInfo.class got resource net/minecraft/entity/passive/EntityVillager$PriceInfo.class true
[07Feb2019 20:07:21.735] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Tuple.class got resource net/minecraft/util/Tuple.class true
[07Feb2019 20:07:21.738] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds.class got resource net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds.class true
[07Feb2019 20:07:21.740] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$ItemAndEmeraldToItem.class got resource net/minecraft/entity/passive/EntityVillager$ItemAndEmeraldToItem.class true
[07Feb2019 20:07:21.908] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$ListEnchantedItemForEmeralds.class got resource net/minecraft/entity/passive/EntityVillager$ListEnchantedItemForEmeralds.class true
[07Feb2019 20:07:21.911] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$ListEnchantedBookForEmeralds.class got resource net/minecraft/entity/passive/EntityVillager$ListEnchantedBookForEmeralds.class true
[07Feb2019 20:07:21.913] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/passive/EntityVillager$TreasureMapForEmeralds.class got resource net/minecraft/entity/passive/EntityVillager$TreasureMapForEmeralds.class true
[07Feb2019 20:07:21.916] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/MapDecoration$Type.class got resource net/minecraft/world/storage/MapDecoration$Type.class true
[07Feb2019 20:07:21.919] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/IItemHandler.class got resource net/minecraftforge/items/IItemHandler.class true
[07Feb2019 20:07:21.922] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerFurnace.class got resource net/minecraft/inventory/ContainerFurnace.class true
[07Feb2019 20:07:21.924] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerRecipeBook.class got resource net/minecraft/inventory/ContainerRecipeBook.class true
[07Feb2019 20:07:21.927] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityType$Builder.class got resource net/minecraft/tileentity/TileEntityType$Builder.class true
[07Feb2019 20:07:21.929] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/IItemHandlerModifiable.class got resource net/minecraftforge/items/IItemHandlerModifiable.class true
[07Feb2019 20:07:21.933] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerDispenser.class got resource net/minecraft/inventory/ContainerDispenser.class true
[07Feb2019 20:07:21.937] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityMobSpawner$1.class got resource net/minecraft/tileentity/TileEntityMobSpawner$1.class true
[07Feb2019 20:07:21.940] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityPiston$1.class got resource net/minecraft/tileentity/TileEntityPiston$1.class true
[07Feb2019 20:07:21.943] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerBrewingStand.class got resource net/minecraft/inventory/ContainerBrewingStand.class true
[07Feb2019 20:07:21.946] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerEnchantment.class got resource net/minecraft/inventory/ContainerEnchantment.class true
[07Feb2019 20:07:21.950] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerBeacon.class got resource net/minecraft/inventory/ContainerBeacon.class true
[07Feb2019 20:07:21.955] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tileentity/TileEntityCommandBlock$1.class got resource net/minecraft/tileentity/TileEntityCommandBlock$1.class true
[07Feb2019 20:07:21.958] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ContainerShulkerBox.class got resource net/minecraft/inventory/ContainerShulkerBox.class true
[07Feb2019 20:07:21.977] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ObfuscationReflectionHelper.class got resource net/minecraftforge/fml/common/ObfuscationReflectionHelper.class true
[07Feb2019 20:07:21.980] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnknownConstructorException.class got resource net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnknownConstructorException.class true
[07Feb2019 20:07:21.983] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToFindFieldException.class got resource net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToFindFieldException.class true
[07Feb2019 20:07:21.985] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToAccessFieldException.class got resource net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToAccessFieldException.class true
[07Feb2019 20:07:21.987] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToFindMethodException.class got resource net/minecraftforge/fml/common/ObfuscationReflectionHelper$UnableToFindMethodException.class true
[07Feb2019 20:07:21.990] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ForgeRegistry$1.class got resource net/minecraftforge/registries/ForgeRegistry$1.class true
[07Feb2019 20:07:22.061] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerProfileCache$2.class got resource net/minecraft/server/management/PlayerProfileCache$2.class true
[07Feb2019 20:07:22.064] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerProfileCache$ProfileEntry.class got resource net/minecraft/server/management/PlayerProfileCache$ProfileEntry.class true
[07Feb2019 20:07:22.066] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerProfileCache$Serializer.class got resource net/minecraft/server/management/PlayerProfileCache$Serializer.class true
[07Feb2019 20:07:22.186] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/DedicatedServer.class got resource net/minecraft/server/dedicated/DedicatedServer.class true
[07Feb2019 20:07:22.191] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/rcon/IServer.class got resource net/minecraft/network/rcon/IServer.class true
[07Feb2019 20:07:22.194] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/DedicatedServer$2.class got resource net/minecraft/server/dedicated/DedicatedServer$2.class true
[07Feb2019 20:07:22.197] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/DedicatedPlayerList.class got resource net/minecraft/server/dedicated/DedicatedPlayerList.class true
[07Feb2019 20:07:22.203] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/CommandException.class got resource net/minecraft/command/CommandException.class true
[07Feb2019 20:07:22.212] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/AdvancementCommand.class got resource net/minecraft/command/impl/AdvancementCommand.class true
[07Feb2019 20:07:22.231] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ExecuteCommand.class got resource net/minecraft/command/impl/ExecuteCommand.class true
[07Feb2019 20:07:22.242] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ExecuteCommand$ExecuteTest.class got resource net/minecraft/command/impl/ExecuteCommand$ExecuteTest.class true
[07Feb2019 20:07:22.247] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/ScoreHolderArgument$INameProvider.class got resource net/minecraft/command/arguments/ScoreHolderArgument$INameProvider.class true
[07Feb2019 20:07:22.257] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/BossBarCommand.class got resource net/minecraft/command/impl/BossBarCommand.class true
[07Feb2019 20:07:22.262] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/DataCommand.class got resource net/minecraft/command/impl/data/DataCommand.class true
[07Feb2019 20:07:22.266] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/DataCommand$IDataProvider.class got resource net/minecraft/command/impl/data/DataCommand$IDataProvider.class true
[07Feb2019 20:07:22.268] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/EntityDataAccessor.class got resource net/minecraft/command/impl/data/EntityDataAccessor.class true
[07Feb2019 20:07:22.271] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/IDataAccessor.class got resource net/minecraft/command/impl/data/IDataAccessor.class true
[07Feb2019 20:07:22.274] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/EntityDataAccessor$1.class got resource net/minecraft/command/impl/data/EntityDataAccessor$1.class true
[07Feb2019 20:07:22.278] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/BlockDataAccessor.class got resource net/minecraft/command/impl/data/BlockDataAccessor.class true
[07Feb2019 20:07:22.281] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/data/BlockDataAccessor$1.class got resource net/minecraft/command/impl/data/BlockDataAccessor$1.class true
[07Feb2019 20:07:22.296] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ClearCommand.class got resource net/minecraft/command/impl/ClearCommand.class true
[07Feb2019 20:07:22.301] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/CloneCommand.class got resource net/minecraft/command/impl/CloneCommand.class true
[07Feb2019 20:07:22.306] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/BlockWorldState.class got resource net/minecraft/block/state/BlockWorldState.class true
[07Feb2019 20:07:22.313] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/DataPackCommand.class got resource net/minecraft/command/impl/DataPackCommand.class true
[07Feb2019 20:07:22.319] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/DebugCommand.class got resource net/minecraft/command/impl/DebugCommand.class true
[07Feb2019 20:07:22.323] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/DefaultGameModeCommand.class got resource net/minecraft/command/impl/DefaultGameModeCommand.class true
[07Feb2019 20:07:22.326] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/DifficultyCommand.class got resource net/minecraft/command/impl/DifficultyCommand.class true
[07Feb2019 20:07:22.331] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/EffectCommand.class got resource net/minecraft/command/impl/EffectCommand.class true
[07Feb2019 20:07:22.335] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/MeCommand.class got resource net/minecraft/command/impl/MeCommand.class true
[07Feb2019 20:07:22.338] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/EnchantCommand.class got resource net/minecraft/command/impl/EnchantCommand.class true
[07Feb2019 20:07:22.343] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ExperienceCommand.class got resource net/minecraft/command/impl/ExperienceCommand.class true
[07Feb2019 20:07:22.347] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/FillCommand.class got resource net/minecraft/command/impl/FillCommand.class true
[07Feb2019 20:07:22.351] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/BlockStateInput.class got resource net/minecraft/command/arguments/BlockStateInput.class true
[07Feb2019 20:07:22.356] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/FunctionCommand.class got resource net/minecraft/command/impl/FunctionCommand.class true
[07Feb2019 20:07:22.360] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/GameModeCommand.class got resource net/minecraft/command/impl/GameModeCommand.class true
[07Feb2019 20:07:22.364] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/GameRuleCommand.class got resource net/minecraft/command/impl/GameRuleCommand.class true
[07Feb2019 20:07:22.367] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/GameRules$ValueDefinition.class got resource net/minecraft/world/GameRules$ValueDefinition.class true
[07Feb2019 20:07:22.370] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/GameRules$ValueType.class got resource net/minecraft/world/GameRules$ValueType.class true
[07Feb2019 20:07:22.374] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/GameRules$Value.class got resource net/minecraft/world/GameRules$Value.class true
[07Feb2019 20:07:22.378] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/GiveCommand.class got resource net/minecraft/command/impl/GiveCommand.class true
[07Feb2019 20:07:22.382] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/HelpCommand.class got resource net/minecraft/command/impl/HelpCommand.class true
[07Feb2019 20:07:22.386] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/KickCommand.class got resource net/minecraft/command/impl/KickCommand.class true
[07Feb2019 20:07:22.389] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/KillCommand.class got resource net/minecraft/command/impl/KillCommand.class true
[07Feb2019 20:07:22.392] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ListCommand.class got resource net/minecraft/command/impl/ListCommand.class true
[07Feb2019 20:07:22.396] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/LocateCommand.class got resource net/minecraft/command/impl/LocateCommand.class true
[07Feb2019 20:07:22.401] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/MessageCommand.class got resource net/minecraft/command/impl/MessageCommand.class true
[07Feb2019 20:07:22.404] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ParticleCommand.class got resource net/minecraft/command/impl/ParticleCommand.class true
[07Feb2019 20:07:22.409] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/PlaySoundCommand.class got resource net/minecraft/command/impl/PlaySoundCommand.class true
[07Feb2019 20:07:22.412] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SuggestionProviders.class got resource net/minecraft/command/arguments/SuggestionProviders.class true
[07Feb2019 20:07:22.415] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/SuggestionProviders$Wrapper.class got resource net/minecraft/command/arguments/SuggestionProviders$Wrapper.class true
[07Feb2019 20:07:22.418] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/SoundCategory.class got resource net/minecraft/util/SoundCategory.class true
[07Feb2019 20:07:22.422] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/PublishCommand.class got resource net/minecraft/command/impl/PublishCommand.class true
[07Feb2019 20:07:22.426] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ReloadCommand.class got resource net/minecraft/command/impl/ReloadCommand.class true
[07Feb2019 20:07:22.429] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/RecipeCommand.class got resource net/minecraft/command/impl/RecipeCommand.class true
[07Feb2019 20:07:22.432] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ReplaceItemCommand.class got resource net/minecraft/command/impl/ReplaceItemCommand.class true
[07Feb2019 20:07:22.438] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SayCommand.class got resource net/minecraft/command/impl/SayCommand.class true
[07Feb2019 20:07:22.441] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/ScoreboardCommand.class got resource net/minecraft/command/impl/ScoreboardCommand.class true
[07Feb2019 20:07:22.446] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/IScoreCriteria$EnumRenderType.class got resource net/minecraft/scoreboard/IScoreCriteria$EnumRenderType.class true
[07Feb2019 20:07:22.452] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SeedCommand.class got resource net/minecraft/command/impl/SeedCommand.class true
[07Feb2019 20:07:22.455] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SetBlockCommand.class got resource net/minecraft/command/impl/SetBlockCommand.class true
[07Feb2019 20:07:22.458] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SpawnPointCommand.class got resource net/minecraft/command/impl/SpawnPointCommand.class true
[07Feb2019 20:07:22.461] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SetWorldSpawnCommand.class got resource net/minecraft/command/impl/SetWorldSpawnCommand.class true
[07Feb2019 20:07:22.464] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SpreadPlayersCommand.class got resource net/minecraft/command/impl/SpreadPlayersCommand.class true
[07Feb2019 20:07:22.470] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/StopSoundCommand.class got resource net/minecraft/command/impl/StopSoundCommand.class true
[07Feb2019 20:07:22.474] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SummonCommand.class got resource net/minecraft/command/impl/SummonCommand.class true
[07Feb2019 20:07:22.478] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TagCommand.class got resource net/minecraft/command/impl/TagCommand.class true
[07Feb2019 20:07:22.481] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TeamCommand.class got resource net/minecraft/command/impl/TeamCommand.class true
[07Feb2019 20:07:22.490] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TeleportCommand.class got resource net/minecraft/command/impl/TeleportCommand.class true
[07Feb2019 20:07:22.494] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TellRawCommand.class got resource net/minecraft/command/impl/TellRawCommand.class true
[07Feb2019 20:07:22.497] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TimeCommand.class got resource net/minecraft/command/impl/TimeCommand.class true
[07Feb2019 20:07:22.502] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TitleCommand.class got resource net/minecraft/command/impl/TitleCommand.class true
[07Feb2019 20:07:22.506] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/TriggerCommand.class got resource net/minecraft/command/impl/TriggerCommand.class true
[07Feb2019 20:07:22.509] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/WeatherCommand.class got resource net/minecraft/command/impl/WeatherCommand.class true
[07Feb2019 20:07:22.512] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/WorldBorderCommand.class got resource net/minecraft/command/impl/WorldBorderCommand.class true
[07Feb2019 20:07:22.517] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/BanIpCommand.class got resource net/minecraft/command/impl/BanIpCommand.class true
[07Feb2019 20:07:22.521] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListEntry.class got resource net/minecraft/server/management/UserListEntry.class true
[07Feb2019 20:07:22.523] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListIPBansEntry.class got resource net/minecraft/server/management/UserListIPBansEntry.class true
[07Feb2019 20:07:22.526] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListEntryBan.class got resource net/minecraft/server/management/UserListEntryBan.class true
[07Feb2019 20:07:22.529] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/BanListCommand.class got resource net/minecraft/command/impl/BanListCommand.class true
[07Feb2019 20:07:22.532] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/BanCommand.class got resource net/minecraft/command/impl/BanCommand.class true
[07Feb2019 20:07:22.535] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListBansEntry.class got resource net/minecraft/server/management/UserListBansEntry.class true
[07Feb2019 20:07:22.538] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/DeOpCommand.class got resource net/minecraft/command/impl/DeOpCommand.class true
[07Feb2019 20:07:22.542] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/OpCommand.class got resource net/minecraft/command/impl/OpCommand.class true
[07Feb2019 20:07:22.545] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/PardonCommand.class got resource net/minecraft/command/impl/PardonCommand.class true
[07Feb2019 20:07:22.548] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/PardonIpCommand.class got resource net/minecraft/command/impl/PardonIpCommand.class true
[07Feb2019 20:07:22.552] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SaveAllCommand.class got resource net/minecraft/command/impl/SaveAllCommand.class true
[07Feb2019 20:07:22.644] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SaveOffCommand.class got resource net/minecraft/command/impl/SaveOffCommand.class true
[07Feb2019 20:07:22.650] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SaveOnCommand.class got resource net/minecraft/command/impl/SaveOnCommand.class true
[07Feb2019 20:07:22.653] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/SetIdleTimeoutCommand.class got resource net/minecraft/command/impl/SetIdleTimeoutCommand.class true
[07Feb2019 20:07:22.656] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/StopCommand.class got resource net/minecraft/command/impl/StopCommand.class true
[07Feb2019 20:07:22.659] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/impl/WhitelistCommand.class got resource net/minecraft/command/impl/WhitelistCommand.class true
[07Feb2019 20:07:22.661] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListWhitelistEntry.class got resource net/minecraft/server/management/UserListWhitelistEntry.class true
[07Feb2019 20:07:22.668] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/LocationInput.class got resource net/minecraft/command/arguments/LocationInput.class true
[07Feb2019 20:07:22.671] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/LocationPart.class got resource net/minecraft/command/arguments/LocationPart.class true
[07Feb2019 20:07:22.674] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/TextComponentMessageFormatHandler.class got resource net/minecraftforge/fml/TextComponentMessageFormatHandler.class true
[07Feb2019 20:07:22.676] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentString.class got resource net/minecraft/util/text/TextComponentString.class true
[07Feb2019 20:07:22.679] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ForgeI18n.class got resource net/minecraftforge/fml/ForgeI18n.class true
[07Feb2019 20:07:22.682] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ForgeI18n$CustomReadOnlyFormat.class got resource net/minecraftforge/fml/ForgeI18n$CustomReadOnlyFormat.class true
[07Feb2019 20:07:22.687] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/Style.class got resource net/minecraft/util/text/Style.class true
[07Feb2019 20:07:22.690] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/Style$1.class got resource net/minecraft/util/text/Style$1.class true
[07Feb2019 20:07:22.698] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/Vec3d.class got resource net/minecraft/util/math/Vec3d.class true
[07Feb2019 20:07:22.702] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MinMaxBounds$FloatBound.class got resource net/minecraft/advancements/criterion/MinMaxBounds$FloatBound.class true
[07Feb2019 20:07:22.704] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MinMaxBounds.class got resource net/minecraft/advancements/criterion/MinMaxBounds.class true
[07Feb2019 20:07:22.707] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MinMaxBounds$IntBound.class got resource net/minecraft/advancements/criterion/MinMaxBounds$IntBound.class true
[07Feb2019 20:07:22.710] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MinMaxBoundsWrapped.class got resource net/minecraft/advancements/criterion/MinMaxBoundsWrapped.class true
[07Feb2019 20:07:22.713] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntitySelector.class got resource net/minecraft/command/arguments/EntitySelector.class true
[07Feb2019 20:07:22.716] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[07Feb2019 20:07:22.718] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[07Feb2019 20:07:22.718] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[07Feb2019 20:07:22.719] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[07Feb2019 20:07:22.721] [main/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[07Feb2019 20:07:22.725] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/profiler/Profiler.class got resource net/minecraft/profiler/Profiler.class true
[07Feb2019 20:07:22.729] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/SimpleReloadableResourceManager.class got resource net/minecraft/resources/SimpleReloadableResourceManager.class true
[07Feb2019 20:07:22.733] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackType.class got resource net/minecraft/resources/ResourcePackType.class true
[07Feb2019 20:07:22.736] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IResourcePack.class got resource net/minecraft/resources/IResourcePack.class true
[07Feb2019 20:07:22.738] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/data/PackMetadataSection.class got resource net/minecraft/resources/data/PackMetadataSection.class true
[07Feb2019 20:07:22.741] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackInfo$Priority.class got resource net/minecraft/resources/ResourcePackInfo$Priority.class true
[07Feb2019 20:07:22.745] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackInfo.class got resource net/minecraft/resources/ResourcePackInfo.class true
[07Feb2019 20:07:22.749] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/data/IMetadataSectionSerializer.class got resource net/minecraft/resources/data/IMetadataSectionSerializer.class true
[07Feb2019 20:07:22.752] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackInfo$IFactory.class got resource net/minecraft/resources/ResourcePackInfo$IFactory.class true
[07Feb2019 20:07:22.757] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/TagCollection.class got resource net/minecraft/tags/TagCollection.class true
[07Feb2019 20:07:22.761] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/NetworkTagCollection.class got resource net/minecraft/tags/NetworkTagCollection.class true
[07Feb2019 20:07:22.767] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/ScoreObjective.class got resource net/minecraft/scoreboard/ScoreObjective.class true
[07Feb2019 20:07:22.771] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/RandomValueRange.class got resource net/minecraft/world/storage/loot/RandomValueRange.class true
[07Feb2019 20:07:22.774] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/RandomValueRange$Serializer.class got resource net/minecraft/world/storage/loot/RandomValueRange$Serializer.class true
[07Feb2019 20:07:22.778] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootPool.class got resource net/minecraft/world/storage/loot/LootPool.class true
[07Feb2019 20:07:22.781] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootPool$Serializer.class got resource net/minecraft/world/storage/loot/LootPool$Serializer.class true
[07Feb2019 20:07:22.784] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootTable.class got resource net/minecraft/world/storage/loot/LootTable.class true
[07Feb2019 20:07:22.787] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootTable$Serializer.class got resource net/minecraft/world/storage/loot/LootTable$Serializer.class true
[07Feb2019 20:07:22.790] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootEntry.class got resource net/minecraft/world/storage/loot/LootEntry.class true
[07Feb2019 20:07:22.792] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootEntry$Serializer.class got resource net/minecraft/world/storage/loot/LootEntry$Serializer.class true
[07Feb2019 20:07:22.795] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootEntryItem.class got resource net/minecraft/world/storage/loot/LootEntryItem.class true
[07Feb2019 20:07:22.798] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootEntryTable.class got resource net/minecraft/world/storage/loot/LootEntryTable.class true
[07Feb2019 20:07:22.801] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootEntryEmpty.class got resource net/minecraft/world/storage/loot/LootEntryEmpty.class true
[07Feb2019 20:07:22.803] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootFunction.class got resource net/minecraft/world/storage/loot/functions/LootFunction.class true
[07Feb2019 20:07:22.805] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootFunctionManager$Serializer.class got resource net/minecraft/world/storage/loot/functions/LootFunctionManager$Serializer.class true
[07Feb2019 20:07:22.809] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/LootCondition.class got resource net/minecraft/world/storage/loot/conditions/LootCondition.class true
[07Feb2019 20:07:22.812] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/LootConditionManager$Serializer.class got resource net/minecraft/world/storage/loot/conditions/LootConditionManager$Serializer.class true
[07Feb2019 20:07:22.816] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootContext$EntityTarget.class got resource net/minecraft/world/storage/loot/LootContext$EntityTarget.class true
[07Feb2019 20:07:22.819] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/LootContext$EntityTarget$Serializer.class got resource net/minecraft/world/storage/loot/LootContext$EntityTarget$Serializer.class true
[07Feb2019 20:07:22.824] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/Advancement$Builder.class got resource net/minecraft/advancements/Advancement$Builder.class true
[07Feb2019 20:07:22.828] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementRewards.class got resource net/minecraft/advancements/AdvancementRewards.class true
[07Feb2019 20:07:22.831] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementRewards$Deserializer.class got resource net/minecraft/advancements/AdvancementRewards$Deserializer.class true
[07Feb2019 20:07:22.834] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/ITextComponent$Serializer.class got resource net/minecraft/util/text/ITextComponent$Serializer.class true
[07Feb2019 20:07:22.839] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentScore.class got resource net/minecraft/util/text/TextComponentScore.class true
[07Feb2019 20:07:22.841] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentSelector.class got resource net/minecraft/util/text/TextComponentSelector.class true
[07Feb2019 20:07:22.843] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/TextComponentKeybind.class got resource net/minecraft/util/text/TextComponentKeybind.class true
[07Feb2019 20:07:22.846] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/Style$Serializer.class got resource net/minecraft/util/text/Style$Serializer.class true
[07Feb2019 20:07:22.848] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumTypeAdapterFactory.class got resource net/minecraft/util/EnumTypeAdapterFactory.class true
[07Feb2019 20:07:22.851] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumTypeAdapterFactory$1.class got resource net/minecraft/util/EnumTypeAdapterFactory$1.class true
[07Feb2019 20:07:22.854] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementList.class got resource net/minecraft/advancements/AdvancementList.class true
[07Feb2019 20:07:22.857] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/FunctionObject$Entry.class got resource net/minecraft/command/FunctionObject$Entry.class true
[07Feb2019 20:07:22.860] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/FunctionObject.class got resource net/minecraft/command/FunctionObject.class true
[07Feb2019 20:07:22.866] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/AnvilSaveConverter.class got resource net/minecraft/world/chunk/storage/AnvilSaveConverter.class true
[07Feb2019 20:07:22.869] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/SaveFormatOld.class got resource net/minecraft/world/storage/SaveFormatOld.class true
[07Feb2019 20:07:22.872] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/StartupQuery$AbortedException.class got resource net/minecraftforge/fml/StartupQuery$AbortedException.class true
[07Feb2019 20:07:22.874] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/IBiomeProviderSettings.class got resource net/minecraft/world/biome/provider/IBiomeProviderSettings.class true
[07Feb2019 20:07:22.877] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/progress/StartupProgressManager.class got resource net/minecraftforge/fml/common/progress/StartupProgressManager.class true
[07Feb2019 20:07:22.879] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/progress/IProgressBarTracker.class got resource net/minecraftforge/fml/common/progress/IProgressBarTracker.class true
[07Feb2019 20:07:22.882] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/progress/StartupProgressBarTracker.class got resource net/minecraftforge/fml/common/progress/StartupProgressBarTracker.class true
[07Feb2019 20:07:22.885] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/progress/ProgressBar.class got resource net/minecraftforge/fml/common/progress/ProgressBar.class true
[07Feb2019 20:07:22.888] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/DistExecutor.class got resource net/minecraftforge/fml/DistExecutor.class true
[07Feb2019 20:07:22.891] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/ClassNameUtils.class got resource net/minecraftforge/fml/common/ClassNameUtils.class true
[07Feb2019 20:07:22.894] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/Logging.class got resource net/minecraftforge/fml/Logging.class true
[07Feb2019 20:07:22.899] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/BlockTags.class got resource net/minecraft/tags/BlockTags.class true
[07Feb2019 20:07:22.901] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/BlockTags$Wrapper.class got resource net/minecraft/tags/BlockTags$Wrapper.class true
[07Feb2019 20:07:22.905] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/ItemTags.class got resource net/minecraft/tags/ItemTags.class true
[07Feb2019 20:07:22.908] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/FluidTags.class got resource net/minecraft/tags/FluidTags.class true
[07Feb2019 20:07:22.911] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/FluidTags$Wrapper.class got resource net/minecraft/tags/FluidTags$Wrapper.class true
[07Feb2019 20:07:22.914] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/CraftingHelper.class got resource net/minecraftforge/common/crafting/CraftingHelper.class true
[07Feb2019 20:07:22.918] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/IIngredientSerializer.class got resource net/minecraftforge/common/crafting/IIngredientSerializer.class true
[07Feb2019 20:07:22.921] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/CompoundIngredient.class got resource net/minecraftforge/common/crafting/CompoundIngredient.class true
[07Feb2019 20:07:22.925] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/IConditionSerializer.class got resource net/minecraftforge/common/crafting/IConditionSerializer.class true
[07Feb2019 20:07:22.928] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/IngredientNBT$Serializer.class got resource net/minecraftforge/common/crafting/IngredientNBT$Serializer.class true
[07Feb2019 20:07:22.931] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/IngredientNBT.class got resource net/minecraftforge/common/crafting/IngredientNBT.class true
[07Feb2019 20:07:22.934] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/CompoundIngredient$Serializer.class got resource net/minecraftforge/common/crafting/CompoundIngredient$Serializer.class true
[07Feb2019 20:07:22.936] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/CraftingHelper$1.class got resource net/minecraftforge/common/crafting/CraftingHelper$1.class true
[07Feb2019 20:07:22.937] [main/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 0 recipes
[07Feb2019 20:07:22.938] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 0 advancements
[07Feb2019 20:07:22.941] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/rcon/RConConsoleSource.class got resource net/minecraft/network/rcon/RConConsoleSource.class true
[07Feb2019 20:07:22.944] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/DedicatedServer$1.class got resource net/minecraft/server/dedicated/DedicatedServer$1.class true
[07Feb2019 20:07:22.946] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/DefaultUncaughtExceptionHandler.class got resource net/minecraft/util/DefaultUncaughtExceptionHandler.class true
[07Feb2019 20:07:22.949] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/gui/MinecraftServerGui.class got resource net/minecraft/server/gui/MinecraftServerGui.class true
[07Feb2019 20:07:22.956] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/gui/StatsComponent.class got resource net/minecraft/server/gui/StatsComponent.class true
[07Feb2019 20:07:22.959] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/gui/PlayerListComponent.class got resource net/minecraft/server/gui/PlayerListComponent.class true
[07Feb2019 20:07:23.145] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/gui/MinecraftServerGui$2.class got resource net/minecraft/server/gui/MinecraftServerGui$2.class true
[07Feb2019 20:07:23.409] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/gui/MinecraftServerGui$1.class got resource net/minecraft/server/gui/MinecraftServerGui$1.class true
[07Feb2019 20:07:23.497] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/thread/SidedThreadGroups.class got resource net/minecraftforge/fml/common/thread/SidedThreadGroups.class true
[07Feb2019 20:07:23.500] [main/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LogicalSide.class got resource net/minecraftforge/fml/LogicalSide.class true
[07Feb2019 20:07:23.502] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.13
[07Feb2019 20:07:23.505] [Server console handler/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/console/TerminalHandler.class got resource net/minecraftforge/server/console/TerminalHandler.class true
[07Feb2019 20:07:23.506] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/server/ServerModLoader.class got resource net/minecraftforge/fml/server/ServerModLoader.class true
[07Feb2019 20:07:23.509] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LogicalSidedProvider.class got resource net/minecraftforge/fml/LogicalSidedProvider.class true
[07Feb2019 20:07:23.514] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModLoader.class got resource net/minecraftforge/fml/ModLoader.class true
[07Feb2019 20:07:23.514] [Server console handler/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/terminalconsole/TerminalConsoleAppender.class got resource net/minecraftforge/server/terminalconsole/TerminalConsoleAppender.class true
[07Feb2019 20:07:23.518] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LoadingFailedException.class got resource net/minecraftforge/fml/LoadingFailedException.class true
[07Feb2019 20:07:23.522] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/client/event/ModelRegistryEvent.class got resource net/minecraftforge/client/event/ModelRegistryEvent.class true
[07Feb2019 20:07:23.527] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/ModList.class got resource net/minecraftforge/fml/ModList.class true
[07Feb2019 20:07:23.532] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LifecycleEventProvider$LifecycleEvent.class got resource net/minecraftforge/fml/LifecycleEventProvider$LifecycleEvent.class true
[07Feb2019 20:07:23.539] [Server thread/DEBUG] [net.minecraftforge.fml.ModLoader/LOADING]: ModContainer is cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.544] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/javafmlmod/FMLModContainer.class got resource net/minecraftforge/fml/javafmlmod/FMLModContainer.class true
[07Feb2019 20:07:23.547] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/config/ModConfig$ModConfigEvent.class got resource net/minecraftforge/fml/config/ModConfig$ModConfigEvent.class true
[07Feb2019 20:07:23.548] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3277e499 - got cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.549] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod with classLoader cpw.mods.modlauncher.TransformingClassLoader@3277e499 & cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.556] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeMod.class got resource net/minecraftforge/common/ForgeMod.class true
[07Feb2019 20:07:23.559] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/WorldPersistenceHooks$WorldPersistenceHook.class got resource net/minecraftforge/fml/WorldPersistenceHooks$WorldPersistenceHook.class true
[07Feb2019 20:07:23.559] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loaded modclass net.minecraftforge.common.ForgeMod with cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.559] [Server thread/DEBUG] [net.minecraftforge.fml.ModLoader/LOADING]: ModContainer is cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.559] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3277e499 - got cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.559] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for fr.utopics.lighthouse.mod.ModLighthouse with classLoader cpw.mods.modlauncher.TransformingClassLoader@3277e499 & cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.560] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/ModLighthouse.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\ModLighthouse.class true
[07Feb2019 20:07:23.561] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/Mod.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\Mod.class true
[07Feb2019 20:07:23.563] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/FeatureProxy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\FeatureProxy.class true
[07Feb2019 20:07:23.566] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/IFeatureProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\IFeatureProvider.class true
[07Feb2019 20:07:23.568] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/ModLifecycleEventHandler.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\ModLifecycleEventHandler.class true
[07Feb2019 20:07:23.569] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/ServerLifecycleEventHandler.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\ServerLifecycleEventHandler.class true
[07Feb2019 20:07:23.570] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/LifecycleEventRegistry.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\LifecycleEventRegistry.class true
[07Feb2019 20:07:23.571] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/CommonProxy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\CommonProxy.class true
[07Feb2019 20:07:23.573] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loaded modclass fr.utopics.lighthouse.mod.ModLighthouse with cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.575] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LifecycleEventProvider.class got resource net/minecraftforge/fml/LifecycleEventProvider.class true
[07Feb2019 20:07:23.579] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/LifecycleEventProvider$LifecycleEvent$Progression.class got resource net/minecraftforge/fml/LifecycleEventProvider$LifecycleEvent$Progression.class true
[07Feb2019 20:07:23.581] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:CONSTRUCT
[07Feb2019 20:07:23.585] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/DeferredWorkQueue.class got resource net/minecraftforge/fml/DeferredWorkQueue.class true
[07Feb2019 20:07:23.592] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/javafmlmod/FMLModLoadingContext.class got resource net/minecraftforge/fml/javafmlmod/FMLModLoadingContext.class true
[07Feb2019 20:07:23.593] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loading mod instance lighthouse of type fr.utopics.lighthouse.mod.ModLighthouse
[07Feb2019 20:07:23.593] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loading mod instance forge of type net.minecraftforge.common.ForgeMod
[07Feb2019 20:07:23.594] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Loading ...
[07Feb2019 20:07:23.598] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/DistExecutor$1.class got resource net/minecraftforge/fml/DistExecutor$1.class true
[07Feb2019 20:07:23.598] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/versions/forge/ForgeVersion.class got resource net/minecraftforge/versions/forge/ForgeVersion.class true
[07Feb2019 20:07:23.599] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 24.0 from cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader@52c8295b
[07Feb2019 20:07:23.599] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge version 24.0.166-1.13-pre
[07Feb2019 20:07:23.600] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge spec 24.0
[07Feb2019 20:07:23.600] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge group net.minecraftforge.test
[07Feb2019 20:07:23.600] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/ServerProxy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\ServerProxy.class true
[07Feb2019 20:07:23.602] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/versions/mcp/MCPVersion.class got resource net/minecraftforge/versions/mcp/MCPVersion.class true
[07Feb2019 20:07:23.603] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/IFeatureProviderServer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\IFeatureProviderServer.class true
[07Feb2019 20:07:23.603] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MC version information 1.13
[07Feb2019 20:07:23.603] [modloading-worker-2/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MCP version information 2018.09.12.04.11.00
[07Feb2019 20:07:23.603] [modloading-worker-2/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 24.0.166-1.13-pre, for MC 1.13 with MCP 2018.09.12.04.11.00
[07Feb2019 20:07:23.605] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/Feature.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\Feature.class true
[07Feb2019 20:07:23.606] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/WorldPersistenceHooks.class got resource net/minecraftforge/fml/WorldPersistenceHooks.class true
[07Feb2019 20:07:23.609] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/FMLWorldPersistenceHook.class got resource net/minecraftforge/fml/FMLWorldPersistenceHook.class true
[07Feb2019 20:07:23.609] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/FeatureMessenger.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\FeatureMessenger.class true
[07Feb2019 20:07:23.612] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/io/FeatureIO.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\io\FeatureIO.class true
[07Feb2019 20:07:23.613] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/FeatureWorld.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\FeatureWorld.class true
[07Feb2019 20:07:23.613] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent.class got resource net/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent.class true
[07Feb2019 20:07:23.615] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/database/FeatureDatabase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\database\FeatureDatabase.class true
[07Feb2019 20:07:23.616] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/FeatureServer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\FeatureServer.class true
[07Feb2019 20:07:23.619] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/config/FeatureConfig.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\config\FeatureConfig.class true
[07Feb2019 20:07:23.621] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/InterModProcessEvent.class got resource net/minecraftforge/fml/event/lifecycle/InterModProcessEvent.class true
[07Feb2019 20:07:23.623] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/config/IConfigurationFileCallbackProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\config\IConfigurationFileCallbackProvider.class true
[07Feb2019 20:07:23.624] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/FeaturePermissions.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\FeaturePermissions.class true
[07Feb2019 20:07:23.625] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent.class got resource net/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent.class true
[07Feb2019 20:07:23.627] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/debug/FeatureDebug.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\debug\FeatureDebug.class true
[07Feb2019 20:07:23.629] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/FeatureGroup.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\FeatureGroup.class true
[07Feb2019 20:07:23.629] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/FMLServerStartingEvent.class got resource net/minecraftforge/fml/event/server/FMLServerStartingEvent.class true
[07Feb2019 20:07:23.630] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/FeatureEconomy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\FeatureEconomy.class true
[07Feb2019 20:07:23.631] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/ServerLifecycleEvent.class got resource net/minecraftforge/fml/event/server/ServerLifecycleEvent.class true
[07Feb2019 20:07:23.632] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/tutorial/FeatureTutorial.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\tutorial\FeatureTutorial.class true
[07Feb2019 20:07:23.633] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/FeatureOffhand.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\FeatureOffhand.class true
[07Feb2019 20:07:23.635] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerLoggedInEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerLoggedInEvent.class true
[07Feb2019 20:07:23.635] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/FeatureWeaponSecondary.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\FeatureWeaponSecondary.class true
[07Feb2019 20:07:23.637] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/FeatureMiscellaneous.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\FeatureMiscellaneous.class true
[07Feb2019 20:07:23.637] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent.class true
[07Feb2019 20:07:23.639] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/FeatureConquest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\FeatureConquest.class true
[07Feb2019 20:07:23.641] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/FeatureMap.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\FeatureMap.class true
[07Feb2019 20:07:23.641] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/FMLServerStoppingEvent.class got resource net/minecraftforge/fml/event/server/FMLServerStoppingEvent.class true
[07Feb2019 20:07:23.643] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/FeatureWorld.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\FeatureWorld.class true
[07Feb2019 20:07:23.644] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/FeatureWorldProtection.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\FeatureWorldProtection.class true
[07Feb2019 20:07:23.645] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfig.class got resource net/minecraftforge/common/ForgeConfig.class true
[07Feb2019 20:07:23.646] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/FeatureZones.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\FeatureZones.class true
[07Feb2019 20:07:23.647] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$Builder.class got resource net/minecraftforge/common/ForgeConfigSpec$Builder.class true
[07Feb2019 20:07:23.648] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/FeatureWorldLiving.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\FeatureWorldLiving.class true
[07Feb2019 20:07:23.650] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/FeatureQuest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\FeatureQuest.class true
[07Feb2019 20:07:23.652] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$ValueSpec.class got resource net/minecraftforge/common/ForgeConfigSpec$ValueSpec.class true
[07Feb2019 20:07:23.653] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/FeatureRewardPlayerChest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\FeatureRewardPlayerChest.class true
[07Feb2019 20:07:23.655] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$Builder$1.class got resource net/minecraftforge/common/ForgeConfigSpec$Builder$1.class true
[07Feb2019 20:07:23.655] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/bag/FeatureRewardBox.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\bag\FeatureRewardBox.class true
[07Feb2019 20:07:23.660] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/FeatureBuilding.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\FeatureBuilding.class true
[07Feb2019 20:07:23.663] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$BuilderContext.class got resource net/minecraftforge/common/ForgeConfigSpec$BuilderContext.class true
[07Feb2019 20:07:23.663] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/FeatureWisdom.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\FeatureWisdom.class true
[07Feb2019 20:07:23.665] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/ProxyLoader.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\ProxyLoader.class true
[07Feb2019 20:07:23.666] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfig$General.class got resource net/minecraftforge/common/ForgeConfig$General.class true
[07Feb2019 20:07:23.667] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/ProxyLoaderServer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\ProxyLoaderServer.class true
[07Feb2019 20:07:23.668] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec.class got resource net/minecraftforge/common/ForgeConfigSpec.class true
[07Feb2019 20:07:23.668] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/status/FeatureServerStatus.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\status\FeatureServerStatus.class true
[07Feb2019 20:07:23.670] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/FeatureMaintenance.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\FeatureMaintenance.class true
[07Feb2019 20:07:23.672] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/chat/FeatureChat.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\chat\FeatureChat.class true
[07Feb2019 20:07:23.674] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/rcon/FeatureRCon.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\rcon\FeatureRCon.class true
[07Feb2019 20:07:23.674] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$BooleanValue.class got resource net/minecraftforge/common/ForgeConfigSpec$BooleanValue.class true
[07Feb2019 20:07:23.676] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/FeatureProxy$RegisteringPhase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\FeatureProxy$RegisteringPhase.class true
[07Feb2019 20:07:23.677] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$ConfigValue.class got resource net/minecraftforge/common/ForgeConfigSpec$ConfigValue.class true
[07Feb2019 20:07:23.679] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/network/NetworkManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\network\NetworkManager.class true
[07Feb2019 20:07:23.682] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$DoubleValue.class got resource net/minecraftforge/common/ForgeConfigSpec$DoubleValue.class true
[07Feb2019 20:07:23.682] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkRegistry$ChannelBuilder.class got resource net/minecraftforge/fml/network/NetworkRegistry$ChannelBuilder.class true
[07Feb2019 20:07:23.684] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$Range.class got resource net/minecraftforge/common/ForgeConfigSpec$Range.class true
[07Feb2019 20:07:23.684] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/simple/SimpleChannel.class got resource net/minecraftforge/fml/network/simple/SimpleChannel.class true
[07Feb2019 20:07:23.687] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkRegistry.class got resource net/minecraftforge/fml/network/NetworkRegistry.class true
[07Feb2019 20:07:23.687] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfigSpec$IntValue.class got resource net/minecraftforge/common/ForgeConfigSpec$IntValue.class true
[07Feb2019 20:07:23.691] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfig$Client.class got resource net/minecraftforge/common/ForgeConfig$Client.class true
[07Feb2019 20:07:23.691] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkInstance.class got resource net/minecraftforge/fml/network/NetworkInstance.class true
[07Feb2019 20:07:23.694] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent.class got resource net/minecraftforge/fml/network/NetworkEvent.class true
[07Feb2019 20:07:23.694] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeConfig$Chunk.class got resource net/minecraftforge/common/ForgeConfig$Chunk.class true
[07Feb2019 20:07:23.697] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent$LoginPayloadEvent.class got resource net/minecraftforge/fml/network/NetworkEvent$LoginPayloadEvent.class true
[07Feb2019 20:07:23.697] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading config file S:\dev\lighthouse\run\server\config\forge.toml
[07Feb2019 20:07:23.698] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Built TOML config for S:\dev\lighthouse\run\server\config\forge.toml
[07Feb2019 20:07:23.699] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loaded TOML config file S:\dev\lighthouse\run\server\config\forge.toml
[07Feb2019 20:07:23.699] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/NetworkEvent$GatherLoginPayloadsEvent.class got resource net/minecraftforge/fml/network/NetworkEvent$GatherLoginPayloadsEvent.class true
[07Feb2019 20:07:23.700] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading config file S:\dev\lighthouse\run\server\config\forge_chunk.toml
[07Feb2019 20:07:23.700] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Built TOML config for S:\dev\lighthouse\run\server\config\forge_chunk.toml
[07Feb2019 20:07:23.701] [modloading-worker-2/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loaded TOML config file S:\dev\lighthouse\run\server\config\forge_chunk.toml
[07Feb2019 20:07:23.701] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loaded mod instance forge of type net.minecraftforge.common.ForgeMod
[07Feb2019 20:07:23.701] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Injecting Automatic event subscribers for forge
[07Feb2019 20:07:23.703] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/AutomaticEventSubscriber.class got resource net/minecraftforge/fml/AutomaticEventSubscriber.class true
[07Feb2019 20:07:23.704] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/simple/IndexedMessageCodec.class got resource net/minecraftforge/fml/network/simple/IndexedMessageCodec.class true
[07Feb2019 20:07:23.706] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/Mod$EventBusSubscriber.class got resource net/minecraftforge/fml/common/Mod$EventBusSubscriber.class true
[07Feb2019 20:07:23.709] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge
[07Feb2019 20:07:23.711] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Completed Automatic event subscribers for forge
[07Feb2019 20:07:23.727] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/FeatureRegistry.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\FeatureRegistry.class true
[07Feb2019 20:07:23.731] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/client/registry/IRenderFactory.class got resource net/minecraftforge/fml/client/registry/IRenderFactory.class true
[07Feb2019 20:07:23.733] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/WorldGenFeature.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\WorldGenFeature.class true
[07Feb2019 20:07:23.735] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/network/Packet.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\network\Packet.class true
[07Feb2019 20:07:23.736] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/network/PacketUpdateGlobalMessage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\network\PacketUpdateGlobalMessage.class true
[07Feb2019 20:07:23.737] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/network/PacketBuilder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\network\PacketBuilder.class true
[07Feb2019 20:07:23.738] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/network/PacketUpdateGlobalMessage$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\network\PacketUpdateGlobalMessage$Builder.class true
[07Feb2019 20:07:23.740] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/Feature$ECycle.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\Feature$ECycle.class true
[07Feb2019 20:07:23.742] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/Messenger.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\Messenger.class true
[07Feb2019 20:07:23.747] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/Throttler.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\Throttler.class true
[07Feb2019 20:07:23.749] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/io/FileManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\io\FileManager.class true
[07Feb2019 20:07:23.751] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/Command.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\Command.class true
[07Feb2019 20:07:23.753] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/command/CommandGoto.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\command\CommandGoto.class true
[07Feb2019 20:07:23.755] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/command/CommandSetPortal.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\command\CommandSetPortal.class true
[07Feb2019 20:07:23.756] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/command/ACommandSetLocation.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\command\ACommandSetLocation.class true
[07Feb2019 20:07:23.758] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/network/PacketRegisterDimension$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\network\PacketRegisterDimension$Builder.class true
[07Feb2019 20:07:23.760] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/network/PacketSyncProvider$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\network\PacketSyncProvider$Builder.class true
[07Feb2019 20:07:23.761] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/WorldManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\WorldManager.class true
[07Feb2019 20:07:23.764] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/network/PacketRegisterDimension.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\network\PacketRegisterDimension.class true
[07Feb2019 20:07:23.768] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/FMLServerAboutToStartEvent.class got resource net/minecraftforge/fml/event/server/FMLServerAboutToStartEvent.class true
[07Feb2019 20:07:23.770] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/debug/server/command/CommandGodMod.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\debug\server\command\CommandGodMod.class true
[07Feb2019 20:07:23.772] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/debug/server/command/CommandSetLag.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\debug\server\command\CommandSetLag.class true
[07Feb2019 20:07:23.773] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketSyncGroupData$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketSyncGroupData$Builder.class true
[07Feb2019 20:07:23.774] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketChangeGroup$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketChangeGroup$Builder.class true
[07Feb2019 20:07:23.775] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupAccept$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupAccept$Builder.class true
[07Feb2019 20:07:23.776] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupInvite$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupInvite$Builder.class true
[07Feb2019 20:07:23.778] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupKick$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupKick$Builder.class true
[07Feb2019 20:07:23.779] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/FeatureEconomy$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\FeatureEconomy$1.class true
[07Feb2019 20:07:23.780] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/ItemBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\ItemBase.class true
[07Feb2019 20:07:23.783] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/IRegistryBaseName.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\IRegistryBaseName.class true
[07Feb2019 20:07:23.784] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/World.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\World.class true
[07Feb2019 20:07:23.787] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/protection/IWorldPermissions.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\protection\IWorldPermissions.class true
[07Feb2019 20:07:23.788] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/EWorld.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\EWorld.class true
[07Feb2019 20:07:23.790] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/command/CommandMoney.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\command\CommandMoney.class true
[07Feb2019 20:07:23.792] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/command/CommandPay.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\command\CommandPay.class true
[07Feb2019 20:07:23.793] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/block/BlockShop.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\block\BlockShop.class true
[07Feb2019 20:07:23.797] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/IWithItemBlock.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\IWithItemBlock.class true
[07Feb2019 20:07:23.798] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/IBlockOversized.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\IBlockOversized.class true
[07Feb2019 20:07:23.800] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/Capability$IStorage.class got resource net/minecraftforge/common/capabilities/Capability$IStorage.class true
[07Feb2019 20:07:23.801] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketSyncMoney$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketSyncMoney$Builder.class true
[07Feb2019 20:07:23.802] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketShopBuyRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketShopBuyRequest$Builder.class true
[07Feb2019 20:07:23.803] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketShopPriceChangeRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketShopPriceChangeRequest$Builder.class true
[07Feb2019 20:07:23.805] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/IMoney.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\IMoney.class true
[07Feb2019 20:07:23.806] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/block/TileEntityShop.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\block\TileEntityShop.class true
[07Feb2019 20:07:23.807] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/TileEntityBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\TileEntityBase.class true
[07Feb2019 20:07:23.812] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/block/BlockShop$EShape.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\block\BlockShop$EShape.class true
[07Feb2019 20:07:23.816] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/item/ItemCrate.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\item\ItemCrate.class true
[07Feb2019 20:07:23.821] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/EnumAction.class got resource net/minecraft/item/EnumAction.class true
[07Feb2019 20:07:23.823] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/tutorial/server/data/TutorialSpawnLocationSavedData$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\tutorial\server\data\TutorialSpawnLocationSavedData$Builder.class true
[07Feb2019 20:07:23.824] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/data/SavedDataBuilder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\data\SavedDataBuilder.class true
[07Feb2019 20:07:23.826] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/tutorial/server/data/TutorialSpawnLocationSavedData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\tutorial\server\data\TutorialSpawnLocationSavedData.class true
[07Feb2019 20:07:23.828] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/data/ILocateStuff.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\data\ILocateStuff.class true
[07Feb2019 20:07:23.829] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/network/PacketUseOffHandItem$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\network\PacketUseOffHandItem$Builder.class true
[07Feb2019 20:07:23.830] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/registry/EntityRegisteringEntry.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\registry\EntityRegisteringEntry.class true
[07Feb2019 20:07:23.831] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/EntityHook.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\EntityHook.class true
[07Feb2019 20:07:23.835] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/FeatureWeaponSecondary$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\FeatureWeaponSecondary$1.class true
[07Feb2019 20:07:23.836] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemHook.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemHook.class true
[07Feb2019 20:07:23.838] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/IOffHandUsage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\IOffHandUsage.class true
[07Feb2019 20:07:23.839] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemCrossBow.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemCrossBow.class true
[07Feb2019 20:07:23.842] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemFilledInjector.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemFilledInjector.class true
[07Feb2019 20:07:23.844] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemInjector.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemInjector.class true
[07Feb2019 20:07:23.848] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/IRecipeSerializer.class got resource net/minecraft/item/crafting/IRecipeSerializer.class true
[07Feb2019 20:07:23.850] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemCrossBow$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemCrossBow$1.class true
[07Feb2019 20:07:23.851] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/item/ItemCrossBow$2.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\item\ItemCrossBow$2.class true
[07Feb2019 20:07:23.854] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeSerializers$SimpleSerializer.class got resource net/minecraft/item/crafting/RecipeSerializers$SimpleSerializer.class true
[07Feb2019 20:07:23.855] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/recipe/RecipeFilledInjector.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\recipe\RecipeFilledInjector.class true
[07Feb2019 20:07:23.858] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/IRecipe.class got resource net/minecraft/item/crafting/IRecipe.class true
[07Feb2019 20:07:23.860] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeRecipe.class got resource net/minecraftforge/common/extensions/IForgeRecipe.class true
[07Feb2019 20:07:23.862] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/FeatureMiscellaneous$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\FeatureMiscellaneous$1.class true
[07Feb2019 20:07:23.864] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/FeatureMiscellaneous$2.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\FeatureMiscellaneous$2.class true
[07Feb2019 20:07:23.865] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/item/ItemSimpleSword.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\item\ItemSimpleSword.class true
[07Feb2019 20:07:23.868] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/command/CommandName.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\command\CommandName.class true
[07Feb2019 20:07:23.869] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/command/CommandVanish.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\command\CommandVanish.class true
[07Feb2019 20:07:23.870] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/network/PacketSyncPlayerStats$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\network\PacketSyncPlayerStats$Builder.class true
[07Feb2019 20:07:23.871] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/IPlayerStats.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\IPlayerStats.class true
[07Feb2019 20:07:23.873] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/item/ItemEffectSword.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\item\ItemEffectSword.class true
[07Feb2019 20:07:23.876] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/config/ConfigManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\config\ConfigManager.class true
[07Feb2019 20:07:23.877] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/gson/ListSerializer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\gson\ListSerializer.class true
[07Feb2019 20:07:23.878] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/bag/RewardContent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\bag\RewardContent.class true
[07Feb2019 20:07:23.883] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/bag/ItemReward.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\bag\ItemReward.class true
[07Feb2019 20:07:23.887] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/ProtectedArea.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\ProtectedArea.class true
[07Feb2019 20:07:23.889] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/config/Config.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\config\Config.class true
[07Feb2019 20:07:23.891] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/config/MiscData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\config\MiscData.class true
[07Feb2019 20:07:23.893] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/block/BlockRosaphirOre.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\block\BlockRosaphirOre.class true
[07Feb2019 20:07:23.896] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/block/BlockRosaphirBlock.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\block\BlockRosaphirBlock.class true
[07Feb2019 20:07:23.897] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/BlockBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\BlockBase.class true
[07Feb2019 20:07:23.901] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/item/ItemRosaphirGem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\item\ItemRosaphirGem.class true
[07Feb2019 20:07:23.903] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/command/CommandLighthouse.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\command\CommandLighthouse.class true
[07Feb2019 20:07:23.904] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/ILighthouseHolder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\ILighthouseHolder.class true
[07Feb2019 20:07:23.905] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/block/BlockLighthouseLight.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\block\BlockLighthouseLight.class true
[07Feb2019 20:07:23.909] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketLighthousesSync$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketLighthousesSync$Builder.class true
[07Feb2019 20:07:23.910] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketSyncRenderDistance$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketSyncRenderDistance$Builder.class true
[07Feb2019 20:07:23.911] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketSiegeBearerAttack$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketSiegeBearerAttack$Builder.class true
[07Feb2019 20:07:23.912] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketRaidLeaderAttack$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketRaidLeaderAttack$Builder.class true
[07Feb2019 20:07:23.913] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketLighthouseDeathEvent$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketLighthouseDeathEvent$Builder.class true
[07Feb2019 20:07:23.914] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketBuilderContinue$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketBuilderContinue$Builder.class true
[07Feb2019 20:07:23.918] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/DamageSource.class got resource net/minecraft/util/DamageSource.class true
[07Feb2019 20:07:23.922] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EntityDamageSourceIndirect.class got resource net/minecraft/util/EntityDamageSourceIndirect.class true
[07Feb2019 20:07:23.925] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EntityDamageSource.class got resource net/minecraft/util/EntityDamageSource.class true
[07Feb2019 20:07:23.927] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/DamageSourceNetherBed.class got resource net/minecraft/util/DamageSourceNetherBed.class true
[07Feb2019 20:07:23.929] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/entity/EntityInfantry.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\entity\EntityInfantry.class true
[07Feb2019 20:07:23.931] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/entity/EntityConquest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\entity\EntityConquest.class true
[07Feb2019 20:07:23.940] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/entity/EntityRaidLeader.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\entity\EntityRaidLeader.class true
[07Feb2019 20:07:23.946] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/entity/EntitySiegeBearer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\entity\EntitySiegeBearer.class true
[07Feb2019 20:07:23.951] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/FogFactor.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\FogFactor.class true
[07Feb2019 20:07:23.953] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/FogManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\FogManager.class true
[07Feb2019 20:07:23.956] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/ITickableWorld.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\ITickableWorld.class true
[07Feb2019 20:07:23.957] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/structure/IStructure.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\structure\IStructure.class true
[07Feb2019 20:07:23.958] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketLighthouseDeathEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketLighthouseDeathEvent.class true
[07Feb2019 20:07:23.960] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/event/LighthouseAnimationEvent$Destroy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\event\LighthouseAnimationEvent$Destroy.class true
[07Feb2019 20:07:23.961] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/event/LighthouseAnimationEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\event\LighthouseAnimationEvent.class true
[07Feb2019 20:07:23.963] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/event/LighthouseAnimationEvent$Create.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\event\LighthouseAnimationEvent$Create.class true
[07Feb2019 20:07:23.965] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/Lighthouse.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\Lighthouse.class true
[07Feb2019 20:07:23.966] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/LighthouseServer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\LighthouseServer.class true
[07Feb2019 20:07:23.973] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketSyncRenderDistance.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketSyncRenderDistance.class true
[07Feb2019 20:07:23.974] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketLighthousesSync.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketLighthousesSync.class true
[07Feb2019 20:07:23.976] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/WorldSavedDataFog$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\WorldSavedDataFog$Builder.class true
[07Feb2019 20:07:23.977] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/WorldSavedDataFog.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\WorldSavedDataFog.class true
[07Feb2019 20:07:23.978] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/MaintenanceOperation.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\MaintenanceOperation.class true
[07Feb2019 20:07:23.980] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/maintenance/MaintenanceOperationGenerateMap.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\maintenance\MaintenanceOperationGenerateMap.class true
[07Feb2019 20:07:23.982] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketLocationUpdate$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketLocationUpdate$Builder.class true
[07Feb2019 20:07:23.984] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketUpdateMap$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketUpdateMap$Builder.class true
[07Feb2019 20:07:23.985] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketUpdateMapRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketUpdateMapRequest$Builder.class true
[07Feb2019 20:07:23.987] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketMarkChunkDirty$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketMarkChunkDirty$Builder.class true
[07Feb2019 20:07:23.988] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketTeleportRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketTeleportRequest$Builder.class true
[07Feb2019 20:07:23.989] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/WorldSavedDataMap$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\WorldSavedDataMap$Builder.class true
[07Feb2019 20:07:23.991] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/WorldSavedDataMap.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\WorldSavedDataMap.class true
[07Feb2019 20:07:23.995] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/FMLServerStartedEvent.class got resource net/minecraftforge/fml/event/server/FMLServerStartedEvent.class true
[07Feb2019 20:07:23.997] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/command/CommandSwitch.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\command\CommandSwitch.class true
[07Feb2019 20:07:23.998] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/command/CommandSetSpawn.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\command\CommandSetSpawn.class true
[07Feb2019 20:07:24.000] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/command/CommandSpawn.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\command\CommandSpawn.class true
[07Feb2019 20:07:24.001] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/command/CommandBuild.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\command\CommandBuild.class true
[07Feb2019 20:07:24.002] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/network/PacketSyncZones$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\network\PacketSyncZones$Builder.class true
[07Feb2019 20:07:24.004] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/data/ZonesSavedData$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\data\ZonesSavedData$Builder.class true
[07Feb2019 20:07:24.005] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/data/ZonesSavedData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\data\ZonesSavedData.class true
[07Feb2019 20:07:24.008] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/data/SpawnLocationSavedData$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\data\SpawnLocationSavedData$Builder.class true
[07Feb2019 20:07:24.009] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/data/SpawnLocationSavedData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\data\SpawnLocationSavedData.class true
[07Feb2019 20:07:24.011] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/server/command/CommandSafezone.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\server\command\CommandSafezone.class true
[07Feb2019 20:07:24.013] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/command/CommandZone.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\command\CommandZone.class true
[07Feb2019 20:07:24.014] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/ZoneManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\ZoneManager.class true
[07Feb2019 20:07:24.015] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/ZoneChangeUpdater.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\ZoneChangeUpdater.class true
[07Feb2019 20:07:24.017] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketLocationUpdate.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketLocationUpdate.class true
[07Feb2019 20:07:24.019] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityPirate.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityPirate.class true
[07Feb2019 20:07:24.020] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/improvable/EntityImprovable.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\improvable\EntityImprovable.class true
[07Feb2019 20:07:24.022] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityNewMob.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityNewMob.class true
[07Feb2019 20:07:24.033] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityDrunkPirate.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityDrunkPirate.class true
[07Feb2019 20:07:24.038] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityDesertRogue.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityDesertRogue.class true
[07Feb2019 20:07:24.044] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityCrab.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityCrab.class true
[07Feb2019 20:07:24.051] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityScorpion.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityScorpion.class true
[07Feb2019 20:07:24.059] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/living/entity/EntityScarab.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\living\entity\EntityScarab.class true
[07Feb2019 20:07:24.066] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/tutorial/server/command/CommandSetTutorialSpawn.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\tutorial\server\command\CommandSetTutorialSpawn.class true
[07Feb2019 20:07:24.067] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/command/CommandQuest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\command\CommandQuest.class true
[07Feb2019 20:07:24.069] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/command/CommandNPC.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\command\CommandNPC.class true
[07Feb2019 20:07:24.069] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/command/CommandDialog.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\command\CommandDialog.class true
[07Feb2019 20:07:24.070] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/network/PacketQuestData$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\network\PacketQuestData$Builder.class true
[07Feb2019 20:07:24.072] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/network/PacketOpenGuiEvent$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\network\PacketOpenGuiEvent$Builder.class true
[07Feb2019 20:07:24.073] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogOpenGUI$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogOpenGUI$Builder.class true
[07Feb2019 20:07:24.074] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogAddMessage$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogAddMessage$Builder.class true
[07Feb2019 20:07:24.076] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogMessageRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogMessageRequest$Builder.class true
[07Feb2019 20:07:24.079] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryOpen$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryOpen$Builder.class true
[07Feb2019 20:07:24.080] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogOpenSubGUI$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogOpenSubGUI$Builder.class true
[07Feb2019 20:07:24.081] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogCloseSubGUI$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogCloseSubGUI$Builder.class true
[07Feb2019 20:07:24.083] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryVerifyRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryVerifyRequest$Builder.class true
[07Feb2019 20:07:24.085] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryDiscordRequest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryDiscordRequest$Builder.class true
[07Feb2019 20:07:24.087] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/entity/EntityNPC.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\entity\EntityNPC.class true
[07Feb2019 20:07:24.093] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/INpc.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\INpc.class true
[07Feb2019 20:07:24.094] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/IPointingTipProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\IPointingTipProvider.class true
[07Feb2019 20:07:24.095] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestManager.class true
[07Feb2019 20:07:24.099] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/event/QuestEvent$Trigger.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\event\QuestEvent$Trigger.class true
[07Feb2019 20:07:24.100] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/event/QuestEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\event\QuestEvent.class true
[07Feb2019 20:07:24.101] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/requirement/IRequirement.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\requirement\IRequirement.class true
[07Feb2019 20:07:24.102] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTrigger.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTrigger.class true
[07Feb2019 20:07:24.103] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerBreakBlock.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerBreakBlock.class true
[07Feb2019 20:07:24.106] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerBuyItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerBuyItem.class true
[07Feb2019 20:07:24.108] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerItem.class true
[07Feb2019 20:07:24.110] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerCraftItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerCraftItem.class true
[07Feb2019 20:07:24.111] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerDialogTrigger.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerDialogTrigger.class true
[07Feb2019 20:07:24.113] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerEnterWorld.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerEnterWorld.class true
[07Feb2019 20:07:24.114] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerHarvestItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerHarvestItem.class true
[07Feb2019 20:07:24.115] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerKillEntity.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerKillEntity.class true
[07Feb2019 20:07:24.116] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerLootEntity.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerLootEntity.class true
[07Feb2019 20:07:24.117] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerOpenGui.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerOpenGui.class true
[07Feb2019 20:07:24.118] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/trigger/TaskTriggerSmeltItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\trigger\TaskTriggerSmeltItem.class true
[07Feb2019 20:07:24.119] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestTask.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestTask.class true
[07Feb2019 20:07:24.120] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestStep.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestStep.class true
[07Feb2019 20:07:24.123] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestRoad.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestRoad.class true
[07Feb2019 20:07:24.125] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/network/PacketQuestData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\network\PacketQuestData.class true
[07Feb2019 20:07:24.127] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/Quest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\Quest.class true
[07Feb2019 20:07:24.129] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestState.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestState.class true
[07Feb2019 20:07:24.133] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/story/StoryManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\story\StoryManager.class true
[07Feb2019 20:07:24.135] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/block/BlockPlayerChest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\block\BlockPlayerChest.class true
[07Feb2019 20:07:24.136] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/BlockChestBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\BlockChestBase.class true
[07Feb2019 20:07:24.142] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/server/command/CommandPCID.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\server\command\CommandPCID.class true
[07Feb2019 20:07:24.143] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/network/PacketOpenPlayerChest$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\network\PacketOpenPlayerChest$Builder.class true
[07Feb2019 20:07:24.144] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/network/PacketSyncPlayerChests$Builder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\network\PacketSyncPlayerChests$Builder.class true
[07Feb2019 20:07:24.146] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/block/TileEntityPlayerChest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\block\TileEntityPlayerChest.class true
[07Feb2019 20:07:24.150] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/network/PacketOpenPlayerChest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\network\PacketOpenPlayerChest.class true
[07Feb2019 20:07:24.152] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/bag/ItemRewardBag.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\bag\ItemRewardBag.class true
[07Feb2019 20:07:24.155] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/FeatureBuilding$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\FeatureBuilding$1.class true
[07Feb2019 20:07:24.157] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/block/BlockRope.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\block\BlockRope.class true
[07Feb2019 20:07:24.160] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/BlockRotatedPillarBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\BlockRotatedPillarBase.class true
[07Feb2019 20:07:24.163] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/block/BlockChair.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\block\BlockChair.class true
[07Feb2019 20:07:24.169] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/ICriterionInstance.class got resource net/minecraft/advancements/ICriterionInstance.class true
[07Feb2019 20:07:24.171] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/item/ItemSawmill.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\item\ItemSawmill.class true
[07Feb2019 20:07:24.172] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/ItemBlockBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\ItemBlockBase.class true
[07Feb2019 20:07:24.177] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/block/BlockSawmill.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\block\BlockSawmill.class true
[07Feb2019 20:07:24.184] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/recipe/SawmillRecipe$Serializer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\recipe\SawmillRecipe$Serializer.class true
[07Feb2019 20:07:24.187] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/block/TileEntitySawmill.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\block\TileEntitySawmill.class true
[07Feb2019 20:07:24.191] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/building/block/BlockSawmill$EnumPartType.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\building\block\BlockSawmill$EnumPartType.class true
[07Feb2019 20:07:24.258] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/block/BlockPlant.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\block\BlockPlant.class true
[07Feb2019 20:07:24.265] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/block/BlockPlantStinky.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\block\BlockPlantStinky.class true
[07Feb2019 20:07:24.269] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/server/PlantWorldGenFeature.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\server\PlantWorldGenFeature.class true
[07Feb2019 20:07:24.272] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/PotionPoisonImmunity.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\PotionPoisonImmunity.class true
[07Feb2019 20:07:24.273] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/block/BlockMortar.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\block\BlockMortar.class true
[07Feb2019 20:07:24.277] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemPlant.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemPlant.class true
[07Feb2019 20:07:24.279] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemPlant$Powder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemPlant$Powder.class true
[07Feb2019 20:07:24.281] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemBalmWhite.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemBalmWhite.class true
[07Feb2019 20:07:24.282] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemBalm.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemBalm.class true
[07Feb2019 20:07:24.286] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemBalmGreen.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemBalmGreen.class true
[07Feb2019 20:07:24.289] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemBalmPink.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemBalmPink.class true
[07Feb2019 20:07:24.291] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/item/ItemAromatherapicBomb.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\item\ItemAromatherapicBomb.class true
[07Feb2019 20:07:24.294] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/entity/client/ARenderSupplier.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\entity\client\ARenderSupplier.class true
[07Feb2019 20:07:24.295] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/FeatureWisdom$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\FeatureWisdom$1.class true
[07Feb2019 20:07:24.301] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/entity/EntityAromatherapicBomb.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\entity\EntityAromatherapicBomb.class true
[07Feb2019 20:07:24.304] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/block/TileEntityMortar.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\block\TileEntityMortar.class true
[07Feb2019 20:07:24.310] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/command/CommandPermission.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\command\CommandPermission.class true
[07Feb2019 20:07:24.311] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/ConfigurationPermissions.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\ConfigurationPermissions.class true
[07Feb2019 20:07:24.313] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/config/ConfigurationFile.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\config\ConfigurationFile.class true
[07Feb2019 20:07:24.317] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/data/RoleData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\data\RoleData.class true
[07Feb2019 20:07:24.319] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/data/PlayerPermissionsData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\data\PlayerPermissionsData.class true
[07Feb2019 20:07:24.321] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/Role.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\Role.class true
[07Feb2019 20:07:24.322] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Loading Config : permissions.json...
[07Feb2019 20:07:24.327] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/data/RoleData$RoleInheritance.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\data\RoleData$RoleInheritance.class true
[07Feb2019 20:07:24.329] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/PlayerPermissions.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\PlayerPermissions.class true
[07Feb2019 20:07:24.331] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Configuration : permissions.json loaded.
[07Feb2019 20:07:24.332] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/Permission.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\Permission.class true
[07Feb2019 20:07:24.335] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/command/CommandMaintenance.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\command\CommandMaintenance.class true
[07Feb2019 20:07:24.337] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/command/CommandStop.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\command\CommandStop.class true
[07Feb2019 20:07:24.338] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/command/CommandFixRules.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\command\CommandFixRules.class true
[07Feb2019 20:07:24.339] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/rules/Rule.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\rules\Rule.class true
[07Feb2019 20:07:24.339] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/rules/RuleGameRuleBoolean.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\rules\RuleGameRuleBoolean.class true
[07Feb2019 20:07:24.341] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/MaintenanceManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\MaintenanceManager.class true
[07Feb2019 20:07:24.344] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/MaintenanceOperationCountdown.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\MaintenanceOperationCountdown.class true
[07Feb2019 20:07:24.345] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/EMaintenanceOperationPriority.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\EMaintenanceOperationPriority.class true
[07Feb2019 20:07:24.347] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/EMaintenanceOperationPriority$Comparator.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\EMaintenanceOperationPriority$Comparator.class true
[07Feb2019 20:07:24.349] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/Mappings.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\Mappings.class true
[07Feb2019 20:07:24.350] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/server/datafix/BlockReplacerMapping.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\server\datafix\BlockReplacerMapping.class true
[07Feb2019 20:07:24.361] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Loaded mod instance lighthouse of type fr.utopics.lighthouse.mod.ModLighthouse
[07Feb2019 20:07:24.361] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Injecting Automatic event subscribers for lighthouse
[07Feb2019 20:07:24.361] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for lighthouse
[07Feb2019 20:07:24.365] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/Mod$EventBusSubscriber$Bus.class got resource net/minecraftforge/fml/common/Mod$EventBusSubscriber$Bus.class true
[07Feb2019 20:07:24.367] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.AutomaticEventSubscriber/LOADING]: Auto-subscribing fr.utopics.lighthouse.core.Feature to FORGE
[07Feb2019 20:07:24.368] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Completed Automatic event subscribers for lighthouse
[07Feb2019 20:07:24.369] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:CREATE_REGISTRIES
[07Feb2019 20:07:24.369] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.NewRegistry
[07Feb2019 20:07:24.369] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.NewRegistry
[07Feb2019 20:07:24.369] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.NewRegistry
[07Feb2019 20:07:24.369] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.NewRegistry
[07Feb2019 20:07:24.373] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ObjectHolderRegistry.class got resource net/minecraftforge/registries/ObjectHolderRegistry.class true
[07Feb2019 20:07:24.376] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ObjectHolder.class got resource net/minecraftforge/registries/ObjectHolder.class true
[07Feb2019 20:07:24.379] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/Mod.class got resource net/minecraftforge/fml/common/Mod.class true
[07Feb2019 20:07:24.384] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/registries/ObjectHolderRef.class got resource net/minecraftforge/registries/ObjectHolderRef.class true
[07Feb2019 20:07:24.391] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Enchantments.class got resource net/minecraft/init/Enchantments.class true
[07Feb2019 20:07:24.397] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/init/Particles.class got resource net/minecraft/init/Particles.class true
[07Feb2019 20:07:24.401] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/CapabilityManager.class got resource net/minecraftforge/common/capabilities/CapabilityManager.class true
[07Feb2019 20:07:24.405] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/CapabilityInject.class got resource net/minecraftforge/common/capabilities/CapabilityInject.class true
[07Feb2019 20:07:24.409] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/Capability.class got resource net/minecraftforge/common/capabilities/Capability.class true
[07Feb2019 20:07:24.411] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.411] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:blocks>
[07Feb2019 20:07:24.411] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:blocks>
[07Feb2019 20:07:24.411] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:blocks>
[07Feb2019 20:07:24.412] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:blocks>
[07Feb2019 20:07:24.414] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.414] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:items>
[07Feb2019 20:07:24.414] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:items>
[07Feb2019 20:07:24.414] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:items>
[07Feb2019 20:07:24.415] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/Callback.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\Callback.class true
[07Feb2019 20:07:24.416] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:items>
[07Feb2019 20:07:24.416] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.416] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:biomes>
[07Feb2019 20:07:24.416] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:biomes>
[07Feb2019 20:07:24.416] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:biomes>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:biomes>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:enchantments>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:enchantments>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:enchantments>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:enchantments>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:entities>
[07Feb2019 20:07:24.417] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:entities>
[07Feb2019 20:07:24.418] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:entities>
[07Feb2019 20:07:24.419] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/Feature$EntitySpawnHolder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\Feature$EntitySpawnHolder.class true
[07Feb2019 20:07:24.420] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:entities>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:potions>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:potions>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:potions>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:potions>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:potiontypes>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:potiontypes>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:potiontypes>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:potiontypes>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:soundevents>
[07Feb2019 20:07:24.421] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:soundevents>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:soundevents>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:soundevents>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:tileentities>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:tileentities>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:tileentities>
[07Feb2019 20:07:24.422] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:tileentities>
[07Feb2019 20:07:24.423] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching synchronous event LifecycleEvent:LOAD_REGISTRIES
[07Feb2019 20:07:24.423] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : RegistryEvent.Register<minecraft:villagerprofessions>
[07Feb2019 20:07:24.423] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : RegistryEvent.Register<minecraft:villagerprofessions>
[07Feb2019 20:07:24.423] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : RegistryEvent.Register<minecraft:villagerprofessions>
[07Feb2019 20:07:24.423] [Server thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : RegistryEvent.Register<minecraft:villagerprofessions>
[07Feb2019 20:07:24.424] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:COMMON_SETUP
[07Feb2019 20:07:24.424] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : FMLCommonSetupEvent
[07Feb2019 20:07:24.424] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : FMLCommonSetupEvent
[07Feb2019 20:07:24.427] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/CapabilityItemHandler.class got resource net/minecraftforge/items/CapabilityItemHandler.class true
[07Feb2019 20:07:24.427] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/PacketBuffer.class got resource net/minecraft/network/PacketBuffer.class true
[07Feb2019 20:07:24.430] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/CapabilityItemHandler$1.class got resource net/minecraftforge/items/CapabilityItemHandler$1.class true
[07Feb2019 20:07:24.434] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/ItemStackHandler.class got resource net/minecraftforge/items/ItemStackHandler.class true
[07Feb2019 20:07:24.438] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/network/simple/IndexedMessageCodec$MessageHandler.class got resource net/minecraftforge/fml/network/simple/IndexedMessageCodec$MessageHandler.class true
[07Feb2019 20:07:24.440] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/CapabilityFluidHandler.class got resource net/minecraftforge/fluids/capability/CapabilityFluidHandler.class true
[07Feb2019 20:07:24.440] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/server/GlobalMessageEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\server\GlobalMessageEventListener.class true
[07Feb2019 20:07:24.444] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/IFluidHandler.class got resource net/minecraftforge/fluids/capability/IFluidHandler.class true
[07Feb2019 20:07:24.444] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerChangedDimensionEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerChangedDimensionEvent.class true
[07Feb2019 20:07:24.446] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/IFluidHandlerItem.class got resource net/minecraftforge/fluids/capability/IFluidHandlerItem.class true
[07Feb2019 20:07:24.447] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerRespawnEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerRespawnEvent.class true
[07Feb2019 20:07:24.450] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/CapabilityFluidHandler$DefaultFluidHandlerStorage.class got resource net/minecraftforge/fluids/capability/CapabilityFluidHandler$DefaultFluidHandlerStorage.class true
[07Feb2019 20:07:24.451] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerLoggedOutEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$PlayerLoggedOutEvent.class true
[07Feb2019 20:07:24.453] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/network/PacketSyncProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\network\PacketSyncProvider.class true
[07Feb2019 20:07:24.453] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/model/animation/CapabilityAnimation.class got resource net/minecraftforge/common/model/animation/CapabilityAnimation.class true
[07Feb2019 20:07:24.454] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/WorldEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\WorldEventListener.class true
[07Feb2019 20:07:24.456] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/model/animation/IAnimationStateMachine.class got resource net/minecraftforge/common/model/animation/IAnimationStateMachine.class true
[07Feb2019 20:07:24.457] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityJoinWorldEvent.class got resource net/minecraftforge/event/entity/EntityJoinWorldEvent.class true
[07Feb2019 20:07:24.458] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/model/animation/CapabilityAnimation$1.class got resource net/minecraftforge/common/model/animation/CapabilityAnimation$1.class true
[07Feb2019 20:07:24.460] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/model/animation/AnimationStateMachine.class got resource net/minecraftforge/common/model/animation/AnimationStateMachine.class true
[07Feb2019 20:07:24.460] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$WorldTickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$WorldTickEvent.class true
[07Feb2019 20:07:24.463] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent.class true
[07Feb2019 20:07:24.464] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/model/animation/AnimationStateMachine$1.class got resource net/minecraftforge/common/model/animation/AnimationStateMachine$1.class true
[07Feb2019 20:07:24.465] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/IBiomeDecorator.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\IBiomeDecorator.class true
[07Feb2019 20:07:24.466] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/WorldConfig.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\WorldConfig.class true
[07Feb2019 20:07:24.467] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/PlayerLocation.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\PlayerLocation.class true
[07Feb2019 20:07:24.467] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/energy/CapabilityEnergy.class got resource net/minecraftforge/energy/CapabilityEnergy.class true
[07Feb2019 20:07:24.468] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/WorldManager$Teleportation.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\WorldManager$Teleportation.class true
[07Feb2019 20:07:24.470] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/energy/IEnergyStorage.class got resource net/minecraftforge/energy/IEnergyStorage.class true
[07Feb2019 20:07:24.470] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$RenderTickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$RenderTickEvent.class true
[07Feb2019 20:07:24.472] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/energy/CapabilityEnergy$1.class got resource net/minecraftforge/energy/CapabilityEnergy$1.class true
[07Feb2019 20:07:24.473] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$PlayerTickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$PlayerTickEvent.class true
[07Feb2019 20:07:24.476] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$Phase.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$Phase.class true
[07Feb2019 20:07:24.477] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/WorldEvent$Save.class got resource net/minecraftforge/event/world/WorldEvent$Save.class true
[07Feb2019 20:07:24.477] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/debug/LagMakerEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\debug\LagMakerEventListener.class true
[07Feb2019 20:07:24.479] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$ServerTickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$ServerTickEvent.class true
[07Feb2019 20:07:24.482] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$ClientTickEvent.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$ClientTickEvent.class true
[07Feb2019 20:07:24.485] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketSyncGroupData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketSyncGroupData.class true
[07Feb2019 20:07:24.486] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketChangeGroup.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketChangeGroup.class true
[07Feb2019 20:07:24.487] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/SaveHandler.class got resource net/minecraft/world/storage/SaveHandler.class true
[07Feb2019 20:07:24.487] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupAccept.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupAccept.class true
[07Feb2019 20:07:24.488] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupInvite.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupInvite.class true
[07Feb2019 20:07:24.489] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/network/PacketGroupKick.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\network\PacketGroupKick.class true
[07Feb2019 20:07:24.490] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/server/GroupManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\server\GroupManager.class true
[07Feb2019 20:07:24.490] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/IPlayerFileData.class got resource net/minecraft/world/storage/IPlayerFileData.class true
[07Feb2019 20:07:24.493] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/FMLModIdMappingEvent.class got resource net/minecraftforge/fml/event/lifecycle/FMLModIdMappingEvent.class true
[07Feb2019 20:07:24.494] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/server/GroupEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\server\GroupEventListener.class true
[07Feb2019 20:07:24.496] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/VersionChecker.class got resource net/minecraftforge/fml/VersionChecker.class true
[07Feb2019 20:07:24.497] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/IMoney$Storage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\IMoney$Storage.class true
[07Feb2019 20:07:24.499] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/registry/CapabilityProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\registry\CapabilityProvider.class true
[07Feb2019 20:07:24.499] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/VersionChecker$CheckResult.class got resource net/minecraftforge/fml/VersionChecker$CheckResult.class true
[07Feb2019 20:07:24.500] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/registry/CapabilityHolder.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\registry\CapabilityHolder.class true
[07Feb2019 20:07:24.501] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/MoneyCapabilityProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\MoneyCapabilityProvider.class true
[07Feb2019 20:07:24.502] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/VersionChecker$Status.class got resource net/minecraftforge/fml/VersionChecker$Status.class true
[07Feb2019 20:07:24.503] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/MoneyProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\MoneyProvider.class true
[07Feb2019 20:07:24.505] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketSyncMoney.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketSyncMoney.class true
[07Feb2019 20:07:24.505] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/VersionChecker$1.class got resource net/minecraftforge/fml/VersionChecker$1.class true
[07Feb2019 20:07:24.506] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketShopBuyRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketShopBuyRequest.class true
[07Feb2019 20:07:24.506] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : FMLCommonSetupEvent
[07Feb2019 20:07:24.507] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[07Feb2019 20:07:24.509] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/network/PacketShopPriceChangeRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\network\PacketShopPriceChangeRequest.class true
[07Feb2019 20:07:24.512] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/gson/ObjectSerializer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\gson\ObjectSerializer.class true
[07Feb2019 20:07:24.515] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/TransactionBuffer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\TransactionBuffer.class true
[07Feb2019 20:07:24.518] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/Transaction.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\Transaction.class true
[07Feb2019 20:07:24.521] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/mcp/MethodsReturnNonnullByDefault.class got resource mcp/MethodsReturnNonnullByDefault.class true
[07Feb2019 20:07:24.525] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/EMoney.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\EMoney.class true
[07Feb2019 20:07:24.527] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/provider/DimensionMain.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\provider\DimensionMain.class true
[07Feb2019 20:07:24.529] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/provider/DimensionBase.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\provider\DimensionBase.class true
[07Feb2019 20:07:24.534] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/OverworldDimension.class got resource net/minecraft/world/dimension/OverworldDimension.class true
[07Feb2019 20:07:24.539] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/Dimension.class got resource net/minecraft/world/dimension/Dimension.class true
[07Feb2019 20:07:24.542] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeDimension.class got resource net/minecraftforge/common/extensions/IForgeDimension.class true
[07Feb2019 20:07:24.549] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/IChunkGenSettings.class got resource net/minecraft/world/gen/IChunkGenSettings.class true
[07Feb2019 20:07:24.552] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/IChunkGenerator.class got resource net/minecraft/world/gen/IChunkGenerator.class true
[07Feb2019 20:07:24.554] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/client/NetherClientDimension.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\client\NetherClientDimension.class true
[07Feb2019 20:07:24.556] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/NetherDimension.class got resource net/minecraft/world/dimension/NetherDimension.class true
[07Feb2019 20:07:24.560] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/border/WorldBorder.class got resource net/minecraft/world/border/WorldBorder.class true
[07Feb2019 20:07:24.563] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/NetherDimension$1.class got resource net/minecraft/world/dimension/NetherDimension$1.class true
[07Feb2019 20:07:24.565] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/client/EndClientDimension.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\client\EndClientDimension.class true
[07Feb2019 20:07:24.568] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/dimension/EndDimension.class got resource net/minecraft/world/dimension/EndDimension.class true
[07Feb2019 20:07:24.572] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/provider/DimensionMainBuild.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\provider\DimensionMainBuild.class true
[07Feb2019 20:07:24.575] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/BiomeProvider.class got resource net/minecraft/world/biome/provider/BiomeProvider.class true
[07Feb2019 20:07:24.578] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/SingleBiomeProvider.class got resource net/minecraft/world/biome/provider/SingleBiomeProvider.class true
[07Feb2019 20:07:24.581] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/provider/DimensionBuild.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\provider\DimensionBuild.class true
[07Feb2019 20:07:24.583] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/EconomyServerEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\EconomyServerEventListener.class true
[07Feb2019 20:07:24.585] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/server/ShopEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\server\ShopEventListener.class true
[07Feb2019 20:07:24.588] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumHand.class got resource net/minecraft/util/EnumHand.class true
[07Feb2019 20:07:24.592] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/network/PacketUseOffHandItem.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\network\PacketUseOffHandItem.class true
[07Feb2019 20:07:24.593] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/server/OffhandEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\server\OffhandEventListener.class true
[07Feb2019 20:07:24.597] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeSerializers.class got resource net/minecraft/item/crafting/RecipeSerializers.class true
[07Feb2019 20:07:24.600] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShapedRecipe$Serializer.class got resource net/minecraft/item/crafting/ShapedRecipe$Serializer.class true
[07Feb2019 20:07:24.603] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShapelessRecipe$Serializer.class got resource net/minecraft/item/crafting/ShapelessRecipe$Serializer.class true
[07Feb2019 20:07:24.606] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipesArmorDyes.class got resource net/minecraft/item/crafting/RecipesArmorDyes.class true
[07Feb2019 20:07:24.609] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/IRecipeHidden.class got resource net/minecraft/item/crafting/IRecipeHidden.class true
[07Feb2019 20:07:24.612] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeBookCloning.class got resource net/minecraft/item/crafting/RecipeBookCloning.class true
[07Feb2019 20:07:24.615] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipesMapCloning.class got resource net/minecraft/item/crafting/RecipesMapCloning.class true
[07Feb2019 20:07:24.618] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipesMapExtending.class got resource net/minecraft/item/crafting/RecipesMapExtending.class true
[07Feb2019 20:07:24.622] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShapedRecipe.class got resource net/minecraft/item/crafting/ShapedRecipe.class true
[07Feb2019 20:07:24.625] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/IShapedRecipe.class got resource net/minecraftforge/common/crafting/IShapedRecipe.class true
[07Feb2019 20:07:24.628] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/FireworkRocketRecipe.class got resource net/minecraft/item/crafting/FireworkRocketRecipe.class true
[07Feb2019 20:07:24.632] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/FireworkStarRecipe.class got resource net/minecraft/item/crafting/FireworkStarRecipe.class true
[07Feb2019 20:07:24.636] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/FireworkStarFadeRecipe.class got resource net/minecraft/item/crafting/FireworkStarFadeRecipe.class true
[07Feb2019 20:07:24.639] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeRepairItem.class got resource net/minecraft/item/crafting/RecipeRepairItem.class true
[07Feb2019 20:07:24.643] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/RecipeTippedArrow.class got resource net/minecraft/item/crafting/RecipeTippedArrow.class true
[07Feb2019 20:07:24.646] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/BannerDuplicateRecipe.class got resource net/minecraft/item/crafting/BannerDuplicateRecipe.class true
[07Feb2019 20:07:24.649] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/BannerAddPatternRecipe.class got resource net/minecraft/item/crafting/BannerAddPatternRecipe.class true
[07Feb2019 20:07:24.654] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShieldRecipes.class got resource net/minecraft/item/crafting/ShieldRecipes.class true
[07Feb2019 20:07:24.657] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShulkerBoxColoringRecipe.class got resource net/minecraft/item/crafting/ShulkerBoxColoringRecipe.class true
[07Feb2019 20:07:24.660] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/FurnaceRecipe$Serializer.class got resource net/minecraft/item/crafting/FurnaceRecipe$Serializer.class true
[07Feb2019 20:07:24.662] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/offhand/secondaryweapon/server/WeaponSecondaryEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\offhand\secondaryweapon\server\WeaponSecondaryEventListener.class true
[07Feb2019 20:07:24.664] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/IPlayerStats$Storage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\IPlayerStats$Storage.class true
[07Feb2019 20:07:24.666] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/PlayerStatsProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\PlayerStatsProvider.class true
[07Feb2019 20:07:24.668] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/miscellaneous/network/PacketSyncPlayerStats.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\miscellaneous\network\PacketSyncPlayerStats.class true
[07Feb2019 20:07:24.669] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/ELighthouseLevel.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\ELighthouseLevel.class true
[07Feb2019 20:07:24.672] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/BossInfo$Color.class got resource net/minecraft/world/BossInfo$Color.class true
[07Feb2019 20:07:24.674] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketSiegeBearerAttack.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketSiegeBearerAttack.class true
[07Feb2019 20:07:24.676] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketRaidLeaderAttack.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketRaidLeaderAttack.class true
[07Feb2019 20:07:24.677] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/network/PacketBuilderContinue.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\network\PacketBuilderContinue.class true
[07Feb2019 20:07:24.679] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/RaidManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\RaidManager.class true
[07Feb2019 20:07:24.682] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/LighthouseFake.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\LighthouseFake.class true
[07Feb2019 20:07:24.684] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/ConquestEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\ConquestEventListener.class true
[07Feb2019 20:07:24.685] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/mappings/ConquestMissingMappingsEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\mappings\ConquestMissingMappingsEventListener.class true
[07Feb2019 20:07:24.686] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/FogEffect.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\FogEffect.class true
[07Feb2019 20:07:24.688] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/FogAttributeModifier.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\FogAttributeModifier.class true
[07Feb2019 20:07:24.691] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntitySpawnPlacementRegistry$SpawnPlacementType.class got resource net/minecraft/entity/EntitySpawnPlacementRegistry$SpawnPlacementType.class true
[07Feb2019 20:07:24.695] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/Heightmap$Type.class got resource net/minecraft/world/gen/Heightmap$Type.class true
[07Feb2019 20:07:24.700] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/Heightmap$Usage.class got resource net/minecraft/world/gen/Heightmap$Usage.class true
[07Feb2019 20:07:24.705] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/IBlockMatcherReaderAware.class got resource net/minecraft/block/state/pattern/IBlockMatcherReaderAware.class true
[07Feb2019 20:07:24.708] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockMatcherReaderAware.class got resource net/minecraft/block/state/pattern/BlockMatcherReaderAware.class true
[07Feb2019 20:07:24.712] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/LiquidBlockMatcher.class got resource net/minecraft/block/state/pattern/LiquidBlockMatcher.class true
[07Feb2019 20:07:24.715] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/LightEmittingMatcher.class got resource net/minecraft/block/state/pattern/LightEmittingMatcher.class true
[07Feb2019 20:07:24.718] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/AllowsMovementAndSolidMatcher.class got resource net/minecraft/block/state/pattern/AllowsMovementAndSolidMatcher.class true
[07Feb2019 20:07:24.721] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockTagMatcher.class got resource net/minecraft/block/state/pattern/BlockTagMatcher.class true
[07Feb2019 20:07:24.725] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/AllowsMovementMatcher.class got resource net/minecraft/block/state/pattern/AllowsMovementMatcher.class true
[07Feb2019 20:07:24.728] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/LighthouseExplosion.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\LighthouseExplosion.class true
[07Feb2019 20:07:24.734] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketUpdateMap.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketUpdateMap.class true
[07Feb2019 20:07:24.735] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketUpdateMapRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketUpdateMapRequest.class true
[07Feb2019 20:07:24.737] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketMarkChunkDirty.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketMarkChunkDirty.class true
[07Feb2019 20:07:24.738] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/network/PacketTeleportRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\network\PacketTeleportRequest.class true
[07Feb2019 20:07:24.740] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/MapGenerator.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\MapGenerator.class true
[07Feb2019 20:07:24.741] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/MapGenerator$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\MapGenerator$1.class true
[07Feb2019 20:07:24.744] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/MaintenanceOperationStep.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\MaintenanceOperationStep.class true
[07Feb2019 20:07:24.745] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/maintenance/MaintenanceOperationGenerateMap$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\maintenance\MaintenanceOperationGenerateMap$1.class true
[07Feb2019 20:07:24.747] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/server/MapConquestEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\server\MapConquestEventListener.class true
[07Feb2019 20:07:24.749] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/utils/math/Position.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\utils\math\Position.class true
[07Feb2019 20:07:24.750] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/network/PacketSyncZones.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\network\PacketSyncZones.class true
[07Feb2019 20:07:24.751] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/WorldEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\WorldEventListener.class true
[07Feb2019 20:07:24.752] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/WorldBuildUpdater.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\WorldBuildUpdater.class true
[07Feb2019 20:07:24.754] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/maintenance/MaintenanceOperationCopy.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\maintenance\MaintenanceOperationCopy.class true
[07Feb2019 20:07:24.755] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/server/WorldPermissionsMain.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\server\WorldPermissionsMain.class true
[07Feb2019 20:07:24.757] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/world/server/protection/IWorldPermissions$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\world\server\protection\IWorldPermissions$1.class true
[07Feb2019 20:07:24.758] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/server/WorldPermissionsMainBuild.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\server\WorldPermissionsMainBuild.class true
[07Feb2019 20:07:24.760] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/server/ZoneServer.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\server\ZoneServer.class true
[07Feb2019 20:07:24.761] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/Zone.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\Zone.class true
[07Feb2019 20:07:24.766] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/server/WorldPermissionsEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\server\WorldPermissionsEventListener.class true
[07Feb2019 20:07:24.768] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/protection/server/WorldProtectionEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\protection\server\WorldProtectionEventListener.class true
[07Feb2019 20:07:24.771] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/Explosion.class got resource net/minecraft/world/Explosion.class true
[07Feb2019 20:07:24.776] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/RayTraceResult.class got resource net/minecraft/util/math/RayTraceResult.class true
[07Feb2019 20:07:24.779] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/BlockSnapshot.class got resource net/minecraftforge/common/util/BlockSnapshot.class true
[07Feb2019 20:07:24.782] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/ZonesEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\ZonesEventListener.class true
[07Feb2019 20:07:24.783] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/IZoneId.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\IZoneId.class true
[07Feb2019 20:07:24.784] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/IZoneId$Storage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\IZoneId$Storage.class true
[07Feb2019 20:07:24.786] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/Chunk.class got resource net/minecraft/world/chunk/Chunk.class true
[07Feb2019 20:07:24.792] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeChunk.class got resource net/minecraftforge/common/extensions/IForgeChunk.class true
[07Feb2019 20:07:24.793] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/IZoneId$Impl.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\IZoneId$Impl.class true
[07Feb2019 20:07:24.795] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/ZoneIdProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\ZoneIdProvider.class true
[07Feb2019 20:07:24.796] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/zones/server/WorldPermissionsZones.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\zones\server\WorldPermissionsZones.class true
[07Feb2019 20:07:24.800] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/EntityEvent$EnteringChunk.class got resource net/minecraftforge/event/entity/EntityEvent$EnteringChunk.class true
[07Feb2019 20:07:24.803] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/network/PacketOpenGuiEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\network\PacketOpenGuiEvent.class true
[07Feb2019 20:07:24.804] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogOpenGUI.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogOpenGUI.class true
[07Feb2019 20:07:24.805] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogAddMessage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogAddMessage.class true
[07Feb2019 20:07:24.806] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogMessageRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogMessageRequest.class true
[07Feb2019 20:07:24.807] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryOpen.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryOpen.class true
[07Feb2019 20:07:24.808] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogOpenSubGUI.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogOpenSubGUI.class true
[07Feb2019 20:07:24.809] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketDialogCloseSubGUI.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketDialogCloseSubGUI.class true
[07Feb2019 20:07:24.811] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryVerifyRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryVerifyRequest.class true
[07Feb2019 20:07:24.812] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/network/PacketRegistryDiscordRequest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\network\PacketRegistryDiscordRequest.class true
[07Feb2019 20:07:24.813] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestSaveEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestSaveEventListener.class true
[07Feb2019 20:07:24.814] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestSyncEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestSyncEventListener.class true
[07Feb2019 20:07:24.815] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestTriggerEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestTriggerEventListener.class true
[07Feb2019 20:07:24.816] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/tutorial/server/TutorialEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\tutorial\server\TutorialEventListener.class true
[07Feb2019 20:07:24.817] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/DialogManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\DialogManager.class true
[07Feb2019 20:07:24.820] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/IDialogMessageHandler.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\IDialogMessageHandler.class true
[07Feb2019 20:07:24.822] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/event/GuiOpenServerEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\event\GuiOpenServerEvent.class true
[07Feb2019 20:07:24.823] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/economy/event/BuyItemEvent.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\economy\event\BuyItemEvent.class true
[07Feb2019 20:07:24.826] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemCraftedEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemCraftedEvent.class true
[07Feb2019 20:07:24.828] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemSmeltedEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemSmeltedEvent.class true
[07Feb2019 20:07:24.833] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/IPlayerChestManager.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\IPlayerChestManager.class true
[07Feb2019 20:07:24.834] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/IPlayerChestManager$Storage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\IPlayerChestManager$Storage.class true
[07Feb2019 20:07:24.835] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/IPlayerChestManager$Impl.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\IPlayerChestManager$Impl.class true
[07Feb2019 20:07:24.837] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/PlayerChestManagerProvider.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\PlayerChestManagerProvider.class true
[07Feb2019 20:07:24.838] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/network/PacketSyncPlayerChests.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\network\PacketSyncPlayerChests.class true
[07Feb2019 20:07:24.839] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/world/reward/playerchest/server/PlayerChestEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\world\reward\playerchest\server\PlayerChestEventListener.class true
[07Feb2019 20:07:24.842] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/base/WorldGenFeature$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\base\WorldGenFeature$1.class true
[07Feb2019 20:07:24.843] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/server/PlantGeneration.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\server\PlantGeneration.class true
[07Feb2019 20:07:24.844] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/server/EPlantGenRarity.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\server\EPlantGenRarity.class true
[07Feb2019 20:07:24.845] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/wisdom/server/MortarRecipe.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\wisdom\server\MortarRecipe.class true
[07Feb2019 20:07:24.847] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/database/DatabaseConfig.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\database\DatabaseConfig.class true
[07Feb2019 20:07:24.848] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Loading Config : database.json...
[07Feb2019 20:07:24.849] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Configuration : database.json loaded.
[07Feb2019 20:07:24.854] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/CommandHookListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\CommandHookListener.class true
[07Feb2019 20:07:24.856] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/status/ServerStatus.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\status\ServerStatus.class true
[07Feb2019 20:07:24.857] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/EServerStatus.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\EServerStatus.class true
[07Feb2019 20:07:24.859] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/References.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\References.class true
[07Feb2019 20:07:24.861] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/status/StatusConfiguration.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\status\StatusConfiguration.class true
[07Feb2019 20:07:24.861] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Loading Config : server_status.json...
[07Feb2019 20:07:24.862] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Configuration : server_status.json loaded.
[07Feb2019 20:07:24.862] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Loading Config : mc_status.json...
[07Feb2019 20:07:24.863] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Configuration : mc_status.json loaded.
[07Feb2019 20:07:24.864] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/status/ServerStatusEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\status\ServerStatusEventListener.class true
[07Feb2019 20:07:24.866] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/rules/RuleEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\rules\RuleEventListener.class true
[07Feb2019 20:07:24.870] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/chat/ChatEventListener.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\chat\ChatEventListener.class true
[07Feb2019 20:07:24.872] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : FMLCommonSetupEvent
[07Feb2019 20:07:24.872] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:SIDED_SETUP
[07Feb2019 20:07:24.873] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : FMLDedicatedServerSetupEvent
[07Feb2019 20:07:24.873] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : FMLDedicatedServerSetupEvent
[07Feb2019 20:07:24.873] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : FMLDedicatedServerSetupEvent
[07Feb2019 20:07:24.875] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeChunkManager$LoadingCallback.class got resource net/minecraftforge/common/ForgeChunkManager$LoadingCallback.class true
[07Feb2019 20:07:24.878] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeChunkManager.class got resource net/minecraftforge/common/ForgeChunkManager.class true
[07Feb2019 20:07:24.883] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeChunkManager$UnforceChunkEvent.class got resource net/minecraftforge/common/ForgeChunkManager$UnforceChunkEvent.class true
[07Feb2019 20:07:24.887] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeChunkManager$ForceChunkEvent.class got resource net/minecraftforge/common/ForgeChunkManager$ForceChunkEvent.class true
[07Feb2019 20:07:25.229] [modloading-worker-9/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/config/ConfigurationFileSaver.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\config\ConfigurationFileSaver.class true
[07Feb2019 20:07:25.232] [modloading-worker-9/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Started configuration files watcher
[07Feb2019 20:07:25.233] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : FMLDedicatedServerSetupEvent
[07Feb2019 20:07:25.233] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties
[07Feb2019 20:07:25.241] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/PropertyManager.class got resource net/minecraft/server/dedicated/PropertyManager.class true
[07Feb2019 20:07:25.241] [Thread-7/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/server/ServerLifecycleHooks.class got resource net/minecraftforge/fml/server/ServerLifecycleHooks.class true
[07Feb2019 20:07:25.248] [Thread-7/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/server/FMLServerStoppedEvent.class got resource net/minecraftforge/fml/event/server/FMLServerStoppedEvent.class true
[07Feb2019 20:07:25.257] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldSettings.class got resource net/minecraft/world/WorldSettings.class true
[07Feb2019 20:07:25.258] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL
[07Feb2019 20:07:25.258] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Generating keypair
[07Feb2019 20:07:25.262] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/CryptManager.class got resource net/minecraft/util/CryptManager.class true
[07Feb2019 20:07:25.314] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25565
[07Feb2019 20:07:25.322] [Server thread/INFO] [net.minecraft.network.NetworkSystem/]: Using default channel type
[07Feb2019 20:07:25.331] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/NetworkSystem$1.class got resource net/minecraft/network/NetworkSystem$1.class true
[07Feb2019 20:07:25.342] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/INetHandler.class got resource net/minecraft/network/INetHandler.class true
[07Feb2019 20:07:25.593] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[07Feb2019 20:07:25.593] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: The server will make no attempt to authenticate usernames. Beware.
[07Feb2019 20:07:25.593] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[07Feb2019 20:07:25.593] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: To change this, set "online-mode" to "true" in the server.properties file.
[07Feb2019 20:07:25.596] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PreYggdrasilConverter.class got resource net/minecraft/server/management/PreYggdrasilConverter.class true
[07Feb2019 20:07:25.601] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PreYggdrasilConverter$ConversionError.class got resource net/minecraft/server/management/PreYggdrasilConverter$ConversionError.class true
[07Feb2019 20:07:25.604] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListBans.class got resource net/minecraft/server/management/UserListBans.class true
[07Feb2019 20:07:25.607] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserList.class got resource net/minecraft/server/management/UserList.class true
[07Feb2019 20:07:25.609] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserList$1.class got resource net/minecraft/server/management/UserList$1.class true
[07Feb2019 20:07:25.612] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/border/IBorderListener.class got resource net/minecraft/world/border/IBorderListener.class true
[07Feb2019 20:07:25.614] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerInteractionManager.class got resource net/minecraft/server/management/PlayerInteractionManager.class true
[07Feb2019 20:07:25.617] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/DemoPlayerInteractionManager.class got resource net/minecraft/server/management/DemoPlayerInteractionManager.class true
[07Feb2019 20:07:25.620] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListOpsEntry.class got resource net/minecraft/server/management/UserListOpsEntry.class true
[07Feb2019 20:07:25.623] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserList$Serializer.class got resource net/minecraft/server/management/UserList$Serializer.class true
[07Feb2019 20:07:25.626] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListIPBans.class got resource net/minecraft/server/management/UserListIPBans.class true
[07Feb2019 20:07:25.629] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListOps.class got resource net/minecraft/server/management/UserListOps.class true
[07Feb2019 20:07:25.631] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/UserListWhitelist.class got resource net/minecraft/server/management/UserListWhitelist.class true
[07Feb2019 20:07:25.634] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:ENQUEUE_IMC
[07Feb2019 20:07:25.636] [modloading-worker-2/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent.class got resource net/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent.class true
[07Feb2019 20:07:25.637] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : InterModEnqueueEvent
[07Feb2019 20:07:25.637] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : InterModEnqueueEvent
[07Feb2019 20:07:25.638] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : InterModEnqueueEvent
[07Feb2019 20:07:25.638] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : InterModEnqueueEvent
[07Feb2019 20:07:25.638] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:PROCESS_IMC
[07Feb2019 20:07:25.638] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : InterModProcessEvent
[07Feb2019 20:07:25.638] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : InterModProcessEvent
[07Feb2019 20:07:25.638] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : InterModProcessEvent
[07Feb2019 20:07:25.638] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : InterModProcessEvent
[07Feb2019 20:07:25.638] [Server thread/DEBUG] [net.minecraftforge.fml.ModList/LOADING]: Dispatching parallel event LifecycleEvent:COMPLETE
[07Feb2019 20:07:25.638] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid lighthouse : FMLLoadCompleteEvent
[07Feb2019 20:07:25.638] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Firing event for modid forge : FMLLoadCompleteEvent
[07Feb2019 20:07:25.639] [modloading-worker-9/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid lighthouse : FMLLoadCompleteEvent
[07Feb2019 20:07:25.639] [modloading-worker-2/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Fired event for modid forge : FMLLoadCompleteEvent
[07Feb2019 20:07:25.670] [Forge Version Check/DEBUG] [net.minecraftforge.fml.VersionChecker/]: [forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.1-latest": "1.3.2.6",
    "1.10-latest": "12.18.0.2000",
    "1.10.2-latest": "12.18.3.2511",
    "1.10.2-recommended": "12.18.3.2185",
    "1.11-latest": "13.19.1.2199",
    "1.11-recommended": "13.19.1.2189",
    "1.11.2-latest": "13.20.1.2588",
    "1.11.2-recommended": "13.20.1.2386",
    "1.12-latest": "14.21.1.2443",
    "1.12-recommended": "14.21.1.2387",
    "1.12.1-latest": "14.22.1.2485",
    "1.12.1-recommended": "14.22.1.2478",
    "1.12.2-latest": "14.23.5.2811",
    "1.12.2-recommended": "14.23.5.2768",
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.2318",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.2051",
    "1.9.4-recommended": "12.17.0.1976",
    "latest": "14.23.5.2811",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "14.23.5.2768"
  }
}
[07Feb2019 20:07:25.671] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IAreaTransformer1.class got resource net/minecraft/world/gen/layer/traits/IAreaTransformer1.class true
[07Feb2019 20:07:25.672] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA Target: null
[07Feb2019 20:07:25.675] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IDimTransformer.class got resource net/minecraft/world/gen/layer/traits/IDimTransformer.class true
[07Feb2019 20:07:25.677] [Server thread/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing serverconfig directory : .\world\serverconfig
[07Feb2019 20:07:25.680] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/config/ConfigTracker.class got resource net/minecraftforge/fml/config/ConfigTracker.class true
[07Feb2019 20:07:25.684] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/config/ModConfig$Loading.class got resource net/minecraftforge/fml/config/ModConfig$Loading.class true
[07Feb2019 20:07:25.685] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER
[07Feb2019 20:07:25.688] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/config/ModConfig.class got resource net/minecraftforge/fml/config/ModConfig.class true
[07Feb2019 20:07:25.691] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/packs/ResourcePackLoader.class got resource net/minecraftforge/fml/packs/ResourcePackLoader.class true
[07Feb2019 20:07:25.695] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/packs/ModFileResourcePack.class got resource net/minecraftforge/fml/packs/ModFileResourcePack.class true
[07Feb2019 20:07:25.699] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/AbstractResourcePack.class got resource net/minecraft/resources/AbstractResourcePack.class true
[07Feb2019 20:07:25.706] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/packs/ResourcePackLoader$ModPackFinder.class got resource net/minecraftforge/fml/packs/ResourcePackLoader$ModPackFinder.class true
[07Feb2019 20:07:25.710] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/DimensionManager.class got resource net/minecraftforge/common/DimensionManager.class true
[07Feb2019 20:07:25.742] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/DimensionManager$DimensionData.class got resource net/minecraftforge/common/DimensionManager$DimensionData.class true
[07Feb2019 20:07:25.744] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/Level.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\Level.class true
[07Feb2019 20:07:25.746] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/messenger/Messenger$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\messenger\Messenger$1.class true
[07Feb2019 20:07:25.748] [Server thread/INFO] [world/]: [world] Unregistered world with id 0
[07Feb2019 20:07:25.748] [Server thread/INFO] [world/]: [world] Unregistered world with id -1
[07Feb2019 20:07:25.748] [Server thread/INFO] [world/]: [world] Unregistered world with id 1
[07Feb2019 20:07:25.748] [Server thread/ERROR] [world/]: [world] Couldn't create world type MainBuild with id 4 - fallback to default type
[07Feb2019 20:07:25.749] [Server thread/ERROR] [world/]: [world] ---> OVERWORLD
[07Feb2019 20:07:25.749] [Server thread/INFO] [world/]: [world] Registered world MainBuild with id 4
[07Feb2019 20:07:25.749] [Server thread/ERROR] [world/]: [world] Couldn't create world type Nether with id -1 - fallback to default type
[07Feb2019 20:07:25.749] [Server thread/ERROR] [world/]: [world] ---> NETHER
[07Feb2019 20:07:25.749] [Server thread/INFO] [world/]: [world] Registered world Nether with id -1
[07Feb2019 20:07:25.749] [Server thread/ERROR] [world/]: [world] Couldn't create world type Build with id 2 - fallback to default type
[07Feb2019 20:07:25.749] [Server thread/ERROR] [world/]: [world] ---> OVERWORLD
[07Feb2019 20:07:25.749] [Server thread/INFO] [world/]: [world] Registered world Build with id 2
[07Feb2019 20:07:25.750] [Server thread/ERROR] [world/]: [world] Couldn't create world type Overworld with id 0 - fallback to default type
[07Feb2019 20:07:25.750] [Server thread/ERROR] [world/]: [world] ---> OVERWORLD
[07Feb2019 20:07:25.751] [Server thread/INFO] [world/]: [world] Registered world Overworld with id 0
[07Feb2019 20:07:25.751] [Server thread/ERROR] [world/]: [world] Couldn't create world type End with id 1 - fallback to default type
[07Feb2019 20:07:25.751] [Server thread/ERROR] [world/]: [world] ---> THE_END
[07Feb2019 20:07:25.751] [Server thread/INFO] [world/]: [world] Registered world End with id 1
[07Feb2019 20:07:25.751] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "world"
[07Feb2019 20:07:25.757] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/CompressedStreamTools.class got resource net/minecraft/nbt/CompressedStreamTools.class true
[07Feb2019 20:07:25.766] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTSizeTracker.class got resource net/minecraft/nbt/NBTSizeTracker.class true
[07Feb2019 20:07:25.771] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTSizeTracker$1.class got resource net/minecraft/nbt/NBTSizeTracker$1.class true
[07Feb2019 20:07:25.779] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagLong.class got resource net/minecraft/nbt/NBTTagLong.class true
[07Feb2019 20:07:25.783] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTPrimitive.class got resource net/minecraft/nbt/NBTPrimitive.class true
[07Feb2019 20:07:25.787] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagDouble.class got resource net/minecraft/nbt/NBTTagDouble.class true
[07Feb2019 20:07:25.790] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagByte.class got resource net/minecraft/nbt/NBTTagByte.class true
[07Feb2019 20:07:25.794] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagInt.class got resource net/minecraft/nbt/NBTTagInt.class true
[07Feb2019 20:07:25.800] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTUtil.class got resource net/minecraft/nbt/NBTUtil.class true
[07Feb2019 20:07:25.807] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/AnvilSaveHandler.class got resource net/minecraft/world/chunk/storage/AnvilSaveHandler.class true
[07Feb2019 20:07:25.813] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/IChunkLoader.class got resource net/minecraft/world/chunk/storage/IChunkLoader.class true
[07Feb2019 20:07:25.817] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/template/TemplateManager.class got resource net/minecraft/world/gen/feature/template/TemplateManager.class true
[07Feb2019 20:07:25.829] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/thread/EffectiveSide.class got resource net/minecraftforge/fml/common/thread/EffectiveSide.class true
[07Feb2019 20:07:25.841] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ServerPackFinder.class got resource net/minecraft/resources/ServerPackFinder.class true
[07Feb2019 20:07:25.848] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/VanillaPack.class got resource net/minecraft/resources/VanillaPack.class true
[07Feb2019 20:07:25.855] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/FolderPackFinder.class got resource net/minecraft/resources/FolderPackFinder.class true
[07Feb2019 20:07:25.863] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/data/PackMetadataSectionSerializer.class got resource net/minecraft/resources/data/PackMetadataSectionSerializer.class true
[07Feb2019 20:07:25.871] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/PackCompatibility.class got resource net/minecraft/resources/PackCompatibility.class true
[07Feb2019 20:07:25.874] [Server thread/DEBUG] [net.minecraftforge.fml.packs.ResourcePackLoader/CORE]: Generating PackInfo named mod:forge for mod file C:\Users\Arisu\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\test\forge\1.13-24.0.166-1.13-pre_mapped_stable_43-1.13\forge-1.13-24.0.166-1.13-pre_mapped_stable_43-1.13.jar
[07Feb2019 20:07:25.874] [Server thread/DEBUG] [net.minecraftforge.fml.packs.ResourcePackLoader/CORE]: Generating PackInfo named mod:lighthouse for mod file S:\dev\lighthouse\build\server\resources\main
[07Feb2019 20:07:25.878] [Server thread/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: main, Default, forge-1.13-24.0.166-1.13-pre_mapped_stable_43-1.13.jar
[07Feb2019 20:07:25.885] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/FallbackResourceManager.class got resource net/minecraft/resources/FallbackResourceManager.class true
[07Feb2019 20:07:25.890] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/IResource.class got resource net/minecraft/resources/IResource.class true
[07Feb2019 20:07:25.895] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/FallbackResourceManager$LeakComplainerInputStream.class got resource net/minecraft/resources/FallbackResourceManager$LeakComplainerInputStream.class true
[07Feb2019 20:07:25.900] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/resource/SelectiveReloadStateHandler.class got resource net/minecraftforge/resource/SelectiveReloadStateHandler.class true
[07Feb2019 20:07:25.922] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/FolderPack.class got resource net/minecraft/resources/FolderPack.class true
[07Feb2019 20:07:25.926] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/ResourcePackFileNotFoundException.class got resource net/minecraft/resources/ResourcePackFileNotFoundException.class true
[07Feb2019 20:07:25.929] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Util$EnumOS.class got resource net/minecraft/util/Util$EnumOS.class true
[07Feb2019 20:07:25.933] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Util$EnumOS$1.class got resource net/minecraft/util/Util$EnumOS$1.class true
[07Feb2019 20:07:25.937] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Util$EnumOS$2.class got resource net/minecraft/util/Util$EnumOS$2.class true
[07Feb2019 20:07:25.945] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/resources/SimpleResource.class got resource net/minecraft/resources/SimpleResource.class true
[07Feb2019 20:07:25.950] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$Builder.class got resource net/minecraft/tags/Tag$Builder.class true
[07Feb2019 20:07:25.954] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$ListEntry.class got resource net/minecraft/tags/Tag$ListEntry.class true
[07Feb2019 20:07:25.961] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/tags/Tag$TagEntry.class got resource net/minecraft/tags/Tag$TagEntry.class true
[07Feb2019 20:07:26.124] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/VanillaRecipeTypes.class got resource net/minecraftforge/common/crafting/VanillaRecipeTypes.class true
[07Feb2019 20:07:26.127] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/crafting/RecipeType.class got resource net/minecraftforge/common/crafting/RecipeType.class true
[07Feb2019 20:07:26.131] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/FurnaceRecipe.class got resource net/minecraft/item/crafting/FurnaceRecipe.class true
[07Feb2019 20:07:26.137] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/ShapelessRecipe.class got resource net/minecraft/item/crafting/ShapelessRecipe.class true
[07Feb2019 20:07:26.144] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/crafting/Ingredient$TagList.class got resource net/minecraft/item/crafting/Ingredient$TagList.class true
[07Feb2019 20:07:26.232] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper.class got resource net/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper.class true
[07Feb2019 20:07:26.237] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fluids/capability/IFluidTankProperties.class got resource net/minecraftforge/fluids/capability/IFluidTankProperties.class true
[07Feb2019 20:07:26.307] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/NonNullSupplier.class got resource net/minecraftforge/common/util/NonNullSupplier.class true
[07Feb2019 20:07:26.318] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/LazyOptional.class got resource net/minecraftforge/common/util/LazyOptional.class true
[07Feb2019 20:07:26.322] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/capabilities/CapabilityDispatcher.class got resource net/minecraftforge/common/capabilities/CapabilityDispatcher.class true
[07Feb2019 20:07:26.389] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/item/ItemFireworkRocket$Shape.class got resource net/minecraft/item/ItemFireworkRocket$Shape.class true
[07Feb2019 20:07:26.680] [Server thread/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 524 recipes
[07Feb2019 20:07:26.694] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/ForgeHooks$LootTableContext.class got resource net/minecraftforge/common/ForgeHooks$LootTableContext.class true
[07Feb2019 20:07:26.698] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootFunctionManager.class got resource net/minecraft/world/storage/loot/functions/LootFunctionManager.class true
[07Feb2019 20:07:26.701] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootFunction$Serializer.class got resource net/minecraft/world/storage/loot/functions/LootFunction$Serializer.class true
[07Feb2019 20:07:26.703] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetCount$Serializer.class got resource net/minecraft/world/storage/loot/functions/SetCount$Serializer.class true
[07Feb2019 20:07:26.706] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/EnchantWithLevels$Serializer.class got resource net/minecraft/world/storage/loot/functions/EnchantWithLevels$Serializer.class true
[07Feb2019 20:07:26.709] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/EnchantRandomly$Serializer.class got resource net/minecraft/world/storage/loot/functions/EnchantRandomly$Serializer.class true
[07Feb2019 20:07:26.712] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetNBT$Serializer.class got resource net/minecraft/world/storage/loot/functions/SetNBT$Serializer.class true
[07Feb2019 20:07:26.714] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/Smelt$Serializer.class got resource net/minecraft/world/storage/loot/functions/Smelt$Serializer.class true
[07Feb2019 20:07:26.717] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootingEnchantBonus$Serializer.class got resource net/minecraft/world/storage/loot/functions/LootingEnchantBonus$Serializer.class true
[07Feb2019 20:07:26.719] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetDamage$Serializer.class got resource net/minecraft/world/storage/loot/functions/SetDamage$Serializer.class true
[07Feb2019 20:07:26.722] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetAttributes$Serializer.class got resource net/minecraft/world/storage/loot/functions/SetAttributes$Serializer.class true
[07Feb2019 20:07:26.725] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetName$Serializer.class got resource net/minecraft/world/storage/loot/functions/SetName$Serializer.class true
[07Feb2019 20:07:26.727] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/ExplorationMap$Serializer.class got resource net/minecraft/world/storage/loot/functions/ExplorationMap$Serializer.class true
[07Feb2019 20:07:26.730] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetCount.class got resource net/minecraft/world/storage/loot/functions/SetCount.class true
[07Feb2019 20:07:26.733] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/EnchantWithLevels.class got resource net/minecraft/world/storage/loot/functions/EnchantWithLevels.class true
[07Feb2019 20:07:26.736] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/EnchantRandomly.class got resource net/minecraft/world/storage/loot/functions/EnchantRandomly.class true
[07Feb2019 20:07:26.739] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetNBT.class got resource net/minecraft/world/storage/loot/functions/SetNBT.class true
[07Feb2019 20:07:26.742] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/Smelt.class got resource net/minecraft/world/storage/loot/functions/Smelt.class true
[07Feb2019 20:07:26.745] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/LootingEnchantBonus.class got resource net/minecraft/world/storage/loot/functions/LootingEnchantBonus.class true
[07Feb2019 20:07:26.748] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetDamage.class got resource net/minecraft/world/storage/loot/functions/SetDamage.class true
[07Feb2019 20:07:26.750] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetAttributes.class got resource net/minecraft/world/storage/loot/functions/SetAttributes.class true
[07Feb2019 20:07:26.753] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/SetName.class got resource net/minecraft/world/storage/loot/functions/SetName.class true
[07Feb2019 20:07:26.756] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/functions/ExplorationMap.class got resource net/minecraft/world/storage/loot/functions/ExplorationMap.class true
[07Feb2019 20:07:26.807] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/LootConditionManager.class got resource net/minecraft/world/storage/loot/conditions/LootConditionManager.class true
[07Feb2019 20:07:26.810] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/LootCondition$Serializer.class got resource net/minecraft/world/storage/loot/conditions/LootCondition$Serializer.class true
[07Feb2019 20:07:26.813] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/RandomChance$Serializer.class got resource net/minecraft/world/storage/loot/conditions/RandomChance$Serializer.class true
[07Feb2019 20:07:26.816] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/RandomChanceWithLooting$Serializer.class got resource net/minecraft/world/storage/loot/conditions/RandomChanceWithLooting$Serializer.class true
[07Feb2019 20:07:26.819] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/EntityHasProperty$Serializer.class got resource net/minecraft/world/storage/loot/conditions/EntityHasProperty$Serializer.class true
[07Feb2019 20:07:26.822] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/KilledByPlayer$Serializer.class got resource net/minecraft/world/storage/loot/conditions/KilledByPlayer$Serializer.class true
[07Feb2019 20:07:26.825] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/EntityHasScore$Serializer.class got resource net/minecraft/world/storage/loot/conditions/EntityHasScore$Serializer.class true
[07Feb2019 20:07:26.829] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/RandomChance.class got resource net/minecraft/world/storage/loot/conditions/RandomChance.class true
[07Feb2019 20:07:26.832] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/RandomChanceWithLooting.class got resource net/minecraft/world/storage/loot/conditions/RandomChanceWithLooting.class true
[07Feb2019 20:07:26.836] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/EntityHasProperty.class got resource net/minecraft/world/storage/loot/conditions/EntityHasProperty.class true
[07Feb2019 20:07:26.840] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/KilledByPlayer.class got resource net/minecraft/world/storage/loot/conditions/KilledByPlayer.class true
[07Feb2019 20:07:26.844] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/conditions/EntityHasScore.class got resource net/minecraft/world/storage/loot/conditions/EntityHasScore.class true
[07Feb2019 20:07:26.850] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/properties/EntityProperty.class got resource net/minecraft/world/storage/loot/properties/EntityProperty.class true
[07Feb2019 20:07:26.855] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/properties/EntityPropertyManager.class got resource net/minecraft/world/storage/loot/properties/EntityPropertyManager.class true
[07Feb2019 20:07:26.858] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/properties/EntityProperty$Serializer.class got resource net/minecraft/world/storage/loot/properties/EntityProperty$Serializer.class true
[07Feb2019 20:07:26.861] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/properties/EntityOnFire$Serializer.class got resource net/minecraft/world/storage/loot/properties/EntityOnFire$Serializer.class true
[07Feb2019 20:07:26.864] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/loot/properties/EntityOnFire.class got resource net/minecraft/world/storage/loot/properties/EntityOnFire.class true
[07Feb2019 20:07:26.962] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/Advancement.class got resource net/minecraft/advancements/Advancement.class true
[07Feb2019 20:07:26.965] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/DisplayInfo.class got resource net/minecraft/advancements/DisplayInfo.class true
[07Feb2019 20:07:26.968] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/FrameType.class got resource net/minecraft/advancements/FrameType.class true
[07Feb2019 20:07:26.972] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/FunctionObject$CacheableFunction.class got resource net/minecraft/command/FunctionObject$CacheableFunction.class true
[07Feb2019 20:07:26.975] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/Criterion.class got resource net/minecraft/advancements/Criterion.class true
[07Feb2019 20:07:26.979] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/CriteriaTriggers.class got resource net/minecraft/advancements/CriteriaTriggers.class true
[07Feb2019 20:07:26.983] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/ICriterionTrigger.class got resource net/minecraft/advancements/ICriterionTrigger.class true
[07Feb2019 20:07:26.987] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ImpossibleTrigger.class got resource net/minecraft/advancements/criterion/ImpossibleTrigger.class true
[07Feb2019 20:07:26.991] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/KilledTrigger.class got resource net/minecraft/advancements/criterion/KilledTrigger.class true
[07Feb2019 20:07:26.995] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EnterBlockTrigger.class got resource net/minecraft/advancements/criterion/EnterBlockTrigger.class true
[07Feb2019 20:07:26.998] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/InventoryChangeTrigger.class got resource net/minecraft/advancements/criterion/InventoryChangeTrigger.class true
[07Feb2019 20:07:27.001] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/RecipeUnlockedTrigger.class got resource net/minecraft/advancements/criterion/RecipeUnlockedTrigger.class true
[07Feb2019 20:07:27.004] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PlayerHurtEntityTrigger.class got resource net/minecraft/advancements/criterion/PlayerHurtEntityTrigger.class true
[07Feb2019 20:07:27.007] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EntityHurtPlayerTrigger.class got resource net/minecraft/advancements/criterion/EntityHurtPlayerTrigger.class true
[07Feb2019 20:07:27.010] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EnchantedItemTrigger.class got resource net/minecraft/advancements/criterion/EnchantedItemTrigger.class true
[07Feb2019 20:07:27.015] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/FilledBucketTrigger.class got resource net/minecraft/advancements/criterion/FilledBucketTrigger.class true
[07Feb2019 20:07:27.018] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/BrewedPotionTrigger.class got resource net/minecraft/advancements/criterion/BrewedPotionTrigger.class true
[07Feb2019 20:07:27.021] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ConstructBeaconTrigger.class got resource net/minecraft/advancements/criterion/ConstructBeaconTrigger.class true
[07Feb2019 20:07:27.028] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/UsedEnderEyeTrigger.class got resource net/minecraft/advancements/criterion/UsedEnderEyeTrigger.class true
[07Feb2019 20:07:27.031] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/SummonedEntityTrigger.class got resource net/minecraft/advancements/criterion/SummonedEntityTrigger.class true
[07Feb2019 20:07:27.033] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/BredAnimalsTrigger.class got resource net/minecraft/advancements/criterion/BredAnimalsTrigger.class true
[07Feb2019 20:07:27.036] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PositionTrigger.class got resource net/minecraft/advancements/criterion/PositionTrigger.class true
[07Feb2019 20:07:27.039] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/CuredZombieVillagerTrigger.class got resource net/minecraft/advancements/criterion/CuredZombieVillagerTrigger.class true
[07Feb2019 20:07:27.042] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/VillagerTradeTrigger.class got resource net/minecraft/advancements/criterion/VillagerTradeTrigger.class true
[07Feb2019 20:07:27.044] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ItemDurabilityTrigger.class got resource net/minecraft/advancements/criterion/ItemDurabilityTrigger.class true
[07Feb2019 20:07:27.047] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/LevitationTrigger.class got resource net/minecraft/advancements/criterion/LevitationTrigger.class true
[07Feb2019 20:07:27.049] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ChangeDimensionTrigger.class got resource net/minecraft/advancements/criterion/ChangeDimensionTrigger.class true
[07Feb2019 20:07:27.052] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/TickTrigger.class got resource net/minecraft/advancements/criterion/TickTrigger.class true
[07Feb2019 20:07:27.055] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/TameAnimalTrigger.class got resource net/minecraft/advancements/criterion/TameAnimalTrigger.class true
[07Feb2019 20:07:27.057] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PlacedBlockTrigger.class got resource net/minecraft/advancements/criterion/PlacedBlockTrigger.class true
[07Feb2019 20:07:27.060] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ConsumeItemTrigger.class got resource net/minecraft/advancements/criterion/ConsumeItemTrigger.class true
[07Feb2019 20:07:27.063] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EffectsChangedTrigger.class got resource net/minecraft/advancements/criterion/EffectsChangedTrigger.class true
[07Feb2019 20:07:27.065] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/UsedTotemTrigger.class got resource net/minecraft/advancements/criterion/UsedTotemTrigger.class true
[07Feb2019 20:07:27.068] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/NetherTravelTrigger.class got resource net/minecraft/advancements/criterion/NetherTravelTrigger.class true
[07Feb2019 20:07:27.072] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/FishingRodHookedTrigger.class got resource net/minecraft/advancements/criterion/FishingRodHookedTrigger.class true
[07Feb2019 20:07:27.083] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ChanneledLightningTrigger.class got resource net/minecraft/advancements/criterion/ChanneledLightningTrigger.class true
[07Feb2019 20:07:27.086] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/LocationPredicate.class got resource net/minecraft/advancements/criterion/LocationPredicate.class true
[07Feb2019 20:07:27.090] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MinMaxBounds$IBoundFactory.class got resource net/minecraft/advancements/criterion/MinMaxBounds$IBoundFactory.class true
[07Feb2019 20:07:27.093] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PositionTrigger$Instance.class got resource net/minecraft/advancements/criterion/PositionTrigger$Instance.class true
[07Feb2019 20:07:27.095] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/AbstractCriterionInstance.class got resource net/minecraft/advancements/criterion/AbstractCriterionInstance.class true
[07Feb2019 20:07:27.098] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/RequirementsStrategy.class got resource net/minecraft/advancements/RequirementsStrategy.class true
[07Feb2019 20:07:27.102] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/KilledTrigger$Instance.class got resource net/minecraft/advancements/criterion/KilledTrigger$Instance.class true
[07Feb2019 20:07:27.105] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EntityPredicate.class got resource net/minecraft/advancements/criterion/EntityPredicate.class true
[07Feb2019 20:07:27.109] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EntityTypeUtil.class got resource net/minecraft/advancements/criterion/EntityTypeUtil.class true
[07Feb2019 20:07:27.112] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/DistancePredicate.class got resource net/minecraft/advancements/criterion/DistancePredicate.class true
[07Feb2019 20:07:27.114] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MobEffectsPredicate.class got resource net/minecraft/advancements/criterion/MobEffectsPredicate.class true
[07Feb2019 20:07:27.117] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/NBTPredicate.class got resource net/minecraft/advancements/criterion/NBTPredicate.class true
[07Feb2019 20:07:27.120] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EntityPredicate$Builder.class got resource net/minecraft/advancements/criterion/EntityPredicate$Builder.class true
[07Feb2019 20:07:27.123] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/DamageSourcePredicate.class got resource net/minecraft/advancements/criterion/DamageSourcePredicate.class true
[07Feb2019 20:07:27.126] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/DamageSourcePredicate$Builder.class got resource net/minecraft/advancements/criterion/DamageSourcePredicate$Builder.class true
[07Feb2019 20:07:27.211] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/DamagePredicate.class got resource net/minecraft/advancements/criterion/DamagePredicate.class true
[07Feb2019 20:07:27.218] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/DamagePredicate$Builder.class got resource net/minecraft/advancements/criterion/DamagePredicate$Builder.class true
[07Feb2019 20:07:27.221] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PlayerHurtEntityTrigger$Instance.class got resource net/minecraft/advancements/criterion/PlayerHurtEntityTrigger$Instance.class true
[07Feb2019 20:07:27.225] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/SummonedEntityTrigger$Instance.class got resource net/minecraft/advancements/criterion/SummonedEntityTrigger$Instance.class true
[07Feb2019 20:07:27.229] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ItemPredicate.class got resource net/minecraft/advancements/criterion/ItemPredicate.class true
[07Feb2019 20:07:27.232] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EnchantmentPredicate.class got resource net/minecraft/advancements/criterion/EnchantmentPredicate.class true
[07Feb2019 20:07:27.234] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/UsedTotemTrigger$Instance.class got resource net/minecraft/advancements/criterion/UsedTotemTrigger$Instance.class true
[07Feb2019 20:07:27.238] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/VillagerTradeTrigger$Instance.class got resource net/minecraft/advancements/criterion/VillagerTradeTrigger$Instance.class true
[07Feb2019 20:07:27.241] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ChanneledLightningTrigger$Instance.class got resource net/minecraft/advancements/criterion/ChanneledLightningTrigger$Instance.class true
[07Feb2019 20:07:27.245] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/InventoryChangeTrigger$Instance.class got resource net/minecraft/advancements/criterion/InventoryChangeTrigger$Instance.class true
[07Feb2019 20:07:27.249] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EnterBlockTrigger$Instance.class got resource net/minecraft/advancements/criterion/EnterBlockTrigger$Instance.class true
[07Feb2019 20:07:27.254] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/LevitationTrigger$Instance.class got resource net/minecraft/advancements/criterion/LevitationTrigger$Instance.class true
[07Feb2019 20:07:27.258] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ChangeDimensionTrigger$Instance.class got resource net/minecraft/advancements/criterion/ChangeDimensionTrigger$Instance.class true
[07Feb2019 20:07:27.262] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ConsumeItemTrigger$Instance.class got resource net/minecraft/advancements/criterion/ConsumeItemTrigger$Instance.class true
[07Feb2019 20:07:27.266] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ItemDurabilityTrigger$Instance.class got resource net/minecraft/advancements/criterion/ItemDurabilityTrigger$Instance.class true
[07Feb2019 20:07:27.269] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/BredAnimalsTrigger$Instance.class got resource net/minecraft/advancements/criterion/BredAnimalsTrigger$Instance.class true
[07Feb2019 20:07:27.273] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/FishingRodHookedTrigger$Instance.class got resource net/minecraft/advancements/criterion/FishingRodHookedTrigger$Instance.class true
[07Feb2019 20:07:27.277] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/PlacedBlockTrigger$Instance.class got resource net/minecraft/advancements/criterion/PlacedBlockTrigger$Instance.class true
[07Feb2019 20:07:27.281] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/FilledBucketTrigger$Instance.class got resource net/minecraft/advancements/criterion/FilledBucketTrigger$Instance.class true
[07Feb2019 20:07:27.284] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/TameAnimalTrigger$Instance.class got resource net/minecraft/advancements/criterion/TameAnimalTrigger$Instance.class true
[07Feb2019 20:07:27.288] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/MobEffectsPredicate$InstancePredicate.class got resource net/minecraft/advancements/criterion/MobEffectsPredicate$InstancePredicate.class true
[07Feb2019 20:07:27.290] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EffectsChangedTrigger$Instance.class got resource net/minecraft/advancements/criterion/EffectsChangedTrigger$Instance.class true
[07Feb2019 20:07:27.295] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/BrewedPotionTrigger$Instance.class got resource net/minecraft/advancements/criterion/BrewedPotionTrigger$Instance.class true
[07Feb2019 20:07:27.298] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ConstructBeaconTrigger$Instance.class got resource net/minecraft/advancements/criterion/ConstructBeaconTrigger$Instance.class true
[07Feb2019 20:07:27.302] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/NetherTravelTrigger$Instance.class got resource net/minecraft/advancements/criterion/NetherTravelTrigger$Instance.class true
[07Feb2019 20:07:27.310] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/RecipeUnlockedTrigger$Instance.class got resource net/minecraft/advancements/criterion/RecipeUnlockedTrigger$Instance.class true
[07Feb2019 20:07:27.537] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/ImpossibleTrigger$Instance.class got resource net/minecraft/advancements/criterion/ImpossibleTrigger$Instance.class true
[07Feb2019 20:07:27.560] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/CuredZombieVillagerTrigger$Instance.class got resource net/minecraft/advancements/criterion/CuredZombieVillagerTrigger$Instance.class true
[07Feb2019 20:07:27.564] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EntityHurtPlayerTrigger$Instance.class got resource net/minecraft/advancements/criterion/EntityHurtPlayerTrigger$Instance.class true
[07Feb2019 20:07:27.567] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/criterion/EnchantedItemTrigger$Instance.class got resource net/minecraft/advancements/criterion/EnchantedItemTrigger$Instance.class true
[07Feb2019 20:07:27.577] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/HoverEvent.class got resource net/minecraft/util/text/event/HoverEvent.class true
[07Feb2019 20:07:27.579] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/event/HoverEvent$Action.class got resource net/minecraft/util/text/event/HoverEvent$Action.class true
[07Feb2019 20:07:27.583] [Server thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 571 advancements
[07Feb2019 20:07:27.585] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/advancements/AdvancementTreeNode.class got resource net/minecraft/advancements/AdvancementTreeNode.class true
[07Feb2019 20:07:27.591] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/VoxelShapeInt.class got resource net/minecraft/util/math/shapes/VoxelShapeInt.class true
[07Feb2019 20:07:27.595] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/WorldCapabilityData.class got resource net/minecraftforge/common/util/WorldCapabilityData.class true
[07Feb2019 20:07:27.599] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/VillageCollection.class got resource net/minecraft/village/VillageCollection.class true
[07Feb2019 20:07:27.602] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/ScoreboardSaveData.class got resource net/minecraft/scoreboard/ScoreboardSaveData.class true
[07Feb2019 20:07:27.605] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/IChunkProvider.class got resource net/minecraft/world/chunk/IChunkProvider.class true
[07Feb2019 20:07:27.607] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ITickList.class got resource net/minecraft/world/ITickList.class true
[07Feb2019 20:07:27.609] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IntHashMap.class got resource net/minecraft/util/IntHashMap.class true
[07Feb2019 20:07:27.612] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/IntHashMap$Entry.class got resource net/minecraft/util/IntHashMap$Entry.class true
[07Feb2019 20:07:27.614] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathWorldListener.class got resource net/minecraft/pathfinding/PathWorldListener.class true
[07Feb2019 20:07:27.617] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/WorldSavedDataStorage.class got resource net/minecraft/world/storage/WorldSavedDataStorage.class true
[07Feb2019 20:07:27.620] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldEntitySpawner.class got resource net/minecraft/world/WorldEntitySpawner.class true
[07Feb2019 20:07:27.624] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ServerTickList.class got resource net/minecraft/world/ServerTickList.class true
[07Feb2019 20:07:27.627] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/NextTickListEntry.class got resource net/minecraft/world/NextTickListEntry.class true
[07Feb2019 20:07:27.631] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/VillageSiege.class got resource net/minecraft/village/VillageSiege.class true
[07Feb2019 20:07:27.635] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityTracker.class got resource net/minecraft/entity/EntityTracker.class true
[07Feb2019 20:07:27.639] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerChunkMap.class got resource net/minecraft/server/management/PlayerChunkMap.class true
[07Feb2019 20:07:27.644] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/AnvilChunkLoader.class got resource net/minecraft/world/chunk/storage/AnvilChunkLoader.class true
[07Feb2019 20:07:27.648] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/IThreadedFileIO.class got resource net/minecraft/world/storage/IThreadedFileIO.class true
[07Feb2019 20:07:27.651] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ChunkDataEvent$Save.class got resource net/minecraftforge/event/world/ChunkDataEvent$Save.class true
[07Feb2019 20:07:27.653] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ChunkDataEvent.class got resource net/minecraftforge/event/world/ChunkDataEvent.class true
[07Feb2019 20:07:27.656] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ChunkEvent.class got resource net/minecraftforge/event/world/ChunkEvent.class true
[07Feb2019 20:07:27.659] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkPrimer.class got resource net/minecraft/world/chunk/ChunkPrimer.class true
[07Feb2019 20:07:27.663] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkPrimerWrapper.class got resource net/minecraft/world/chunk/ChunkPrimerWrapper.class true
[07Feb2019 20:07:27.672] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkProviderServer.class got resource net/minecraft/world/gen/ChunkProviderServer.class true
[07Feb2019 20:07:27.676] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Scheduler.class got resource net/minecraft/util/Scheduler.class true
[07Feb2019 20:07:27.678] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/ProtoChunkScheduler.class got resource net/minecraft/world/gen/tasks/ProtoChunkScheduler.class true
[07Feb2019 20:07:27.681] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorType.class got resource net/minecraft/world/gen/ChunkGeneratorType.class true
[07Feb2019 20:07:27.684] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/IChunkGeneratorFactory.class got resource net/minecraft/world/gen/IChunkGeneratorFactory.class true
[07Feb2019 20:07:27.686] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorOverworld.class got resource net/minecraft/world/gen/ChunkGeneratorOverworld.class true
[07Feb2019 20:07:27.689] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/AbstractChunkGenerator.class got resource net/minecraft/world/gen/AbstractChunkGenerator.class true
[07Feb2019 20:07:27.692] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/OverworldGenSettings.class got resource net/minecraft/world/gen/OverworldGenSettings.class true
[07Feb2019 20:07:27.695] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGenSettings.class got resource net/minecraft/world/gen/ChunkGenSettings.class true
[07Feb2019 20:07:27.697] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/InitNoiseGensEvent$Context.class got resource net/minecraftforge/event/terraingen/InitNoiseGensEvent$Context.class true
[07Feb2019 20:07:27.699] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextOverworld.class got resource net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextOverworld.class true
[07Feb2019 20:07:27.702] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorType$Settings.class got resource net/minecraft/world/gen/ChunkGeneratorType$Settings.class true
[07Feb2019 20:07:27.705] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NetherGenSettings.class got resource net/minecraft/world/gen/NetherGenSettings.class true
[07Feb2019 20:07:27.707] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/EndGenSettings.class got resource net/minecraft/world/gen/EndGenSettings.class true
[07Feb2019 20:07:27.710] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/DebugGenSettings.class got resource net/minecraft/world/gen/DebugGenSettings.class true
[07Feb2019 20:07:27.712] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/FlatGenSettings.class got resource net/minecraft/world/gen/FlatGenSettings.class true
[07Feb2019 20:07:27.717] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorNether.class got resource net/minecraft/world/gen/ChunkGeneratorNether.class true
[07Feb2019 20:07:27.720] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextHell.class got resource net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextHell.class true
[07Feb2019 20:07:27.722] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/ChunkGeneratorEvent$InitNoiseField.class got resource net/minecraftforge/event/terraingen/ChunkGeneratorEvent$InitNoiseField.class true
[07Feb2019 20:07:27.725] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorEnd.class got resource net/minecraft/world/gen/ChunkGeneratorEnd.class true
[07Feb2019 20:07:27.729] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextEnd.class got resource net/minecraftforge/event/terraingen/InitNoiseGensEvent$ContextEnd.class true
[07Feb2019 20:07:27.731] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorDebug.class got resource net/minecraft/world/gen/ChunkGeneratorDebug.class true
[07Feb2019 20:07:27.735] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorFlat.class got resource net/minecraft/world/gen/ChunkGeneratorFlat.class true
[07Feb2019 20:07:27.738] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkGeneratorFlat$BiomeWrapper.class got resource net/minecraft/world/gen/ChunkGeneratorFlat$BiomeWrapper.class true
[07Feb2019 20:07:27.741] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/BiomeProviderType.class got resource net/minecraft/world/biome/provider/BiomeProviderType.class true
[07Feb2019 20:07:27.743] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/CheckerboardBiomeProvider.class got resource net/minecraft/world/biome/provider/CheckerboardBiomeProvider.class true
[07Feb2019 20:07:27.746] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/CheckerboardBiomeProviderSettings.class got resource net/minecraft/world/biome/provider/CheckerboardBiomeProviderSettings.class true
[07Feb2019 20:07:27.749] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/BiomeProviderType$Settings.class got resource net/minecraft/world/biome/provider/BiomeProviderType$Settings.class true
[07Feb2019 20:07:27.751] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/SingleBiomeProviderSettings.class got resource net/minecraft/world/biome/provider/SingleBiomeProviderSettings.class true
[07Feb2019 20:07:27.753] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/OverworldBiomeProviderSettings.class got resource net/minecraft/world/biome/provider/OverworldBiomeProviderSettings.class true
[07Feb2019 20:07:27.756] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/EndBiomeProviderSettings.class got resource net/minecraft/world/biome/provider/EndBiomeProviderSettings.class true
[07Feb2019 20:07:27.758] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/OverworldBiomeProvider.class got resource net/minecraft/world/biome/provider/OverworldBiomeProvider.class true
[07Feb2019 20:07:27.762] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/provider/EndBiomeProvider.class got resource net/minecraft/world/biome/provider/EndBiomeProvider.class true
[07Feb2019 20:07:27.765] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BiomeCache.class got resource net/minecraft/world/biome/BiomeCache.class true
[07Feb2019 20:07:27.767] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/biome/BiomeCache$1.class got resource net/minecraft/world/biome/BiomeCache$1.class true
[07Feb2019 20:07:27.770] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/LayerUtil.class got resource net/minecraft/world/gen/layer/LayerUtil.class true
[07Feb2019 20:07:27.773] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/WorldTypeEvent$BiomeSize.class got resource net/minecraftforge/event/terraingen/WorldTypeEvent$BiomeSize.class true
[07Feb2019 20:07:27.776] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/WorldTypeEvent.class got resource net/minecraftforge/event/terraingen/WorldTypeEvent.class true
[07Feb2019 20:07:27.778] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/LazyAreaLayerContext.class got resource net/minecraft/world/gen/LazyAreaLayerContext.class true
[07Feb2019 20:07:27.781] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/LayerContext.class got resource net/minecraft/world/gen/LayerContext.class true
[07Feb2019 20:07:27.784] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/IContextExtended.class got resource net/minecraft/world/gen/IContextExtended.class true
[07Feb2019 20:07:27.786] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/IContext.class got resource net/minecraft/world/gen/IContext.class true
[07Feb2019 20:07:27.790] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerIsland.class got resource net/minecraft/world/gen/layer/GenLayerIsland.class true
[07Feb2019 20:07:27.793] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IAreaTransformer0.class got resource net/minecraft/world/gen/layer/traits/IAreaTransformer0.class true
[07Feb2019 20:07:27.795] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/area/IArea.class got resource net/minecraft/world/gen/area/IArea.class true
[07Feb2019 20:07:27.805] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NoiseGeneratorImproved.class got resource net/minecraft/world/gen/NoiseGeneratorImproved.class true
[07Feb2019 20:07:27.808] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/area/AreaDimension.class got resource net/minecraft/world/gen/area/AreaDimension.class true
[07Feb2019 20:07:27.811] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/area/IAreaFactory.class got resource net/minecraft/world/gen/area/IAreaFactory.class true
[07Feb2019 20:07:27.813] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerZoom.class got resource net/minecraft/world/gen/layer/GenLayerZoom.class true
[07Feb2019 20:07:27.816] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerZoom$1.class got resource net/minecraft/world/gen/layer/GenLayerZoom$1.class true
[07Feb2019 20:07:27.820] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerAddIsland.class got resource net/minecraft/world/gen/layer/GenLayerAddIsland.class true
[07Feb2019 20:07:27.823] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IBishopTransformer.class got resource net/minecraft/world/gen/layer/traits/IBishopTransformer.class true
[07Feb2019 20:07:27.825] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IDimOffset1Transformer.class got resource net/minecraft/world/gen/layer/traits/IDimOffset1Transformer.class true
[07Feb2019 20:07:27.828] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean.class got resource net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean.class true
[07Feb2019 20:07:27.831] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/ICastleTransformer.class got resource net/minecraft/world/gen/layer/traits/ICastleTransformer.class true
[07Feb2019 20:07:27.833] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/OceanLayer.class got resource net/minecraft/world/gen/layer/OceanLayer.class true
[07Feb2019 20:07:27.836] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerAddSnow.class got resource net/minecraft/world/gen/layer/GenLayerAddSnow.class true
[07Feb2019 20:07:27.839] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IC1Transformer.class got resource net/minecraft/world/gen/layer/traits/IC1Transformer.class true
[07Feb2019 20:07:27.842] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerEdge$CoolWarm.class got resource net/minecraft/world/gen/layer/GenLayerEdge$CoolWarm.class true
[07Feb2019 20:07:27.845] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerEdge$HeatIce.class got resource net/minecraft/world/gen/layer/GenLayerEdge$HeatIce.class true
[07Feb2019 20:07:27.848] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerEdge$Special.class got resource net/minecraft/world/gen/layer/GenLayerEdge$Special.class true
[07Feb2019 20:07:27.851] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IC0Transformer.class got resource net/minecraft/world/gen/layer/traits/IC0Transformer.class true
[07Feb2019 20:07:27.852] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IDimOffset0Transformer.class got resource net/minecraft/world/gen/layer/traits/IDimOffset0Transformer.class true
[07Feb2019 20:07:27.855] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerAddMushroomIsland.class got resource net/minecraft/world/gen/layer/GenLayerAddMushroomIsland.class true
[07Feb2019 20:07:27.858] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerDeepOcean.class got resource net/minecraft/world/gen/layer/GenLayerDeepOcean.class true
[07Feb2019 20:07:27.861] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerRiverInit.class got resource net/minecraft/world/gen/layer/GenLayerRiverInit.class true
[07Feb2019 20:07:27.863] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerBiome.class got resource net/minecraft/world/gen/layer/GenLayerBiome.class true
[07Feb2019 20:07:27.870] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/BiomeManager$BiomeType.class got resource net/minecraftforge/common/BiomeManager$BiomeType.class true
[07Feb2019 20:07:27.873] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/BiomeManager.class got resource net/minecraftforge/common/BiomeManager.class true
[07Feb2019 20:07:27.875] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/BiomeManager$TrackedList.class got resource net/minecraftforge/common/BiomeManager$TrackedList.class true
[07Feb2019 20:07:27.879] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/BiomeManager$BiomeEntry.class got resource net/minecraftforge/common/BiomeManager$BiomeEntry.class true
[07Feb2019 20:07:27.882] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerBiomeEdge.class got resource net/minecraft/world/gen/layer/GenLayerBiomeEdge.class true
[07Feb2019 20:07:27.886] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerHills.class got resource net/minecraft/world/gen/layer/GenLayerHills.class true
[07Feb2019 20:07:27.888] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/traits/IAreaTransformer2.class got resource net/minecraft/world/gen/layer/traits/IAreaTransformer2.class true
[07Feb2019 20:07:27.891] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerRiver.class got resource net/minecraft/world/gen/layer/GenLayerRiver.class true
[07Feb2019 20:07:27.895] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerSmooth.class got resource net/minecraft/world/gen/layer/GenLayerSmooth.class true
[07Feb2019 20:07:27.898] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerRareBiome.class got resource net/minecraft/world/gen/layer/GenLayerRareBiome.class true
[07Feb2019 20:07:27.901] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerShore.class got resource net/minecraft/world/gen/layer/GenLayerShore.class true
[07Feb2019 20:07:27.904] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerRiverMix.class got resource net/minecraft/world/gen/layer/GenLayerRiverMix.class true
[07Feb2019 20:07:27.907] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerMixOceans.class got resource net/minecraft/world/gen/layer/GenLayerMixOceans.class true
[07Feb2019 20:07:28.023] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayerVoronoiZoom.class got resource net/minecraft/world/gen/layer/GenLayerVoronoiZoom.class true
[07Feb2019 20:07:28.031] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/layer/GenLayer.class got resource net/minecraft/world/gen/layer/GenLayer.class true
[07Feb2019 20:07:28.033] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/PhantomSpawner.class got resource net/minecraft/world/PhantomSpawner.class true
[07Feb2019 20:07:28.036] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/NoiseGeneratorOctaves.class got resource net/minecraft/world/gen/NoiseGeneratorOctaves.class true
[07Feb2019 20:07:28.041] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/TerrainGen.class got resource net/minecraftforge/event/terraingen/TerrainGen.class true
[07Feb2019 20:07:28.044] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/InitNoiseGensEvent.class got resource net/minecraftforge/event/terraingen/InitNoiseGensEvent.class true
[07Feb2019 20:07:28.049] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/ChunkCacheNeighborNotification.class got resource net/minecraft/world/gen/ChunkCacheNeighborNotification.class true
[07Feb2019 20:07:28.057] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Scheduler$1.class got resource net/minecraft/util/Scheduler$1.class true
[07Feb2019 20:07:28.059] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ITaskType.class got resource net/minecraft/util/ITaskType.class true
[07Feb2019 20:07:28.062] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkStatus.class got resource net/minecraft/world/chunk/ChunkStatus.class true
[07Feb2019 20:07:28.065] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/ChunkTask.class got resource net/minecraft/world/gen/tasks/ChunkTask.class true
[07Feb2019 20:07:28.068] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/BaseChunkTask.class got resource net/minecraft/world/gen/tasks/BaseChunkTask.class true
[07Feb2019 20:07:28.070] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/CarveChunkTask.class got resource net/minecraft/world/gen/tasks/CarveChunkTask.class true
[07Feb2019 20:07:28.073] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/LiquidCarveChunkTask.class got resource net/minecraft/world/gen/tasks/LiquidCarveChunkTask.class true
[07Feb2019 20:07:28.075] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/DecorateChunkTask.class got resource net/minecraft/world/gen/tasks/DecorateChunkTask.class true
[07Feb2019 20:07:28.078] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkStatus$1.class got resource net/minecraft/world/chunk/ChunkStatus$1.class true
[07Feb2019 20:07:28.080] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/LightChunkTask.class got resource net/minecraft/world/gen/tasks/LightChunkTask.class true
[07Feb2019 20:07:28.083] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/SpawnMobsTask.class got resource net/minecraft/world/gen/tasks/SpawnMobsTask.class true
[07Feb2019 20:07:28.085] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/FinializeChunkTask.class got resource net/minecraft/world/gen/tasks/FinializeChunkTask.class true
[07Feb2019 20:07:28.087] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/DummyChunkTask.class got resource net/minecraft/world/gen/tasks/DummyChunkTask.class true
[07Feb2019 20:07:28.090] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkStatus$Type.class got resource net/minecraft/world/chunk/ChunkStatus$Type.class true
[07Feb2019 20:07:28.094] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/NamedThreadFactory.class got resource net/minecraft/util/NamedThreadFactory.class true
[07Feb2019 20:07:28.097] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/tasks/ProtoChunkScheduler$1.class got resource net/minecraft/world/gen/tasks/ProtoChunkScheduler$1.class true
[07Feb2019 20:07:28.100] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ExpiringMap.class got resource net/minecraft/util/ExpiringMap.class true
[07Feb2019 20:07:28.109] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/TaskManager.class got resource net/minecraft/util/TaskManager.class true
[07Feb2019 20:07:28.112] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/WorldSpecificSaveHandler.class got resource net/minecraftforge/common/WorldSpecificSaveHandler.class true
[07Feb2019 20:07:28.115] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/Teleporter.class got resource net/minecraft/world/Teleporter.class true
[07Feb2019 20:07:28.119] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/Teleporter$PortalPosition.class got resource net/minecraft/world/Teleporter$PortalPosition.class true
[07Feb2019 20:07:28.121] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension 0 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:28.128] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/WorldSavedDataCallableSave.class got resource net/minecraft/world/storage/WorldSavedDataCallableSave.class true
[07Feb2019 20:07:28.131] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ServerWorldEventHandler.class got resource net/minecraft/world/ServerWorldEventHandler.class true
[07Feb2019 20:07:28.136] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldServerMulti.class got resource net/minecraft/world/WorldServerMulti.class true
[07Feb2019 20:07:28.141] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/DerivedWorldInfo.class got resource net/minecraft/world/storage/DerivedWorldInfo.class true
[07Feb2019 20:07:28.145] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension 4 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:28.147] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/WorldServerMulti$1.class got resource net/minecraft/world/WorldServerMulti$1.class true
[07Feb2019 20:07:28.159] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension -1 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:28.164] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension 2 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:28.167] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/conquest/server/WorldSavedDataFog$1.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\conquest\server\WorldSavedDataFog$1.class true
[07Feb2019 20:07:28.171] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/BossInfoServer.class got resource net/minecraft/world/BossInfoServer.class true
[07Feb2019 20:07:28.175] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/BossInfo.class got resource net/minecraft/world/BossInfo.class true
[07Feb2019 20:07:28.179] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/end/DragonFightManager.class got resource net/minecraft/world/end/DragonFightManager.class true
[07Feb2019 20:07:28.183] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EntitySelectors.class got resource net/minecraft/util/EntitySelectors.class true
[07Feb2019 20:07:28.187] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/BossInfo$Overlay.class got resource net/minecraft/world/BossInfo$Overlay.class true
[07Feb2019 20:07:28.190] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketUpdateBossInfo$Operation.class got resource net/minecraft/network/play/server/SPacketUpdateBossInfo$Operation.class true
[07Feb2019 20:07:28.192] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketUpdateBossInfo.class got resource net/minecraft/network/play/server/SPacketUpdateBossInfo.class true
[07Feb2019 20:07:28.195] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/FactoryBlockPattern.class got resource net/minecraft/block/state/pattern/FactoryBlockPattern.class true
[07Feb2019 20:07:28.198] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockPattern.class got resource net/minecraft/block/state/pattern/BlockPattern.class true
[07Feb2019 20:07:28.200] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockPattern$CacheLoader.class got resource net/minecraft/block/state/pattern/BlockPattern$CacheLoader.class true
[07Feb2019 20:07:28.202] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension 1 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:28.206] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerList$1.class got resource net/minecraft/server/management/PlayerList$1.class true
[07Feb2019 20:07:28.207] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for level 0
[07Feb2019 20:07:28.209] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/border/EnumBorderStatus.class got resource net/minecraft/world/border/EnumBorderStatus.class true
[07Feb2019 20:07:28.212] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/ChunkPos.class got resource net/minecraft/util/math/ChunkPos.class true
[07Feb2019 20:07:28.216] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/RegionFileCache.class got resource net/minecraft/world/chunk/storage/RegionFileCache.class true
[07Feb2019 20:07:28.219] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/RegionFile.class got resource net/minecraft/world/chunk/storage/RegionFile.class true
[07Feb2019 20:07:28.221] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer.class got resource net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer.class true
[07Feb2019 20:07:28.238] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagIntArray.class got resource net/minecraft/nbt/NBTTagIntArray.class true
[07Feb2019 20:07:28.241] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagLongArray.class got resource net/minecraft/nbt/NBTTagLongArray.class true
[07Feb2019 20:07:28.245] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagByteArray.class got resource net/minecraft/nbt/NBTTagByteArray.class true
[07Feb2019 20:07:28.250] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/UpgradeData.class got resource net/minecraft/world/chunk/UpgradeData.class true
[07Feb2019 20:07:28.254] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/EnumDirection8.class got resource net/minecraft/util/EnumDirection8.class true
[07Feb2019 20:07:28.257] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkPrimerTickList.class got resource net/minecraft/world/chunk/ChunkPrimerTickList.class true
[07Feb2019 20:07:28.262] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ChunkEvent$Load.class got resource net/minecraftforge/event/world/ChunkEvent$Load.class true
[07Feb2019 20:07:28.266] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/world/ChunkEvent$Unload.class got resource net/minecraftforge/event/world/ChunkEvent$Unload.class true
[07Feb2019 20:07:28.269] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/ChunkSection.class got resource net/minecraft/world/chunk/ChunkSection.class true
[07Feb2019 20:07:28.272] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/ClassInheritanceMultiMap.class got resource net/minecraft/util/ClassInheritanceMultiMap.class true
[07Feb2019 20:07:28.275] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/Heightmap.class got resource net/minecraft/world/gen/Heightmap.class true
[07Feb2019 20:07:28.278] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/BitArray.class got resource net/minecraft/util/BitArray.class true
[07Feb2019 20:07:28.280] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/ReaderAwareMatchers.class got resource net/minecraft/block/state/pattern/ReaderAwareMatchers.class true
[07Feb2019 20:07:28.283] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/ReaderAwareMatchers$OrMatcher.class got resource net/minecraft/block/state/pattern/ReaderAwareMatchers$OrMatcher.class true
[07Feb2019 20:07:28.285] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/ReaderAwareMatchers$NotMatcher.class got resource net/minecraft/block/state/pattern/ReaderAwareMatchers$NotMatcher.class true
[07Feb2019 20:07:28.288] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/IBlockStatePalette.class got resource net/minecraft/world/chunk/IBlockStatePalette.class true
[07Feb2019 20:07:28.291] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/BlockStatePaletteRegistry.class got resource net/minecraft/world/chunk/BlockStatePaletteRegistry.class true
[07Feb2019 20:07:28.293] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/BlockStateContainer.class got resource net/minecraft/world/chunk/BlockStateContainer.class true
[07Feb2019 20:07:28.296] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/IBlockStatePaletteResizer.class got resource net/minecraft/world/chunk/IBlockStatePaletteResizer.class true
[07Feb2019 20:07:28.299] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/BlockStatePaletteLinear.class got resource net/minecraft/world/chunk/BlockStatePaletteLinear.class true
[07Feb2019 20:07:28.302] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/NibbleArray.class got resource net/minecraft/world/chunk/NibbleArray.class true
[07Feb2019 20:07:28.312] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/BlockStatePaletteHashMap.class got resource net/minecraft/world/chunk/BlockStatePaletteHashMap.class true
[07Feb2019 20:07:28.376] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagFloat.class got resource net/minecraft/nbt/NBTTagFloat.class true
[07Feb2019 20:07:28.380] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/nbt/NBTTagShort.class got resource net/minecraft/nbt/NBTTagShort.class true
[07Feb2019 20:07:28.385] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/datasync/EntityDataManager$DataEntry.class got resource net/minecraft/network/datasync/EntityDataManager$DataEntry.class true
[07Feb2019 20:07:28.388] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/CombatTracker.class got resource net/minecraft/util/CombatTracker.class true
[07Feb2019 20:07:28.391] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/wrapper/EntityEquipmentInvWrapper.class got resource net/minecraftforge/items/wrapper/EntityEquipmentInvWrapper.class true
[07Feb2019 20:07:28.395] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/IAttributeInstance.class got resource net/minecraft/entity/ai/attributes/IAttributeInstance.class true
[07Feb2019 20:07:28.397] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/LowerStringMap.class got resource net/minecraft/util/LowerStringMap.class true
[07Feb2019 20:07:28.400] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.class got resource net/minecraft/entity/ai/attributes/ModifiableAttributeInstance.class true
[07Feb2019 20:07:28.405] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathNodeType.class got resource net/minecraft/pathfinding/PathNodeType.class true
[07Feb2019 20:07:28.407] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITasks.class got resource net/minecraft/entity/ai/EntityAITasks.class true
[07Feb2019 20:07:28.410] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityMoveHelper$Action.class got resource net/minecraft/entity/ai/EntityMoveHelper$Action.class true
[07Feb2019 20:07:28.413] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/NodeProcessor.class got resource net/minecraft/pathfinding/NodeProcessor.class true
[07Feb2019 20:07:28.416] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/WalkNodeProcessor.class got resource net/minecraft/pathfinding/WalkNodeProcessor.class true
[07Feb2019 20:07:28.421] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathFinder.class got resource net/minecraft/pathfinding/PathFinder.class true
[07Feb2019 20:07:28.424] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathHeap.class got resource net/minecraft/pathfinding/PathHeap.class true
[07Feb2019 20:07:28.428] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathPoint.class got resource net/minecraft/pathfinding/PathPoint.class true
[07Feb2019 20:07:28.431] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntitySenses.class got resource net/minecraft/entity/ai/EntitySenses.class true
[07Feb2019 20:07:28.433] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry.class got resource net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry.class true
[07Feb2019 20:07:28.436] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/EntityAIAvoidEntity$1.class got resource net/minecraft/entity/ai/EntityAIAvoidEntity$1.class true
[07Feb2019 20:07:28.439] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/entity/living/BabyEntitySpawnEvent.class got resource net/minecraftforge/event/entity/living/BabyEntitySpawnEvent.class true
[07Feb2019 20:07:28.442] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/InventoryBasic.class got resource net/minecraft/inventory/InventoryBasic.class true
[07Feb2019 20:07:28.446] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/MerchantRecipeList.class got resource net/minecraft/village/MerchantRecipeList.class true
[07Feb2019 20:07:28.449] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/MerchantRecipe.class got resource net/minecraft/village/MerchantRecipe.class true
[07Feb2019 20:07:28.453] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityTrackerEntry.class got resource net/minecraft/entity/EntityTrackerEntry.class true
[07Feb2019 20:07:28.463] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/wrapper/InvWrapper.class got resource net/minecraftforge/items/wrapper/InvWrapper.class true
[07Feb2019 20:07:28.465] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 4%
[07Feb2019 20:07:28.493] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/WeightedSpawnerEntity.class got resource net/minecraft/util/WeightedSpawnerEntity.class true
[07Feb2019 20:07:28.500] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 8%
[07Feb2019 20:07:28.508] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/UpgradeData$IBlockFixer.class got resource net/minecraft/world/chunk/UpgradeData$IBlockFixer.class true
[07Feb2019 20:07:28.535] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StructureIO.class got resource net/minecraft/world/gen/feature/structure/StructureIO.class true
[07Feb2019 20:07:28.538] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces.class true
[07Feb2019 20:07:28.540] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces$Piece.class true
[07Feb2019 20:07:28.543] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StructurePiece.class got resource net/minecraft/world/gen/feature/structure/StructurePiece.class true
[07Feb2019 20:07:28.546] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces$Cross.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces$Cross.class true
[07Feb2019 20:07:28.549] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces$Stairs.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces$Stairs.class true
[07Feb2019 20:07:28.552] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces$Corridor.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces$Corridor.class true
[07Feb2019 20:07:28.555] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/MineshaftPieces$Room.class got resource net/minecraft/world/gen/feature/structure/MineshaftPieces$Room.class true
[07Feb2019 20:07:28.558] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces.class got resource net/minecraft/world/gen/feature/structure/VillagePieces.class true
[07Feb2019 20:07:28.566] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Village.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Village.class true
[07Feb2019 20:07:28.569] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Torch.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Torch.class true
[07Feb2019 20:07:28.571] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$House4Garden.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$House4Garden.class true
[07Feb2019 20:07:28.573] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Church.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Church.class true
[07Feb2019 20:07:28.576] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$House1.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$House1.class true
[07Feb2019 20:07:28.578] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$WoodHut.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$WoodHut.class true
[07Feb2019 20:07:28.580] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Hall.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Hall.class true
[07Feb2019 20:07:28.582] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Field1.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Field1.class true
[07Feb2019 20:07:28.585] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Field2.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Field2.class true
[07Feb2019 20:07:28.587] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$House2.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$House2.class true
[07Feb2019 20:07:28.589] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$House3.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$House3.class true
[07Feb2019 20:07:28.592] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Path.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Path.class true
[07Feb2019 20:07:28.594] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Road.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Road.class true
[07Feb2019 20:07:28.597] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Start.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Start.class true
[07Feb2019 20:07:28.600] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/VillagePieces$Well.class got resource net/minecraft/world/gen/feature/structure/VillagePieces$Well.class true
[07Feb2019 20:07:28.602] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces.class got resource net/minecraft/world/gen/feature/structure/FortressPieces.class true
[07Feb2019 20:07:28.611] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Piece.class true
[07Feb2019 20:07:28.613] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Straight.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Straight.class true
[07Feb2019 20:07:28.616] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Crossing3.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Crossing3.class true
[07Feb2019 20:07:28.618] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Crossing.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Crossing.class true
[07Feb2019 20:07:28.620] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Stairs.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Stairs.class true
[07Feb2019 20:07:28.622] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Throne.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Throne.class true
[07Feb2019 20:07:28.624] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Entrance.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Entrance.class true
[07Feb2019 20:07:28.627] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Corridor5.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Corridor5.class true
[07Feb2019 20:07:28.629] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Corridor2.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Corridor2.class true
[07Feb2019 20:07:28.632] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Corridor.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Corridor.class true
[07Feb2019 20:07:28.634] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Corridor3.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Corridor3.class true
[07Feb2019 20:07:28.636] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Corridor4.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Corridor4.class true
[07Feb2019 20:07:28.638] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Crossing2.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Crossing2.class true
[07Feb2019 20:07:28.640] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$NetherStalkRoom.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$NetherStalkRoom.class true
[07Feb2019 20:07:28.643] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$PieceWeight.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$PieceWeight.class true
[07Feb2019 20:07:28.645] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$End.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$End.class true
[07Feb2019 20:07:28.648] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/FortressPieces$Start.class got resource net/minecraft/world/gen/feature/structure/FortressPieces$Start.class true
[07Feb2019 20:07:28.650] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces.class true
[07Feb2019 20:07:28.657] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Stronghold.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Stronghold.class true
[07Feb2019 20:07:28.660] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Corridor.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Corridor.class true
[07Feb2019 20:07:28.662] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Straight.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Straight.class true
[07Feb2019 20:07:28.665] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Prison.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Prison.class true
[07Feb2019 20:07:28.667] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$LeftTurn.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$LeftTurn.class true
[07Feb2019 20:07:28.670] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$RoomCrossing.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$RoomCrossing.class true
[07Feb2019 20:07:28.672] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$StairsStraight.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$StairsStraight.class true
[07Feb2019 20:07:28.675] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Stairs.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Stairs.class true
[07Feb2019 20:07:28.677] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Crossing.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Crossing.class true
[07Feb2019 20:07:28.679] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$ChestCorridor.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$ChestCorridor.class true
[07Feb2019 20:07:28.681] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Library.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Library.class true
[07Feb2019 20:07:28.684] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$PortalRoom.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$PortalRoom.class true
[07Feb2019 20:07:28.687] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$PieceWeight.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$PieceWeight.class true
[07Feb2019 20:07:28.816] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$RightTurn.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$RightTurn.class true
[07Feb2019 20:07:28.819] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$1.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$1.class true
[07Feb2019 20:07:28.827] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$2.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$2.class true
[07Feb2019 20:07:28.830] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Stones.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Stones.class true
[07Feb2019 20:07:28.832] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StructurePiece$BlockSelector.class got resource net/minecraft/world/gen/feature/structure/StructurePiece$BlockSelector.class true
[07Feb2019 20:07:28.834] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StrongholdPieces$Stairs2.class got resource net/minecraft/world/gen/feature/structure/StrongholdPieces$Stairs2.class true
[07Feb2019 20:07:28.837] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/JunglePyramidPiece.class got resource net/minecraft/world/gen/feature/structure/JunglePyramidPiece.class true
[07Feb2019 20:07:28.840] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ScatteredStructurePiece.class got resource net/minecraft/world/gen/feature/structure/ScatteredStructurePiece.class true
[07Feb2019 20:07:28.843] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/JunglePyramidPiece$MossStoneSelector.class got resource net/minecraft/world/gen/feature/structure/JunglePyramidPiece$MossStoneSelector.class true
[07Feb2019 20:07:28.846] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinPieces.class got resource net/minecraft/world/gen/feature/structure/OceanRuinPieces.class true
[07Feb2019 20:07:28.848] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanRuinPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/OceanRuinPieces$Piece.class true
[07Feb2019 20:07:28.851] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/TemplateStructurePiece.class got resource net/minecraft/world/gen/feature/structure/TemplateStructurePiece.class true
[07Feb2019 20:07:28.854] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/IglooPieces.class got resource net/minecraft/world/gen/feature/structure/IglooPieces.class true
[07Feb2019 20:07:28.856] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/IglooPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/IglooPieces$Piece.class true
[07Feb2019 20:07:28.859] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/SwampHutPiece.class got resource net/minecraft/world/gen/feature/structure/SwampHutPiece.class true
[07Feb2019 20:07:28.862] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/DesertPyramidPiece.class got resource net/minecraft/world/gen/feature/structure/DesertPyramidPiece.class true
[07Feb2019 20:07:28.865] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces.class true
[07Feb2019 20:07:28.867] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$MonumentBuilding.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$MonumentBuilding.class true
[07Feb2019 20:07:28.871] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$Piece.class true
[07Feb2019 20:07:28.873] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$MonumentCoreRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$MonumentCoreRoom.class true
[07Feb2019 20:07:28.876] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleXRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleXRoom.class true
[07Feb2019 20:07:28.879] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleXYRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleXYRoom.class true
[07Feb2019 20:07:28.882] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleYRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleYRoom.class true
[07Feb2019 20:07:28.885] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleYZRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleYZRoom.class true
[07Feb2019 20:07:28.888] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleZRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$DoubleZRoom.class true
[07Feb2019 20:07:28.891] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$EntryRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$EntryRoom.class true
[07Feb2019 20:07:28.893] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$Penthouse.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$Penthouse.class true
[07Feb2019 20:07:28.896] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$SimpleRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$SimpleRoom.class true
[07Feb2019 20:07:28.899] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/OceanMonumentPieces$SimpleTopRoom.class got resource net/minecraft/world/gen/feature/structure/OceanMonumentPieces$SimpleTopRoom.class true
[07Feb2019 20:07:28.902] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces.class true
[07Feb2019 20:07:28.905] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$IGenerator.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$IGenerator.class true
[07Feb2019 20:07:28.909] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/template/PlacementSettings.class got resource net/minecraft/world/gen/feature/template/PlacementSettings.class true
[07Feb2019 20:07:28.912] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Mirror.class got resource net/minecraft/util/Mirror.class true
[07Feb2019 20:07:28.916] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Rotation.class got resource net/minecraft/util/Rotation.class true
[07Feb2019 20:07:28.919] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$1.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$1.class true
[07Feb2019 20:07:28.922] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$2.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$2.class true
[07Feb2019 20:07:28.926] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$3.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$3.class true
[07Feb2019 20:07:28.929] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$4.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$4.class true
[07Feb2019 20:07:28.931] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/EndCityPieces$CityTemplate.class got resource net/minecraft/world/gen/feature/structure/EndCityPieces$CityTemplate.class true
[07Feb2019 20:07:28.934] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/WoodlandMansionPieces.class got resource net/minecraft/world/gen/feature/structure/WoodlandMansionPieces.class true
[07Feb2019 20:07:28.936] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/WoodlandMansionPieces$MansionTemplate.class got resource net/minecraft/world/gen/feature/structure/WoodlandMansionPieces$MansionTemplate.class true
[07Feb2019 20:07:28.939] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/BuriedTreasurePieces.class got resource net/minecraft/world/gen/feature/structure/BuriedTreasurePieces.class true
[07Feb2019 20:07:28.941] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/BuriedTreasurePieces$Piece.class got resource net/minecraft/world/gen/feature/structure/BuriedTreasurePieces$Piece.class true
[07Feb2019 20:07:28.943] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ShipwreckPieces.class got resource net/minecraft/world/gen/feature/structure/ShipwreckPieces.class true
[07Feb2019 20:07:28.945] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/ShipwreckPieces$Piece.class got resource net/minecraft/world/gen/feature/structure/ShipwreckPieces$Piece.class true
[07Feb2019 20:07:28.948] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/MutableBoundingBox.class got resource net/minecraft/util/math/MutableBoundingBox.class true
[07Feb2019 20:07:28.951] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/BiomeEvent$GetVillageBlockID.class got resource net/minecraftforge/event/terraingen/BiomeEvent$GetVillageBlockID.class true
[07Feb2019 20:07:28.953] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/event/terraingen/BiomeEvent.class got resource net/minecraftforge/event/terraingen/BiomeEvent.class true
[07Feb2019 20:07:28.956] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/gen/feature/structure/StructurePiece$1.class got resource net/minecraft/world/gen/feature/structure/StructurePiece$1.class true
[07Feb2019 20:07:28.962] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/LockCode.class got resource net/minecraft/world/LockCode.class true
[07Feb2019 20:07:28.964] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/items/wrapper/SidedInvWrapper.class got resource net/minecraftforge/items/wrapper/SidedInvWrapper.class true
[07Feb2019 20:07:28.968] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/inventory/ItemStackHelper.class got resource net/minecraft/inventory/ItemStackHelper.class true
[07Feb2019 20:07:28.972] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 12%
[07Feb2019 20:07:29.001] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 16%
[07Feb2019 20:07:29.029] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 20%
[07Feb2019 20:07:29.053] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 24%
[07Feb2019 20:07:29.075] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 28%
[07Feb2019 20:07:29.087] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/SwimNodeProcessor.class got resource net/minecraft/pathfinding/SwimNodeProcessor.class true
[07Feb2019 20:07:29.105] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 32%
[07Feb2019 20:07:29.130] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 36%
[07Feb2019 20:07:29.155] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 40%
[07Feb2019 20:07:29.180] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 44%
[07Feb2019 20:07:29.204] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 48%
[07Feb2019 20:07:29.231] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 52%
[07Feb2019 20:07:29.281] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 56%
[07Feb2019 20:07:29.306] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 60%
[07Feb2019 20:07:29.333] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 64%
[07Feb2019 20:07:29.360] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 68%
[07Feb2019 20:07:29.386] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 72%
[07Feb2019 20:07:29.410] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 76%
[07Feb2019 20:07:29.435] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 80%
[07Feb2019 20:07:29.458] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 84%
[07Feb2019 20:07:29.482] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 88%
[07Feb2019 20:07:29.505] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 92%
[07Feb2019 20:07:29.529] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 96%
[07Feb2019 20:07:29.553] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 100%
[07Feb2019 20:07:29.553] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Time elapsed: 1343 ms
[07Feb2019 20:07:29.554] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (3.885s)! For help, type "help"
[07Feb2019 20:07:29.559] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/ForgeCommand.class got resource net/minecraftforge/server/command/ForgeCommand.class true
[07Feb2019 20:07:29.562] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTps.class got resource net/minecraftforge/server/command/CommandTps.class true
[07Feb2019 20:07:29.565] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTrack.class got resource net/minecraftforge/server/command/CommandTrack.class true
[07Feb2019 20:07:29.568] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTrack$StartTrackingCommand.class got resource net/minecraftforge/server/command/CommandTrack$StartTrackingCommand.class true
[07Feb2019 20:07:29.571] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTrack$ResetTrackingCommand.class got resource net/minecraftforge/server/command/CommandTrack$ResetTrackingCommand.class true
[07Feb2019 20:07:29.574] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTrack$TrackResultsEntity.class got resource net/minecraftforge/server/command/CommandTrack$TrackResultsEntity.class true
[07Feb2019 20:07:29.577] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandTrack$TrackResultsTileEntity.class got resource net/minecraftforge/server/command/CommandTrack$TrackResultsTileEntity.class true
[07Feb2019 20:07:29.580] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandEntity.class got resource net/minecraftforge/server/command/CommandEntity.class true
[07Feb2019 20:07:29.638] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandEntity$EntityListCommand.class got resource net/minecraftforge/server/command/CommandEntity$EntityListCommand.class true
[07Feb2019 20:07:29.648] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandGenerate.class got resource net/minecraftforge/server/command/CommandGenerate.class true
[07Feb2019 20:07:29.651] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/WorldWorkerManager$IWorker.class got resource net/minecraftforge/common/WorldWorkerManager$IWorker.class true
[07Feb2019 20:07:29.654] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandDimensions.class got resource net/minecraftforge/server/command/CommandDimensions.class true
[07Feb2019 20:07:29.657] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/command/CommandSetDimension.class got resource net/minecraftforge/server/command/CommandSetDimension.class true
[07Feb2019 20:07:29.662] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestTaskState.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestTaskState.class true
[07Feb2019 20:07:29.663] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/QuestRoadState.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\QuestRoadState.class true
[07Feb2019 20:07:29.664] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/requirement/RequirementTask.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\requirement\RequirementTask.class true
[07Feb2019 20:07:29.666] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/requirement/RequirementQuest.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\requirement\RequirementQuest.class true
[07Feb2019 20:07:29.667] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/requirement/RequirementChapter.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\requirement\RequirementChapter.class true
[07Feb2019 20:07:29.668] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/requirement/RequirementEnvironment.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\requirement\RequirementEnvironment.class true
[07Feb2019 20:07:29.676] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/server/story/Chapter.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\server\story\Chapter.class true
[07Feb2019 20:07:29.681] [Server thread/INFO] [quest/]: [quest] Loaded quest "example_quest"
[07Feb2019 20:07:29.682] [Server thread/INFO] [quest/]: [quest] Loaded quest "look_for_help"
[07Feb2019 20:07:29.684] [Server thread/INFO] [quest/]: [quest] Loaded quest "sign_the_registry"
[07Feb2019 20:07:29.686] [Server thread/INFO] [quest/]: [quest] Loaded quest "sail_to_arcadia"
[07Feb2019 20:07:29.687] [Server thread/INFO] [quest/]: [quest] Loaded quest "prepare_yourself"
[07Feb2019 20:07:29.690] [Server thread/INFO] [quest/]: [quest] Loaded chapter "chapter_1"
[07Feb2019 20:07:29.691] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/server/maintenance/EMaintenanceState.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\server\maintenance\EMaintenanceState.class true
[07Feb2019 20:07:29.692] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§bmaintenance.state.updated§r
[07Feb2019 20:07:29.698] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doLimitedCrafting§r
[07Feb2019 20:07:29.698] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doLimitedCrafting
[07Feb2019 20:07:29.698] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.naturalRegeneration§r
[07Feb2019 20:07:29.698] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.naturalRegeneration
[07Feb2019 20:07:29.698] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doFireTick§r
[07Feb2019 20:07:29.698] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doFireTick
[07Feb2019 20:07:29.698] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.keepInventory§r
[07Feb2019 20:07:29.698] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.keepInventory
[07Feb2019 20:07:29.698] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doLimitedCrafting§r
[07Feb2019 20:07:29.699] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doLimitedCrafting
[07Feb2019 20:07:29.699] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.naturalRegeneration§r
[07Feb2019 20:07:29.699] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.naturalRegeneration
[07Feb2019 20:07:29.699] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.keepInventory§r
[07Feb2019 20:07:29.699] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.keepInventory
[07Feb2019 20:07:29.700] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doLimitedCrafting§r
[07Feb2019 20:07:29.700] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doLimitedCrafting
[07Feb2019 20:07:29.700] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.naturalRegeneration§r
[07Feb2019 20:07:29.700] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.naturalRegeneration
[07Feb2019 20:07:29.700] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doFireTick§r
[07Feb2019 20:07:29.700] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doFireTick
[07Feb2019 20:07:29.700] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.keepInventory§r
[07Feb2019 20:07:29.701] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.keepInventory
[07Feb2019 20:07:29.701] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doLimitedCrafting§r
[07Feb2019 20:07:29.701] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doLimitedCrafting
[07Feb2019 20:07:29.701] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.naturalRegeneration§r
[07Feb2019 20:07:29.701] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.naturalRegeneration
[07Feb2019 20:07:29.701] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doFireTick§r
[07Feb2019 20:07:29.701] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doFireTick
[07Feb2019 20:07:29.702] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.difficulty§r
[07Feb2019 20:07:29.702] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.difficulty
[07Feb2019 20:07:29.702] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.keepInventory§r
[07Feb2019 20:07:29.702] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.keepInventory
[07Feb2019 20:07:29.702] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.doLimitedCrafting§r
[07Feb2019 20:07:29.702] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.doLimitedCrafting
[07Feb2019 20:07:29.702] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.naturalRegeneration§r
[07Feb2019 20:07:29.702] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.naturalRegeneration
[07Feb2019 20:07:29.703] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§cinternal.error.keepInventory§r
[07Feb2019 20:07:29.703] [Server thread/ERROR] [maintenance/]: [maintenance] An error message was broadcasted to every player : internal.error.keepInventory
[07Feb2019 20:07:29.708] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/Dialog.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\Dialog.class true
[07Feb2019 20:07:29.713] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/EDialogMessageAuthor.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\EDialogMessageAuthor.class true
[07Feb2019 20:07:29.715] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/ServerDialogMessage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\ServerDialogMessage.class true
[07Feb2019 20:07:29.716] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/DialogMessage.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\DialogMessage.class true
[07Feb2019 20:07:29.718] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/quest/dialog/server/EAction.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\quest\dialog\server\EAction.class true
[07Feb2019 20:07:29.926] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/ServerStatusResponse$Version.class got resource net/minecraft/network/ServerStatusResponse$Version.class true
[07Feb2019 20:07:29.929] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/hooks/BasicEventHooks.class got resource net/minecraftforge/fml/hooks/BasicEventHooks.class true
[07Feb2019 20:07:29.931] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemPickupEvent.class got resource net/minecraftforge/fml/common/gameevent/PlayerEvent$ItemPickupEvent.class true
[07Feb2019 20:07:29.935] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/InputEvent$KeyInputEvent.class got resource net/minecraftforge/fml/common/gameevent/InputEvent$KeyInputEvent.class true
[07Feb2019 20:07:29.937] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/InputEvent.class got resource net/minecraftforge/fml/common/gameevent/InputEvent.class true
[07Feb2019 20:07:29.940] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/InputEvent$MouseInputEvent.class got resource net/minecraftforge/fml/common/gameevent/InputEvent$MouseInputEvent.class true
[07Feb2019 20:07:29.942] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/fml/common/gameevent/TickEvent$Type.class got resource net/minecraftforge/fml/common/gameevent/TickEvent$Type.class true
[07Feb2019 20:07:29.945] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/WorldWorkerManager.class got resource net/minecraftforge/common/WorldWorkerManager.class true
[07Feb2019 20:07:29.950] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/core/server/permissions/Role$RoleInheritance.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\core\server\permissions\Role$RoleInheritance.class true
[07Feb2019 20:07:29.955] [Server thread/INFO] [fr.utopics.lighthouse.mod.ModLighthouse/]: Saved S:\dev\lighthouse\run\server\config\permissions.json
[07Feb2019 20:07:29.965] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/Scheduler$FutureWrapper.class got resource net/minecraft/util/Scheduler$FutureWrapper.class true
[07Feb2019 20:07:29.969] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerChunkMap$1.class got resource net/minecraft/server/management/PlayerChunkMap$1.class true
[07Feb2019 20:07:29.975] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/server/timings/TimeTracker.class got resource net/minecraftforge/server/timings/TimeTracker.class true
[07Feb2019 20:07:29.978] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockMaterialMatcher.class got resource net/minecraft/block/state/pattern/BlockMaterialMatcher.class true
[07Feb2019 20:07:29.981] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/pattern/BlockMaterialMatcher$1.class got resource net/minecraft/block/state/pattern/BlockMaterialMatcher$1.class true
[07Feb2019 20:07:29.984] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper.class got resource net/minecraft/enchantment/EnchantmentHelper.class true
[07Feb2019 20:07:29.987] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper$IModifier.class got resource net/minecraft/enchantment/EnchantmentHelper$IModifier.class true
[07Feb2019 20:07:29.989] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper$ModifierDamage.class got resource net/minecraft/enchantment/EnchantmentHelper$ModifierDamage.class true
[07Feb2019 20:07:29.992] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper$ModifierLiving.class got resource net/minecraft/enchantment/EnchantmentHelper$ModifierLiving.class true
[07Feb2019 20:07:29.994] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper$HurtIterator.class got resource net/minecraft/enchantment/EnchantmentHelper$HurtIterator.class true
[07Feb2019 20:07:29.996] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/enchantment/EnchantmentHelper$DamageIterator.class got resource net/minecraft/enchantment/EnchantmentHelper$DamageIterator.class true
[07Feb2019 20:07:29.999] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityLiving$1.class got resource net/minecraft/entity/EntityLiving$1.class true
[07Feb2019 20:07:30.001] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/EntityLivingBase$1.class got resource net/minecraft/entity/EntityLivingBase$1.class true
[07Feb2019 20:07:30.005] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/MoverType.class got resource net/minecraft/entity/MoverType.class true
[07Feb2019 20:07:30.008] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockLadder$1.class got resource net/minecraft/block/BlockLadder$1.class true
[07Feb2019 20:07:30.011] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/OffsetDoubleList.class got resource net/minecraft/util/math/shapes/OffsetDoubleList.class true
[07Feb2019 20:07:30.016] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/AxisRotation.class got resource net/minecraft/util/AxisRotation.class true
[07Feb2019 20:07:30.018] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/AxisRotation$1.class got resource net/minecraft/util/AxisRotation$1.class true
[07Feb2019 20:07:30.021] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/AxisRotation$2.class got resource net/minecraft/util/AxisRotation$2.class true
[07Feb2019 20:07:30.024] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/AxisRotation$3.class got resource net/minecraft/util/AxisRotation$3.class true
[07Feb2019 20:07:30.029] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/shapes/IntRangeList.class got resource net/minecraft/util/math/shapes/IntRangeList.class true
[07Feb2019 20:07:30.033] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/scoreboard/Team$CollisionRule.class got resource net/minecraft/scoreboard/Team$CollisionRule.class true
[07Feb2019 20:07:30.039] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/ChunkCache.class got resource net/minecraft/world/ChunkCache.class true
[07Feb2019 20:07:30.043] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/PathType.class got resource net/minecraft/pathfinding/PathType.class true
[07Feb2019 20:07:30.045] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/Block$2.class got resource net/minecraft/block/Block$2.class true
[07Feb2019 20:07:30.048] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/EnumPlantType.class got resource net/minecraftforge/common/EnumPlantType.class true
[07Feb2019 20:07:30.060] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/BlockDoor$1.class got resource net/minecraft/block/BlockDoor$1.class true
[07Feb2019 20:07:30.072] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/pathfinding/Path.class got resource net/minecraft/pathfinding/Path.class true
[07Feb2019 20:07:30.076] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/BlockPos$1.class got resource net/minecraft/util/math/BlockPos$1.class true
[07Feb2019 20:07:30.080] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/item/EntityMinecart$1.class got resource net/minecraft/entity/item/EntityMinecart$1.class true
[07Feb2019 20:07:30.090] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/RayTraceFluidMode.class got resource net/minecraft/util/math/RayTraceFluidMode.class true
[07Feb2019 20:07:30.095] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/block/state/BlockFaceShape.class got resource net/minecraft/block/state/BlockFaceShape.class true
[07Feb2019 20:07:30.099] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityMetadata.class got resource net/minecraft/network/play/server/SPacketEntityMetadata.class true
[07Feb2019 20:07:30.102] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityProperties.class got resource net/minecraft/network/play/server/SPacketEntityProperties.class true
[07Feb2019 20:07:30.105] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityProperties$Snapshot.class got resource net/minecraft/network/play/server/SPacketEntityProperties$Snapshot.class true
[07Feb2019 20:07:30.108] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityHeadLook.class got resource net/minecraft/network/play/server/SPacketEntityHeadLook.class true
[07Feb2019 20:07:30.110] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: Queueing dimension -1 to unload
[07Feb2019 20:07:30.110] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: Queueing dimension 1 to unload
[07Feb2019 20:07:30.112] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/end/DragonFightManager$LoadManager.class got resource net/minecraft/world/end/DragonFightManager$LoadManager.class true
[07Feb2019 20:07:30.115] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/end/DragonFightManager$LoadState.class got resource net/minecraft/world/end/DragonFightManager$LoadState.class true
[07Feb2019 20:07:30.120] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/storage/ThreadedFileIOBase.class got resource net/minecraft/world/storage/ThreadedFileIOBase.class true
[07Feb2019 20:07:30.123] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/DefaultUncaughtExceptionHandlerWithName.class got resource net/minecraft/util/DefaultUncaughtExceptionHandlerWithName.class true
[07Feb2019 20:07:30.129] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/util/FakePlayerFactory.class got resource net/minecraftforge/common/util/FakePlayerFactory.class true
[07Feb2019 20:07:30.150] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension -1
[07Feb2019 20:07:30.184] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension 1
[07Feb2019 20:07:30.187] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/ServerStatusResponse$Players.class got resource net/minecraft/network/ServerStatusResponse$Players.class true
[07Feb2019 20:07:30.190] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/management/PlayerChunkMapEntry.class got resource net/minecraft/server/management/PlayerChunkMapEntry.class true
[07Feb2019 20:07:30.193] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/BlockPos$2.class got resource net/minecraft/util/math/BlockPos$2.class true
[07Feb2019 20:07:30.197] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/VillageDoorInfo.class got resource net/minecraft/village/VillageDoorInfo.class true
[07Feb2019 20:07:30.200] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/village/Village.class got resource net/minecraft/village/Village.class true
[07Feb2019 20:07:30.204] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/extensions/IForgeVillage.class got resource net/minecraftforge/common/extensions/IForgeVillage.class true
[07Feb2019 20:07:30.211] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntity$RelMove.class got resource net/minecraft/network/play/server/SPacketEntity$RelMove.class true
[07Feb2019 20:07:30.213] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntity.class got resource net/minecraft/network/play/server/SPacketEntity.class true
[07Feb2019 20:07:30.215] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntity$Look.class got resource net/minecraft/network/play/server/SPacketEntity$Look.class true
[07Feb2019 20:07:30.217] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityVelocity.class got resource net/minecraft/network/play/server/SPacketEntityVelocity.class true
[07Feb2019 20:07:30.240] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/entity/ai/RandomPositionGenerator.class got resource net/minecraft/entity/ai/RandomPositionGenerator.class true
[07Feb2019 20:07:30.246] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/BlockRenderLayer.class got resource net/minecraft/util/BlockRenderLayer.class true
[07Feb2019 20:07:30.384] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntity$Move.class got resource net/minecraft/network/play/server/SPacketEntity$Move.class true
[07Feb2019 20:07:30.576] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/map/ChunkData.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\map\ChunkData.class true
[07Feb2019 20:07:30.826] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketSoundEffect.class got resource net/minecraft/network/play/server/SPacketSoundEffect.class true
[07Feb2019 20:07:30.875] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketTimeUpdate.class got resource net/minecraft/network/play/server/SPacketTimeUpdate.class true
[07Feb2019 20:07:30.980] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityTeleport.class got resource net/minecraft/network/play/server/SPacketEntityTeleport.class true
[07Feb2019 20:07:31.026] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Loading dimension 1 (world) (net.minecraft.server.dedicated.DedicatedServer@4328b06f)
[07Feb2019 20:07:31.027] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: Queueing dimension 1 to unload
[07Feb2019 20:07:31.054] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension 1
[07Feb2019 20:07:31.124] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [§rfeature.maintenance.name§r§r] §r§bmaintenance.state.updated§r
[07Feb2019 20:07:31.128] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/property/IExtendedBlockState.class got resource net/minecraftforge/common/property/IExtendedBlockState.class true
[07Feb2019 20:07:31.131] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraftforge/common/property/IExtendedState.class got resource net/minecraftforge/common/property/IExtendedState.class true
[07Feb2019 20:07:31.142] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEffect.class got resource net/minecraft/network/play/server/SPacketEffect.class true
[07Feb2019 20:07:32.627] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketEntityStatus.class got resource net/minecraft/network/play/server/SPacketEntityStatus.class true
[07Feb2019 20:07:59.925] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketPlayerListItem.class got resource net/minecraft/network/play/server/SPacketPlayerListItem.class true
[07Feb2019 20:07:59.928] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/network/play/server/SPacketPlayerListItem$Action.class got resource net/minecraft/network/play/server/SPacketPlayerListItem$Action.class true
[07Feb2019 20:08:14.883] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://lighthouse/fr/utopics/lighthouse/mod/group/server/Group.class got resource S:\dev\lighthouse\build\server\classes\java\main\fr\utopics\lighthouse\mod\group\server\Group.class true
[07Feb2019 20:08:14.960] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/world/chunk/Chunk$EnumCreateEntityType.class got resource net/minecraft/world/chunk/Chunk$EnumCreateEntityType.class true
[07Feb2019 20:08:14.963] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/StringUtils.class got resource net/minecraft/util/StringUtils.class true
[07Feb2019 20:08:19.873] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: The world dfdafae (world) may have leaked: first encounter (5 occurrences).

[07Feb2019 20:08:19.873] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: The world 6fc1e5b1 (world) may have leaked: first encounter (5 occurrences).

[07Feb2019 20:08:19.873] [Server thread/DEBUG] [net.minecraftforge.common.DimensionManager/DIMS]: The world 4c977cf2 (world) may have leaked: first encounter (5 occurrences).

[07Feb2019 20:08:33.138] [AWT-EventQueue-0/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/math/Vec2f.class got resource net/minecraft/util/math/Vec2f.class true
[07Feb2019 20:08:33.139] [AWT-EventQueue-0/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/command/arguments/EntityAnchorArgument$Type.class got resource net/minecraft/command/arguments/EntityAnchorArgument$Type.class true
[07Feb2019 20:08:33.143] [AWT-EventQueue-0/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/server/dedicated/PendingCommand.class got resource net/minecraft/server/dedicated/PendingCommand.class true
[07Feb2019 20:08:33.176] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Stopping the server§r
[07Feb2019 20:08:33.178] [Server thread/TRACE] [net.minecraftforge.fml.loading.ModJarURLHandler/CORE]: Loading modjar URL modjar://forge/net/minecraft/util/text/ITextComponent$1.class got resource net/minecraft/util/text/ITextComponent$1.class true
[07Feb2019 20:08:33.224] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server
[07Feb2019 20:08:33.224] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players
[07Feb2019 20:08:33.224] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds
[07Feb2019 20:08:33.224] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'world'/overworld
[07Feb2019 20:08:33.246] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'world'/overworld
[07Feb2019 20:08:33.251] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'world'/overworld
[07Feb2019 20:08:33.288] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension 0
[07Feb2019 20:08:33.288] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension 4
[07Feb2019 20:08:33.288] [Server thread/INFO] [net.minecraftforge.common.DimensionManager/DIMS]: Unloading dimension 2
[07Feb2019 20:08:33.289] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server
[07Feb2019 20:08:33.289] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players
[07Feb2019 20:08:33.289] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds

 

 
 

 

Am I doing anything wrong?

 

Thanks in advance for your help!

 

Side note: I initially thought that (without the code and the logs) was enough for a github issue bug report, but I was wrong as these are used for final bug reports with logs and details. So I want to apologize for my mistake.

 

Edit : Replaced the log by the debug log and confirmed that this was on the latest version (166)

Edited by ArisuOngaku
Solved

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



×
×
  • Create New...

Important Information

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