├── .gitattributes ├── .gitignore ├── LICENSE ├── Lemegeton.sln ├── Lemegeton ├── Action │ ├── ChatMessage.cs │ ├── IngameCommand.cs │ └── Notification.cs ├── Content │ ├── Automation.cs │ ├── Debugger.cs │ ├── DtRaidCruiser.cs │ ├── DtRaidLightHeavy.cs │ ├── EurekaOrthos.cs │ ├── EwCritAloalo.cs │ ├── EwRaidAbyssos.cs │ ├── EwRaidAnabaseios.cs │ ├── GenericDeepDungeon.cs │ ├── Hack.cs │ ├── HeavenOnHigh.cs │ ├── Overlays.cs │ ├── PalaceOfTheDead.cs │ ├── Radar.cs │ ├── Timelines.cs │ ├── UltAlexander.cs │ ├── UltDragonsongReprise.cs │ ├── UltFuturesRewritten.cs │ ├── UltOmegaProtocol.cs │ ├── UltUcob.cs │ ├── UltWeaponsRefrain.cs │ └── VisualEnhancement.cs ├── ContentCategory │ ├── Criterion.cs │ ├── DawntrailRaids.cs │ ├── Debug.cs │ ├── DeepDungeon.cs │ ├── EndwalkerRaids.cs │ ├── Miscellaneous.cs │ ├── Raid.cs │ ├── Trial.cs │ └── Ultimate.cs ├── Core │ ├── Action.cs │ ├── Attributes.cs │ ├── Automarker.cs │ ├── AutomarkerPayload.cs │ ├── AutomarkerPrio.cs │ ├── AutomarkerSigns.cs │ ├── AutomarkerTiming.cs │ ├── Blueprint.cs │ ├── Command.cs │ ├── Config.cs │ ├── Content.cs │ ├── ContentCategory.cs │ ├── ContentItem.cs │ ├── ContentModule.cs │ ├── Context.cs │ ├── CustomPropertyInterface.cs │ ├── FoodSelector.cs │ ├── GameNetwork.cs │ ├── I18n.cs │ ├── InventoryItem.cs │ ├── Language.cs │ ├── NetworkDecoder.cs │ ├── Notification.cs │ ├── Overlay.cs │ ├── Party.cs │ ├── Percentage.cs │ ├── SerializableDictionary.cs │ ├── SigLocator.cs │ ├── State.cs │ ├── Timeline.cs │ ├── TimelineRecorder.cs │ ├── UserInterface.cs │ └── XmlSerializer.cs ├── Language │ ├── Chinese.cs │ ├── Danish.cs │ ├── English.cs │ ├── French.cs │ ├── German.cs │ ├── Japanese.cs │ └── Korean.cs ├── Lemegeton.csproj ├── PacketHeaders │ ├── Ability.cs │ ├── ActorCast.cs │ ├── ActorControl.cs │ ├── EffectResult.cs │ ├── EventPlay.cs │ └── StatusEffectList.cs └── Plugin.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/LICENSE -------------------------------------------------------------------------------- /Lemegeton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton.sln -------------------------------------------------------------------------------- /Lemegeton/Action/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Action/ChatMessage.cs -------------------------------------------------------------------------------- /Lemegeton/Action/IngameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Action/IngameCommand.cs -------------------------------------------------------------------------------- /Lemegeton/Action/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Action/Notification.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Automation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Automation.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Debugger.cs -------------------------------------------------------------------------------- /Lemegeton/Content/DtRaidCruiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/DtRaidCruiser.cs -------------------------------------------------------------------------------- /Lemegeton/Content/DtRaidLightHeavy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/DtRaidLightHeavy.cs -------------------------------------------------------------------------------- /Lemegeton/Content/EurekaOrthos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/EurekaOrthos.cs -------------------------------------------------------------------------------- /Lemegeton/Content/EwCritAloalo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/EwCritAloalo.cs -------------------------------------------------------------------------------- /Lemegeton/Content/EwRaidAbyssos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/EwRaidAbyssos.cs -------------------------------------------------------------------------------- /Lemegeton/Content/EwRaidAnabaseios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/EwRaidAnabaseios.cs -------------------------------------------------------------------------------- /Lemegeton/Content/GenericDeepDungeon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/GenericDeepDungeon.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Hack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Hack.cs -------------------------------------------------------------------------------- /Lemegeton/Content/HeavenOnHigh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/HeavenOnHigh.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Overlays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Overlays.cs -------------------------------------------------------------------------------- /Lemegeton/Content/PalaceOfTheDead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/PalaceOfTheDead.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Radar.cs -------------------------------------------------------------------------------- /Lemegeton/Content/Timelines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/Timelines.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltAlexander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltAlexander.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltDragonsongReprise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltDragonsongReprise.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltFuturesRewritten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltFuturesRewritten.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltOmegaProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltOmegaProtocol.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltUcob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltUcob.cs -------------------------------------------------------------------------------- /Lemegeton/Content/UltWeaponsRefrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/UltWeaponsRefrain.cs -------------------------------------------------------------------------------- /Lemegeton/Content/VisualEnhancement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Content/VisualEnhancement.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Criterion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Criterion.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/DawntrailRaids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/DawntrailRaids.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Debug.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/DeepDungeon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/DeepDungeon.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/EndwalkerRaids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/EndwalkerRaids.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Miscellaneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Miscellaneous.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Raid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Raid.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Trial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Trial.cs -------------------------------------------------------------------------------- /Lemegeton/ContentCategory/Ultimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/ContentCategory/Ultimate.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Action.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Attributes.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Automarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Automarker.cs -------------------------------------------------------------------------------- /Lemegeton/Core/AutomarkerPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/AutomarkerPayload.cs -------------------------------------------------------------------------------- /Lemegeton/Core/AutomarkerPrio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/AutomarkerPrio.cs -------------------------------------------------------------------------------- /Lemegeton/Core/AutomarkerSigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/AutomarkerSigns.cs -------------------------------------------------------------------------------- /Lemegeton/Core/AutomarkerTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/AutomarkerTiming.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Blueprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Blueprint.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Command.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Config.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Content.cs -------------------------------------------------------------------------------- /Lemegeton/Core/ContentCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/ContentCategory.cs -------------------------------------------------------------------------------- /Lemegeton/Core/ContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/ContentItem.cs -------------------------------------------------------------------------------- /Lemegeton/Core/ContentModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/ContentModule.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Context.cs -------------------------------------------------------------------------------- /Lemegeton/Core/CustomPropertyInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/CustomPropertyInterface.cs -------------------------------------------------------------------------------- /Lemegeton/Core/FoodSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/FoodSelector.cs -------------------------------------------------------------------------------- /Lemegeton/Core/GameNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/GameNetwork.cs -------------------------------------------------------------------------------- /Lemegeton/Core/I18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/I18n.cs -------------------------------------------------------------------------------- /Lemegeton/Core/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/InventoryItem.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Language.cs -------------------------------------------------------------------------------- /Lemegeton/Core/NetworkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/NetworkDecoder.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Notification.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Overlay.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Party.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Party.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Percentage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Percentage.cs -------------------------------------------------------------------------------- /Lemegeton/Core/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/SerializableDictionary.cs -------------------------------------------------------------------------------- /Lemegeton/Core/SigLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/SigLocator.cs -------------------------------------------------------------------------------- /Lemegeton/Core/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/State.cs -------------------------------------------------------------------------------- /Lemegeton/Core/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/Timeline.cs -------------------------------------------------------------------------------- /Lemegeton/Core/TimelineRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/TimelineRecorder.cs -------------------------------------------------------------------------------- /Lemegeton/Core/UserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/UserInterface.cs -------------------------------------------------------------------------------- /Lemegeton/Core/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Core/XmlSerializer.cs -------------------------------------------------------------------------------- /Lemegeton/Language/Chinese.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/Chinese.cs -------------------------------------------------------------------------------- /Lemegeton/Language/Danish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/Danish.cs -------------------------------------------------------------------------------- /Lemegeton/Language/English.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/English.cs -------------------------------------------------------------------------------- /Lemegeton/Language/French.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/French.cs -------------------------------------------------------------------------------- /Lemegeton/Language/German.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/German.cs -------------------------------------------------------------------------------- /Lemegeton/Language/Japanese.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/Japanese.cs -------------------------------------------------------------------------------- /Lemegeton/Language/Korean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Language/Korean.cs -------------------------------------------------------------------------------- /Lemegeton/Lemegeton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Lemegeton.csproj -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/Ability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/Ability.cs -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/ActorCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/ActorCast.cs -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/ActorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/ActorControl.cs -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/EffectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/EffectResult.cs -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/EventPlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/EventPlay.cs -------------------------------------------------------------------------------- /Lemegeton/PacketHeaders/StatusEffectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/PacketHeaders/StatusEffectList.cs -------------------------------------------------------------------------------- /Lemegeton/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/Lemegeton/Plugin.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paissaheavyindustries/Lemegeton/HEAD/README.md --------------------------------------------------------------------------------