ETH Price: $3,108.39 (+1.21%)
Gas: 3 Gwei

Token

CaptainPepe (CAPE)
 

Overview

Max Total Supply

420,690,690,690,690 CAPE

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.397920954297529239 CAPE

Value
$0.00
0x876d6b010438be335bacc34e446d3e98f94f35da
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:
CaptainPepe

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : CaptainPepe.sol
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/*
Twitter: Twitter.com/CaptainPepeCoin

Web: captainpepe.tech

Tg: https://t.me/CaptainPepe_Entry

*/
pragma solidity =0.8.15;

interface IPair {
    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function token0() external view returns (address);
}

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

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract CaptainPepe is ERC20, Ownable {

    IRouter public router;
    address public pair;
    address public devWallet;
    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;
    uint256 public totalBurned;
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    struct Taxes {
        uint256 dev;
        uint256 burn;
    }
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping;
    bool public swapEnabled = true;
    bool public tradingEnabled;

    //taxs are 4%
    Taxes public buyTaxes = Taxes(20, 20);
    Taxes public sellTaxes = Taxes(20, 20);
    uint256 public totalBuyTax = 40;
    uint256 public totalSellTax = 40;

    constructor(address _dev) ERC20("CaptainPepe", "CAPE") {
        setSwapTokensAtAmount(2103453453453); //
        updateMaxWalletAmount(8413813813813);
        setMaxBuyAndSell(8413813813813, 8413813813813);
        setDevWallet(_dev);
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromMaxWallet(_pair, true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0), true);
        excludeFromMaxWallet(address(_router), true);
        _setAutomatedMarketMakerPair(_pair, true);

        _mint(owner(), 420690690690690 * (10**18)); //420,690,690,690,690
    }

    receive() external payable {}

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            " Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setDevWallet(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(
            newNum > 4206906906906,
            "Cannot set maxWallet lower than 1%"
        );
        maxWallet = newNum * (10**18);
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 4206906906906, "Cannot set maxbuy lower than 1% ");
        require(
            maxSell >= 4206906906906,
            "Cannot set maxsell lower than 1% "
        );
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setBuyTaxes(uint256 _dev, uint256 _burn) external onlyOwner {
        require(_dev + _burn <= 200, "Fee must be <= 20%");
        buyTaxes = Taxes(_dev, _burn);
        totalBuyTax = _dev + _burn;
    }

    function setSellTaxes(uint256 _dev, uint256 _burn) external onlyOwner {
        require(_dev + _burn <= 200, "Fee must be <= 20%");
        sellTaxes = Taxes(_dev, _burn);
        totalSellTax = _dev + _burn;
    }

    /// @notice Update the threshold to swap tokens for liquidity,
    ///   treasury and dividends.
    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(
            amount < 42069069069069,
            "Cannot set swap-tokens higher then than 10% "
        );
        swapTokensAtAmount = amount * 10**18;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueTokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to treasuryWallet
    /// @dev It will send all ETH to treasuryWallet
    function forceSendTodev() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send Ether to dev wallet");
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IRouter(newRouter);
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

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

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

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 1000;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 1000;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 totalTax = (totalSellTax);

        uint256 toBurn = (tokens * sellTaxes.burn) / totalTax;

        if (toBurn > 0) {
            burn(toBurn);
        }

        uint256 toSwap = tokens - toBurn;

        swapTokensForETH(toSwap);

        uint256 contractrewardbalance = address(this).balance;

        uint256 devAmt = contractrewardbalance;
        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

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

    function burn(uint256 amountTokens) private {
        address sender = address(this);
        totalBurned = totalBurned + amountTokens;
        _burn(sender, amountTokens);
    }

    function burnpublic(uint256 amountTokens) public {
        address sender = msg.sender;
        require(
            balanceOf(sender) >= amountTokens,
            "ERC20: Burn Amount exceeds account balance"
        );
        require(sender != address(0), "ERC20: Invalid sender address");
        require(amountTokens > 0, "ERC20: Enter some amount to burn");
        totalBurned = totalBurned + amountTokens;
        uint256 AmountToBurn = amountTokens;
        _burn(sender, AmountToBurn);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"burnpublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSendTodev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001601160016101000a81548160ff02191690831515021790555060405180604001604052806014815260200160148152506012600082015181600001556020820151816001015550506040518060400160405280601481526020016014815250601460008201518160000155602082015181600101555050602860165560286017553480156200009457600080fd5b5060405162005e2d38038062005e2d8339818101604052810190620000ba919062000d1b565b6040518060400160405280600b81526020017f4361707461696e506570650000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4341504500000000000000000000000000000000000000000000000000000000815250816003908162000137919062000fc7565b50806004908162000149919062000fc7565b5050506200016c620001606200049460201b60201c565b6200049c60201b60201c565b620001836501e9bf988c8d6200056260201b60201c565b6200019a6507a6fe623235620005dc60201b60201c565b620001b26507a6fe623235806200065660201b60201c565b620001c3816200073a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000250919062000d1b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002de919062000d1b565b6040518363ffffffff1660e01b8152600401620002fd929190620010bf565b6020604051808303816000875af11580156200031d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000343919062000d1b565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003e9620003db6200078e60201b60201c565b6001620007b860201b60201c565b620003fc306001620007b860201b60201c565b6200040f8160016200090860201b60201c565b620004223060016200090860201b60201c565b62000436600060016200090860201b60201c565b620004498260016200090860201b60201c565b6200045c8160016200097360201b60201c565b6200048b620004706200078e60201b60201c565b6d14bddcef388bac77208178c8000062000aa960201b60201c565b505050620016a0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200057262000c1660201b60201c565b652642f7eafb0d8110620005bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b49062001173565b60405180910390fd5b670de0b6b3a764000081620005d39190620011c4565b60098190555050565b620005ec62000c1660201b60201c565b6503d37f31191a811162000637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062e906200129b565b60405180910390fd5b670de0b6b3a7640000816200064d9190620011c4565b600c8190555050565b6200066662000c1660201b60201c565b6503d37f31191a821015620006b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a9906200130d565b60405180910390fd5b6503d37f31191a811015620006fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f590620013a5565b60405180910390fd5b670de0b6b3a764000082620007149190620011c4565b600a81905550670de0b6b3a764000081620007309190620011c4565b600b819055505050565b6200074a62000c1660201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007c862000c1660201b60201c565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000854906200143d565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008fc91906200147c565b60405180910390a25050565b6200091862000c1660201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000a08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ff906200150f565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b129062001581565b60405180910390fd5b62000b2f6000838362000ca760201b60201c565b806002600082825462000b439190620015a3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bf6919062001611565b60405180910390a362000c126000838362000cac60201b60201c565b5050565b62000c266200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c4c6200078e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ca5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9c906200167e565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ce38262000cb6565b9050919050565b62000cf58162000cd6565b811462000d0157600080fd5b50565b60008151905062000d158162000cea565b92915050565b60006020828403121562000d345762000d3362000cb1565b5b600062000d448482850162000d04565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dcf57607f821691505b60208210810362000de55762000de462000d87565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e10565b62000e5b868362000e10565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ea862000ea262000e9c8462000e73565b62000e7d565b62000e73565b9050919050565b6000819050919050565b62000ec48362000e87565b62000edc62000ed38262000eaf565b84845462000e1d565b825550505050565b600090565b62000ef362000ee4565b62000f0081848462000eb9565b505050565b5b8181101562000f285762000f1c60008262000ee9565b60018101905062000f06565b5050565b601f82111562000f775762000f418162000deb565b62000f4c8462000e00565b8101602085101562000f5c578190505b62000f7462000f6b8562000e00565b83018262000f05565b50505b505050565b600082821c905092915050565b600062000f9c6000198460080262000f7c565b1980831691505092915050565b600062000fb7838362000f89565b9150826002028217905092915050565b62000fd28262000d4d565b67ffffffffffffffff81111562000fee5762000fed62000d58565b5b62000ffa825462000db6565b6200100782828562000f2c565b600060209050601f8311600181146200103f57600084156200102a578287015190505b62001036858262000fa9565b865550620010a6565b601f1984166200104f8662000deb565b60005b82811015620010795784890151825560018201915060208501945060208101905062001052565b8683101562001099578489015162001095601f89168262000f89565b8355505b6001600288020188555050505b505050505050565b620010b98162000cd6565b82525050565b6000604082019050620010d66000830185620010ae565b620010e56020830184620010ae565b9392505050565b600082825260208201905092915050565b7f43616e6e6f742073657420737761702d746f6b656e732068696768657220746860008201527f656e207468616e20313025200000000000000000000000000000000000000000602082015250565b60006200115b602c83620010ec565b91506200116882620010fd565b604082019050919050565b600060208201905081810360008301526200118e816200114c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011d18262000e73565b9150620011de8362000e73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200121a576200121962001195565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001283602283620010ec565b9150620012908262001225565b604082019050919050565b60006020820190508181036000830152620012b68162001274565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000620012f5602083620010ec565b91506200130282620012bd565b602082019050919050565b600060208201905081810360008301526200132881620012e6565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20312560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b60006200138d602183620010ec565b91506200139a826200132f565b604082019050919050565b60006020820190508181036000830152620013c0816200137e565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b600062001425602b83620010ec565b91506200143282620013c7565b604082019050919050565b60006020820190508181036000830152620014588162001416565b9050919050565b60008115159050919050565b62001476816200145f565b82525050565b60006020820190506200149360008301846200146b565b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000620014f7603883620010ec565b9150620015048262001499565b604082019050919050565b600060208201905081810360008301526200152a81620014e8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001569601f83620010ec565b9150620015768262001531565b602082019050919050565b600060208201905081810360008301526200159c816200155a565b9050919050565b6000620015b08262000e73565b9150620015bd8362000e73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015f557620015f462001195565b5b828201905092915050565b6200160b8162000e73565b82525050565b600060208201905062001628600083018462001600565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001666602083620010ec565b915062001673826200162e565b602082019050919050565b60006020820190508181036000830152620016998162001657565b9050919050565b61477d80620016b06000396000f3fe6080604052600436106102805760003560e01c806395d89b411161014f578063c18bc195116100c1578063e01af92c1161007a578063e01af92c14610991578063e2f45605146109ba578063f2fde38b146109e5578063f66895a314610a0e578063f887ea4014610a3a578063f8b45b0514610a6557610287565b8063c18bc19514610885578063c492f046146108ae578063c851cc32146108d7578063d2fcc00114610900578063d89135cd14610929578063dd62ed3e1461095457610287565b8063a9059cbb11610113578063a9059cbb14610779578063aa35822c146107b6578063ad776649146107df578063afa4f3b2146107f6578063b62496f51461081f578063c02466681461085c57610287565b806395d89b41146106945780639a7a23d6146106bf578063a11a1682146106e8578063a457c2d714610711578063a8aa1b311461074e57610287565b80634ada218b116101f357806379b447bd116101ac57806379b447bd14610595578063864701a5146105be57806388e765ff146105ea5780638da5cb5b146106155780638e55aad6146106405780638ea5220f1461066957610287565b80634ada218b146104835780634fbee193146104ae57806366d602ae146104eb5780636ddd17131461051657806370a0823114610541578063715018a61461057e57610287565b80631bff7898116102455780631bff78981461035f5780631f53ac021461038a57806323b872dd146103b3578063313ce567146103f0578063395093511461041b57806346469afb1461045857610287565b8062ae3bf81461028c57806306fdde03146102b5578063095ea7b3146102e05780630bd05b691461031d57806318160ddd1461033457610287565b3661028757005b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190612ea5565b610a90565b005b3480156102c157600080fd5b506102ca610b9a565b6040516102d79190612f6b565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612fc3565b610c2c565b604051610314919061301e565b60405180910390f35b34801561032957600080fd5b50610332610c4f565b005b34801561034057600080fd5b50610349610cc4565b6040516103569190613048565b60405180910390f35b34801561036b57600080fd5b50610374610cce565b6040516103819190613048565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ea5565b610cd4565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613063565b610d20565b6040516103e7919061301e565b60405180910390f35b3480156103fc57600080fd5b50610405610d4f565b60405161041291906130d2565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612fc3565b610d58565b60405161044f919061301e565b60405180910390f35b34801561046457600080fd5b5061046d610d8f565b60405161047a9190613048565b60405180910390f35b34801561048f57600080fd5b50610498610d95565b6040516104a5919061301e565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612ea5565b610da8565b6040516104e2919061301e565b60405180910390f35b3480156104f757600080fd5b50610500610dfe565b60405161050d9190613048565b60405180910390f35b34801561052257600080fd5b5061052b610e04565b604051610538919061301e565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612ea5565b610e17565b6040516105759190613048565b60405180910390f35b34801561058a57600080fd5b50610593610e5f565b005b3480156105a157600080fd5b506105bc60048036038101906105b791906130ed565b610e73565b005b3480156105ca57600080fd5b506105d3610f45565b6040516105e192919061312d565b60405180910390f35b3480156105f657600080fd5b506105ff610f57565b60405161060c9190613048565b60405180910390f35b34801561062157600080fd5b5061062a610f5d565b6040516106379190613165565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613180565b610f87565b005b34801561067557600080fd5b5061067e6110b1565b60405161068b9190613165565b60405180910390f35b3480156106a057600080fd5b506106a96110d7565b6040516106b69190612f6b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906131d9565b611169565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130ed565b61117f565b005b34801561071d57600080fd5b5061073860048036038101906107339190612fc3565b61121a565b604051610745919061301e565b60405180910390f35b34801561075a57600080fd5b50610763611291565b6040516107709190613165565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612fc3565b6112b7565b6040516107ad919061301e565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d891906130ed565b6112da565b005b3480156107eb57600080fd5b506107f4611375565b005b34801561080257600080fd5b5061081d60048036038101906108189190613180565b61144e565b005b34801561082b57600080fd5b5061084660048036038101906108419190612ea5565b6114bb565b604051610853919061301e565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906131d9565b6114db565b005b34801561089157600080fd5b506108ac60048036038101906108a79190613180565b61161e565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061327e565b61168b565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190612ea5565b611773565b005b34801561090c57600080fd5b50610927600480360381019061092291906131d9565b6117bf565b005b34801561093557600080fd5b5061093e611822565b60405161094b9190613048565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906132de565b611828565b6040516109889190613048565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061331e565b6118af565b005b3480156109c657600080fd5b506109cf6118d4565b6040516109dc9190613048565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a079190612ea5565b6118da565b005b348015610a1a57600080fd5b50610a2361195d565b604051610a3192919061312d565b60405180910390f35b348015610a4657600080fd5b50610a4f61196f565b604051610a5c91906133aa565b60405180910390f35b348015610a7157600080fd5b50610a7a611995565b604051610a879190613048565b60405180910390f35b610a9861199b565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610abc610f5d565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610af59190613165565b602060405180830381865afa158015610b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3691906133da565b6040518363ffffffff1660e01b8152600401610b53929190613407565b6020604051808303816000875af1158015610b72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b969190613445565b5050565b606060038054610ba9906134a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd5906134a1565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b600080610c37611a19565b9050610c44818585611a21565b600191505092915050565b610c5761199b565b601160029054906101000a900460ff1615610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061351e565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b6000600254905090565b60175481565b610cdc61199b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d2b611a19565b9050610d38858285611bea565b610d43858585611c76565b60019150509392505050565b60006012905090565b600080610d63611a19565b9050610d84818585610d758589611828565b610d7f919061356d565b611a21565b600191505092915050565b60165481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6761199b565b610e716000612485565b565b610e7b61199b565b6503d37f31191a821015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061360f565b60405180910390fd5b6503d37f31191a811015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906136a1565b60405180910390fd5b670de0b6b3a764000082610f2191906136c1565b600a81905550670de0b6b3a764000081610f3b91906136c1565b600b819055505050565b60128060000154908060010154905082565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905081610f9682610e17565b1015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce9061378d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906137f9565b60405180910390fd5b60008211611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090613865565b60405180910390fd5b81600d54611097919061356d565b600d8190555060008290506110ac828261254b565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110e6906134a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906134a1565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b61117161199b565b61117b8282612718565b5050565b61118761199b565b60c88183611195919061356d565b11156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906138d1565b60405180910390fd5b604051806040016040528083815260200182815250601460008201518160000155602082015181600101559050508082611210919061356d565b6017819055505050565b600080611225611a19565b905060006112338286611828565b905083811015611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613963565b60405180910390fd5b6112858286868403611a21565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112c2611a19565b90506112cf818585611c76565b600191505092915050565b6112e261199b565b60c881836112f0919061356d565b1115611331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611328906138d1565b60405180910390fd5b60405180604001604052808381526020018281525060126000820151816000015560208201518160010155905050808261136b919061356d565b6016819055505050565b61137d61199b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113c5906139b4565b60006040518083038185875af1925050503d8060008114611402576040519150601f19603f3d011682016040523d82523d6000602084013e611407565b606091505b505090508061144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613a3b565b60405180910390fd5b50565b61145661199b565b652642f7eafb0d811061149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613acd565b60405180910390fd5b670de0b6b3a7640000816114b291906136c1565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6114e361199b565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613b5f565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611612919061301e565b60405180910390a25050565b61162661199b565b6503d37f31191a811161166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613bf1565b60405180910390fd5b670de0b6b3a76400008161168291906136c1565b600c8190555050565b61169361199b565b60005b838390508110156117325781600e60008686858181106116b9576116b8613c11565b5b90506020020160208101906116ce9190612ea5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061172a90613c40565b915050611696565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161176693929190613d4b565b60405180910390a1505050565b61177b61199b565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117c761199b565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118b761199b565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b6118e261199b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194890613def565b60405180910390fd5b61195a81612485565b50565b60148060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6119a3611a19565b73ffffffffffffffffffffffffffffffffffffffff166119c1610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90613e5b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613eed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613f7f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bdd9190613048565b60405180910390a3505050565b6000611bf68484611828565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c705781811015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990613feb565b60405180910390fd5b611c6f8484848403611a21565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc9061407d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061410f565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611df85750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e115750601160009054906101000a900460ff16155b1561204557601160029054906101000a900460ff16611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061417b565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f0157600b54811115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906141e7565b60405180910390fd5b611f9a565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f9957600a54811115611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614253565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661204457600c54611ff783610e17565b82612002919061356d565b1115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906142bf565b60405180910390fd5b5b5b6000810361205e576120598383600061284b565b612480565b600061206930610e17565b90506000600954821015905080801561208f5750601160009054906101000a900460ff16155b80156120a75750601160019054906101000a900460ff165b80156120fc5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156121525750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121a85750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121fb576001601160006101000a81548160ff021916908315150217905550600060175411156121df576121de600954612ac1565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122b15750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122bb57600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561235f5750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236957600090505b8015612471576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123e5576103e8601754866123d491906136c1565b6123de919061430e565b9050612456565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612455576103e86016548661244891906136c1565b612452919061430e565b90505b5b8085612462919061433f565b945061246f87308361284b565b505b61247c86868661284b565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b1906143e5565b60405180910390fd5b6125c682600083612bc9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614477565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126ff9190613048565b60405180910390a361271383600084612bce565b505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614509565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b19061407d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129209061410f565b60405180910390fd5b612934838383612bc9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b19061459b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aa89190613048565b60405180910390a3612abb848484612bce565b50505050565b6000601754905060008160146001015484612adc91906136c1565b612ae6919061430e565b90506000811115612afb57612afa81612bd3565b5b60008184612b09919061433f565b9050612b1481612bfa565b600047905060008190506000811115612bc1576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612b6f906139b4565b60006040518083038185875af1925050503d8060008114612bac576040519150601f19603f3d011682016040523d82523d6000602084013e612bb1565b606091505b5050905080612bbf57600080fd5b505b505050505050565b505050565b505050565b600030905081600d54612be6919061356d565b600d81905550612bf6818361254b565b5050565b6000600267ffffffffffffffff811115612c1757612c166145bb565b5b604051908082528060200260200182016040528015612c455781602001602082028036833780820191505090505b5090503081600081518110612c5d57612c5c613c11565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2891906145ff565b81600181518110612d3c57612d3b613c11565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612da330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a21565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e079594939291906146ed565b600060405180830381600087803b158015612e2157600080fd5b505af1158015612e35573d6000803e3d6000fd5b505050505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7282612e47565b9050919050565b612e8281612e67565b8114612e8d57600080fd5b50565b600081359050612e9f81612e79565b92915050565b600060208284031215612ebb57612eba612e3d565b5b6000612ec984828501612e90565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3d82612ed2565b612f478185612edd565b9350612f57818560208601612eee565b612f6081612f21565b840191505092915050565b60006020820190508181036000830152612f858184612f32565b905092915050565b6000819050919050565b612fa081612f8d565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b60008060408385031215612fda57612fd9612e3d565b5b6000612fe885828601612e90565b9250506020612ff985828601612fae565b9150509250929050565b60008115159050919050565b61301881613003565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281612f8d565b82525050565b600060208201905061305d6000830184613039565b92915050565b60008060006060848603121561307c5761307b612e3d565b5b600061308a86828701612e90565b935050602061309b86828701612e90565b92505060406130ac86828701612fae565b9150509250925092565b600060ff82169050919050565b6130cc816130b6565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6000806040838503121561310457613103612e3d565b5b600061311285828601612fae565b925050602061312385828601612fae565b9150509250929050565b60006040820190506131426000830185613039565b61314f6020830184613039565b9392505050565b61315f81612e67565b82525050565b600060208201905061317a6000830184613156565b92915050565b60006020828403121561319657613195612e3d565b5b60006131a484828501612fae565b91505092915050565b6131b681613003565b81146131c157600080fd5b50565b6000813590506131d3816131ad565b92915050565b600080604083850312156131f0576131ef612e3d565b5b60006131fe85828601612e90565b925050602061320f858286016131c4565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261323e5761323d613219565b5b8235905067ffffffffffffffff81111561325b5761325a61321e565b5b60208301915083602082028301111561327757613276613223565b5b9250929050565b60008060006040848603121561329757613296612e3d565b5b600084013567ffffffffffffffff8111156132b5576132b4612e42565b5b6132c186828701613228565b935093505060206132d4868287016131c4565b9150509250925092565b600080604083850312156132f5576132f4612e3d565b5b600061330385828601612e90565b925050602061331485828601612e90565b9150509250929050565b60006020828403121561333457613333612e3d565b5b6000613342848285016131c4565b91505092915050565b6000819050919050565b600061337061336b61336684612e47565b61334b565b612e47565b9050919050565b600061338282613355565b9050919050565b600061339482613377565b9050919050565b6133a481613389565b82525050565b60006020820190506133bf600083018461339b565b92915050565b6000815190506133d481612f97565b92915050565b6000602082840312156133f0576133ef612e3d565b5b60006133fe848285016133c5565b91505092915050565b600060408201905061341c6000830185613156565b6134296020830184613039565b9392505050565b60008151905061343f816131ad565b92915050565b60006020828403121561345b5761345a612e3d565b5b600061346984828501613430565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b957607f821691505b6020821081036134cc576134cb613472565b5b50919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000613508601783612edd565b9150613513826134d2565b602082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061357882612f8d565b915061358383612f8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b8576135b761353e565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006135f9602083612edd565b9150613604826135c3565b602082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20312560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b600061368b602183612edd565b91506136968261362f565b604082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b60006136cc82612f8d565b91506136d783612f8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137105761370f61353e565b5b828202905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000613777602a83612edd565b91506137828261371b565b604082019050919050565b600060208201905081810360008301526137a68161376a565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b60006137e3601d83612edd565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b600061384f602083612edd565b915061385a82613819565b602082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006138bb601283612edd565b91506138c682613885565b602082019050919050565b600060208201905081810360008301526138ea816138ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061394d602583612edd565b9150613958826138f1565b604082019050919050565b6000602082019050818103600083015261397c81613940565b9050919050565b600081905092915050565b50565b600061399e600083613983565b91506139a98261398e565b600082019050919050565b60006139bf82613991565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a25602283612edd565b9150613a30826139c9565b604082019050919050565b60006020820190508181036000830152613a5481613a18565b9050919050565b7f43616e6e6f742073657420737761702d746f6b656e732068696768657220746860008201527f656e207468616e20313025200000000000000000000000000000000000000000602082015250565b6000613ab7602c83612edd565b9150613ac282613a5b565b604082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613b49602b83612edd565b9150613b5482613aed565b604082019050919050565b60006020820190508181036000830152613b7881613b3c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bdb602283612edd565b9150613be682613b7f565b604082019050919050565b60006020820190508181036000830152613c0a81613bce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c4b82612f8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7d57613c7c61353e565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b613cac81612e67565b82525050565b6000613cbe8383613ca3565b60208301905092915050565b6000613cd96020840184612e90565b905092915050565b6000602082019050919050565b6000613cfa8385613c88565b9350613d0582613c99565b8060005b85811015613d3e57613d1b8284613cca565b613d258882613cb2565b9750613d3083613ce1565b925050600181019050613d09565b5085925050509392505050565b60006040820190508181036000830152613d66818587613cee565b9050613d75602083018461300f565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dd9602683612edd565b9150613de482613d7d565b604082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e45602083612edd565b9150613e5082613e0f565b602082019050919050565b60006020820190508181036000830152613e7481613e38565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ed7602483612edd565b9150613ee282613e7b565b604082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f69602283612edd565b9150613f7482613f0d565b604082019050919050565b60006020820190508181036000830152613f9881613f5c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613fd5601d83612edd565b9150613fe082613f9f565b602082019050919050565b6000602082019050818103600083015261400481613fc8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614067602583612edd565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140f9602383612edd565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614165601283612edd565b91506141708261412f565b602082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b60006141d1601f83612edd565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b600061423d601e83612edd565b915061424882614207565b602082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b60006142a9601b83612edd565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061431982612f8d565b915061432483612f8d565b925082614334576143336142df565b5b828204905092915050565b600061434a82612f8d565b915061435583612f8d565b9250828210156143685761436761353e565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006143cf602183612edd565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614461602283612edd565b915061446c82614405565b604082019050919050565b6000602082019050818103600083015261449081614454565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b60006144f3603883612edd565b91506144fe82614497565b604082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614585602683612edd565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506145f981612e79565b92915050565b60006020828403121561461557614614612e3d565b5b6000614623848285016145ea565b91505092915050565b6000819050919050565b600061465161464c6146478461462c565b61334b565b612f8d565b9050919050565b61466181614636565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061469a82614667565b6146a48185613c88565b93506146af83614672565b8060005b838110156146e05781516146c78882613cb2565b97506146d283614682565b9250506001810190506146b3565b5085935050505092915050565b600060a0820190506147026000830188613039565b61470f6020830187614658565b8181036040830152614721818661468f565b90506147306060830185613156565b61473d6080830184613039565b969550505050505056fea26469706673582212206c93f97f2db062d11a21d389d1a4ddd991561d684458ff38d7c2397bbd08f62364736f6c634300080f00330000000000000000000000004dbf9de8e094cd6eb47ce72a18ee24dcef3ab162

Deployed Bytecode

0x6080604052600436106102805760003560e01c806395d89b411161014f578063c18bc195116100c1578063e01af92c1161007a578063e01af92c14610991578063e2f45605146109ba578063f2fde38b146109e5578063f66895a314610a0e578063f887ea4014610a3a578063f8b45b0514610a6557610287565b8063c18bc19514610885578063c492f046146108ae578063c851cc32146108d7578063d2fcc00114610900578063d89135cd14610929578063dd62ed3e1461095457610287565b8063a9059cbb11610113578063a9059cbb14610779578063aa35822c146107b6578063ad776649146107df578063afa4f3b2146107f6578063b62496f51461081f578063c02466681461085c57610287565b806395d89b41146106945780639a7a23d6146106bf578063a11a1682146106e8578063a457c2d714610711578063a8aa1b311461074e57610287565b80634ada218b116101f357806379b447bd116101ac57806379b447bd14610595578063864701a5146105be57806388e765ff146105ea5780638da5cb5b146106155780638e55aad6146106405780638ea5220f1461066957610287565b80634ada218b146104835780634fbee193146104ae57806366d602ae146104eb5780636ddd17131461051657806370a0823114610541578063715018a61461057e57610287565b80631bff7898116102455780631bff78981461035f5780631f53ac021461038a57806323b872dd146103b3578063313ce567146103f0578063395093511461041b57806346469afb1461045857610287565b8062ae3bf81461028c57806306fdde03146102b5578063095ea7b3146102e05780630bd05b691461031d57806318160ddd1461033457610287565b3661028757005b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190612ea5565b610a90565b005b3480156102c157600080fd5b506102ca610b9a565b6040516102d79190612f6b565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612fc3565b610c2c565b604051610314919061301e565b60405180910390f35b34801561032957600080fd5b50610332610c4f565b005b34801561034057600080fd5b50610349610cc4565b6040516103569190613048565b60405180910390f35b34801561036b57600080fd5b50610374610cce565b6040516103819190613048565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ea5565b610cd4565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613063565b610d20565b6040516103e7919061301e565b60405180910390f35b3480156103fc57600080fd5b50610405610d4f565b60405161041291906130d2565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612fc3565b610d58565b60405161044f919061301e565b60405180910390f35b34801561046457600080fd5b5061046d610d8f565b60405161047a9190613048565b60405180910390f35b34801561048f57600080fd5b50610498610d95565b6040516104a5919061301e565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612ea5565b610da8565b6040516104e2919061301e565b60405180910390f35b3480156104f757600080fd5b50610500610dfe565b60405161050d9190613048565b60405180910390f35b34801561052257600080fd5b5061052b610e04565b604051610538919061301e565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612ea5565b610e17565b6040516105759190613048565b60405180910390f35b34801561058a57600080fd5b50610593610e5f565b005b3480156105a157600080fd5b506105bc60048036038101906105b791906130ed565b610e73565b005b3480156105ca57600080fd5b506105d3610f45565b6040516105e192919061312d565b60405180910390f35b3480156105f657600080fd5b506105ff610f57565b60405161060c9190613048565b60405180910390f35b34801561062157600080fd5b5061062a610f5d565b6040516106379190613165565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613180565b610f87565b005b34801561067557600080fd5b5061067e6110b1565b60405161068b9190613165565b60405180910390f35b3480156106a057600080fd5b506106a96110d7565b6040516106b69190612f6b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906131d9565b611169565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130ed565b61117f565b005b34801561071d57600080fd5b5061073860048036038101906107339190612fc3565b61121a565b604051610745919061301e565b60405180910390f35b34801561075a57600080fd5b50610763611291565b6040516107709190613165565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612fc3565b6112b7565b6040516107ad919061301e565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d891906130ed565b6112da565b005b3480156107eb57600080fd5b506107f4611375565b005b34801561080257600080fd5b5061081d60048036038101906108189190613180565b61144e565b005b34801561082b57600080fd5b5061084660048036038101906108419190612ea5565b6114bb565b604051610853919061301e565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906131d9565b6114db565b005b34801561089157600080fd5b506108ac60048036038101906108a79190613180565b61161e565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061327e565b61168b565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190612ea5565b611773565b005b34801561090c57600080fd5b50610927600480360381019061092291906131d9565b6117bf565b005b34801561093557600080fd5b5061093e611822565b60405161094b9190613048565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906132de565b611828565b6040516109889190613048565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061331e565b6118af565b005b3480156109c657600080fd5b506109cf6118d4565b6040516109dc9190613048565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a079190612ea5565b6118da565b005b348015610a1a57600080fd5b50610a2361195d565b604051610a3192919061312d565b60405180910390f35b348015610a4657600080fd5b50610a4f61196f565b604051610a5c91906133aa565b60405180910390f35b348015610a7157600080fd5b50610a7a611995565b604051610a879190613048565b60405180910390f35b610a9861199b565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610abc610f5d565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610af59190613165565b602060405180830381865afa158015610b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3691906133da565b6040518363ffffffff1660e01b8152600401610b53929190613407565b6020604051808303816000875af1158015610b72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b969190613445565b5050565b606060038054610ba9906134a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd5906134a1565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b600080610c37611a19565b9050610c44818585611a21565b600191505092915050565b610c5761199b565b601160029054906101000a900460ff1615610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061351e565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b6000600254905090565b60175481565b610cdc61199b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d2b611a19565b9050610d38858285611bea565b610d43858585611c76565b60019150509392505050565b60006012905090565b600080610d63611a19565b9050610d84818585610d758589611828565b610d7f919061356d565b611a21565b600191505092915050565b60165481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e6761199b565b610e716000612485565b565b610e7b61199b565b6503d37f31191a821015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061360f565b60405180910390fd5b6503d37f31191a811015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906136a1565b60405180910390fd5b670de0b6b3a764000082610f2191906136c1565b600a81905550670de0b6b3a764000081610f3b91906136c1565b600b819055505050565b60128060000154908060010154905082565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905081610f9682610e17565b1015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce9061378d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906137f9565b60405180910390fd5b60008211611089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108090613865565b60405180910390fd5b81600d54611097919061356d565b600d8190555060008290506110ac828261254b565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110e6906134a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906134a1565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b5050505050905090565b61117161199b565b61117b8282612718565b5050565b61118761199b565b60c88183611195919061356d565b11156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906138d1565b60405180910390fd5b604051806040016040528083815260200182815250601460008201518160000155602082015181600101559050508082611210919061356d565b6017819055505050565b600080611225611a19565b905060006112338286611828565b905083811015611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613963565b60405180910390fd5b6112858286868403611a21565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112c2611a19565b90506112cf818585611c76565b600191505092915050565b6112e261199b565b60c881836112f0919061356d565b1115611331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611328906138d1565b60405180910390fd5b60405180604001604052808381526020018281525060126000820151816000015560208201518160010155905050808261136b919061356d565b6016819055505050565b61137d61199b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113c5906139b4565b60006040518083038185875af1925050503d8060008114611402576040519150601f19603f3d011682016040523d82523d6000602084013e611407565b606091505b505090508061144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613a3b565b60405180910390fd5b50565b61145661199b565b652642f7eafb0d811061149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613acd565b60405180910390fd5b670de0b6b3a7640000816114b291906136c1565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6114e361199b565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613b5f565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611612919061301e565b60405180910390a25050565b61162661199b565b6503d37f31191a811161166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613bf1565b60405180910390fd5b670de0b6b3a76400008161168291906136c1565b600c8190555050565b61169361199b565b60005b838390508110156117325781600e60008686858181106116b9576116b8613c11565b5b90506020020160208101906116ce9190612ea5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061172a90613c40565b915050611696565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161176693929190613d4b565b60405180910390a1505050565b61177b61199b565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117c761199b565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118b761199b565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b6118e261199b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194890613def565b60405180910390fd5b61195a81612485565b50565b60148060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6119a3611a19565b73ffffffffffffffffffffffffffffffffffffffff166119c1610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90613e5b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613eed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613f7f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bdd9190613048565b60405180910390a3505050565b6000611bf68484611828565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c705781811015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990613feb565b60405180910390fd5b611c6f8484848403611a21565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc9061407d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061410f565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611df85750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e115750601160009054906101000a900460ff16155b1561204557601160029054906101000a900460ff16611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061417b565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f0157600b54811115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906141e7565b60405180910390fd5b611f9a565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f9957600a54811115611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614253565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661204457600c54611ff783610e17565b82612002919061356d565b1115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906142bf565b60405180910390fd5b5b5b6000810361205e576120598383600061284b565b612480565b600061206930610e17565b90506000600954821015905080801561208f5750601160009054906101000a900460ff16155b80156120a75750601160019054906101000a900460ff165b80156120fc5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156121525750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121a85750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121fb576001601160006101000a81548160ff021916908315150217905550600060175411156121df576121de600954612ac1565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122b15750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122bb57600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561235f5750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236957600090505b8015612471576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123e5576103e8601754866123d491906136c1565b6123de919061430e565b9050612456565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612455576103e86016548661244891906136c1565b612452919061430e565b90505b5b8085612462919061433f565b945061246f87308361284b565b505b61247c86868661284b565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b1906143e5565b60405180910390fd5b6125c682600083612bc9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614477565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126ff9190613048565b60405180910390a361271383600084612bce565b505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614509565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b19061407d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129209061410f565b60405180910390fd5b612934838383612bc9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b19061459b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aa89190613048565b60405180910390a3612abb848484612bce565b50505050565b6000601754905060008160146001015484612adc91906136c1565b612ae6919061430e565b90506000811115612afb57612afa81612bd3565b5b60008184612b09919061433f565b9050612b1481612bfa565b600047905060008190506000811115612bc1576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612b6f906139b4565b60006040518083038185875af1925050503d8060008114612bac576040519150601f19603f3d011682016040523d82523d6000602084013e612bb1565b606091505b5050905080612bbf57600080fd5b505b505050505050565b505050565b505050565b600030905081600d54612be6919061356d565b600d81905550612bf6818361254b565b5050565b6000600267ffffffffffffffff811115612c1757612c166145bb565b5b604051908082528060200260200182016040528015612c455781602001602082028036833780820191505090505b5090503081600081518110612c5d57612c5c613c11565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2891906145ff565b81600181518110612d3c57612d3b613c11565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612da330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a21565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e079594939291906146ed565b600060405180830381600087803b158015612e2157600080fd5b505af1158015612e35573d6000803e3d6000fd5b505050505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7282612e47565b9050919050565b612e8281612e67565b8114612e8d57600080fd5b50565b600081359050612e9f81612e79565b92915050565b600060208284031215612ebb57612eba612e3d565b5b6000612ec984828501612e90565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3d82612ed2565b612f478185612edd565b9350612f57818560208601612eee565b612f6081612f21565b840191505092915050565b60006020820190508181036000830152612f858184612f32565b905092915050565b6000819050919050565b612fa081612f8d565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b60008060408385031215612fda57612fd9612e3d565b5b6000612fe885828601612e90565b9250506020612ff985828601612fae565b9150509250929050565b60008115159050919050565b61301881613003565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281612f8d565b82525050565b600060208201905061305d6000830184613039565b92915050565b60008060006060848603121561307c5761307b612e3d565b5b600061308a86828701612e90565b935050602061309b86828701612e90565b92505060406130ac86828701612fae565b9150509250925092565b600060ff82169050919050565b6130cc816130b6565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6000806040838503121561310457613103612e3d565b5b600061311285828601612fae565b925050602061312385828601612fae565b9150509250929050565b60006040820190506131426000830185613039565b61314f6020830184613039565b9392505050565b61315f81612e67565b82525050565b600060208201905061317a6000830184613156565b92915050565b60006020828403121561319657613195612e3d565b5b60006131a484828501612fae565b91505092915050565b6131b681613003565b81146131c157600080fd5b50565b6000813590506131d3816131ad565b92915050565b600080604083850312156131f0576131ef612e3d565b5b60006131fe85828601612e90565b925050602061320f858286016131c4565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261323e5761323d613219565b5b8235905067ffffffffffffffff81111561325b5761325a61321e565b5b60208301915083602082028301111561327757613276613223565b5b9250929050565b60008060006040848603121561329757613296612e3d565b5b600084013567ffffffffffffffff8111156132b5576132b4612e42565b5b6132c186828701613228565b935093505060206132d4868287016131c4565b9150509250925092565b600080604083850312156132f5576132f4612e3d565b5b600061330385828601612e90565b925050602061331485828601612e90565b9150509250929050565b60006020828403121561333457613333612e3d565b5b6000613342848285016131c4565b91505092915050565b6000819050919050565b600061337061336b61336684612e47565b61334b565b612e47565b9050919050565b600061338282613355565b9050919050565b600061339482613377565b9050919050565b6133a481613389565b82525050565b60006020820190506133bf600083018461339b565b92915050565b6000815190506133d481612f97565b92915050565b6000602082840312156133f0576133ef612e3d565b5b60006133fe848285016133c5565b91505092915050565b600060408201905061341c6000830185613156565b6134296020830184613039565b9392505050565b60008151905061343f816131ad565b92915050565b60006020828403121561345b5761345a612e3d565b5b600061346984828501613430565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b957607f821691505b6020821081036134cc576134cb613472565b5b50919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000613508601783612edd565b9150613513826134d2565b602082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061357882612f8d565b915061358383612f8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b8576135b761353e565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006135f9602083612edd565b9150613604826135c3565b602082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20312560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b600061368b602183612edd565b91506136968261362f565b604082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b60006136cc82612f8d565b91506136d783612f8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137105761370f61353e565b5b828202905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000613777602a83612edd565b91506137828261371b565b604082019050919050565b600060208201905081810360008301526137a68161376a565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b60006137e3601d83612edd565b91506137ee826137ad565b602082019050919050565b60006020820190508181036000830152613812816137d6565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b600061384f602083612edd565b915061385a82613819565b602082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006138bb601283612edd565b91506138c682613885565b602082019050919050565b600060208201905081810360008301526138ea816138ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061394d602583612edd565b9150613958826138f1565b604082019050919050565b6000602082019050818103600083015261397c81613940565b9050919050565b600081905092915050565b50565b600061399e600083613983565b91506139a98261398e565b600082019050919050565b60006139bf82613991565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a25602283612edd565b9150613a30826139c9565b604082019050919050565b60006020820190508181036000830152613a5481613a18565b9050919050565b7f43616e6e6f742073657420737761702d746f6b656e732068696768657220746860008201527f656e207468616e20313025200000000000000000000000000000000000000000602082015250565b6000613ab7602c83612edd565b9150613ac282613a5b565b604082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613b49602b83612edd565b9150613b5482613aed565b604082019050919050565b60006020820190508181036000830152613b7881613b3c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bdb602283612edd565b9150613be682613b7f565b604082019050919050565b60006020820190508181036000830152613c0a81613bce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c4b82612f8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c7d57613c7c61353e565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b613cac81612e67565b82525050565b6000613cbe8383613ca3565b60208301905092915050565b6000613cd96020840184612e90565b905092915050565b6000602082019050919050565b6000613cfa8385613c88565b9350613d0582613c99565b8060005b85811015613d3e57613d1b8284613cca565b613d258882613cb2565b9750613d3083613ce1565b925050600181019050613d09565b5085925050509392505050565b60006040820190508181036000830152613d66818587613cee565b9050613d75602083018461300f565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dd9602683612edd565b9150613de482613d7d565b604082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e45602083612edd565b9150613e5082613e0f565b602082019050919050565b60006020820190508181036000830152613e7481613e38565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ed7602483612edd565b9150613ee282613e7b565b604082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f69602283612edd565b9150613f7482613f0d565b604082019050919050565b60006020820190508181036000830152613f9881613f5c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613fd5601d83612edd565b9150613fe082613f9f565b602082019050919050565b6000602082019050818103600083015261400481613fc8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614067602583612edd565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140f9602383612edd565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614165601283612edd565b91506141708261412f565b602082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b60006141d1601f83612edd565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b600061423d601e83612edd565b915061424882614207565b602082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b60006142a9601b83612edd565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061431982612f8d565b915061432483612f8d565b925082614334576143336142df565b5b828204905092915050565b600061434a82612f8d565b915061435583612f8d565b9250828210156143685761436761353e565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006143cf602183612edd565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614461602283612edd565b915061446c82614405565b604082019050919050565b6000602082019050818103600083015261449081614454565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b60006144f3603883612edd565b91506144fe82614497565b604082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614585602683612edd565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506145f981612e79565b92915050565b60006020828403121561461557614614612e3d565b5b6000614623848285016145ea565b91505092915050565b6000819050919050565b600061465161464c6146478461462c565b61334b565b612f8d565b9050919050565b61466181614636565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061469a82614667565b6146a48185613c88565b93506146af83614672565b8060005b838110156146e05781516146c78882613cb2565b97506146d283614682565b9250506001810190506146b3565b5085935050505092915050565b600060a0820190506147026000830188613039565b61470f6020830187614658565b8181036040830152614721818661468f565b90506147306060830185613156565b61473d6080830184613039565b969550505050505056fea26469706673582212206c93f97f2db062d11a21d389d1a4ddd991561d684458ff38d7c2397bbd08f62364736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004dbf9de8e094cd6eb47ce72a18ee24dcef3ab162

-----Decoded View---------------
Arg [0] : _dev (address): 0x4dBF9dE8E094CD6eb47cE72A18EE24dCef3AB162

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004dbf9de8e094cd6eb47ce72a18ee24dcef3ab162


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.