ETH Price: $3,381.35 (+1.08%)

Token

Morpheus (DISCIPLE)
 

Overview

Max Total Supply

1,000,000,000,000 DISCIPLE

Holders

19

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MorpheusDisciple

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : morpheus.sol
/**
      The choice is yours, red or blue pill. You are not chosen.

            https://morpheus.red  ||  https://morpheus.blue

                      https://t.me/morpheuschosen
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.4;

/** imports @openzeppelin/contracts */
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

/** imports @uniswap */
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";


/// @author Morpheus
/// @title You are not chosen. You must make the choice.
/// @notice Blue pill - conform to the establishment, ignorance, mediocracy | https://morpheus.blue
/// @dev Red pill - awaken to reality, live among wolves, coalesce into an avalanche | https://morpheus.red
contract MorpheusDisciple is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;

    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    address public morpheus;
    address public chosenVaultWallet;

    uint public cursedNumber = 6666666666666;

    /// @dev Morpheus
    /// @notice This is the structure that makes up the Mainframe
    struct Prestige {
        uint worthiness;
        uint loyalty;
        uint faith;
    }
    struct Chosen {
        string _alias;
        string _rank;
        Prestige _prestige;
    }
    string[] public aliasAssignOrder = ["BYTE", "HEX", "VIRTUAL", "HASH", "EXCEPTION", "PUBLIC", "BOOL", "ARRAY", "PRIVATE"];
    uint private _aliasGiven = 0;
    mapping(address => Chosen) public chosen; 
    mapping(address => uint) public nextBlessing; 
    mapping(string => uint) public blessingCooldown;
    mapping(string => uint) public cursePrice;

    struct BlessingsRequest {
        address _member;
        uint _timestamp;
        Chosen _snapshot;
    }
    BlessingsRequest[] public blessingsRequested;

    struct Rituals {
        uint _timestamp;
        Chosen _chosen;
        address _wallet;
        string _deed;
        uint _value;
    }
    Rituals[] public rituals;

    struct Curse {
        uint _timestamp;
        Chosen _chosen;
        address _wallet;
        address _to;
        string _curse;
        uint _value;
    }
    Curse[] public curses;
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */

    //// addresses
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    //// bools
    bool public bluePilled = false;
    bool public redPilled = false;
    bool private swapping;
    bool public lpBurnEnabled = true;
    bool public societalRestrictions = true;
    bool public swapEnabled = false;
    bool public transferDelayEnabled = true;

    //// uint
    //. swap limits (for launch)
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    //. fees
    // buy fees
    uint256 public buyChosenVaultFee;
    uint256 public buyLiquidityFee;
    uint256 public buyMorpheusFee;
    uint256 public buyTotalFees;
    // sell fees
    uint256 public sellChosenVaultFee;
    uint256 public sellLiquidityFee;
    uint256 public sellMorpheusFee;
    uint256 public sellTotalFees;
    // tokens for fees
    uint256 public tokensForChosenVault;
    uint256 public tokensForLiquidity;
    uint256 public tokensForMorpheus;

    // lp burn
    uint256 public lpBurnFrequency = 3600 seconds; // 60 minutes
    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public percentForLPBurn = 30; // .30%
    uint256 public lastLpBurnTime;
    uint256 public lastManualLpBurnTime;

    //// mappings
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //// events
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event chosenVaultWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event morpheusUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Morpheus", "DISCIPLE") {

        blessingCooldown["Acolyte"] = 21600;
        blessingCooldown["Cultist"] = 20700;
        blessingCooldown["Zealot"] = 19800;
        blessingCooldown["Prophet"] = 18900;
        blessingCooldown["Priest"] = 18000;
        blessingCooldown["Sentinel"] = 17100;
        blessingCooldown["Baron"] = 16200;
        blessingCooldown["Chosen"] = 15300;

        cursePrice["Acolyte"] = 0.05 ether;
        cursePrice["Cultist"] = 0.04 ether;
        cursePrice["Zealot"] = 0.03 ether;
        cursePrice["Prophet"] = 0.02 ether;
        cursePrice["Priest"] = 0.01 ether;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyChosenVaultFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyMorpheusFee = 2;

        uint256 _sellChosenVaultFee = 4;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellMorpheusFee = 2;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        maxTransactionAmount = 5_000_000_000 * 1e18; // 0.5% maxTransactionAmount
        maxWallet = 10_000_000_000 * 1e18; // 1% maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyChosenVaultFee = _buyChosenVaultFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyMorpheusFee = _buyMorpheusFee;
        buyTotalFees = buyChosenVaultFee + buyLiquidityFee + buyMorpheusFee;

        sellChosenVaultFee = _sellChosenVaultFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellMorpheusFee = _sellMorpheusFee;
        sellTotalFees = sellChosenVaultFee + sellLiquidityFee + sellMorpheusFee;

        chosenVaultWallet = msg.sender; // set as chosenVault wallet - 0x62F021240Ca0944ab78Dd809fdca0c6AC7F74047
        morpheus = msg.sender; // set as morpheus wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}


    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /* ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ \/ \/ \/ \/ \/ ■■■■■■■ */
    /// @dev Morpheus
    /// @notice Reality sets in and there's no going back - morpheus.red
    function redPill() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        require(bluePilled == false, "The momentary anomoly is forgotten and you tread on in an unending simulation");
        require(redPilled == false, "Reality is already set in, open your eyes");
        redPilled = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    /// @dev Morpheus
    /// @notice Ripple from reality fades and the anomoly never returns - morpheus.blue
    function bluePill() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        require(bluePilled == false, "The momentary anomoly is forgotten and you tread on in an unending simulation");
        require(redPilled == false, "Reality is already set in, open your eyes");
        bluePilled = true;
    }

    /// @dev Morpheus
    /// @notice Remove societal bindings and unlock unrestricted [freedom] choice
    function manifestDestiny() external onlyOwner returns (bool) {
        societalRestrictions = false;
        return true;
    }

    /// @dev Morpheus
    /// @notice Root access to the Mainframe is revoked, Morpheus nor the establishment can alter the Mainframe
    function revokeRootAccess() external onlyOwner { 
        _transferOwnership(address(0));
    }  

    function worshipThroughSacrifice(string memory _theDeed) public payable returns (bool) {
        require(msg.value >= 0.05 ether, "Sacrifices come with a cost, value must be greater than or equal to 0.05 ether");
        rituals.push(Rituals(block.timestamp, chosen[msg.sender], msg.sender, _theDeed, msg.value));
        return true;
    }

    function worshipThroughRitual(string memory _theDeed) public payable returns (bool) {
        require(nextBlessing[msg.sender] != 0 && nextBlessing[msg.sender] != cursedNumber, "You are not apart of the Chosen");
        rituals.push(Rituals(block.timestamp, chosen[msg.sender], msg.sender, _theDeed, msg.value));
        return true;
    }
    
    function requestBlessing() public returns (bool) {
        require(block.timestamp >= nextBlessing[msg.sender] && nextBlessing[msg.sender] != cursedNumber, "You cannot receive a blessing from Morpheus yet");
        blessingsRequested.push(BlessingsRequest(msg.sender, block.timestamp, chosen[msg.sender]));
        nextBlessing[msg.sender] = block.timestamp + blessingCooldown[chosen[msg.sender]._rank];
        return true;
    }

    function curse(address _recipient, string memory _curseMessage) public payable returns (bool) {
        require(nextBlessing[msg.sender] != 0 && nextBlessing[msg.sender] != cursedNumber, "You are not apart of the Chosen");
        require(msg.value >= cursePrice[chosen[msg.sender]._rank], "Curse price too low. Increase value or climb ranks");
        curses.push(Curse(block.timestamp, chosen[msg.sender], msg.sender, _recipient, _curseMessage, msg.value));
        return true;
    }

    function stringIsEqualTo(string memory _str1, string memory _str2) internal pure returns(bool){
        return keccak256(abi.encodePacked(_str1)) == keccak256(abi.encodePacked(_str2)); 
    }

    function promoteChosenRank(address _champion, string memory _rank, uint _worthiness, uint _loyalty, uint _faith) external returns (bool) {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");

        // Surpassing Chosen is being one with Morpheus thus become Morpheus
        chosen[_champion] = Chosen(chosen[_champion]._alias, _rank, Prestige(_worthiness, _loyalty, _faith));
        if (stringIsEqualTo(_rank, "Morpheus")) {
            morpheus = _champion;
        }

        return true;
    } 


    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */
    /* ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ /\ /\ /\ /\ /\ ■■■■■■■ */

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTransactionAmount(uint256 newValue) external onlyOwner {
        require(
            newValue >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newValue * (10**18);
    }

    function updateMaxWalletAmount(uint256 newValue) external onlyOwner {
        require(
            newValue >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newValue * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _chosenVaultFee,
        uint256 _liquidityFee,
        uint256 _morpheusFee
    ) external onlyOwner {
        buyChosenVaultFee = _chosenVaultFee;
        buyLiquidityFee = _liquidityFee;
        buyMorpheusFee = _morpheusFee;
        buyTotalFees = buyChosenVaultFee + buyLiquidityFee + buyMorpheusFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _chosenVaultFee,
        uint256 _liquidityFee,
        uint256 _morpheusFee
    ) external onlyOwner {
        sellChosenVaultFee = _chosenVaultFee;
        sellLiquidityFee = _liquidityFee;
        sellMorpheusFee = _morpheusFee;
        sellTotalFees = sellChosenVaultFee + sellLiquidityFee + sellMorpheusFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateChosenVaultWallet(address newChosenVaultWallet) external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        emit chosenVaultWalletUpdated(newChosenVaultWallet, chosenVaultWallet);
        chosenVaultWallet = newChosenVaultWallet;
    }

    function updateMorpheusWallet(address newWallet) external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");

        emit morpheusUpdated(newWallet, morpheus);
        morpheus = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (societalRestrictions) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!redPilled) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMorpheus += (fees * sellMorpheusFee) / sellTotalFees;
                tokensForChosenVault += (fees * sellChosenVaultFee) / sellTotalFees;

                // sellers cannot receive blessings from Morpheus
                nextBlessing[from] = cursedNumber;
                chosen[from] = Chosen("NULL", "Cyanide Pilled", Prestige(0, 0, 0));
                curses.push(Curse(block.timestamp, chosen[msg.sender], address(this), from, "Cyanide Pilled, Comatose", 666));
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMorpheus += (fees * buyMorpheusFee) / buyTotalFees;
                tokensForChosenVault += (fees * buyChosenVaultFee) / buyTotalFees;

                // someone just chose the red pill
                if (nextBlessing[to] == 0) {
                    chosen[to] = Chosen(aliasAssignOrder[_aliasGiven % aliasAssignOrder.length], "Acolyte", Prestige(15, 15, 15));
                    _aliasGiven += 1;
                    nextBlessing[to] = block.timestamp + blessingCooldown["Acolyte"];
                }
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForChosenVault +
            tokensForMorpheus;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForChosenVault = ethBalance.mul(tokensForChosenVault).div(
            totalTokensToSwap
        );
        uint256 ethForMorpheus = ethBalance.mul(tokensForMorpheus).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForChosenVault - ethForMorpheus;

        tokensForLiquidity = 0;
        tokensForChosenVault = 0;
        tokensForMorpheus = 0;

        (success, ) = address(morpheus).call{value: ethForMorpheus}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(chosenVaultWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    function withdrawSacrificialOfferings() external {
        require(msg.sender == morpheus, "You are not the Shaper of Forms");
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "failed to withdraw");
    }
}

