ETH Price: $2,510.93 (-0.71%)

Token

Deus X Machina (DeusXMachina)
 

Overview

Max Total Supply

100,000,000 DeusXMachina

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 4 Decimals)

Balance
0.6959 DeusXMachina

Value
$0.00
0xc0fbc08dfae399736b2A9Ceb20A7C7cD29B3D59d
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:
DeusXMachina

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 50000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-16
*/

/*

*/

// SPDX-License-Identifier: none
pragma solidity ^0.8.17;

library SafeTransferLib {
    function safeTransferETH(address to, uint256 amount) internal {
        bool success;

        assembly {
            success := call(gas(), to, amount, 0, 0, 0, 0)
        }

        require(success, "ETH_TRANSFER_FAILED");
    }

    function safeTransfer(address token, address to, uint256 amount) internal {
        bool success;

        assembly {
            let freeMemoryPointer := mload(0x40)

            mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), to)
            mstore(add(freeMemoryPointer, 36), amount)

            success := and(
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "TRANSFER_FAILED");
    }
}

abstract contract Auth {
    event OwnershipTransferred(address owner);
    mapping (address => bool) internal authorizations;

    address public owner;
    constructor(address _owner) {
        owner = _owner;
        authorizations[_owner] = true;
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "!OWNER");
        
        _;
    }

    modifier authorized() {
        require(isAuthorized(msg.sender), "!AUTHORIZED"); 
        
        _;
    }

    function authorize(address adr) public onlyOwner {
        authorizations[adr] = true;
    }

    function unauthorize(address adr) public onlyOwner {
        authorizations[adr] = false;
    }

    function isOwner(address account) public view returns (bool) {
        return account == owner;
    }

    function isAuthorized(address adr) public view returns (bool) {
        return authorizations[adr];
    }

    function transferOwnership(address payable adr) public onlyOwner {
        owner = adr;
        authorizations[adr] = true;
        emit OwnershipTransferred(adr);
    }
}

interface IDexFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract DeusXMachina is Auth {
    event Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    address WRAP;
    address constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant ZERO = 0x0000000000000000000000000000000000000000;

    string public name = "Deus X Machina";
    string public symbol = "DeusXMachina";
    uint8 constant public decimals = 4;

    uint256 public totalSupply = 100_000_000 * (10 ** decimals);
    uint256 public max_tx = totalSupply * 10 / 1000;     // 1% of Total Supply initially
    uint256 public max_wallet = totalSupply * 20 / 1000; // 2% of Total Supply initially

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    mapping (address => bool) public isPair;
    mapping (address => bool) public isFeeExempt;
    mapping (address => bool) public isLimitExempt;
    
    uint256 public buybackFee = 0;         // 0%
    uint256 public marketingFee = 40;      // 4%
    uint256 public liquidityFee = 60;      // 6%
    uint256 public totalFee;
    uint256 public feeDenominator = 1000;  // 100%
    
    address public liquidityReceiver;
    address public marketingReceiver;

    uint256 launchedAt = 0;

    address public router;
    address public factory;
    address public main_pair;
    address[] public pairs;

    uint256 public smallSwapThreshold = totalSupply / 1000; //0,1%
    uint256 public largeSwapThreshold = totalSupply / 500;  //0,2%
    uint256 public swapThreshold = smallSwapThreshold;
    bool public swapEnabled = true;
    bool inSwap;
    modifier swapping() { inSwap = true; _; inSwap = false; }

    constructor () Auth(msg.sender) {
        if (block.chainid == 56) { //BSC
            router = 0x10ED43C718714eb63d5aA57B78B54704E256024E; //pancake
            factory = 0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73; //pancake
            WRAP = 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c; //WBNB
        } else if (block.chainid == 97) { //BSC TESTNET
            router = 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3; //pancake testnet
            factory = 0xB7926C0430Afb07AA7DEfDE6DA862aE0Bde767bc; //pancake testnet
            WRAP = 0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd; //WBNB testnet
        } else if (block.chainid == 1) { //ETHEREUM
            router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Uniswap
            factory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; //Uniswap
            WRAP = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; //ETH
        } else revert();
        allowance[address(this)][address(router)] = type(uint256).max;
        
        main_pair = IDexFactory(factory).createPair(WRAP, address(this));
        pairs.push(main_pair);
        isPair[main_pair] = true;
        
        address deployer = msg.sender;
        marketingReceiver = deployer;
        liquidityReceiver = deployer;
        totalFee = buybackFee + liquidityFee + marketingFee;

        isFeeExempt[deployer] = true;
        isFeeExempt[address(this)] = true;
        isLimitExempt[deployer] = true;
        isLimitExempt[address(this)] = true;
        isLimitExempt[DEAD] = true;
        isLimitExempt[ZERO] = true;
        
        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[deployer] += totalSupply;
        }
        emit Transfer(address(0), deployer, totalSupply);
    }

    receive() external payable {}

    function getCirculatingSupply() public view returns (uint256) {
        return totalSupply - balanceOf[DEAD] - balanceOf[ZERO];
    }

    function launched() internal view returns (bool) {
        return launchedAt != 0;
    }

    function launch() internal {
        launchedAt = block.number;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    /////////////////////////////////////////////////// TRANSFER //////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;
        
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address recipient, uint256 amount) public virtual returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual returns (bool) {
        uint256 allowed = allowance[sender][msg.sender];

        if (allowed != type(uint256).max) allowance[sender][msg.sender] = allowed - amount;

        return _transferFrom(sender, recipient, amount);
    }

    function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
        if (!launched() && isPair[recipient]) {
            require(balanceOf[sender] > 0);
            require(sender == owner, "Only the owner can be the first to add liquidity.");
            launch();
        }
        if (inSwap) return _basicTransfer(sender, recipient, amount);

        checkTxLimit(sender, recipient, amount);
        if (shouldSwapBack()) swapBack(recipient);

        balanceOf[sender] -= amount;
        uint256 amountReceived = amount;
        
        if (isPair[sender] || isPair[recipient]) {
            amountReceived = shouldTakeFee(sender, recipient) ? takeFee(sender, recipient, amount) : amount;
        }
        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[recipient] += amountReceived;
        }

        emit Transfer(sender, recipient, amountReceived);
        return true;
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        balanceOf[sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[recipient] += amount;
        }

        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////// LIMITS //////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    function checkTxLimit(address sender, address recipient, uint256 amount) internal view {
        //verify sender max_tx
        require(amount <= max_tx || isPair[sender] && isLimitExempt[recipient] || isLimitExempt[sender], "TRANSACTION_LIMIT_EXCEEDED");

        //verify recipient max_wallet
        if (recipient != owner && !isLimitExempt[recipient] && !isPair[recipient]) {
            uint256 newBalance = balanceOf[recipient] + amount;
            require(newBalance <= max_wallet, "WALLET_LIMIT_EXCEEDED");
        }
    }

    function changeMaxTx(uint256 percent, uint256 denominator) external authorized { 
        require(percent >= 1 && denominator <= 1000, "Max tx must be greater than 0.1%");
        max_tx = totalSupply * percent / denominator;
    }
    
    function changeMaxWallet(uint256 percent, uint256 denominator) external authorized {
        require(percent >= 5 && denominator <= 1000, "Max wallet must be greater than 0.5%");
        max_wallet = totalSupply * percent / denominator;
    }

    function setIsFeeExempt(address holder, bool exempt) external authorized {
        isFeeExempt[holder] = exempt;
    }

    function setIsLimitExempt(address holder, bool exempt) external authorized {
        isLimitExempt[holder] = exempt;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    /////////////////////////////////////////////////////// FEE ///////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    
    function shouldTakeFee(address sender, address recipient) internal view returns (bool) {
        return !isFeeExempt[sender] && !isFeeExempt[recipient] && totalFee > 0;
    }

    function takeFee(address sender, address receiver, uint256 amount) internal returns (uint256) {
        uint256 feeAmount = 0;
        
        //normal fee
        feeAmount = amount * totalFee / feeDenominator;
        
        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[address(this)] += feeAmount;
        }

        emit Transfer(sender, address(this), feeAmount);
        return amount - feeAmount;
    }

    function resetFees() external authorized {
        buybackFee = 0;         //0%
        liquidityFee = 60;      //6%
        marketingFee = 40;      //4%
        totalFee = buybackFee + liquidityFee + marketingFee;
        feeDenominator = 1000;  //100%
    }

    function adjustFees(uint256 _buybackFee, uint256 _liquidityFee, uint256 _marketingFee, uint256 _feeDenominator) external authorized {
        buybackFee = _buybackFee;
        liquidityFee = _liquidityFee;
        marketingFee = _marketingFee;
        totalFee = _buybackFee + _liquidityFee + _marketingFee;
        feeDenominator = _feeDenominator;
        require(totalFee < feeDenominator / 5); // totalFee must be less than 20%
    }

    function setFeeReceivers(address _autoLiquidityReceiver, address _marketingFeeReceiver) external authorized {
        liquidityReceiver = _autoLiquidityReceiver;
        marketingReceiver = _marketingFeeReceiver;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////// CONTRCT SWAP ////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    function shouldSwapBack() internal view returns (bool) {
        return !isPair[msg.sender] && !inSwap && swapEnabled && totalFee > 0 && balanceOf[address(this)] >= swapThreshold;
    }

    function swapBack(address pair_factory) internal swapping {
        if (pair_factory == main_pair) {
            uint256 amountToLiquify = swapThreshold * liquidityFee / totalFee / 2;
            uint256 amountToSwap = swapThreshold - amountToLiquify;

            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = WRAP;

            (bool success,) = router.call{gas : gasleft()}(
                //swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)
                abi.encodeWithSelector(
                    0x791ac947,
                    amountToSwap,
                    0,
                    path,
                    address(this),
                    block.timestamp
                )
            );

            uint256 amountBNB = address(this).balance;
            uint256 amountBNBLiquidity = amountBNB / 3;
            
            if (amountToLiquify > 0) {
                (success,) = router.call{gas : gasleft(), value: amountBNBLiquidity}(
                    //addLiquidityETH(address,uint256,uint256,uint256,address,uint256)
                    abi.encodeWithSelector(
                        0xf305d719,
                        address(this),
                        amountToLiquify,
                        0,
                        0,
                        liquidityReceiver,
                        block.timestamp
                    )
                );

                require(success, "SWAPBACK_FAILED");
            }

            SafeTransferLib.safeTransferETH(marketingReceiver, address(this).balance);
        }

        swapThreshold = swapThreshold == smallSwapThreshold ? largeSwapThreshold : smallSwapThreshold;
    }

    function setSwapBackSettings(bool _enabled, uint256 _smallAmount, uint256 _largeAmount) external authorized {
        require(_smallAmount <= totalSupply * 25 / 10000, "Small swap threshold must be lower"); // smallSwapThreshold  <= 0,25% of Total Supply initially
        require(_largeAmount <= totalSupply * 5 / 1000, "Large swap threshold must be lower");   // largeSwapThreshold  <= 0,5% of Total Supply initially

        swapEnabled = _enabled;
        smallSwapThreshold = _smallAmount;
        largeSwapThreshold = _largeAmount;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////// OTHERS /////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    function updateTokenDetails(string memory newName, string memory newSymbol) external authorized {
        name = newName;
        symbol = newSymbol;
    }

	function rescue() external authorized {
        SafeTransferLib.safeTransferETH(marketingReceiver, address(this).balance);
    }

    function rescueToken(address _token) external authorized {
        require(_token != address(this), "STOP");

        (, bytes memory balance) = address(_token).call(abi.encodeWithSignature('balanceOf(address)', address(this)));
        uint256 amount = abi.decode(balance, (uint256));

        require(amount > 0, "No tokens");
        SafeTransferLib.safeTransfer(_token, marketingReceiver, amount);
    }

    function createPair(address token) external authorized {
        address new_pair = IDexFactory(factory).createPair(token, address(this));
        isPair[main_pair] = true;

        pairs.push(new_pair);
    }

    function showPairList() public view returns(address[] memory){
        return pairs;
    }
}

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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"OwnershipTransferred","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_buybackFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"adjustFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"adr","type":"address"}],"name":"authorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"changeMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"largeSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"main_pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_tx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_autoLiquidityReceiver","type":"address"},{"internalType":"address","name":"_marketingFeeReceiver","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_smallAmount","type":"uint256"},{"internalType":"uint256","name":"_largeAmount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showPairList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"smallSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","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":"totalFee","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"adr","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"unauthorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"updateTokenDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e60809081526d446575732058204d616368696e6160901b60a0526003906200002f9082620005b3565b5060408051808201909152600c81526b44657573584d616368696e6160a01b6020820152600490620000629082620005b3565b50620000716004600a62000794565b62000081906305f5e100620007ac565b6005556103e8600554600a620000989190620007ac565b620000a49190620007c6565b6006556103e86005546014620000bb9190620007ac565b620000c79190620007c6565b6007556000600d556028600e55603c600f556103e860115560006014556103e8600554620000f69190620007c6565b6019556101f46005546200010b9190620007c6565b601a55601954601b55601c805460ff191660011790553480156200012e57600080fd5b50600180546001600160a01b0319163390811782556000908152602081905260409020805460ff1916909117905546603803620001d157601580546001600160a01b03199081167310ed43c718714eb63d5aa57b78b54704e256024e1790915560168054821673ca143ce32fe78f1f7019d7d551a6402fc5350c731790556002805490911673bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c179055620002c0565b466061036200024657601580546001600160a01b0319908116739ac64cc6e4415144c455bd8e4837fea55603e5c31790915560168054821673b7926c0430afb07aa7defde6da862ae0bde767bc1790556002805490911673ae13d989dac2f0debff460ac112a837c89baa7cd179055620002c0565b46600103620002bb57601580546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155601680548216735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f1790556002805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055620002c0565b600080fd5b3060008181526009602090815260408083206015546001600160a01b039081168552925291829020600019905560165460025492516364e329cb60e11b815292821660048401526024830193909352919091169063c9c65396906044016020604051808303816000875af11580156200033d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003639190620007e9565b601780546001600160a01b039283166001600160a01b0319918216811783556018805460018181019092557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e018054841690921790915591549092166000908152600a60205260409020805460ff1916909117905560138054821633908117909155601280549092168117909155600e54600f54600d5462000406919062000814565b62000412919062000814565b6010556001600160a01b0381166000818152600b602090815260408083208054600160ff199182168117909255308086528386208054831684179055868652600c85528386208054831684179055855282852080548216831790557f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c80548216831790557f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e8805490911690911790556005805485855260088452828520805490910190555490519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3506200082a565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200053957607f821691505b6020821081036200055a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ae57600081815260208120601f850160051c81016020861015620005895750805b601f850160051c820191505b81811015620005aa5782815560010162000595565b5050505b505050565b81516001600160401b03811115620005cf57620005cf6200050e565b620005e781620005e0845462000524565b8462000560565b602080601f8311600181146200061f5760008415620006065750858301515b600019600386901b1c1916600185901b178555620005aa565b600085815260208120601f198616915b8281101562000650578886015182559484019460019091019084016200062f565b50858210156200066f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006d6578160001904821115620006ba57620006ba6200067f565b80851615620006c857918102915b93841c93908002906200069a565b509250929050565b600082620006ef575060016200078e565b81620006fe575060006200078e565b8160018114620007175760028114620007225762000742565b60019150506200078e565b60ff8411156200073657620007366200067f565b50506001821b6200078e565b5060208310610133831016604e8410600b841016171562000767575081810a6200078e565b62000773838362000695565b80600019048211156200078a576200078a6200067f565b0290505b92915050565b6000620007a560ff841683620006de565b9392505050565b80820281158282048414176200078e576200078e6200067f565b600082620007e457634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620007fc57600080fd5b81516001600160a01b0381168114620007a557600080fd5b808201808211156200078e576200078e6200067f565b613084806200083a6000396000f3fe6080604052600436106103225760003560e01c806379426c06116101a5578063c150eda0116100ec578063e5e31b1311610095578063f2fde38b1161006f578063f2fde38b14610935578063f75282e114610955578063f887ea4014610975578063fe9fbb80146109a257600080fd5b8063e5e31b13146108cf578063e717fc30146108ff578063f0b37c041461091557600080fd5b8063d0889358116100c6578063d088935814610857578063d962cf5814610877578063dd62ed3e1461089757600080fd5b8063c150eda0146107dd578063c45a01551461080a578063d0291d661461083757600080fd5b8063a5949bcf1161014e578063b6a5d7de11610128578063b6a5d7de1461077d578063b91ac7881461079d578063bae19235146107bd57600080fd5b8063a5949bcf14610700578063a9059cbb1461072d578063b0c150af1461074d57600080fd5b806398118cb41161017f57806398118cb4146106aa5780639ccb0744146106c0578063a4b45c00146106e057600080fd5b806379426c06146106525780638da5cb5b1461066857806395d89b411461069557600080fd5b80632b112e49116102695780634460d3cf116102125780636ddd1713116101ec5780636ddd1713146105f557806370a082311461060f57806370fbc7121461063c57600080fd5b80634460d3cf1461059f578063658d4b7f146105bf5780636b67c4df146105df57600080fd5b80633b2d081c116102435780633b2d081c146105435780633f4218e014610559578063414683a81461058957600080fd5b80632b112e49146104cb5780632f54bf6e146104e0578063313ce5671461051c57600080fd5b806318160ddd116102cb5780631fbe1979116102a55780631fbe19791461044457806323b872dd14610459578063264d26dd1461047957600080fd5b806318160ddd146103f65780631ab33ba11461040c5780631df4ccfc1461042e57600080fd5b80630ec4c619116102fc5780630ec4c619146103a957806317e1df5b146103c0578063180b0d7e146103e057600080fd5b80630445b6671461032e57806306fdde0314610357578063095ea7b31461037957600080fd5b3661032957005b600080fd5b34801561033a57600080fd5b50610344601b5481565b6040519081526020015b60405180910390f35b34801561036357600080fd5b5061036c6109e8565b60405161034e919061295a565b34801561038557600080fd5b506103996103943660046129d0565b610a76565b604051901515815260200161034e565b3480156103b557600080fd5b506103be610af0565b005b3480156103cc57600080fd5b506103be6103db3660046129fc565b610ba3565b3480156103ec57600080fd5b5061034460115481565b34801561040257600080fd5b5061034460055481565b34801561041857600080fd5b50610421610c66565b60405161034e9190612a7f565b34801561043a57600080fd5b5061034460105481565b34801561045057600080fd5b506103be610cd5565b34801561046557600080fd5b50610399610474366004612a92565b610d73565b34801561048557600080fd5b506012546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161034e565b3480156104d757600080fd5b50610344610e1d565b3480156104ec57600080fd5b506103996104fb366004612ad3565b60015473ffffffffffffffffffffffffffffffffffffffff91821691161490565b34801561052857600080fd5b50610531600481565b60405160ff909116815260200161034e565b34801561054f57600080fd5b50610344600d5481565b34801561056557600080fd5b50610399610574366004612ad3565b600b6020526000908152604090205460ff1681565b34801561059557600080fd5b50610344601a5481565b3480156105ab57600080fd5b506103be6105ba366004612ad3565b610e8d565b3480156105cb57600080fd5b506103be6105da366004612b05565b611121565b3480156105eb57600080fd5b50610344600e5481565b34801561060157600080fd5b50601c546103999060ff1681565b34801561061b57600080fd5b5061034461062a366004612ad3565b60086020526000908152604090205481565b34801561064857600080fd5b5061034460065481565b34801561065e57600080fd5b5061034460195481565b34801561067457600080fd5b506001546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106a157600080fd5b5061036c6111f0565b3480156106b657600080fd5b50610344600f5481565b3480156106cc57600080fd5b506103be6106db366004612ad3565b6111fd565b3480156106ec57600080fd5b506103be6106fb366004612b3a565b6113c7565b34801561070c57600080fd5b506013546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073957600080fd5b506103996107483660046129d0565b611493565b34801561075957600080fd5b50610399610768366004612ad3565b600c6020526000908152604090205460ff1681565b34801561078957600080fd5b506103be610798366004612ad3565b6114a0565b3480156107a957600080fd5b506104a66107b8366004612b73565b611570565b3480156107c957600080fd5b506103be6107d8366004612b8c565b6115a7565b3480156107e957600080fd5b506017546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561081657600080fd5b506016546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084357600080fd5b506103be610852366004612c88565b6116de565b34801561086357600080fd5b506103be610872366004612cec565b611770565b34801561088357600080fd5b506103be610892366004612b05565b611977565b3480156108a357600080fd5b506103446108b2366004612b3a565b600960209081526000928352604080842090915290825290205481565b3480156108db57600080fd5b506103996108ea366004612ad3565b600a6020526000908152604090205460ff1681565b34801561090b57600080fd5b5061034460075481565b34801561092157600080fd5b506103be610930366004612ad3565b611a46565b34801561094157600080fd5b506103be610950366004612ad3565b611b13565b34801561096157600080fd5b506103be610970366004612b8c565b611c42565b34801561098157600080fd5b506015546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109ae57600080fd5b506103996109bd366004612ad3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b600380546109f590612d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190612d1f565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b505050505081565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610ade9086815260200190565b60405180910390a35060015b92915050565b3360009081526020819052604090205460ff16610b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a454400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6000600d819055603c600f8190556028600e81905591610b8e9190612da1565b610b989190612da1565b6010556103e8601155565b3360009081526020819052604090205460ff16610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b600d849055600f839055600e82905581610c368486612da1565b610c409190612da1565b6010556011819055610c53600582612db4565b60105410610c6057600080fd5b50505050565b60606018805480602002602001604051908101604052809291908181526020018280548015610ccb57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610ca0575b5050505050905090565b3360009081526020819052604090205460ff16610d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b601354610d719073ffffffffffffffffffffffffffffffffffffffff1647611d54565b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0757610dd58382612def565b73ffffffffffffffffffffffffffffffffffffffff861660009081526009602090815260408083203384529091529020555b610e12858585611dc9565b9150505b9392505050565b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75461dead60009081527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd0933429954600554919291610e7e9190612def565b610e889190612def565b905090565b3360009081526020819052604090205460ff16610f06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b3073ffffffffffffffffffffffffffffffffffffffff821603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659060208082526004908201527f53544f5000000000000000000000000000000000000000000000000000000000604082015260600190565b60405130602482015260009073ffffffffffffffffffffffffffffffffffffffff831690604401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f70a08231000000000000000000000000000000000000000000000000000000001790525161102f9190612e02565b6000604051808303816000865af19150503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b5091505060008180602001905181019061108b9190612e1e565b9050600081116110f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f20746f6b656e7300000000000000000000000000000000000000000000006044820152606401610b65565b60135461111c90849073ffffffffffffffffffffffffffffffffffffffff1683612064565b505050565b3360009081526020819052604090205460ff1661119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600480546109f590612d1f565b3360009081526020819052604090205460ff16611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6016546040517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152306024830152600092169063c9c65396906044016020604051808303816000875af11580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113139190612e37565b60175473ffffffffffffffffffffffffffffffffffffffff9081166000908152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556018805491820181559091527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e018054919092167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b3360009081526020819052604090205460ff16611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6012805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560138054929093169116179055565b6000610e16338484611dc9565b60015473ffffffffffffffffffffffffffffffffffffffff163314611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6018818154811061158057600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b3360009081526020819052604090205460ff16611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6005821015801561163357506103e88111155b6116be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61782077616c6c6574206d7573742062652067726561746572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610b65565b80826005546116cd9190612e54565b6116d79190612db4565b6007555050565b3360009081526020819052604090205460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b60036117638382612eb9565b50600461111c8282612eb9565b3360009081526020819052604090205460ff166117e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b61271060055460196117fb9190612e54565b6118059190612db4565b821115611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f536d616c6c2073776170207468726573686f6c64206d757374206265206c6f7760448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b65565b6103e860055460056118a69190612e54565b6118b09190612db4565b81111561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c617267652073776170207468726573686f6c64206d757374206265206c6f7760448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b65565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001693151593909317909255601955601a55565b3360009081526020819052604090205460ff166119f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff163314611ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60015473ffffffffffffffffffffffffffffffffffffffff163314611b94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811782556000818152602081815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909417909355519081527f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc686163910160405180910390a150565b3360009081526020819052604090205460ff16611cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b60018210158015611cce57506103e88111155b611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d6178207478206d7573742062652067726561746572207468616e20302e31256044820152606401610b65565b8082600554611d439190612e54565b611d4d9190612db4565b6006555050565b600080600080600085875af190508061111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4554485f5452414e534645525f4641494c4544000000000000000000000000006044820152606401610b65565b6000611dd6601454151590565b158015611e08575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff165b15611eef5773ffffffffffffffffffffffffffffffffffffffff8416600090815260086020526040902054611e3c57600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff858116911614611ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4f6e6c7920746865206f776e65722063616e206265207468652066697273742060448201527f746f20616464206c69717569646974792e0000000000000000000000000000006064820152608401610b65565b611eef43601455565b601c54610100900460ff1615611f1157611f0a84848461211d565b9050610e16565b611f1c8484846121ca565b611f246123ed565b15611f3257611f3283612451565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604081208054849290611f67908490612def565b909155505073ffffffffffffffffffffffffffffffffffffffff84166000908152600a6020526040902054829060ff1680611fc7575073ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff165b15611fee57611fd68585612833565b611fe05782611feb565b611feb8585856128a2565b90505b73ffffffffffffffffffffffffffffffffffffffff808516600081815260086020526040908190208054850190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120519085815260200190565b60405180910390a3506001949350505050565b60006040517fa9059cbb000000000000000000000000000000000000000000000000000000008152836004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080610c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020526040812080548391908390612154908490612def565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260086020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906121b89086815260200190565b60405180910390a35060019392505050565b60065481111580612230575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff168015612230575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff165b80612260575073ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff165b6122c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5452414e53414354494f4e5f4c494d49545f45584345454445440000000000006044820152606401610b65565b60015473ffffffffffffffffffffffffffffffffffffffff838116911614801590612317575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b8015612349575073ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16155b1561111c5773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205461237f908390612da1565b9050600754811115610c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f57414c4c45545f4c494d49545f455843454544454400000000000000000000006044820152606401610b65565b336000908152600a602052604081205460ff161580156124155750601c54610100900460ff16155b80156124235750601c5460ff165b801561243157506000601054115b8015610e88575050601b5430600090815260086020526040902054101590565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560175473ffffffffffffffffffffffffffffffffffffffff908116908216036127ee5760006002601054600f54601b546124b79190612e54565b6124c19190612db4565b6124cb9190612db4565b9050600081601b546124dd9190612def565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061251757612517612fd3565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201015260025482519116908290600190811061255557612555612fd3565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601554600091165a63791ac94785600086304260405160240161259f959493929190613002565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516125ed9190612e02565b60006040518083038160008787f1925050503d806000811461262b576040519150601f19603f3d011682016040523d82523d6000602084013e612630565b606091505b509091504790506000612644600383612db4565b905085156127c45760155473ffffffffffffffffffffffffffffffffffffffff165a60125460408051306024820152604481018b9052600060648201819052608482015273ffffffffffffffffffffffffffffffffffffffff90921660a48301524260c4808401919091528151808403909101815260e490920181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167ff305d7190000000000000000000000000000000000000000000000000000000017905251849161271491612e02565b600060405180830381858888f193505050503d8060008114612752576040519150601f19603f3d011682016040523d82523d6000602084013e612757565b606091505b505080935050826127c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f535741504241434b5f4641494c454400000000000000000000000000000000006044820152606401610b65565b6013546127e79073ffffffffffffffffffffffffffffffffffffffff1647611d54565b5050505050505b601954601b541461280157601954612805565b601a545b601b5550601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604081205460ff1615801561288f575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16155b8015610e16575050601054151592915050565b60115460105460009182916128b79085612e54565b6128c19190612db4565b3060008181526008602052604090819020805484019055519192509073ffffffffffffffffffffffffffffffffffffffff8716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906129249085815260200190565b60405180910390a3610e128184612def565b60005b83811015612951578181015183820152602001612939565b50506000910152565b6020815260008251806020840152612979816040850160208701612936565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff811681146129cd57600080fd5b50565b600080604083850312156129e357600080fd5b82356129ee816129ab565b946020939093013593505050565b60008060008060808587031215612a1257600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526020808501945080840160005b83811015612a7457815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101612a42565b509495945050505050565b602081526000610e166020830184612a2e565b600080600060608486031215612aa757600080fd5b8335612ab2816129ab565b92506020840135612ac2816129ab565b929592945050506040919091013590565b600060208284031215612ae557600080fd5b8135610e16816129ab565b80358015158114612b0057600080fd5b919050565b60008060408385031215612b1857600080fd5b8235612b23816129ab565b9150612b3160208401612af0565b90509250929050565b60008060408385031215612b4d57600080fd5b8235612b58816129ab565b91506020830135612b68816129ab565b809150509250929050565b600060208284031215612b8557600080fd5b5035919050565b60008060408385031215612b9f57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112612bee57600080fd5b813567ffffffffffffffff80821115612c0957612c09612bae565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c4f57612c4f612bae565b81604052838152866020858801011115612c6857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612c9b57600080fd5b823567ffffffffffffffff80821115612cb357600080fd5b612cbf86838701612bdd565b93506020850135915080821115612cd557600080fd5b50612ce285828601612bdd565b9150509250929050565b600080600060608486031215612d0157600080fd5b612d0a84612af0565b95602085013595506040909401359392505050565b600181811c90821680612d3357607f821691505b602082108103612d6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610aea57610aea612d72565b600082612dea577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610aea57610aea612d72565b60008251612e14818460208701612936565b9190910192915050565b600060208284031215612e3057600080fd5b5051919050565b600060208284031215612e4957600080fd5b8151610e16816129ab565b8082028115828204841417610aea57610aea612d72565b601f82111561111c57600081815260208120601f850160051c81016020861015612e925750805b601f850160051c820191505b81811015612eb157828155600101612e9e565b505050505050565b815167ffffffffffffffff811115612ed357612ed3612bae565b612ee781612ee18454612d1f565b84612e6b565b602080601f831160018114612f3a5760008415612f045750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612eb1565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612f8757888601518255948401946001909101908401612f68565b5085821015612fc357878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b85815260ff8516602082015260a06040820152600061302460a0830186612a2e565b73ffffffffffffffffffffffffffffffffffffffff9490941660608301525060800152939250505056fea2646970667358221220b35973cef39d728fed90bc14e6d4a33b994bfe4219c0ee416c1c590361ece79464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103225760003560e01c806379426c06116101a5578063c150eda0116100ec578063e5e31b1311610095578063f2fde38b1161006f578063f2fde38b14610935578063f75282e114610955578063f887ea4014610975578063fe9fbb80146109a257600080fd5b8063e5e31b13146108cf578063e717fc30146108ff578063f0b37c041461091557600080fd5b8063d0889358116100c6578063d088935814610857578063d962cf5814610877578063dd62ed3e1461089757600080fd5b8063c150eda0146107dd578063c45a01551461080a578063d0291d661461083757600080fd5b8063a5949bcf1161014e578063b6a5d7de11610128578063b6a5d7de1461077d578063b91ac7881461079d578063bae19235146107bd57600080fd5b8063a5949bcf14610700578063a9059cbb1461072d578063b0c150af1461074d57600080fd5b806398118cb41161017f57806398118cb4146106aa5780639ccb0744146106c0578063a4b45c00146106e057600080fd5b806379426c06146106525780638da5cb5b1461066857806395d89b411461069557600080fd5b80632b112e49116102695780634460d3cf116102125780636ddd1713116101ec5780636ddd1713146105f557806370a082311461060f57806370fbc7121461063c57600080fd5b80634460d3cf1461059f578063658d4b7f146105bf5780636b67c4df146105df57600080fd5b80633b2d081c116102435780633b2d081c146105435780633f4218e014610559578063414683a81461058957600080fd5b80632b112e49146104cb5780632f54bf6e146104e0578063313ce5671461051c57600080fd5b806318160ddd116102cb5780631fbe1979116102a55780631fbe19791461044457806323b872dd14610459578063264d26dd1461047957600080fd5b806318160ddd146103f65780631ab33ba11461040c5780631df4ccfc1461042e57600080fd5b80630ec4c619116102fc5780630ec4c619146103a957806317e1df5b146103c0578063180b0d7e146103e057600080fd5b80630445b6671461032e57806306fdde0314610357578063095ea7b31461037957600080fd5b3661032957005b600080fd5b34801561033a57600080fd5b50610344601b5481565b6040519081526020015b60405180910390f35b34801561036357600080fd5b5061036c6109e8565b60405161034e919061295a565b34801561038557600080fd5b506103996103943660046129d0565b610a76565b604051901515815260200161034e565b3480156103b557600080fd5b506103be610af0565b005b3480156103cc57600080fd5b506103be6103db3660046129fc565b610ba3565b3480156103ec57600080fd5b5061034460115481565b34801561040257600080fd5b5061034460055481565b34801561041857600080fd5b50610421610c66565b60405161034e9190612a7f565b34801561043a57600080fd5b5061034460105481565b34801561045057600080fd5b506103be610cd5565b34801561046557600080fd5b50610399610474366004612a92565b610d73565b34801561048557600080fd5b506012546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161034e565b3480156104d757600080fd5b50610344610e1d565b3480156104ec57600080fd5b506103996104fb366004612ad3565b60015473ffffffffffffffffffffffffffffffffffffffff91821691161490565b34801561052857600080fd5b50610531600481565b60405160ff909116815260200161034e565b34801561054f57600080fd5b50610344600d5481565b34801561056557600080fd5b50610399610574366004612ad3565b600b6020526000908152604090205460ff1681565b34801561059557600080fd5b50610344601a5481565b3480156105ab57600080fd5b506103be6105ba366004612ad3565b610e8d565b3480156105cb57600080fd5b506103be6105da366004612b05565b611121565b3480156105eb57600080fd5b50610344600e5481565b34801561060157600080fd5b50601c546103999060ff1681565b34801561061b57600080fd5b5061034461062a366004612ad3565b60086020526000908152604090205481565b34801561064857600080fd5b5061034460065481565b34801561065e57600080fd5b5061034460195481565b34801561067457600080fd5b506001546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106a157600080fd5b5061036c6111f0565b3480156106b657600080fd5b50610344600f5481565b3480156106cc57600080fd5b506103be6106db366004612ad3565b6111fd565b3480156106ec57600080fd5b506103be6106fb366004612b3a565b6113c7565b34801561070c57600080fd5b506013546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073957600080fd5b506103996107483660046129d0565b611493565b34801561075957600080fd5b50610399610768366004612ad3565b600c6020526000908152604090205460ff1681565b34801561078957600080fd5b506103be610798366004612ad3565b6114a0565b3480156107a957600080fd5b506104a66107b8366004612b73565b611570565b3480156107c957600080fd5b506103be6107d8366004612b8c565b6115a7565b3480156107e957600080fd5b506017546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561081657600080fd5b506016546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084357600080fd5b506103be610852366004612c88565b6116de565b34801561086357600080fd5b506103be610872366004612cec565b611770565b34801561088357600080fd5b506103be610892366004612b05565b611977565b3480156108a357600080fd5b506103446108b2366004612b3a565b600960209081526000928352604080842090915290825290205481565b3480156108db57600080fd5b506103996108ea366004612ad3565b600a6020526000908152604090205460ff1681565b34801561090b57600080fd5b5061034460075481565b34801561092157600080fd5b506103be610930366004612ad3565b611a46565b34801561094157600080fd5b506103be610950366004612ad3565b611b13565b34801561096157600080fd5b506103be610970366004612b8c565b611c42565b34801561098157600080fd5b506015546104a69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109ae57600080fd5b506103996109bd366004612ad3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205460ff1690565b600380546109f590612d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190612d1f565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b505050505081565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610ade9086815260200190565b60405180910390a35060015b92915050565b3360009081526020819052604090205460ff16610b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a454400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6000600d819055603c600f8190556028600e81905591610b8e9190612da1565b610b989190612da1565b6010556103e8601155565b3360009081526020819052604090205460ff16610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b600d849055600f839055600e82905581610c368486612da1565b610c409190612da1565b6010556011819055610c53600582612db4565b60105410610c6057600080fd5b50505050565b60606018805480602002602001604051908101604052809291908181526020018280548015610ccb57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610ca0575b5050505050905090565b3360009081526020819052604090205460ff16610d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b601354610d719073ffffffffffffffffffffffffffffffffffffffff1647611d54565b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0757610dd58382612def565b73ffffffffffffffffffffffffffffffffffffffff861660009081526009602090815260408083203384529091529020555b610e12858585611dc9565b9150505b9392505050565b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75461dead60009081527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd0933429954600554919291610e7e9190612def565b610e889190612def565b905090565b3360009081526020819052604090205460ff16610f06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b3073ffffffffffffffffffffffffffffffffffffffff821603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659060208082526004908201527f53544f5000000000000000000000000000000000000000000000000000000000604082015260600190565b60405130602482015260009073ffffffffffffffffffffffffffffffffffffffff831690604401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f70a08231000000000000000000000000000000000000000000000000000000001790525161102f9190612e02565b6000604051808303816000865af19150503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b5091505060008180602001905181019061108b9190612e1e565b9050600081116110f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f20746f6b656e7300000000000000000000000000000000000000000000006044820152606401610b65565b60135461111c90849073ffffffffffffffffffffffffffffffffffffffff1683612064565b505050565b3360009081526020819052604090205460ff1661119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600480546109f590612d1f565b3360009081526020819052604090205460ff16611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6016546040517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152306024830152600092169063c9c65396906044016020604051808303816000875af11580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113139190612e37565b60175473ffffffffffffffffffffffffffffffffffffffff9081166000908152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556018805491820181559091527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e018054919092167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b3360009081526020819052604090205460ff16611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6012805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560138054929093169116179055565b6000610e16338484611dc9565b60015473ffffffffffffffffffffffffffffffffffffffff163314611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6018818154811061158057600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b3360009081526020819052604090205460ff16611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b6005821015801561163357506103e88111155b6116be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61782077616c6c6574206d7573742062652067726561746572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610b65565b80826005546116cd9190612e54565b6116d79190612db4565b6007555050565b3360009081526020819052604090205460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b60036117638382612eb9565b50600461111c8282612eb9565b3360009081526020819052604090205460ff166117e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b61271060055460196117fb9190612e54565b6118059190612db4565b821115611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f536d616c6c2073776170207468726573686f6c64206d757374206265206c6f7760448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b65565b6103e860055460056118a69190612e54565b6118b09190612db4565b81111561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4c617267652073776170207468726573686f6c64206d757374206265206c6f7760448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b65565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001693151593909317909255601955601a55565b3360009081526020819052604090205460ff166119f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff163314611ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60015473ffffffffffffffffffffffffffffffffffffffff163314611b94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f214f574e455200000000000000000000000000000000000000000000000000006044820152606401610b65565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811782556000818152602081815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909417909355519081527f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc686163910160405180910390a150565b3360009081526020819052604090205460ff16611cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21415554484f52495a45440000000000000000000000000000000000000000006044820152606401610b65565b60018210158015611cce57506103e88111155b611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d6178207478206d7573742062652067726561746572207468616e20302e31256044820152606401610b65565b8082600554611d439190612e54565b611d4d9190612db4565b6006555050565b600080600080600085875af190508061111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4554485f5452414e534645525f4641494c4544000000000000000000000000006044820152606401610b65565b6000611dd6601454151590565b158015611e08575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff165b15611eef5773ffffffffffffffffffffffffffffffffffffffff8416600090815260086020526040902054611e3c57600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff858116911614611ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4f6e6c7920746865206f776e65722063616e206265207468652066697273742060448201527f746f20616464206c69717569646974792e0000000000000000000000000000006064820152608401610b65565b611eef43601455565b601c54610100900460ff1615611f1157611f0a84848461211d565b9050610e16565b611f1c8484846121ca565b611f246123ed565b15611f3257611f3283612451565b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604081208054849290611f67908490612def565b909155505073ffffffffffffffffffffffffffffffffffffffff84166000908152600a6020526040902054829060ff1680611fc7575073ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205460ff165b15611fee57611fd68585612833565b611fe05782611feb565b611feb8585856128a2565b90505b73ffffffffffffffffffffffffffffffffffffffff808516600081815260086020526040908190208054850190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120519085815260200190565b60405180910390a3506001949350505050565b60006040517fa9059cbb000000000000000000000000000000000000000000000000000000008152836004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080610c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610b65565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020526040812080548391908390612154908490612def565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260086020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906121b89086815260200190565b60405180910390a35060019392505050565b60065481111580612230575073ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff168015612230575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff165b80612260575073ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff165b6122c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5452414e53414354494f4e5f4c494d49545f45584345454445440000000000006044820152606401610b65565b60015473ffffffffffffffffffffffffffffffffffffffff838116911614801590612317575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b8015612349575073ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff16155b1561111c5773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205461237f908390612da1565b9050600754811115610c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f57414c4c45545f4c494d49545f455843454544454400000000000000000000006044820152606401610b65565b336000908152600a602052604081205460ff161580156124155750601c54610100900460ff16155b80156124235750601c5460ff165b801561243157506000601054115b8015610e88575050601b5430600090815260086020526040902054101590565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560175473ffffffffffffffffffffffffffffffffffffffff908116908216036127ee5760006002601054600f54601b546124b79190612e54565b6124c19190612db4565b6124cb9190612db4565b9050600081601b546124dd9190612def565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061251757612517612fd3565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201015260025482519116908290600190811061255557612555612fd3565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601554600091165a63791ac94785600086304260405160240161259f959493929190613002565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516125ed9190612e02565b60006040518083038160008787f1925050503d806000811461262b576040519150601f19603f3d011682016040523d82523d6000602084013e612630565b606091505b509091504790506000612644600383612db4565b905085156127c45760155473ffffffffffffffffffffffffffffffffffffffff165a60125460408051306024820152604481018b9052600060648201819052608482015273ffffffffffffffffffffffffffffffffffffffff90921660a48301524260c4808401919091528151808403909101815260e490920181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167ff305d7190000000000000000000000000000000000000000000000000000000017905251849161271491612e02565b600060405180830381858888f193505050503d8060008114612752576040519150601f19603f3d011682016040523d82523d6000602084013e612757565b606091505b505080935050826127c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f535741504241434b5f4641494c454400000000000000000000000000000000006044820152606401610b65565b6013546127e79073ffffffffffffffffffffffffffffffffffffffff1647611d54565b5050505050505b601954601b541461280157601954612805565b601a545b601b5550601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604081205460ff1615801561288f575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16155b8015610e16575050601054151592915050565b60115460105460009182916128b79085612e54565b6128c19190612db4565b3060008181526008602052604090819020805484019055519192509073ffffffffffffffffffffffffffffffffffffffff8716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906129249085815260200190565b60405180910390a3610e128184612def565b60005b83811015612951578181015183820152602001612939565b50506000910152565b6020815260008251806020840152612979816040850160208701612936565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff811681146129cd57600080fd5b50565b600080604083850312156129e357600080fd5b82356129ee816129ab565b946020939093013593505050565b60008060008060808587031215612a1257600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526020808501945080840160005b83811015612a7457815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101612a42565b509495945050505050565b602081526000610e166020830184612a2e565b600080600060608486031215612aa757600080fd5b8335612ab2816129ab565b92506020840135612ac2816129ab565b929592945050506040919091013590565b600060208284031215612ae557600080fd5b8135610e16816129ab565b80358015158114612b0057600080fd5b919050565b60008060408385031215612b1857600080fd5b8235612b23816129ab565b9150612b3160208401612af0565b90509250929050565b60008060408385031215612b4d57600080fd5b8235612b58816129ab565b91506020830135612b68816129ab565b809150509250929050565b600060208284031215612b8557600080fd5b5035919050565b60008060408385031215612b9f57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112612bee57600080fd5b813567ffffffffffffffff80821115612c0957612c09612bae565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c4f57612c4f612bae565b81604052838152866020858801011115612c6857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612c9b57600080fd5b823567ffffffffffffffff80821115612cb357600080fd5b612cbf86838701612bdd565b93506020850135915080821115612cd557600080fd5b50612ce285828601612bdd565b9150509250929050565b600080600060608486031215612d0157600080fd5b612d0a84612af0565b95602085013595506040909401359392505050565b600181811c90821680612d3357607f821691505b602082108103612d6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610aea57610aea612d72565b600082612dea577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610aea57610aea612d72565b60008251612e14818460208701612936565b9190910192915050565b600060208284031215612e3057600080fd5b5051919050565b600060208284031215612e4957600080fd5b8151610e16816129ab565b8082028115828204841417610aea57610aea612d72565b601f82111561111c57600081815260208120601f850160051c81016020861015612e925750805b601f850160051c820191505b81811015612eb157828155600101612e9e565b505050505050565b815167ffffffffffffffff811115612ed357612ed3612bae565b612ee781612ee18454612d1f565b84612e6b565b602080601f831160018114612f3a5760008415612f045750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612eb1565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612f8757888601518255948401946001909101908401612f68565b5085821015612fc357878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b85815260ff8516602082015260a06040820152600061302460a0830186612a2e565b73ffffffffffffffffffffffffffffffffffffffff9490941660608301525060800152939250505056fea2646970667358221220b35973cef39d728fed90bc14e6d4a33b994bfe4219c0ee416c1c590361ece79464736f6c63430008110033