File 2 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 3 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 5 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 8 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 9 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 10 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 11 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"chosenVaultWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"morpheusUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"aliasAssignOrder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"blessingCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blessingsRequested","outputs":[{"internalType":"address","name":"_member","type":"address"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusDisciple.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusDisciple.Chosen","name":"_snapshot","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bluePill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bluePilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyChosenVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMorpheusFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"chosen","outputs":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusDisciple.Prestige","name":"_prestige","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chosenVaultWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"string","name":"_curseMessage","type":"string"}],"name":"curse","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"cursePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cursedNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"curses","outputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusDisciple.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusDisciple.Chosen","name":"_chosen","type":"tuple"},{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_curse","type":"string"},{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manifestDestiny","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"morpheus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nextBlessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_champion","type":"address"},{"internalType":"string","name":"_rank","type":"string"},{"internalType":"uint256","name":"_worthiness","type":"uint256"},{"internalType":"uint256","name":"_loyalty","type":"uint256"},{"internalType":"uint256","name":"_faith","type":"uint256"}],"name":"promoteChosenRank","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redPill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redPilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestBlessing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeRootAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rituals","outputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"components":[{"internalType":"string","name":"_alias","type":"string"},{"internalType":"string","name":"_rank","type":"string"},{"components":[{"internalType":"uint256","name":"worthiness","type":"uint256"},{"internalType":"uint256","name":"loyalty","type":"uint256"},{"internalType":"uint256","name":"faith","type":"uint256"}],"internalType":"struct MorpheusDisciple.Prestige","name":"_prestige","type":"tuple"}],"internalType":"struct MorpheusDisciple.Chosen","name":"_chosen","type":"tuple"},{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"string","name":"_deed","type":"string"},{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellChosenVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMorpheusFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"societalRestrictions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForChosenVault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMorpheus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chosenVaultFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_morpheusFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newChosenVaultWallet","type":"address"}],"name":"updateChosenVaultWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMorpheusWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chosenVaultFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_morpheusFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSacrificialOfferings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_theDeed","type":"string"}],"name":"worshipThroughRitual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_theDeed","type":"string"}],"name":"worshipThroughSacrifice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