Deployed Bytecode Sourcemap

2437:14680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4068:49;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;4068:49:0;;;;;;;;2807:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6822:223::-;;;;;;;;;;-1:-1:-1;6822:223:0;;;;;:::i;:::-;;:::i;:::-;;;1555:14:1;;1548:22;1530:41;;1518:2;1503:18;6822:223:0;1390:187:1;11808:265:0;;;;;;;;;;;;;:::i;:::-;;12081:444;;;;;;;;;;-1:-1:-1;12081:444:0;;;;;:::i;:::-;;:::i;3644:36::-;;;;;;;;;;;;;;;;2938:59;;;;;;;;;;;;;;;;17022:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3614:23::-;;;;;;;;;;;;;;;;16239:130;;;;;;;;;;;;;:::i;7214:324::-;;;;;;;;;;-1:-1:-1;7214:324:0;;;;;:::i;:::-;;:::i;3702:32::-;;;;;;;;;;-1:-1:-1;3702:32:0;;;;;;;;;;;3364:42:1;3352:55;;;3334:74;;3322:2;3307:18;3702:32:0;3188:226:1;6125:135:0;;;;;;;;;;;;;:::i;1727:103::-;;;;;;;;;;-1:-1:-1;1727:103:0;;;;;:::i;:::-;1817:5;;;1806:16;;;1817:5;;1806:16;;1727:103;2895:34;;;;;;;;;;;;2928:1;2895:34;;;;;3843:4:1;3831:17;;;3813:36;;3801:2;3786:18;2895:34:0;3671:184:1;3464:29:0;;;;;;;;;;;;;;;;3354:44;;;;;;;;;;-1:-1:-1;3354:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4000:53;;;;;;;;;;;;;;;;16377:415;;;;;;;;;;-1:-1:-1;16377:415:0;;;;;:::i;:::-;;:::i;10449:120::-;;;;;;;;;;-1:-1:-1;10449:120:0;;;;;:::i;:::-;;:::i;3514:32::-;;;;;;;;;;;;;;;;4124:30;;;;;;;;;;-1:-1:-1;4124:30:0;;;;;;;;3186:44;;;;;;;;;;-1:-1:-1;3186:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;3004:47;;;;;;;;;;;;;;;;3932:54;;;;;;;;;;;;;;;;1156:20;;;;;;;;;;-1:-1:-1;1156:20:0;;;;;;;;2851:37;;;;;;;;;;;;;:::i;3564:32::-;;;;;;;;;;;;;;;;16800:214;;;;;;;;;;-1:-1:-1;16800:214:0;;;;;:::i;:::-;;:::i;12533:221::-;;;;;;;;;;-1:-1:-1;12533:221:0;;;;;:::i;:::-;;:::i;3741:32::-;;;;;;;;;;-1:-1:-1;3741:32:0;;;;;;;;7053:153;;;;;;;;;;-1:-1:-1;7053:153:0;;;;;:::i;:::-;;:::i;3405:46::-;;;;;;;;;;-1:-1:-1;3405:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;1520:94;;;;;;;;;;-1:-1:-1;1520:94:0;;;;;:::i;:::-;;:::i;3901:22::-;;;;;;;;;;-1:-1:-1;3901:22:0;;;;;:::i;:::-;;:::i;10196:245::-;;;;;;;;;;-1:-1:-1;10196:245:0;;;;;:::i;:::-;;:::i;3870:24::-;;;;;;;;;;-1:-1:-1;3870:24:0;;;;;;;;3841:22;;;;;;;;;;-1:-1:-1;3841:22:0;;;;;;;;16076:158;;;;;;;;;;-1:-1:-1;16076:158:0;;;;;:::i;:::-;;:::i;15141:550::-;;;;;;;;;;-1:-1:-1;15141:550:0;;;;;:::i;:::-;;:::i;10577:124::-;;;;;;;;;;-1:-1:-1;10577:124:0;;;;;:::i;:::-;;:::i;3237:64::-;;;;;;;;;;-1:-1:-1;3237:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;3308:39;;;;;;;;;;-1:-1:-1;3308:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;3094:51;;;;;;;;;;;;;;;;1622:97;;;;;;;;;;-1:-1:-1;1622:97:0;;;;;:::i;:::-;;:::i;1953:173::-;;;;;;;;;;-1:-1:-1;1953:173:0;;;;;:::i;:::-;;:::i;9950:234::-;;;;;;;;;;-1:-1:-1;9950:234:0;;;;;:::i;:::-;;:::i;3813:21::-;;;;;;;;;;-1:-1:-1;3813:21:0;;;;;;;;1838:107;;;;;;;;;;-1:-1:-1;1838:107:0;;;;;:::i;:::-;1918:19;;1894:4;1918:19;;;;;;;;;;;;;;1838:107;2807:37;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6822:223::-;6923:10;6896:4;6913:21;;;:9;:21;;;;;;;;;:30;;;;;;;;;;:39;;;6978:37;6896:4;;6913:30;;6978:37;;;;6946:6;160:25:1;;148:2;133:18;;14:177;6978:37:0;;;;;;;;-1:-1:-1;7033:4:0;6822:223;;;;;:::o;11808:265::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;;;;;;;;;11873:1:::1;11860:10;:14:::0;;;11913:2:::1;11898:12;:17:::0;;;11951:2:::1;11936:12;:17:::0;;;11951:2;11985:25:::1;::::0;11913:2;11985:25:::1;:::i;:::-;:40;;;;:::i;:::-;11974:8;:51:::0;12053:4:::1;12036:14;:21:::0;11808:265::o;12081:444::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;12224:10:::1;:24:::0;;;12259:12:::1;:28:::0;;;12298:12:::1;:28:::0;;;12313:13;12348:27:::1;12274:13:::0;12237:11;12348:27:::1;:::i;:::-;:43;;;;:::i;:::-;12337:8;:54:::0;12402:14:::1;:32:::0;;;12464:18:::1;12481:1;12419:15:::0;12464:18:::1;:::i;:::-;12453:8;;:29;12445:38;;;::::0;::::1;;12081:444:::0;;;;:::o;17022:92::-;17066:16;17101:5;17094:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17022:92;:::o;16239:130::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;16320:17:::1;::::0;16288:73:::1;::::0;16320:17:::1;;16339:21;16288:31;:73::i;:::-;16239:130::o:0;7214:324::-;7346:17;;;7311:4;7346:17;;;:9;:17;;;;;;;;7364:10;7346:29;;;;;;;;7403:17;7392:28;;7388:82;;7454:16;7464:6;7454:7;:16;:::i;:::-;7422:17;;;;;;;:9;:17;;;;;;;;7440:10;7422:29;;;;;;;:48;7388:82;7490:40;7504:6;7512:9;7523:6;7490:13;:40::i;:::-;7483:47;;;7214:324;;;;;;:::o;6125:135::-;6237:9;:15;;;;2683:42;6178:7;6219:15;;;;;6205:11;;6178:7;;6237:15;6205:29;;6219:15;6205:29;:::i;:::-;:47;;;;:::i;:::-;6198:54;;6125:135;:::o;16377:415::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;16471:4:::1;16453:23;::::0;::::1;::::0;16445:40:::1;;;;;;;;;;;8992:2:1::0;8974:21;;;9031:1;9011:18;;;9004:29;9069:6;9064:2;9049:18;;9042:34;9108:2;9093:18;;8790:327;16445:40:0::1;16546:60;::::0;16600:4:::1;16546:60;::::0;::::1;3334:74:1::0;16501:20:0::1;::::0;16525::::1;::::0;::::1;::::0;3307:18:1;;16546:60:0::1;::::0;;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;;;;::::0;;16525:82;::::1;::::0;16546:60;16525:82:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16498:109;;;16618:14;16646:7;16635:30;;;;;;;;;;;;:::i;:::-;16618:47;;16695:1;16686:6;:10;16678:32;;;::::0;::::1;::::0;;9805:2:1;16678:32:0::1;::::0;::::1;9787:21:1::0;9844:1;9824:18;;;9817:29;9882:11;9862:18;;;9855:39;9911:18;;16678:32:0::1;9603:332:1::0;16678:32:0::1;16758:17;::::0;16721:63:::1;::::0;16750:6;;16758:17:::1;;16777:6:::0;16721:28:::1;:63::i;:::-;16434:358;;16377:415:::0;:::o;10449:120::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;10533:19:::1;::::0;;;::::1;;::::0;;;:11:::1;:19;::::0;;;;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;10449:120::o;2851:37::-;;;;;;;:::i;16800:214::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;16897:7:::1;::::0;16885:53:::1;::::0;;;;16897:7:::1;10193:15:1::0;;;16885:53:0::1;::::0;::::1;10175:34:1::0;16932:4:0::1;10225:18:1::0;;;10218:43;16866:16:0::1;::::0;16897:7:::1;::::0;16885:31:::1;::::0;10087:18:1;;16885:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16956:9;::::0;::::1;::::0;;::::1;16949:17;::::0;;;:6:::1;:17;::::0;;;;:24;;;::::1;16969:4;16949:24:::0;;::::1;::::0;;;16986:5:::1;:20:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;;;::::1;::::0;;;::::1;;::::0;;-1:-1:-1;;16800:214:0:o;12533:221::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;12652:17:::1;:42:::0;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;;12705:17:::1;:41:::0;;;;;::::1;::::0;::::1;;::::0;;12533:221::o;7053:153::-;7130:4;7154:44;7168:10;7180:9;7191:6;7154:13;:44::i;1520:94::-;1346:5;;;;1332:10;:19;1324:38;;;;;;;10730:2:1;1324:38:0;;;10712:21:1;10769:1;10749:18;;;10742:29;10807:8;10787:18;;;10780:36;10833:18;;1324:38:0;10528:329:1;1324:38:0;1580:19:::1;;:14;:19:::0;;;::::1;::::0;;;;;;:26;;;::::1;1602:4;1580:26;::::0;;1520:94::o;3901:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3901:22:0;:::o;10196:245::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;10309:1:::1;10298:7;:12;;:35;;;;;10329:4;10314:11;:19;;10298:35;10290:84;;;::::0;::::1;::::0;;11064:2:1;10290:84:0::1;::::0;::::1;11046:21:1::0;11103:2;11083:18;;;11076:30;11142:34;11122:18;;;11115:62;11213:6;11193:18;;;11186:34;11237:19;;10290:84:0::1;10862:400:1::0;10290:84:0::1;10422:11;10412:7;10398:11;;:21;;;;:::i;:::-;:35;;;;:::i;:::-;10385:10;:48:::0;-1:-1:-1;;10196:245:0:o;16076:158::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;16183:4:::1;:14;16190:7:::0;16183:4;:14:::1;:::i;:::-;-1:-1:-1::0;16208:6:0::1;:18;16217:9:::0;16208:6;:18:::1;:::i;15141:550::-:0;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;15303:5:::1;15284:11;;15298:2;15284:16;;;;:::i;:::-;:24;;;;:::i;:::-;15268:12;:40;;15260:87;;;::::0;::::1;::::0;;14025:2:1;15260:87:0::1;::::0;::::1;14007:21:1::0;14064:2;14044:18;;;14037:30;14103:34;14083:18;;;14076:62;14174:4;14154:18;;;14147:32;14196:19;;15260:87:0::1;13823:398:1::0;15260:87:0::1;15458:4;15440:11;;15454:1;15440:15;;;;:::i;:::-;:22;;;;:::i;:::-;15424:12;:38;;15416:85;;;::::0;::::1;::::0;;14428:2:1;15416:85:0::1;::::0;::::1;14410:21:1::0;14467:2;14447:18;;;14440:30;14506:34;14486:18;;;14479:62;14577:4;14557:18;;;14550:32;14599:19;;15416:85:0::1;14226:398:1::0;15416:85:0::1;15573:11;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;15606:18:::1;:33:::0;15650:18:::1;:33:::0;15141:550::o;10577:124::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;10663:21:::1;::::0;;;::::1;;::::0;;;:13:::1;:21;::::0;;;;:30;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;10577:124::o;1622:97::-;1346:5;;;;1332:10;:19;1324:38;;;;;;;10730:2:1;1324:38:0;;;10712:21:1;10769:1;10749:18;;;10742:29;10807:8;10787:18;;;10780:36;10833:18;;1324:38:0;10528:329:1;1324:38:0;1684:19:::1;;1706:5;1684:19:::0;;;::::1;::::0;;;;;;:27;;;::::1;::::0;;1622:97::o;1953:173::-;1346:5;;;;1332:10;:19;1324:38;;;;;;;10730:2:1;1324:38:0;;;10712:21:1;10769:1;10749:18;;;10742:29;10807:8;10787:18;;;10780:36;10833:18;;1324:38:0;10528:329:1;1324:38:0;2029:5:::1;:11:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;2051:19:0;;;::::1;::::0;;;;;;;;:26;;;::::1;::::0;;::::1;::::0;;;2093:25;3334:74:1;;;2093:25:0::1;::::0;3307:18:1;2093:25:0::1;;;;;;;1953:173:::0;:::o;9950:234::-;1454:10;1894:4;1918:19;;;;;;;;;;;;;1433:48;;;;;;;7921:2:1;1433:48:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:13;7979:18;;;7972:41;8030:18;;1433:48:0;7719:335:1;1433:48:0;10060:1:::1;10049:7;:12;;:35;;;;;10080:4;10065:11;:19;;10049:35;10041:80;;;::::0;::::1;::::0;;15070:2:1;10041:80:0::1;::::0;::::1;15052:21:1::0;;;15089:18;;;15082:30;15148:34;15128:18;;;15121:62;15200:18;;10041:80:0::1;14868:356:1::0;10041:80:0::1;10165:11;10155:7;10141:11;;:21;;;;:::i;:::-;:35;;;;:::i;:::-;10132:6;:44:::0;-1:-1:-1;;9950:234:0:o;105:238::-;178:12;271:1;268;265;262;254:6;250:2;243:5;238:35;227:46;;304:7;296:39;;;;;;;15431:2:1;296:39:0;;;15413:21:1;15470:2;15450:18;;;15443:30;15509:21;15489:18;;;15482:49;15548:18;;296:39:0;15229:343:1;7546:1047:0;7638:4;7660:10;6335;;:15;;;6268:90;7660:10;7659:11;:32;;;;-1:-1:-1;7674:17:0;;;;;;;:6;:17;;;;;;;;7659:32;7655:210;;;7716:17;;;7736:1;7716:17;;;:9;:17;;;;;;7708:30;;;;;;7771:5;;;7761:15;;;7771:5;;7761:15;7753:77;;;;;;;15779:2:1;7753:77:0;;;15761:21:1;15818:2;15798:18;;;15791:30;15857:34;15837:18;;;15830:62;15928:19;15908:18;;;15901:47;15965:19;;7753:77:0;15577:413:1;7753:77:0;7845:8;6417:12;6404:10;:25;6366:71;7845:8;7879:6;;;;;;;7875:60;;;7894:41;7909:6;7917:9;7928:6;7894:14;:41::i;:::-;7887:48;;;;7875:60;7948:39;7961:6;7969:9;7980:6;7948:12;:39::i;:::-;8002:16;:14;:16::i;:::-;7998:41;;;8020:19;8029:9;8020:8;:19::i;:::-;8052:17;;;;;;;:9;:17;;;;;:27;;8073:6;;8052:17;:27;;8073:6;;8052:27;:::i;:::-;;;;-1:-1:-1;;8146:14:0;;;8090:22;8146:14;;;:6;:14;;;;;;8115:6;;8146:14;;;:35;;-1:-1:-1;8164:17:0;;;;;;;:6;:17;;;;;;;;8146:35;8142:163;;;8215:32;8229:6;8237:9;8215:13;:32::i;:::-;:78;;8287:6;8215:78;;;8250:34;8258:6;8266:9;8277:6;8250:7;:34::i;:::-;8198:95;;8142:163;8453:20;;;;;;;;:9;:20;;;;;;;:38;;;;;;8520:43;8453:20;;8520:43;;;;;;;8477:14;160:25:1;;148:2;133:18;;14:177;8520:43:0;;;;;;;;-1:-1:-1;8581:4:0;;7546:1047;-1:-1:-1;;;;7546:1047:0:o;351:662::-;436:12;516:4;510:11;563:66;544:17;537:93;678:2;674:1;655:17;651:25;644:37;730:6;725:2;706:17;702:26;695:42;929:2;926:1;922:2;903:17;900:1;893:5;886;881:51;844:16;837:24;831:2;813:16;810:24;806:1;802;796:8;793:15;789:46;786:76;764:183;753:194;;;978:7;970:35;;;;;;;16197:2:1;970:35:0;;;16179:21:1;16236:2;16216:18;;;16209:30;16275:17;16255:18;;;16248:45;16310:18;;970:35:0;15995:339:1;8601:416:0;8711:17;;;8694:4;8711:17;;;:9;:17;;;;;:27;;8732:6;;8711:17;8694:4;;8711:27;;8732:6;;8711:27;:::i;:::-;;;;-1:-1:-1;;8889:20:0;;;;;;;:9;:20;;;;;;;:30;;;;;;8948:39;8957:10;;8948:39;;;;8913:6;160:25:1;;148:2;133:18;;14:177;8948:39:0;;;;;;;;-1:-1:-1;9005:4:0;8601:416;;;;;:::o;9402:540::-;9550:6;;9540;:16;;:62;;;-1:-1:-1;9560:14:0;;;;;;;:6;:14;;;;;;;;:42;;;;-1:-1:-1;9578:24:0;;;;;;;:13;:24;;;;;;;;9560:42;9540:87;;;-1:-1:-1;9606:21:0;;;;;;;:13;:21;;;;;;;;9540:87;9532:126;;;;;;;16541:2:1;9532:126:0;;;16523:21:1;16580:2;16560:18;;;16553:30;16619:28;16599:18;;;16592:56;16665:18;;9532:126:0;16339:350:1;9532:126:0;9727:5;;;9714:18;;;9727:5;;9714:18;;;;:47;;-1:-1:-1;9737:24:0;;;;;;;:13;:24;;;;;;;;9736:25;9714:47;:69;;;;-1:-1:-1;9766:17:0;;;;;;;:6;:17;;;;;;;;9765:18;9714:69;9710:225;;;9821:20;;;9800:18;9821:20;;;:9;:20;;;;;;:29;;9844:6;;9821:29;:::i;:::-;9800:50;;9887:10;;9873;:24;;9865:58;;;;;;;16896:2:1;9865:58:0;;;16878:21:1;16935:2;16915:18;;;16908:30;16974:23;16954:18;;;16947:51;17015:18;;9865:58:0;16694:345:1;13139:187:0;13220:10;13188:4;13213:18;;;:6;:18;;;;;;;;13212:19;:30;;;;-1:-1:-1;13236:6:0;;;;;;;13235:7;13212:30;:45;;;;-1:-1:-1;13246:11:0;;;;13212:45;:61;;;;;13272:1;13261:8;;:12;13212:61;:106;;;;-1:-1:-1;;13305:13:0;;13295:4;13277:24;;;;:9;:24;;;;;;:41;;;13139:187::o;13334:1799::-;4201:6;:13;;;;;;;;13423:9:::1;::::0;::::1;::::0;;::::1;13407:25:::0;;::::1;::::0;13403:1617:::1;;13449:23;13517:1;13506:8;;13491:12;;13475:13;;:28;;;;:::i;:::-;:39;;;;:::i;:::-;:43;;;;:::i;:::-;13449:69;;13533:20;13572:15;13556:13;;:31;;;;:::i;:::-;13628:16;::::0;;13642:1:::1;13628:16:::0;;;;;::::1;::::0;;13533:54;;-1:-1:-1;13604:21:0::1;::::0;13628:16;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;13628:16:0::1;13604:40;;13677:4;13659;13664:1;13659:7;;;;;;;;:::i;:::-;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;13707:4:::1;::::0;13697:7;;13707:4;::::1;::::0;13697;;13707;;13697:7;::::1;;;;;:::i;:::-;:14;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;13746:6:::1;::::0;13729:12:::1;::::0;13746:6:::1;13764:9;13951:10;13984:12;14019:1;14043:4;14078;14106:15;13906:234;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13746:409;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;13728:427:0;;-1:-1:-1;14192:21:0::1;::::0;-1:-1:-1;14172:17:0::1;14257:13;14269:1;14192:21:::0;14257:13:::1;:::i;:::-;14228:42:::0;-1:-1:-1;14303:19:0;;14299:620:::1;;14356:6;::::0;::::1;;14374:9;14746:17;::::0;14522:306:::1;::::0;;14616:4:::1;14522:306;::::0;::::1;18212:34:1::0;18262:18;;;18255:34;;;-1:-1:-1;18305:18:1;;;18298:45;;;18359:18;;;18352:45;14746:17:0::1;::::0;;::::1;18413:19:1::0;;;18406:44;14790:15:0::1;18466:19:1::0;;;;18459:35;;;;14522:306:0;;;;;;;;;;18123:19:1;;;;14522:306:0;;::::1;::::0;::::1;::::0;;::::1;;::::0;::::1;::::0;;14356:491;14392:18;;14356:491:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14343:504;;;;;14876:7;14868:35;;;::::0;::::1;::::0;;18707:2:1;14868:35:0::1;::::0;::::1;18689:21:1::0;18746:2;18726:18;;;18719:30;18785:17;18765:18;;;18758:45;18820:18;;14868:35:0::1;18505:339:1::0;14868:35:0::1;14967:17;::::0;14935:73:::1;::::0;14967:17:::1;;14986:21;14935:31;:73::i;:::-;13434:1586;;;;;;13403:1617;15065:18;;15048:13;;:35;:77;;15107:18;;15048:77;;;15086:18;;15048:77;15032:13;:93:::0;-1:-1:-1;4219:6:0;:14;;;;;;13334:1799::o;11090:176::-;11196:19;;;11171:4;11196:19;;;:11;:19;;;;;;;;11195:20;:47;;;;-1:-1:-1;11220:22:0;;;;;;;:11;:22;;;;;;;;11219:23;11195:47;:63;;;;-1:-1:-1;;11246:8:0;;:12;;;11090:176;-1:-1:-1;;11090:176:0:o;11274:526::-;11475:14;;11464:8;;11359:7;;;;11455:17;;:6;:17;:::i;:::-;:34;;;;:::i;:::-;11666:4;11648:24;;;;:9;:24;;;;;;;:37;;;;;;11714:42;11443:46;;-1:-1:-1;11666:4:0;11648:24;11714:42;;;;;;;11443:46;160:25:1;;148:2;133:18;;14:177;11714:42:0;;;;;;;;11774:18;11783:9;11774:6;:18;:::i;196:250:1:-;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:1;420:16;;413:27;196:250::o;451:455::-;600:2;589:9;582:21;563:4;632:6;626:13;675:6;670:2;659:9;655:18;648:34;691:79;763:6;758:2;747:9;743:18;738:2;730:6;726:15;691:79;:::i;:::-;822:2;810:15;827:66;806:88;791:104;;;;897:2;787:113;;451:455;-1:-1:-1;;451:455:1:o;911:154::-;997:42;990:5;986:54;979:5;976:65;966:93;;1055:1;1052;1045:12;966:93;911:154;:::o;1070:315::-;1138:6;1146;1199:2;1187:9;1178:7;1174:23;1170:32;1167:52;;;1215:1;1212;1205:12;1167:52;1254:9;1241:23;1273:31;1298:5;1273:31;:::i;:::-;1323:5;1375:2;1360:18;;;;1347:32;;-1:-1:-1;;;1070:315:1:o;1582:385::-;1668:6;1676;1684;1692;1745:3;1733:9;1724:7;1720:23;1716:33;1713:53;;;1762:1;1759;1752:12;1713:53;-1:-1:-1;;1785:23:1;;;1855:2;1840:18;;1827:32;;-1:-1:-1;1906:2:1;1891:18;;1878:32;;1957:2;1942:18;1929:32;;-1:-1:-1;1582:385:1;-1:-1:-1;1582:385:1:o;1972:484::-;2025:3;2063:5;2057:12;2090:6;2085:3;2078:19;2116:4;2145:2;2140:3;2136:12;2129:19;;2182:2;2175:5;2171:14;2203:1;2213:218;2227:6;2224:1;2221:13;2213:218;;;2292:13;;2307:42;2288:62;2276:75;;2371:12;;;;2406:15;;;;2249:1;2242:9;2213:218;;;-1:-1:-1;2447:3:1;;1972:484;-1:-1:-1;;;;;1972:484:1:o;2461:261::-;2640:2;2629:9;2622:21;2603:4;2660:56;2712:2;2701:9;2697:18;2689:6;2660:56;:::i;2727:456::-;2804:6;2812;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:52;;;2889:1;2886;2879:12;2841:52;2928:9;2915:23;2947:31;2972:5;2947:31;:::i;:::-;2997:5;-1:-1:-1;3054:2:1;3039:18;;3026:32;3067:33;3026:32;3067:33;:::i;:::-;2727:456;;3119:7;;-1:-1:-1;;;3173:2:1;3158:18;;;;3145:32;;2727:456::o;3419:247::-;3478:6;3531:2;3519:9;3510:7;3506:23;3502:32;3499:52;;;3547:1;3544;3537:12;3499:52;3586:9;3573:23;3605:31;3630:5;3605:31;:::i;3860:160::-;3925:20;;3981:13;;3974:21;3964:32;;3954:60;;4010:1;4007;4000:12;3954:60;3860:160;;;:::o;4025:315::-;4090:6;4098;4151:2;4139:9;4130:7;4126:23;4122:32;4119:52;;;4167:1;4164;4157:12;4119:52;4206:9;4193:23;4225:31;4250:5;4225:31;:::i;:::-;4275:5;-1:-1:-1;4299:35:1;4330:2;4315:18;;4299:35;:::i;:::-;4289:45;;4025:315;;;;;:::o;4345:388::-;4413:6;4421;4474:2;4462:9;4453:7;4449:23;4445:32;4442:52;;;4490:1;4487;4480:12;4442:52;4529:9;4516:23;4548:31;4573:5;4548:31;:::i;:::-;4598:5;-1:-1:-1;4655:2:1;4640:18;;4627:32;4668:33;4627:32;4668:33;:::i;:::-;4720:7;4710:17;;;4345:388;;;;;:::o;4738:180::-;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;-1:-1:-1;4889:23:1;;4738:180;-1:-1:-1;4738:180:1:o;4923:248::-;4991:6;4999;5052:2;5040:9;5031:7;5027:23;5023:32;5020:52;;;5068:1;5065;5058:12;5020:52;-1:-1:-1;;5091:23:1;;;5161:2;5146:18;;;5133:32;;-1:-1:-1;4923:248:1:o;5176:184::-;5228:77;5225:1;5218:88;5325:4;5322:1;5315:15;5349:4;5346:1;5339:15;5365:778;5408:5;5461:3;5454:4;5446:6;5442:17;5438:27;5428:55;;5479:1;5476;5469:12;5428:55;5515:6;5502:20;5541:18;5578:2;5574;5571:10;5568:36;;;5584:18;;:::i;:::-;5718:2;5712:9;5780:4;5772:13;;5623:66;5768:22;;;5792:2;5764:31;5760:40;5748:53;;;5816:18;;;5836:22;;;5813:46;5810:72;;;5862:18;;:::i;:::-;5902:10;5898:2;5891:22;5937:2;5929:6;5922:18;5983:3;5976:4;5971:2;5963:6;5959:15;5955:26;5952:35;5949:55;;;6000:1;5997;5990:12;5949:55;6064:2;6057:4;6049:6;6045:17;6038:4;6030:6;6026:17;6013:54;6111:1;6104:4;6099:2;6091:6;6087:15;6083:26;6076:37;6131:6;6122:15;;;;;;5365:778;;;;:::o;6148:543::-;6236:6;6244;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6353:9;6340:23;6382:18;6423:2;6415:6;6412:14;6409:34;;;6439:1;6436;6429:12;6409:34;6462:50;6504:7;6495:6;6484:9;6480:22;6462:50;:::i;:::-;6452:60;;6565:2;6554:9;6550:18;6537:32;6521:48;;6594:2;6584:8;6581:16;6578:36;;;6610:1;6607;6600:12;6578:36;;6633:52;6677:7;6666:8;6655:9;6651:24;6633:52;:::i;:::-;6623:62;;;6148:543;;;;;:::o;6696:316::-;6770:6;6778;6786;6839:2;6827:9;6818:7;6814:23;6810:32;6807:52;;;6855:1;6852;6845:12;6807:52;6878:26;6894:9;6878:26;:::i;:::-;6868:36;6951:2;6936:18;;6923:32;;-1:-1:-1;7002:2:1;6987:18;;;6974:32;;6696:316;-1:-1:-1;;;6696:316:1:o;7277:437::-;7356:1;7352:12;;;;7399;;;7420:61;;7474:4;7466:6;7462:17;7452:27;;7420:61;7527:2;7519:6;7516:14;7496:18;7493:38;7490:218;;7564:77;7561:1;7554:88;7665:4;7662:1;7655:15;7693:4;7690:1;7683:15;7490:218;;7277:437;;;:::o;8059:184::-;8111:77;8108:1;8101:88;8208:4;8205:1;8198:15;8232:4;8229:1;8222:15;8248:125;8313:9;;;8334:10;;;8331:36;;;8347:18;;:::i;8378:274::-;8418:1;8444;8434:189;;8479:77;8476:1;8469:88;8580:4;8577:1;8570:15;8608:4;8605:1;8598:15;8434:189;-1:-1:-1;8637:9:1;;8378:274::o;8657:128::-;8724:9;;;8745:11;;;8742:37;;;8759:18;;:::i;9122:287::-;9251:3;9289:6;9283:13;9305:66;9364:6;9359:3;9352:4;9344:6;9340:17;9305:66;:::i;:::-;9387:16;;;;;9122:287;-1:-1:-1;;9122:287:1:o;9414:184::-;9484:6;9537:2;9525:9;9516:7;9512:23;9508:32;9505:52;;;9553:1;9550;9543:12;9505:52;-1:-1:-1;9576:16:1;;9414:184;-1:-1:-1;9414:184:1:o;10272:251::-;10342:6;10395:2;10383:9;10374:7;10370:23;10366:32;10363:52;;;10411:1;10408;10401:12;10363:52;10443:9;10437:16;10462:31;10487:5;10462:31;:::i;11267:168::-;11340:9;;;11371;;11388:15;;;11382:22;;11368:37;11358:71;;11409:18;;:::i;11566:545::-;11668:2;11663:3;11660:11;11657:448;;;11704:1;11729:5;11725:2;11718:17;11774:4;11770:2;11760:19;11844:2;11832:10;11828:19;11825:1;11821:27;11815:4;11811:38;11880:4;11868:10;11865:20;11862:47;;;-1:-1:-1;11903:4:1;11862:47;11958:2;11953:3;11949:12;11946:1;11942:20;11936:4;11932:31;11922:41;;12013:82;12031:2;12024:5;12021:13;12013:82;;;12076:17;;;12057:1;12046:13;12013:82;;;12017:3;;;11566:545;;;:::o;12347:1471::-;12473:3;12467:10;12500:18;12492:6;12489:30;12486:56;;;12522:18;;:::i;:::-;12551:97;12641:6;12601:38;12633:4;12627:11;12601:38;:::i;:::-;12595:4;12551:97;:::i;:::-;12703:4;;12767:2;12756:14;;12784:1;12779:782;;;;13605:1;13622:6;13619:89;;;-1:-1:-1;13674:19:1;;;13668:26;13619:89;12253:66;12244:1;12240:11;;;12236:84;12232:89;12222:100;12328:1;12324:11;;;12219:117;13721:81;;12749:1063;;12779:782;11513:1;11506:14;;;11550:4;11537:18;;12827:66;12815:79;;;12992:236;13006:7;13003:1;13000:14;12992:236;;;13095:19;;;13089:26;13074:42;;13187:27;;;;13155:1;13143:14;;;;13022:19;;12992:236;;;12996:3;13256:6;13247:7;13244:19;13241:261;;;13317:19;;;13311:26;13418:66;13400:1;13396:14;;;13412:3;13392:24;13388:97;13384:102;13369:118;13354:134;;13241:261;-1:-1:-1;;;;;13548:1:1;13532:14;;;13528:22;13515:36;;-1:-1:-1;12347:1471:1:o;17044:184::-;17096:77;17093:1;17086:88;17193:4;17190:1;17183:15;17217:4;17214:1;17207:15;17233:614;17530:6;17519:9;17512:25;17585:4;17577:6;17573:17;17568:2;17557:9;17553:18;17546:45;17627:3;17622:2;17611:9;17607:18;17600:31;17493:4;17648:57;17700:3;17689:9;17685:19;17677:6;17648:57;:::i;:::-;17753:42;17741:55;;;;17736:2;17721:18;;17714:83;-1:-1:-1;17828:3:1;17813:19;17806:35;17640:65;17233:614;-1:-1:-1;;;17233:614:1:o

Swarm Source

ipfs://b35973cef39d728fed90bc14e6d4a33b994bfe4219c0ee416c1c590361ece794
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.