650610344c6aaa600990815560046101a0818152634259544560e01b6101c052608090815260036101e0908152620908ab60eb1b6102005260a0526007610220818152661592549515505360ca1b6102405260c0526102608381526309082a6960e31b6102805260e0526102a08481526822ac21a2a82a24a7a760b91b6102c0526101005260066102e0908152655055424c494360d01b6103005261012052610320928352631093d3d360e21b6103405261014092909252600561036090815264415252415960d81b61038052610160526103e06040526103a0918252665052495641544560c81b6103c052610180919091526200010191600a91906200095d565b506000600b556013805466ffffffff00ffff60a01b1916630100010160b81b179055610e10602255610708602355601e6024553480156200014157600080fd5b50604051806040016040528060088152602001674d6f72706865757360c01b815250604051806040016040528060088152602001674449534349504c4560c01b81525081600390805190602001906200019c929190620009c1565b508051620001b2906004906020840190620009c1565b505050620001cf620001c9620006ce60201b60201c565b620006d2565b615460600e604051620001ef906641636f6c79746560c81b815260070190565b90815260408051918290036020018220929092556610dd5b1d1a5cdd60ca1b808252600e6007808401829052845193849003602790810185206150dc9055651699585b1bdd60d21b808652600680870185905287519687900360269081018820614d58905566141c9bdc1a195d60ca1b808952888601879052895198899003850189206149d4905565141c9a595cdd60d21b808a528984018890528a51998a900383018a2061465090556714d95b9d1a5b995b60c21b8a5260088a018890528a51998a90036028018a206142cc9055642130b937b760d91b8a5260058a018890528a51998a90036025018a20613f4890556521b437b9b2b760d11b8a528984019790975289519889900382018920613bc490556641636f6c79746560c81b8952600f8987018190528a51998a900386018a2066b1a2bc2ec50000905597895288860188905289519889900385018920668e1bc9bf040000905592885287820187905288519788900381018820666a94d74f4300009055918752928601859052865195869003909101852066470de4df82000090559184528301919091529151908190039091019020662386f26fc100009055737a250d5630b4cf539739df2c5dacb4c659f2488d620003c381600162000724565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200041d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000443919062000ac6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000491573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b7919062000ac6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052b919062000ac6565b601380546001600160a01b0319166001600160a01b039290921691821790556200055790600162000724565b60135462000570906001600160a01b0316600162000759565b6b1027e72f1f128130880000006014556b204fce5e3e250261100000006016556004600060028282826c0c9f2c9cd04674edea40000000612710620005b782600562000b0e565b620005c3919062000b30565b60155560178790556018869055601985905584620005e2878962000b53565b620005ee919062000b53565b601a55601b849055601c839055601d829055816200060d848662000b53565b62000619919062000b53565b601e5560088054336001600160a01b031991821681179092556007805490911690911790556200065d620006556005546001600160a01b031690565b6001620007ad565b6200066a306001620007ad565b6200067961dead6001620007ad565b62000698620006906005546001600160a01b031690565b600162000724565b620006a530600162000724565b620006b461dead600162000724565b620006c0338262000816565b505050505050505062000baa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200072e620008ff565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620007b7620008ff565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620008725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000886919062000b53565b90915550506001600160a01b03821660009081526020819052604081208054839290620008b590849062000b53565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b031633146200095b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000869565b565b828054828255906000526020600020908101928215620009af579160200282015b82811115620009af57825180516200099e918491602090910190620009c1565b50916020019190600101906200097e565b50620009bd92915062000a4c565b5090565b828054620009cf9062000b6e565b90600052602060002090601f016020900481019282620009f3576000855562000a3e565b82601f1062000a0e57805160ff191683800117855562000a3e565b8280016001018555821562000a3e579182015b8281111562000a3e57825182559160200191906001019062000a21565b50620009bd92915062000a6d565b80821115620009bd57600062000a63828262000a84565b5060010162000a4c565b5b80821115620009bd576000815560010162000a6e565b50805462000a929062000b6e565b6000825580601f1062000aa3575050565b601f01602090049060005260206000209081019062000ac3919062000a6d565b50565b60006020828403121562000ad957600080fd5b81516001600160a01b038116811462000af157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000b2b5762000b2b62000af8565b500290565b60008262000b4e57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b695762000b6962000af8565b500190565b600181811c9082168062000b8357607f821691505b60208210810362000ba457634e487b7160e01b600052602260045260246000fd5b50919050565b6152098062000bba6000396000f3fe6080604052600436106104775760003560e01c8063963a01d11161024a578063cd99db1d11610139578063e884f260116100b6578063f8b45b051161007a578063f8b45b0514610d72578063fa298d8714610d88578063fe72b27a14610dc0578063ff47730814610de0578063ff54e50914610e0057600080fd5b8063e884f26014610cdf578063f11a24d314610cf4578063f2fde38b14610d0a578063f605391214610d2a578063f637434214610d5c57600080fd5b8063dbbb4c31116100fd578063dbbb4c3114610c3b578063dd62ed3e14610c51578063e2f4560514610c71578063e369287e14610c87578063e613a5fa14610ca757600080fd5b8063cd99db1d14610863578063cf8c7a9b14610bd2578063d257b34f14610bf2578063d84e21b114610c12578063d85ba06314610c2557600080fd5b8063b5f588e8116101c7578063c18bc1951161018b578063c18bc19514610b38578063c3287ddd14610b58578063c53614fd14610b85578063c876d0b914610b9b578063c8c8ebe414610bbc57600080fd5b8063b5f588e814610a84578063b62496f514610ab3578063b8e234cb14610ae3578063c024666814610af8578063c17b5b8c14610b1857600080fd5b8063a457c2d71161020e578063a457c2d7146109ee578063a4c82a0014610a0e578063a9059cbb14610a24578063aa49802314610a44578063ac7f38d214610a6457600080fd5b8063963a01d11461096c5780639a7a23d6146109825780639ec22c0e146109a2578063a04b099a146109b8578063a2811760146109cd57600080fd5b80633d796abc11610366578063715018a6116102e35780638095d564116102a75780638095d564146108e35780638d1a5858146109035780638da5cb5b14610919578063924de9b71461093757806395d89b411461095757600080fd5b8063715018a614610863578063730c1888146108785780637571336a146108985780637a1e290f146108b857806380209940146108cd57600080fd5b806349bd5a5e1161032a57806349bd5a5e1461079d5780634fbee193146107bd5780636a486a8e146107f65780636ddd17131461080c57806370a082311461082d57600080fd5b80633d796abc146107025780633dc0f5aa146107335780633f18dc09146107465780633fa49c6b14610767578063414441af1461078757600080fd5b806323b872dd116103f45780632e82f1a0116103b85780632e82f1a014610661578063313ce56714610682578063373731e51461069e57806339509351146106b35780633a289b10146106d357600080fd5b806323b872dd146105de578063273c230a146105fe57806327c8f8351461061457806329d7034c1461062a5780632c3e486c1461064b57600080fd5b80631694505e1161043b5780631694505e1461055d57806318160ddd1461057d578063184c16c51461059c578063199ffc72146105b25780631a8145bb146105c857600080fd5b806306fdde0314610483578063095ea7b3146104ae57806310d5de53146104de578063128bb7911461050e578063156bda821461052557600080fd5b3661047e57005b600080fd5b34801561048f57600080fd5b50610498610e13565b6040516104a591906148ff565b60405180910390f35b3480156104ba57600080fd5b506104ce6104c9366004614927565b610ea5565b60405190151581526020016104a5565b3480156104ea57600080fd5b506104ce6104f9366004614953565b60286020526000908152604090205460ff1681565b34801561051a57600080fd5b50610523610ebd565b005b34801561053157600080fd5b50600854610545906001600160a01b031681565b6040516001600160a01b0390911681526020016104a5565b34801561056957600080fd5b50600654610545906001600160a01b031681565b34801561058957600080fd5b506002545b6040519081526020016104a5565b3480156105a857600080fd5b5061058e60235481565b3480156105be57600080fd5b5061058e60245481565b3480156105d457600080fd5b5061058e60205481565b3480156105ea57600080fd5b506104ce6105f9366004614970565b610f59565b34801561060a57600080fd5b5061058e601f5481565b34801561062057600080fd5b5061054561dead81565b34801561063657600080fd5b506013546104ce90600160a81b900460ff1681565b34801561065757600080fd5b5061058e60225481565b34801561066d57600080fd5b506013546104ce90600160b81b900460ff1681565b34801561068e57600080fd5b50604051601281526020016104a5565b3480156106aa57600080fd5b50610523610f7d565b3480156106bf57600080fd5b506104ce6106ce366004614927565b611037565b3480156106df57600080fd5b506106f36106ee3660046149b1565b611059565b6040516104a593929190614a29565b34801561070e57600080fd5b5061072261071d3660046149b1565b6111fc565b6040516104a5959493929190614a59565b6104ce610741366004614b49565b611432565b34801561075257600080fd5b506013546104ce90600160a01b900460ff1681565b34801561077357600080fd5b50610523610782366004614953565b6117ec565b34801561079357600080fd5b5061058e60215481565b3480156107a957600080fd5b50601354610545906001600160a01b031681565b3480156107c957600080fd5b506104ce6107d8366004614953565b6001600160a01b031660009081526027602052604090205460ff1690565b34801561080257600080fd5b5061058e601e5481565b34801561081857600080fd5b506013546104ce90600160c81b900460ff1681565b34801561083957600080fd5b5061058e610848366004614953565b6001600160a01b031660009081526020819052604090205490565b34801561086f57600080fd5b50610523611873565b34801561088457600080fd5b50610523610893366004614ba9565b611887565b3480156108a457600080fd5b506105236108b3366004614bde565b611999565b3480156108c457600080fd5b506104ce6119cc565b3480156108d957600080fd5b5061058e60175481565b3480156108ef57600080fd5b506105236108fe366004614c13565b611cdc565b34801561090f57600080fd5b5061058e60095481565b34801561092557600080fd5b506005546001600160a01b0316610545565b34801561094357600080fd5b50610523610952366004614c3f565b611d62565b34801561096357600080fd5b50610498611d88565b34801561097857600080fd5b5061058e60195481565b34801561098e57600080fd5b5061052361099d366004614bde565b611d97565b3480156109ae57600080fd5b5061058e60265481565b3480156109c457600080fd5b506104ce611e31565b3480156109d957600080fd5b506013546104ce90600160c01b900460ff1681565b3480156109fa57600080fd5b506104ce610a09366004614927565b611e4e565b348015610a1a57600080fd5b5061058e60255481565b348015610a3057600080fd5b506104ce610a3f366004614927565b611ec9565b348015610a5057600080fd5b50610523610a5f3660046149b1565b611ed7565b348015610a7057600080fd5b50610498610a7f3660046149b1565b611f92565b348015610a9057600080fd5b50610aa4610a9f366004614953565b61203e565b6040516104a593929190614c5a565b348015610abf57600080fd5b506104ce610ace366004614953565b60296020526000908152604090205460ff1681565b348015610aef57600080fd5b50610523612191565b348015610b0457600080fd5b50610523610b13366004614bde565b612230565b348015610b2457600080fd5b50610523610b33366004614c13565b612297565b348015610b4457600080fd5b50610523610b533660046149b1565b612318565b348015610b6457600080fd5b5061058e610b73366004614953565b600d6020526000908152604090205481565b348015610b9157600080fd5b5061058e601d5481565b348015610ba757600080fd5b506013546104ce90600160d01b900460ff1681565b348015610bc857600080fd5b5061058e60145481565b348015610bde57600080fd5b50610523610bed366004614953565b6123c7565b348015610bfe57600080fd5b506104ce610c0d3660046149b1565b61244e565b6104ce610c20366004614cab565b612582565b348015610c3157600080fd5b5061058e601a5481565b348015610c4757600080fd5b5061058e601b5481565b348015610c5d57600080fd5b5061058e610c6c366004614ce0565b612877565b348015610c7d57600080fd5b5061058e60155481565b348015610c9357600080fd5b506104ce610ca2366004614d19565b6128a2565b348015610cb357600080fd5b5061058e610cc2366004614cab565b8051602081830181018051600f8252928201919093012091525481565b348015610ceb57600080fd5b506104ce612a67565b348015610d0057600080fd5b5061058e60185481565b348015610d1657600080fd5b50610523610d25366004614953565b612a84565b348015610d3657600080fd5b50610d4a610d453660046149b1565b612afa565b6040516104a596959493929190614d84565b348015610d6857600080fd5b5061058e601c5481565b348015610d7e57600080fd5b5061058e60165481565b348015610d9457600080fd5b5061058e610da3366004614cab565b8051602081830181018051600e8252928201919093012091525481565b348015610dcc57600080fd5b506104ce610ddb3660046149b1565b612d3a565b348015610dec57600080fd5b50600754610545906001600160a01b031681565b6104ce610e0e366004614cab565b612f4b565b606060038054610e2290614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e90614dda565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b5050505050905090565b600033610eb3818585612fe1565b5060019392505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610ee790614e14565b60405180910390fd5b601354600160a01b900460ff1615610f1a5760405162461bcd60e51b8152600401610ee790614e4b565b601354600160a81b900460ff1615610f445760405162461bcd60e51b8152600401610ee790614ebe565b6013805460ff60a01b1916600160a01b179055565b600033610f67858285613105565b610f7285858561317f565b506001949350505050565b6007546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610ee790614e14565b604051600090339047908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b50509050806110345760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610ee7565b50565b600033610eb381858561104a8383612877565b6110549190614f1d565b612fe1565b6010818154811061106957600080fd5b600091825260209091206007909102018054600182015460408051606081019091526002840180546001600160a01b039094169550919392909190829082906110b190614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90614dda565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050815260200160018201805461114390614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90614dda565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050815260200160028201604051806060016040529081600082015481526020016001820154815260200160028201548152505081525050905083565b6011818154811061120c57600080fd5b90600052602060002090600902016000915090508060000154908060010160405180606001604052908160008201805461124590614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461127190614dda565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081526020016001820180546112d790614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461130390614dda565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b50505091835250506040805160608101825260028401548152600384015460208281019190915260049094015491810191909152910152600682015460078301805492936001600160a01b03909216926113a990614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590614dda565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b5050505050908060080154905085565b336000908152600d6020526040812054158015906114615750600954336000908152600d602052604090205414155b6114ad5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b336000908152600c6020526040908190209051600f916114d291600190910190614f35565b90815260200160405180910390205434101561154b5760405162461bcd60e51b815260206004820152603260248201527f437572736520707269636520746f6f206c6f772e20496e6372656173652076616044820152716c7565206f7220636c696d622072616e6b7360701b6064820152608401610ee7565b60126040518060c00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461159e90614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90614dda565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050815260200160018201805461163090614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90614dda565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845233848301526001600160a01b03891692840192909252908201869052346080909201919091528254600181810185556000948552938290208351600a909202019081558282015180518051949592949193928501926117469284929091019061480e565b50602082810151805161175f926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b039283166001600160a01b0319918216179091556060850151600785018054919093169116179055608083015180516117d5926008850192019061480e565b5060a0820151816009015550506001905092915050565b6007546001600160a01b031633146118165760405162461bcd60e51b8152600401610ee790614e14565b6008546040516001600160a01b03918216918316907f585d5d76ca696451c0a095343cb5c4d73934e0296ce13416e50623f32e78e0ac90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b61187b613fa8565b6118856000614002565b565b61188f613fa8565b6102588310156118fd5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ee7565b6103e8821115801561190d575060015b6119725760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ee7565b60229290925560245560138054911515600160b81b0260ff60b81b19909216919091179055565b6119a1613fa8565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b336000908152600d602052604081205442108015906119fc5750600954336000908152600d602052604090205414155b611a605760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f742072656365697665206120626c657373696e6720667260448201526e1bdb48135bdc9c1a195d5cc81e595d608a1b6064820152608401610ee7565b604080516060808201835233808352426020808501919091526000918252600c9052839020835191820184528054601094840192919082908290611aa390614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90614dda565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b50505050508152602001600182018054611b3590614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190614dda565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b50505091835250506040805160608101825260028481015482526003850154602080840191909152600490950154828401529284015292909352845460018082018755600096875295829020855160079092020180546001600160a01b0319166001600160a01b03909216919091178155848201519581019590955590830151805180519495949193850192611c499284929091019061480e565b506020828101518051611c62926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155336000908152600c9091528190209051600e9350611cac9250600190910190614f35565b90815260200160405180910390205442611cc69190614f1d565b336000908152600d602052604090205550600190565b611ce4613fa8565b60178390556018829055601981905580611cfe8385614f1d565b611d089190614f1d565b601a819055600a1015611d5d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ee7565b505050565b611d6a613fa8565b60138054911515600160c81b0260ff60c81b19909216919091179055565b606060048054610e2290614dda565b611d9f613fa8565b6013546001600160a01b0390811690831603611e235760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ee7565b611e2d8282614054565b5050565b6000611e3b613fa8565b506013805460ff60c01b19169055600190565b60003381611e5c8286612877565b905083811015611ebc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ee7565b610f728286868403612fe1565b600033610eb381858561317f565b611edf613fa8565b670de0b6b3a76400006103e8611ef460025490565b611eff906005614fd0565b611f099190615005565b611f139190615005565b811015611f7a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ee7565b611f8c81670de0b6b3a7640000614fd0565b60145550565b600a8181548110611fa257600080fd5b906000526020600020016000915090508054611fbd90614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe990614dda565b80156120365780601f1061200b57610100808354040283529160200191612036565b820191906000526020600020905b81548152906001019060200180831161201957829003601f168201915b505050505081565b600c6020526000908152604090208054819061205990614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461208590614dda565b80156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050908060010180546120e790614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461211390614dda565b80156121605780601f1061213557610100808354040283529160200191612160565b820191906000526020600020905b81548152906001019060200180831161214357829003601f168201915b5050604080516060810182526002870154815260038701546020820152600490960154908601525091929150849050565b6007546001600160a01b031633146121bb5760405162461bcd60e51b8152600401610ee790614e14565b601354600160a01b900460ff16156121e55760405162461bcd60e51b8152600401610ee790614e4b565b601354600160a81b900460ff161561220f5760405162461bcd60e51b8152600401610ee790614ebe565b6013805464ff000000ff60a81b191664010000000160a81b17905542602555565b612238613fa8565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61229f613fa8565b601b839055601c829055601d819055806122b98385614f1d565b6122c39190614f1d565b601e819055600f1015611d5d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ee7565b612320613fa8565b670de0b6b3a76400006103e861233560025490565b61234090600a614fd0565b61234a9190615005565b6123549190615005565b8110156123af5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610ee7565b6123c181670de0b6b3a7640000614fd0565b60165550565b6007546001600160a01b031633146123f15760405162461bcd60e51b8152600401610ee790614e14565b6007546040516001600160a01b03918216918316907ff348ecf13e26f7720f87efe7fcf69c202dc41c5cab439cc253a1dd71034ba7ed90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000612458613fa8565b620186a061246560025490565b612470906001614fd0565b61247a9190615005565b8210156124e75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ee7565b6103e86124f360025490565b6124fe906005614fd0565b6125089190615005565b8211156125745760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ee7565b50601581905560015b919050565b336000908152600d6020526040812054158015906125b15750600954336000908152600d602052604090205414155b6125fd5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b60116040518060a00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461265090614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461267c90614dda565b80156126c95780601f1061269e576101008083540402835291602001916126c9565b820191906000526020600020905b8154815290600101906020018083116126ac57829003601f168201915b505050505081526020016001820180546126e290614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461270e90614dda565b801561275b5780601f106127305761010080835404028352916020019161275b565b820191906000526020600020905b81548152906001019060200180831161273e57829003601f168201915b505050918352505060408051606080820183526002850154825260038501546020838101919091526004909501548284015292840152928452338483015291830187905234929091019190915282546001818101855560009485529382902083516009909202019081558282015180518051949592949193928501926127e69284929091019061480e565b5060208281015180516127ff926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b0319166001600160a01b0390921691909117905560608301518051612861926007850192019061480e565b5060808201518160080155505060019050919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546000906001600160a01b031633146128cf5760405162461bcd60e51b8152600401610ee790614e14565b604080516060810182526001600160a01b0388166000908152600c6020529190912080548291906128ff90614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461292b90614dda565b80156129785780601f1061294d57610100808354040283529160200191612978565b820191906000526020600020905b81548152906001019060200180831161295b57829003601f168201915b5050509183525050602080820188905260408051606081018252888152808301889052808201879052928101929092526001600160a01b0389166000908152600c8252919091208251805191926129d49284929091019061480e565b5060208281015180516129ed926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155815180830190925260088252674d6f72706865757360c01b90820152612a3a9086906140a8565b15612a5b57600780546001600160a01b0319166001600160a01b0388161790555b50600195945050505050565b6000612a71613fa8565b506013805460ff60d01b19169055600190565b612a8c613fa8565b6001600160a01b038116612af15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee7565b61103481614002565b60128181548110612b0a57600080fd5b90600052602060002090600a020160009150905080600001549080600101604051806060016040529081600082018054612b4390614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6f90614dda565b8015612bbc5780601f10612b9157610100808354040283529160200191612bbc565b820191906000526020600020905b815481529060010190602001808311612b9f57829003601f168201915b50505050508152602001600182018054612bd590614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0190614dda565b8015612c4e5780601f10612c2357610100808354040283529160200191612c4e565b820191906000526020600020905b815481529060010190602001808311612c3157829003601f168201915b505050918352505060408051606081018252600284015481526003840154602080830191909152600490940154918101919091529101526006820154600783015460088401805493946001600160a01b03938416949390921692612cb190614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdd90614dda565b8015612d2a5780601f10612cff57610100808354040283529160200191612d2a565b820191906000526020600020905b815481529060010190602001808311612d0d57829003601f168201915b5050505050908060090154905086565b6000612d44613fa8565b602354602654612d549190614f1d565b4211612da25760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ee7565b6103e8821115612e075760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ee7565b426026556013546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015612e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7a9190615019565b90506000612e94612710612e8e8487614101565b90614114565b90508015612eb557601354612eb5906001600160a01b031661dead83614120565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b600066b1a2bc2ec500003410156125fd5760405162461bcd60e51b815260206004820152604e60248201527f5361637269666963657320636f6d652077697468206120636f73742c2076616c60448201527f7565206d7573742062652067726561746572207468616e206f7220657175616c60648201526d103a37901817181a9032ba3432b960911b608482015260a401610ee7565b6001600160a01b0383166130435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ee7565b6001600160a01b0382166130a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ee7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006131118484612877565b90506000198114613179578181101561316c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ee7565b6131798484848403612fe1565b50505050565b6001600160a01b0383166131a55760405162461bcd60e51b8152600401610ee790615032565b6001600160a01b0382166131cb5760405162461bcd60e51b8152600401610ee790615077565b806000036131df57611d5d83836000614120565b601354600160c01b900460ff1615613664576005546001600160a01b0384811691161480159061321d57506005546001600160a01b03838116911614155b801561323157506001600160a01b03821615155b801561324857506001600160a01b03821661dead14155b801561325e5750601354600160b01b900460ff16155b1561366457601354600160a81b900460ff166132f8576001600160a01b03831660009081526027602052604090205460ff16806132b357506001600160a01b03821660009081526027602052604090205460ff165b6132f85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ee7565b601354600160d01b900460ff16156133fe576005546001600160a01b0383811691161480159061333657506006546001600160a01b03838116911614155b801561335057506013546001600160a01b03838116911614155b156133fe57326000908152602a602052604090205443116133eb5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ee7565b326000908152602a602052604090204390555b6001600160a01b03831660009081526029602052604090205460ff16801561343f57506001600160a01b03821660009081526028602052604090205460ff16155b15613523576014548111156134b45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ee7565b6016546001600160a01b0383166000908152602081905260409020546134da9083614f1d565b111561351e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b613664565b6001600160a01b03821660009081526029602052604090205460ff16801561356457506001600160a01b03831660009081526028602052604090205460ff16155b156135da5760145481111561351e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ee7565b6001600160a01b03821660009081526028602052604090205460ff16613664576016546001600160a01b0383166000908152602081905260409020546136209083614f1d565b11156136645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b30600090815260208190526040902054601554811080159081906136915750601354600160c81b900460ff165b80156136a75750601354600160b01b900460ff16155b80156136cc57506001600160a01b03851660009081526029602052604090205460ff16155b80156136f157506001600160a01b03851660009081526027602052604090205460ff16155b801561371657506001600160a01b03841660009081526027602052604090205460ff16155b15613744576013805460ff60b01b1916600160b01b179055613736614274565b6013805460ff60b01b191690555b601354600160b01b900460ff1615801561377657506001600160a01b03841660009081526029602052604090205460ff165b801561378b5750601354600160b81b900460ff165b80156137a657506022546025546137a29190614f1d565b4210155b80156137cb57506001600160a01b03851660009081526027602052604090205460ff16155b156137da576137d86144ac565b505b6013546001600160a01b03861660009081526027602052604090205460ff600160b01b90920482161591168061382857506001600160a01b03851660009081526027602052604090205460ff165b15613831575060005b60008115613f94576001600160a01b03861660009081526029602052604090205460ff16801561386357506000601e54115b15613ca9576138826064612e8e601e548861410190919063ffffffff16565b9050601e54601c54826138959190614fd0565b61389f9190615005565b602060008282546138b09190614f1d565b9091555050601e54601d546138c59083614fd0565b6138cf9190615005565b602160008282546138e09190614f1d565b9091555050601e54601b546138f59083614fd0565b6138ff9190615005565b601f60008282546139109190614f1d565b90915550506009546001600160a01b0388166000818152600d6020908152604080832094909455835160a08101855260046060808301918252631395531360e21b608084015290825285518087018752600e81526d10de585b9a591948141a5b1b195960921b81850152828401528551908101865283815280830184905280860184905281860152928252600c815292902081518051929391926139b7928492019061480e565b5060208281015180516139d0926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155815160c081018352428152336000908152600c835283902083516060810190945280546012949293840192919082908290613a3090614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613a5c90614dda565b8015613aa95780601f10613a7e57610100808354040283529160200191613aa9565b820191906000526020600020905b815481529060010190602001808311613a8c57829003601f168201915b50505050508152602001600182018054613ac290614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613aee90614dda565b8015613b3b5780601f10613b1057610100808354040283529160200191613b3b565b820191906000526020600020905b815481529060010190602001808311613b1e57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845230848301526001600160a01b038d16848401528251808401909352601883527f4379616e6964652050696c6c65642c20436f6d61746f736500000000000000008383015283019190915261029a6080909201919091528254600181810185556000948552938290208351600a90920201908155828201518051805194959294919392850192613c089284929091019061480e565b506020828101518051613c21926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b039283166001600160a01b031991821617909155606085015160078501805491909316911617905560808301518051613c97926008850192019061480e565b5060a082015181600901555050613f76565b6001600160a01b03871660009081526029602052604090205460ff168015613cd357506000601a54115b15613f7657613cf26064612e8e601a548861410190919063ffffffff16565b9050601a5460185482613d059190614fd0565b613d0f9190615005565b60206000828254613d209190614f1d565b9091555050601a54601954613d359083614fd0565b613d3f9190615005565b60216000828254613d509190614f1d565b9091555050601a54601754613d659083614fd0565b613d6f9190615005565b601f6000828254613d809190614f1d565b90915550506001600160a01b0386166000908152600d60205260408120549003613f76576040518060600160405280600a8080549050600b54613dc391906150ba565b81548110613dd357613dd36150ce565b906000526020600020018054613de890614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613e1490614dda565b8015613e615780601f10613e3657610100808354040283529160200191613e61565b820191906000526020600020905b815481529060010190602001808311613e4457829003601f168201915b5050509183525050604080518082018252600781526641636f6c79746560c81b602082810191909152808401919091528151606081018352600f80825281830181905281840152928201929092526001600160a01b0389166000908152600c835220825180519192613ed89284929091019061480e565b506020828101518051613ef1926001850192019061480e565b50604091820151805160028301556020810151600383015590910151600490910155600b805460019190600090613f29908490614f1d565b9091555050604080516641636f6c79746560c81b8152600e6007820152905190819003602701902054613f5c9042614f1d565b6001600160a01b0387166000908152600d60205260409020555b8015613f8757613f87873083614120565b613f9181866150e4565b94505b613f9f878787614120565b50505050505050565b6005546001600160a01b031633146118855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ee7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000816040516020016140bb91906150fb565b60405160208183030381529060405280519060200120836040516020016140e291906150fb565b6040516020818303038152906040528051906020012014905092915050565b600061410d8284614fd0565b9392505050565b600061410d8284615005565b6001600160a01b0383166141465760405162461bcd60e51b8152600401610ee790615032565b6001600160a01b03821661416c5760405162461bcd60e51b8152600401610ee790615077565b6001600160a01b038316600090815260208190526040902054818110156141e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ee7565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061421b908490614f1d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161426791815260200190565b60405180910390a3613179565b3060009081526020819052604081205490506000602154601f5460205461429b9190614f1d565b6142a59190614f1d565b905060008215806142b4575081155b156142be57505050565b6015546142cc906014614fd0565b8311156142e4576015546142e1906014614fd0565b92505b6000600283602054866142f79190614fd0565b6143019190615005565b61430b9190615005565b9050600061431985836145f6565b90504761432582614602565b600061433147836145f6565b9050600061434e87612e8e601f548561410190919063ffffffff16565b9050600061436b88612e8e6021548661410190919063ffffffff16565b905060008161437a84866150e4565b61438491906150e4565b60006020819055601f81905560218190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146143e1576040519150601f19603f3d011682016040523d82523d6000602084013e6143e6565b606091505b509098505086158015906143fa5750600081115b1561444b57614409878261475c565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114614498576040519150601f19603f3d011682016040523d82523d6000602084013e61449d565b606091505b50505050505050505050505050565b426025556013546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa1580156144fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145219190615019565b90506000614540612710612e8e6024548561410190919063ffffffff16565b9050801561456157601354614561906001600160a01b031661dead83614120565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156145ab57600080fd5b505af11580156145bf573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061410d82846150e4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110614637576146376150ce565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015614690573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146b49190615117565b816001815181106146c7576146c76150ce565b6001600160a01b0392831660209182029290920101526006546146ed9130911684612fe1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790614726908590600090869030904290600401615134565b600060405180830381600087803b15801561474057600080fd5b505af1158015614754573d6000803e3d6000fd5b505050505050565b6006546147749030906001600160a01b031684612fe1565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156147e2573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061480791906151a5565b5050505050565b82805461481a90614dda565b90600052602060002090601f01602090048101928261483c5760008555614882565b82601f1061485557805160ff1916838001178555614882565b82800160010185558215614882579182015b82811115614882578251825591602001919060010190614867565b5061488e929150614892565b5090565b5b8082111561488e5760008155600101614893565b60005b838110156148c25781810151838201526020016148aa565b838111156131795750506000910152565b600081518084526148eb8160208601602086016148a7565b601f01601f19169290920160200192915050565b60208152600061410d60208301846148d3565b6001600160a01b038116811461103457600080fd5b6000806040838503121561493a57600080fd5b823561494581614912565b946020939093013593505050565b60006020828403121561496557600080fd5b813561410d81614912565b60008060006060848603121561498557600080fd5b833561499081614912565b925060208401356149a081614912565b929592945050506040919091013590565b6000602082840312156149c357600080fd5b5035919050565b6000815160a084526149df60a08501826148d3565b9050602083015184820360208601526149f882826148d3565b9150506040830151614a2160408601828051825260208082015190830152604090810151910152565b509392505050565b60018060a01b0384168152826020820152606060408201526000614a5060608301846149ca565b95945050505050565b85815260a060208201526000614a7260a08301876149ca565b6001600160a01b03861660408401528281036060840152614a9381866148d3565b9150508260808301529695505050505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112614acd57600080fd5b813567ffffffffffffffff80821115614ae857614ae8614aa6565b604051601f8301601f19908116603f01168101908282118183101715614b1057614b10614aa6565b81604052838152866020858801011115614b2957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215614b5c57600080fd5b8235614b6781614912565b9150602083013567ffffffffffffffff811115614b8357600080fd5b614b8f85828601614abc565b9150509250929050565b8035801515811461257d57600080fd5b600080600060608486031215614bbe57600080fd5b8335925060208401359150614bd560408501614b99565b90509250925092565b60008060408385031215614bf157600080fd5b8235614bfc81614912565b9150614c0a60208401614b99565b90509250929050565b600080600060608486031215614c2857600080fd5b505081359360208301359350604090920135919050565b600060208284031215614c5157600080fd5b61410d82614b99565b60a081526000614c6d60a08301866148d3565b8281036020840152614c7f81866148d3565b915050614ca360408301848051825260208082015190830152604090810151910152565b949350505050565b600060208284031215614cbd57600080fd5b813567ffffffffffffffff811115614cd457600080fd5b614ca384828501614abc565b60008060408385031215614cf357600080fd5b8235614cfe81614912565b91506020830135614d0e81614912565b809150509250929050565b600080600080600060a08688031215614d3157600080fd5b8535614d3c81614912565b9450602086013567ffffffffffffffff811115614d5857600080fd5b614d6488828901614abc565b959895975050505060408401359360608101359360809091013592509050565b86815260c060208201526000614d9d60c08301886149ca565b6001600160a01b038781166040850152861660608401528281036080840152614dc681866148d3565b9150508260a0830152979650505050505050565b600181811c90821680614dee57607f821691505b602082108103614e0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f596f7520617265206e6f742074686520536861706572206f6620466f726d7300604082015260600190565b6020808252604d908201527f546865206d6f6d656e7461727920616e6f6d6f6c7920697320666f72676f747460408201527f656e20616e6420796f75207472656164206f6e20696e20616e20756e656e646960608201526c37339039b4b6bab630ba34b7b760991b608082015260a00190565b60208082526029908201527f5265616c69747920697320616c72656164792073657420696e2c206f70656e20604082015268796f7572206579657360b81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614f3057614f30614f07565b500190565b600080835481600182811c915080831680614f5157607f831692505b60208084108203614f7057634e487b7160e01b86526022600452602486fd5b818015614f845760018114614f9557614fc2565b60ff19861689528489019650614fc2565b60008a81526020902060005b86811015614fba5781548b820152908501908301614fa1565b505084890196505b509498975050505050505050565b6000816000190483118215151615614fea57614fea614f07565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261501457615014614fef565b500490565b60006020828403121561502b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826150c9576150c9614fef565b500690565b634e487b7160e01b600052603260045260246000fd5b6000828210156150f6576150f6614f07565b500390565b6000825161510d8184602087016148a7565b9190910192915050565b60006020828403121561512957600080fd5b815161410d81614912565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156151845784516001600160a01b03168352938301939183019160010161515f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156151ba57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208be64906513232fcab3413e9a42f1f8e962adccaedb117d10ff86a44822f819264736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106104775760003560e01c8063963a01d11161024a578063cd99db1d11610139578063e884f260116100b6578063f8b45b051161007a578063f8b45b0514610d72578063fa298d8714610d88578063fe72b27a14610dc0578063ff47730814610de0578063ff54e50914610e0057600080fd5b8063e884f26014610cdf578063f11a24d314610cf4578063f2fde38b14610d0a578063f605391214610d2a578063f637434214610d5c57600080fd5b8063dbbb4c31116100fd578063dbbb4c3114610c3b578063dd62ed3e14610c51578063e2f4560514610c71578063e369287e14610c87578063e613a5fa14610ca757600080fd5b8063cd99db1d14610863578063cf8c7a9b14610bd2578063d257b34f14610bf2578063d84e21b114610c12578063d85ba06314610c2557600080fd5b8063b5f588e8116101c7578063c18bc1951161018b578063c18bc19514610b38578063c3287ddd14610b58578063c53614fd14610b85578063c876d0b914610b9b578063c8c8ebe414610bbc57600080fd5b8063b5f588e814610a84578063b62496f514610ab3578063b8e234cb14610ae3578063c024666814610af8578063c17b5b8c14610b1857600080fd5b8063a457c2d71161020e578063a457c2d7146109ee578063a4c82a0014610a0e578063a9059cbb14610a24578063aa49802314610a44578063ac7f38d214610a6457600080fd5b8063963a01d11461096c5780639a7a23d6146109825780639ec22c0e146109a2578063a04b099a146109b8578063a2811760146109cd57600080fd5b80633d796abc11610366578063715018a6116102e35780638095d564116102a75780638095d564146108e35780638d1a5858146109035780638da5cb5b14610919578063924de9b71461093757806395d89b411461095757600080fd5b8063715018a614610863578063730c1888146108785780637571336a146108985780637a1e290f146108b857806380209940146108cd57600080fd5b806349bd5a5e1161032a57806349bd5a5e1461079d5780634fbee193146107bd5780636a486a8e146107f65780636ddd17131461080c57806370a082311461082d57600080fd5b80633d796abc146107025780633dc0f5aa146107335780633f18dc09146107465780633fa49c6b14610767578063414441af1461078757600080fd5b806323b872dd116103f45780632e82f1a0116103b85780632e82f1a014610661578063313ce56714610682578063373731e51461069e57806339509351146106b35780633a289b10146106d357600080fd5b806323b872dd146105de578063273c230a146105fe57806327c8f8351461061457806329d7034c1461062a5780632c3e486c1461064b57600080fd5b80631694505e1161043b5780631694505e1461055d57806318160ddd1461057d578063184c16c51461059c578063199ffc72146105b25780631a8145bb146105c857600080fd5b806306fdde0314610483578063095ea7b3146104ae57806310d5de53146104de578063128bb7911461050e578063156bda821461052557600080fd5b3661047e57005b600080fd5b34801561048f57600080fd5b50610498610e13565b6040516104a591906148ff565b60405180910390f35b3480156104ba57600080fd5b506104ce6104c9366004614927565b610ea5565b60405190151581526020016104a5565b3480156104ea57600080fd5b506104ce6104f9366004614953565b60286020526000908152604090205460ff1681565b34801561051a57600080fd5b50610523610ebd565b005b34801561053157600080fd5b50600854610545906001600160a01b031681565b6040516001600160a01b0390911681526020016104a5565b34801561056957600080fd5b50600654610545906001600160a01b031681565b34801561058957600080fd5b506002545b6040519081526020016104a5565b3480156105a857600080fd5b5061058e60235481565b3480156105be57600080fd5b5061058e60245481565b3480156105d457600080fd5b5061058e60205481565b3480156105ea57600080fd5b506104ce6105f9366004614970565b610f59565b34801561060a57600080fd5b5061058e601f5481565b34801561062057600080fd5b5061054561dead81565b34801561063657600080fd5b506013546104ce90600160a81b900460ff1681565b34801561065757600080fd5b5061058e60225481565b34801561066d57600080fd5b506013546104ce90600160b81b900460ff1681565b34801561068e57600080fd5b50604051601281526020016104a5565b3480156106aa57600080fd5b50610523610f7d565b3480156106bf57600080fd5b506104ce6106ce366004614927565b611037565b3480156106df57600080fd5b506106f36106ee3660046149b1565b611059565b6040516104a593929190614a29565b34801561070e57600080fd5b5061072261071d3660046149b1565b6111fc565b6040516104a5959493929190614a59565b6104ce610741366004614b49565b611432565b34801561075257600080fd5b506013546104ce90600160a01b900460ff1681565b34801561077357600080fd5b50610523610782366004614953565b6117ec565b34801561079357600080fd5b5061058e60215481565b3480156107a957600080fd5b50601354610545906001600160a01b031681565b3480156107c957600080fd5b506104ce6107d8366004614953565b6001600160a01b031660009081526027602052604090205460ff1690565b34801561080257600080fd5b5061058e601e5481565b34801561081857600080fd5b506013546104ce90600160c81b900460ff1681565b34801561083957600080fd5b5061058e610848366004614953565b6001600160a01b031660009081526020819052604090205490565b34801561086f57600080fd5b50610523611873565b34801561088457600080fd5b50610523610893366004614ba9565b611887565b3480156108a457600080fd5b506105236108b3366004614bde565b611999565b3480156108c457600080fd5b506104ce6119cc565b3480156108d957600080fd5b5061058e60175481565b3480156108ef57600080fd5b506105236108fe366004614c13565b611cdc565b34801561090f57600080fd5b5061058e60095481565b34801561092557600080fd5b506005546001600160a01b0316610545565b34801561094357600080fd5b50610523610952366004614c3f565b611d62565b34801561096357600080fd5b50610498611d88565b34801561097857600080fd5b5061058e60195481565b34801561098e57600080fd5b5061052361099d366004614bde565b611d97565b3480156109ae57600080fd5b5061058e60265481565b3480156109c457600080fd5b506104ce611e31565b3480156109d957600080fd5b506013546104ce90600160c01b900460ff1681565b3480156109fa57600080fd5b506104ce610a09366004614927565b611e4e565b348015610a1a57600080fd5b5061058e60255481565b348015610a3057600080fd5b506104ce610a3f366004614927565b611ec9565b348015610a5057600080fd5b50610523610a5f3660046149b1565b611ed7565b348015610a7057600080fd5b50610498610a7f3660046149b1565b611f92565b348015610a9057600080fd5b50610aa4610a9f366004614953565b61203e565b6040516104a593929190614c5a565b348015610abf57600080fd5b506104ce610ace366004614953565b60296020526000908152604090205460ff1681565b348015610aef57600080fd5b50610523612191565b348015610b0457600080fd5b50610523610b13366004614bde565b612230565b348015610b2457600080fd5b50610523610b33366004614c13565b612297565b348015610b4457600080fd5b50610523610b533660046149b1565b612318565b348015610b6457600080fd5b5061058e610b73366004614953565b600d6020526000908152604090205481565b348015610b9157600080fd5b5061058e601d5481565b348015610ba757600080fd5b506013546104ce90600160d01b900460ff1681565b348015610bc857600080fd5b5061058e60145481565b348015610bde57600080fd5b50610523610bed366004614953565b6123c7565b348015610bfe57600080fd5b506104ce610c0d3660046149b1565b61244e565b6104ce610c20366004614cab565b612582565b348015610c3157600080fd5b5061058e601a5481565b348015610c4757600080fd5b5061058e601b5481565b348015610c5d57600080fd5b5061058e610c6c366004614ce0565b612877565b348015610c7d57600080fd5b5061058e60155481565b348015610c9357600080fd5b506104ce610ca2366004614d19565b6128a2565b348015610cb357600080fd5b5061058e610cc2366004614cab565b8051602081830181018051600f8252928201919093012091525481565b348015610ceb57600080fd5b506104ce612a67565b348015610d0057600080fd5b5061058e60185481565b348015610d1657600080fd5b50610523610d25366004614953565b612a84565b348015610d3657600080fd5b50610d4a610d453660046149b1565b612afa565b6040516104a596959493929190614d84565b348015610d6857600080fd5b5061058e601c5481565b348015610d7e57600080fd5b5061058e60165481565b348015610d9457600080fd5b5061058e610da3366004614cab565b8051602081830181018051600e8252928201919093012091525481565b348015610dcc57600080fd5b506104ce610ddb3660046149b1565b612d3a565b348015610dec57600080fd5b50600754610545906001600160a01b031681565b6104ce610e0e366004614cab565b612f4b565b606060038054610e2290614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e90614dda565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b5050505050905090565b600033610eb3818585612fe1565b5060019392505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610ee790614e14565b60405180910390fd5b601354600160a01b900460ff1615610f1a5760405162461bcd60e51b8152600401610ee790614e4b565b601354600160a81b900460ff1615610f445760405162461bcd60e51b8152600401610ee790614ebe565b6013805460ff60a01b1916600160a01b179055565b600033610f67858285613105565b610f7285858561317f565b506001949350505050565b6007546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610ee790614e14565b604051600090339047908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b50509050806110345760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610ee7565b50565b600033610eb381858561104a8383612877565b6110549190614f1d565b612fe1565b6010818154811061106957600080fd5b600091825260209091206007909102018054600182015460408051606081019091526002840180546001600160a01b039094169550919392909190829082906110b190614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90614dda565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050815260200160018201805461114390614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461116f90614dda565b80156111bc5780601f10611191576101008083540402835291602001916111bc565b820191906000526020600020905b81548152906001019060200180831161119f57829003601f168201915b5050505050815260200160028201604051806060016040529081600082015481526020016001820154815260200160028201548152505081525050905083565b6011818154811061120c57600080fd5b90600052602060002090600902016000915090508060000154908060010160405180606001604052908160008201805461124590614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461127190614dda565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081526020016001820180546112d790614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461130390614dda565b80156113505780601f1061132557610100808354040283529160200191611350565b820191906000526020600020905b81548152906001019060200180831161133357829003601f168201915b50505091835250506040805160608101825260028401548152600384015460208281019190915260049094015491810191909152910152600682015460078301805492936001600160a01b03909216926113a990614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590614dda565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b5050505050908060080154905085565b336000908152600d6020526040812054158015906114615750600954336000908152600d602052604090205414155b6114ad5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b336000908152600c6020526040908190209051600f916114d291600190910190614f35565b90815260200160405180910390205434101561154b5760405162461bcd60e51b815260206004820152603260248201527f437572736520707269636520746f6f206c6f772e20496e6372656173652076616044820152716c7565206f7220636c696d622072616e6b7360701b6064820152608401610ee7565b60126040518060c00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461159e90614dda565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca90614dda565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050815260200160018201805461163090614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461165c90614dda565b80156116a95780601f1061167e576101008083540402835291602001916116a9565b820191906000526020600020905b81548152906001019060200180831161168c57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845233848301526001600160a01b03891692840192909252908201869052346080909201919091528254600181810185556000948552938290208351600a909202019081558282015180518051949592949193928501926117469284929091019061480e565b50602082810151805161175f926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b039283166001600160a01b0319918216179091556060850151600785018054919093169116179055608083015180516117d5926008850192019061480e565b5060a0820151816009015550506001905092915050565b6007546001600160a01b031633146118165760405162461bcd60e51b8152600401610ee790614e14565b6008546040516001600160a01b03918216918316907f585d5d76ca696451c0a095343cb5c4d73934e0296ce13416e50623f32e78e0ac90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b61187b613fa8565b6118856000614002565b565b61188f613fa8565b6102588310156118fd5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ee7565b6103e8821115801561190d575060015b6119725760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ee7565b60229290925560245560138054911515600160b81b0260ff60b81b19909216919091179055565b6119a1613fa8565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b336000908152600d602052604081205442108015906119fc5750600954336000908152600d602052604090205414155b611a605760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f742072656365697665206120626c657373696e6720667260448201526e1bdb48135bdc9c1a195d5cc81e595d608a1b6064820152608401610ee7565b604080516060808201835233808352426020808501919091526000918252600c9052839020835191820184528054601094840192919082908290611aa390614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90614dda565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b50505050508152602001600182018054611b3590614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190614dda565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b50505091835250506040805160608101825260028481015482526003850154602080840191909152600490950154828401529284015292909352845460018082018755600096875295829020855160079092020180546001600160a01b0319166001600160a01b03909216919091178155848201519581019590955590830151805180519495949193850192611c499284929091019061480e565b506020828101518051611c62926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155336000908152600c9091528190209051600e9350611cac9250600190910190614f35565b90815260200160405180910390205442611cc69190614f1d565b336000908152600d602052604090205550600190565b611ce4613fa8565b60178390556018829055601981905580611cfe8385614f1d565b611d089190614f1d565b601a819055600a1015611d5d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ee7565b505050565b611d6a613fa8565b60138054911515600160c81b0260ff60c81b19909216919091179055565b606060048054610e2290614dda565b611d9f613fa8565b6013546001600160a01b0390811690831603611e235760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ee7565b611e2d8282614054565b5050565b6000611e3b613fa8565b506013805460ff60c01b19169055600190565b60003381611e5c8286612877565b905083811015611ebc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ee7565b610f728286868403612fe1565b600033610eb381858561317f565b611edf613fa8565b670de0b6b3a76400006103e8611ef460025490565b611eff906005614fd0565b611f099190615005565b611f139190615005565b811015611f7a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ee7565b611f8c81670de0b6b3a7640000614fd0565b60145550565b600a8181548110611fa257600080fd5b906000526020600020016000915090508054611fbd90614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe990614dda565b80156120365780601f1061200b57610100808354040283529160200191612036565b820191906000526020600020905b81548152906001019060200180831161201957829003601f168201915b505050505081565b600c6020526000908152604090208054819061205990614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461208590614dda565b80156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050908060010180546120e790614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461211390614dda565b80156121605780601f1061213557610100808354040283529160200191612160565b820191906000526020600020905b81548152906001019060200180831161214357829003601f168201915b5050604080516060810182526002870154815260038701546020820152600490960154908601525091929150849050565b6007546001600160a01b031633146121bb5760405162461bcd60e51b8152600401610ee790614e14565b601354600160a01b900460ff16156121e55760405162461bcd60e51b8152600401610ee790614e4b565b601354600160a81b900460ff161561220f5760405162461bcd60e51b8152600401610ee790614ebe565b6013805464ff000000ff60a81b191664010000000160a81b17905542602555565b612238613fa8565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61229f613fa8565b601b839055601c829055601d819055806122b98385614f1d565b6122c39190614f1d565b601e819055600f1015611d5d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ee7565b612320613fa8565b670de0b6b3a76400006103e861233560025490565b61234090600a614fd0565b61234a9190615005565b6123549190615005565b8110156123af5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610ee7565b6123c181670de0b6b3a7640000614fd0565b60165550565b6007546001600160a01b031633146123f15760405162461bcd60e51b8152600401610ee790614e14565b6007546040516001600160a01b03918216918316907ff348ecf13e26f7720f87efe7fcf69c202dc41c5cab439cc253a1dd71034ba7ed90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000612458613fa8565b620186a061246560025490565b612470906001614fd0565b61247a9190615005565b8210156124e75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ee7565b6103e86124f360025490565b6124fe906005614fd0565b6125089190615005565b8211156125745760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ee7565b50601581905560015b919050565b336000908152600d6020526040812054158015906125b15750600954336000908152600d602052604090205414155b6125fd5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74206170617274206f66207468652043686f73656e006044820152606401610ee7565b60116040518060a00160405280428152602001600c6000336001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052908160008201805461265090614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461267c90614dda565b80156126c95780601f1061269e576101008083540402835291602001916126c9565b820191906000526020600020905b8154815290600101906020018083116126ac57829003601f168201915b505050505081526020016001820180546126e290614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461270e90614dda565b801561275b5780601f106127305761010080835404028352916020019161275b565b820191906000526020600020905b81548152906001019060200180831161273e57829003601f168201915b505050918352505060408051606080820183526002850154825260038501546020838101919091526004909501548284015292840152928452338483015291830187905234929091019190915282546001818101855560009485529382902083516009909202019081558282015180518051949592949193928501926127e69284929091019061480e565b5060208281015180516127ff926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b0319166001600160a01b0390921691909117905560608301518051612861926007850192019061480e565b5060808201518160080155505060019050919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546000906001600160a01b031633146128cf5760405162461bcd60e51b8152600401610ee790614e14565b604080516060810182526001600160a01b0388166000908152600c6020529190912080548291906128ff90614dda565b80601f016020809104026020016040519081016040528092919081815260200182805461292b90614dda565b80156129785780601f1061294d57610100808354040283529160200191612978565b820191906000526020600020905b81548152906001019060200180831161295b57829003601f168201915b5050509183525050602080820188905260408051606081018252888152808301889052808201879052928101929092526001600160a01b0389166000908152600c8252919091208251805191926129d49284929091019061480e565b5060208281015180516129ed926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155815180830190925260088252674d6f72706865757360c01b90820152612a3a9086906140a8565b15612a5b57600780546001600160a01b0319166001600160a01b0388161790555b50600195945050505050565b6000612a71613fa8565b506013805460ff60d01b19169055600190565b612a8c613fa8565b6001600160a01b038116612af15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee7565b61103481614002565b60128181548110612b0a57600080fd5b90600052602060002090600a020160009150905080600001549080600101604051806060016040529081600082018054612b4390614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6f90614dda565b8015612bbc5780601f10612b9157610100808354040283529160200191612bbc565b820191906000526020600020905b815481529060010190602001808311612b9f57829003601f168201915b50505050508152602001600182018054612bd590614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0190614dda565b8015612c4e5780601f10612c2357610100808354040283529160200191612c4e565b820191906000526020600020905b815481529060010190602001808311612c3157829003601f168201915b505050918352505060408051606081018252600284015481526003840154602080830191909152600490940154918101919091529101526006820154600783015460088401805493946001600160a01b03938416949390921692612cb190614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdd90614dda565b8015612d2a5780601f10612cff57610100808354040283529160200191612d2a565b820191906000526020600020905b815481529060010190602001808311612d0d57829003601f168201915b5050505050908060090154905086565b6000612d44613fa8565b602354602654612d549190614f1d565b4211612da25760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ee7565b6103e8821115612e075760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ee7565b426026556013546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015612e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7a9190615019565b90506000612e94612710612e8e8487614101565b90614114565b90508015612eb557601354612eb5906001600160a01b031661dead83614120565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b600066b1a2bc2ec500003410156125fd5760405162461bcd60e51b815260206004820152604e60248201527f5361637269666963657320636f6d652077697468206120636f73742c2076616c60448201527f7565206d7573742062652067726561746572207468616e206f7220657175616c60648201526d103a37901817181a9032ba3432b960911b608482015260a401610ee7565b6001600160a01b0383166130435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ee7565b6001600160a01b0382166130a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ee7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006131118484612877565b90506000198114613179578181101561316c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ee7565b6131798484848403612fe1565b50505050565b6001600160a01b0383166131a55760405162461bcd60e51b8152600401610ee790615032565b6001600160a01b0382166131cb5760405162461bcd60e51b8152600401610ee790615077565b806000036131df57611d5d83836000614120565b601354600160c01b900460ff1615613664576005546001600160a01b0384811691161480159061321d57506005546001600160a01b03838116911614155b801561323157506001600160a01b03821615155b801561324857506001600160a01b03821661dead14155b801561325e5750601354600160b01b900460ff16155b1561366457601354600160a81b900460ff166132f8576001600160a01b03831660009081526027602052604090205460ff16806132b357506001600160a01b03821660009081526027602052604090205460ff165b6132f85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ee7565b601354600160d01b900460ff16156133fe576005546001600160a01b0383811691161480159061333657506006546001600160a01b03838116911614155b801561335057506013546001600160a01b03838116911614155b156133fe57326000908152602a602052604090205443116133eb5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ee7565b326000908152602a602052604090204390555b6001600160a01b03831660009081526029602052604090205460ff16801561343f57506001600160a01b03821660009081526028602052604090205460ff16155b15613523576014548111156134b45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ee7565b6016546001600160a01b0383166000908152602081905260409020546134da9083614f1d565b111561351e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b613664565b6001600160a01b03821660009081526029602052604090205460ff16801561356457506001600160a01b03831660009081526028602052604090205460ff16155b156135da5760145481111561351e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ee7565b6001600160a01b03821660009081526028602052604090205460ff16613664576016546001600160a01b0383166000908152602081905260409020546136209083614f1d565b11156136645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ee7565b30600090815260208190526040902054601554811080159081906136915750601354600160c81b900460ff165b80156136a75750601354600160b01b900460ff16155b80156136cc57506001600160a01b03851660009081526029602052604090205460ff16155b80156136f157506001600160a01b03851660009081526027602052604090205460ff16155b801561371657506001600160a01b03841660009081526027602052604090205460ff16155b15613744576013805460ff60b01b1916600160b01b179055613736614274565b6013805460ff60b01b191690555b601354600160b01b900460ff1615801561377657506001600160a01b03841660009081526029602052604090205460ff165b801561378b5750601354600160b81b900460ff165b80156137a657506022546025546137a29190614f1d565b4210155b80156137cb57506001600160a01b03851660009081526027602052604090205460ff16155b156137da576137d86144ac565b505b6013546001600160a01b03861660009081526027602052604090205460ff600160b01b90920482161591168061382857506001600160a01b03851660009081526027602052604090205460ff165b15613831575060005b60008115613f94576001600160a01b03861660009081526029602052604090205460ff16801561386357506000601e54115b15613ca9576138826064612e8e601e548861410190919063ffffffff16565b9050601e54601c54826138959190614fd0565b61389f9190615005565b602060008282546138b09190614f1d565b9091555050601e54601d546138c59083614fd0565b6138cf9190615005565b602160008282546138e09190614f1d565b9091555050601e54601b546138f59083614fd0565b6138ff9190615005565b601f60008282546139109190614f1d565b90915550506009546001600160a01b0388166000818152600d6020908152604080832094909455835160a08101855260046060808301918252631395531360e21b608084015290825285518087018752600e81526d10de585b9a591948141a5b1b195960921b81850152828401528551908101865283815280830184905280860184905281860152928252600c815292902081518051929391926139b7928492019061480e565b5060208281015180516139d0926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155815160c081018352428152336000908152600c835283902083516060810190945280546012949293840192919082908290613a3090614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613a5c90614dda565b8015613aa95780601f10613a7e57610100808354040283529160200191613aa9565b820191906000526020600020905b815481529060010190602001808311613a8c57829003601f168201915b50505050508152602001600182018054613ac290614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613aee90614dda565b8015613b3b5780601f10613b1057610100808354040283529160200191613b3b565b820191906000526020600020905b815481529060010190602001808311613b1e57829003601f168201915b50505091835250506040805160608082018352600285015482526003850154602083810191909152600490950154828401529284015292845230848301526001600160a01b038d16848401528251808401909352601883527f4379616e6964652050696c6c65642c20436f6d61746f736500000000000000008383015283019190915261029a6080909201919091528254600181810185556000948552938290208351600a90920201908155828201518051805194959294919392850192613c089284929091019061480e565b506020828101518051613c21926001850192019061480e565b5060409182015180516002830155602080820151600384015590830151600490920191909155908301516006830180546001600160a01b039283166001600160a01b031991821617909155606085015160078501805491909316911617905560808301518051613c97926008850192019061480e565b5060a082015181600901555050613f76565b6001600160a01b03871660009081526029602052604090205460ff168015613cd357506000601a54115b15613f7657613cf26064612e8e601a548861410190919063ffffffff16565b9050601a5460185482613d059190614fd0565b613d0f9190615005565b60206000828254613d209190614f1d565b9091555050601a54601954613d359083614fd0565b613d3f9190615005565b60216000828254613d509190614f1d565b9091555050601a54601754613d659083614fd0565b613d6f9190615005565b601f6000828254613d809190614f1d565b90915550506001600160a01b0386166000908152600d60205260408120549003613f76576040518060600160405280600a8080549050600b54613dc391906150ba565b81548110613dd357613dd36150ce565b906000526020600020018054613de890614dda565b80601f0160208091040260200160405190810160405280929190818152602001828054613e1490614dda565b8015613e615780601f10613e3657610100808354040283529160200191613e61565b820191906000526020600020905b815481529060010190602001808311613e4457829003601f168201915b5050509183525050604080518082018252600781526641636f6c79746560c81b602082810191909152808401919091528151606081018352600f80825281830181905281840152928201929092526001600160a01b0389166000908152600c835220825180519192613ed89284929091019061480e565b506020828101518051613ef1926001850192019061480e565b50604091820151805160028301556020810151600383015590910151600490910155600b805460019190600090613f29908490614f1d565b9091555050604080516641636f6c79746560c81b8152600e6007820152905190819003602701902054613f5c9042614f1d565b6001600160a01b0387166000908152600d60205260409020555b8015613f8757613f87873083614120565b613f9181866150e4565b94505b613f9f878787614120565b50505050505050565b6005546001600160a01b031633146118855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ee7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000816040516020016140bb91906150fb565b60405160208183030381529060405280519060200120836040516020016140e291906150fb565b6040516020818303038152906040528051906020012014905092915050565b600061410d8284614fd0565b9392505050565b600061410d8284615005565b6001600160a01b0383166141465760405162461bcd60e51b8152600401610ee790615032565b6001600160a01b03821661416c5760405162461bcd60e51b8152600401610ee790615077565b6001600160a01b038316600090815260208190526040902054818110156141e45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ee7565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061421b908490614f1d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161426791815260200190565b60405180910390a3613179565b3060009081526020819052604081205490506000602154601f5460205461429b9190614f1d565b6142a59190614f1d565b905060008215806142b4575081155b156142be57505050565b6015546142cc906014614fd0565b8311156142e4576015546142e1906014614fd0565b92505b6000600283602054866142f79190614fd0565b6143019190615005565b61430b9190615005565b9050600061431985836145f6565b90504761432582614602565b600061433147836145f6565b9050600061434e87612e8e601f548561410190919063ffffffff16565b9050600061436b88612e8e6021548661410190919063ffffffff16565b905060008161437a84866150e4565b61438491906150e4565b60006020819055601f81905560218190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146143e1576040519150601f19603f3d011682016040523d82523d6000602084013e6143e6565b606091505b509098505086158015906143fa5750600081115b1561444b57614409878261475c565b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114614498576040519150601f19603f3d011682016040523d82523d6000602084013e61449d565b606091505b50505050505050505050505050565b426025556013546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa1580156144fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145219190615019565b90506000614540612710612e8e6024548561410190919063ffffffff16565b9050801561456157601354614561906001600160a01b031661dead83614120565b6013546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156145ab57600080fd5b505af11580156145bf573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061410d82846150e4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110614637576146376150ce565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015614690573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146b49190615117565b816001815181106146c7576146c76150ce565b6001600160a01b0392831660209182029290920101526006546146ed9130911684612fe1565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790614726908590600090869030904290600401615134565b600060405180830381600087803b15801561474057600080fd5b505af1158015614754573d6000803e3d6000fd5b505050505050565b6006546147749030906001600160a01b031684612fe1565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156147e2573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061480791906151a5565b5050505050565b82805461481a90614dda565b90600052602060002090601f01602090048101928261483c5760008555614882565b82601f1061485557805160ff1916838001178555614882565b82800160010185558215614882579182015b82811115614882578251825591602001919060010190614867565b5061488e929150614892565b5090565b5b8082111561488e5760008155600101614893565b60005b838110156148c25781810151838201526020016148aa565b838111156131795750506000910152565b600081518084526148eb8160208601602086016148a7565b601f01601f19169290920160200192915050565b60208152600061410d60208301846148d3565b6001600160a01b038116811461103457600080fd5b6000806040838503121561493a57600080fd5b823561494581614912565b946020939093013593505050565b60006020828403121561496557600080fd5b813561410d81614912565b60008060006060848603121561498557600080fd5b833561499081614912565b925060208401356149a081614912565b929592945050506040919091013590565b6000602082840312156149c357600080fd5b5035919050565b6000815160a084526149df60a08501826148d3565b9050602083015184820360208601526149f882826148d3565b9150506040830151614a2160408601828051825260208082015190830152604090810151910152565b509392505050565b60018060a01b0384168152826020820152606060408201526000614a5060608301846149ca565b95945050505050565b85815260a060208201526000614a7260a08301876149ca565b6001600160a01b03861660408401528281036060840152614a9381866148d3565b9150508260808301529695505050505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112614acd57600080fd5b813567ffffffffffffffff80821115614ae857614ae8614aa6565b604051601f8301601f19908116603f01168101908282118183101715614b1057614b10614aa6565b81604052838152866020858801011115614b2957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215614b5c57600080fd5b8235614b6781614912565b9150602083013567ffffffffffffffff811115614b8357600080fd5b614b8f85828601614abc565b9150509250929050565b8035801515811461257d57600080fd5b600080600060608486031215614bbe57600080fd5b8335925060208401359150614bd560408501614b99565b90509250925092565b60008060408385031215614bf157600080fd5b8235614bfc81614912565b9150614c0a60208401614b99565b90509250929050565b600080600060608486031215614c2857600080fd5b505081359360208301359350604090920135919050565b600060208284031215614c5157600080fd5b61410d82614b99565b60a081526000614c6d60a08301866148d3565b8281036020840152614c7f81866148d3565b915050614ca360408301848051825260208082015190830152604090810151910152565b949350505050565b600060208284031215614cbd57600080fd5b813567ffffffffffffffff811115614cd457600080fd5b614ca384828501614abc565b60008060408385031215614cf357600080fd5b8235614cfe81614912565b91506020830135614d0e81614912565b809150509250929050565b600080600080600060a08688031215614d3157600080fd5b8535614d3c81614912565b9450602086013567ffffffffffffffff811115614d5857600080fd5b614d6488828901614abc565b959895975050505060408401359360608101359360809091013592509050565b86815260c060208201526000614d9d60c08301886149ca565b6001600160a01b038781166040850152861660608401528281036080840152614dc681866148d3565b9150508260a0830152979650505050505050565b600181811c90821680614dee57607f821691505b602082108103614e0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f596f7520617265206e6f742074686520536861706572206f6620466f726d7300604082015260600190565b6020808252604d908201527f546865206d6f6d656e7461727920616e6f6d6f6c7920697320666f72676f747460408201527f656e20616e6420796f75207472656164206f6e20696e20616e20756e656e646960608201526c37339039b4b6bab630ba34b7b760991b608082015260a00190565b60208082526029908201527f5265616c69747920697320616c72656164792073657420696e2c206f70656e20604082015268796f7572206579657360b81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614f3057614f30614f07565b500190565b600080835481600182811c915080831680614f5157607f831692505b60208084108203614f7057634e487b7160e01b86526022600452602486fd5b818015614f845760018114614f9557614fc2565b60ff19861689528489019650614fc2565b60008a81526020902060005b86811015614fba5781548b820152908501908301614fa1565b505084890196505b509498975050505050505050565b6000816000190483118215151615614fea57614fea614f07565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261501457615014614fef565b500490565b60006020828403121561502b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826150c9576150c9614fef565b500690565b634e487b7160e01b600052603260045260246000fd5b6000828210156150f6576150f6614f07565b500390565b6000825161510d8184602087016148a7565b9190910192915050565b60006020828403121561512957600080fd5b815161410d81614912565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156151845784516001600160a01b03168352938301939183019160010161515f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156151ba57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208be64906513232fcab3413e9a42f1f8e962adccaedb117d10ff86a44822f819264736f6c634300080e0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.