POL Price: $0.427878 (+14.05%)
 

Overview

Max Total Supply

15,000 LUST

Holders

16

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
LustToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : LustToken.sol
/*
 .-.-. .-.-. .-.-. .-.-. .-.-. .-.-. 
( D .'( E .'( S .'( I .'( R .'( E .' 
 `.(   `.(   `.(   `.(   `.(   `.(   
                by sandman.finance                                     
 */
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


/*
    ERROR REF
    ---------
    E1: Presale hasn't started yet, good things come to those that wait
    E2: Presale has ended, come back next time!
    E3: No more Lust remains!
    E4: No more Lust left!
    E5: Not enough usdc provided
    E6: Lust Presale hardcap reached
    E7: User has already purchased too much lust
    E8: User cannot purchase 0 lust
    E9: Cannot change start block if sale has already started
    E10: Cannot set start block in the past
    E11: Can only mint once!
    E12: Start block has to be less than end block
    E13: New blocks cant be less than 3 days
    E14: Can only send excess lust to dead address after presale has ended
    E15: Can only burn unsold presale once!
    E16: Can only send excess lust to dead address after presale has ended
    E17: Can only burn unsold presale once!
    E18: Failed sending lust

*/

contract LustToken is ERC20('LUST PRESALE', 'LUST'), ReentrancyGuard, Ownable {
    using SafeERC20 for IERC20;

    address public constant PRESALE_ADDRESS = 0x6Ce07B7Ee17c3231987a5BF377487FF801608F63;
    address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    IERC20 public USDC = IERC20(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174);
    
    IERC20 lustToken = IERC20(address(this));

    uint256 public constant lustPublicPresaleMaximumSupply = 15 * (10 ** 3) * (10 ** 18); //15,000k presale public

    uint256 public constant lustPerAccountMaxTotal = 500 * (10 ** 18); // 500 lust

    uint256 public lustRemaining = lustPublicPresaleMaximumSupply;
    
    uint256 public salePriceE35 = 10 * (10 ** 33); // 10 usdc

    uint256 public maxHardCap = 150 * (10 ** 3) * (10 ** 6); // 150,000 usdc

    uint256 public constant oneHourMatic = 1500;
    uint256 public constant minDurationPresale = oneHourMatic * 24 * 3; // 3 days


    uint256 public startBlock;
    
    uint256 public endBlock;

    bool public hasBurnedUnsoldPresale;

    mapping(address => uint256) public userLustTotally;

    event StartBlockChanged(uint256 newStartBlock, uint256 newEndBlock);
    event LustPurchased(address sender, uint256 usdcSpent, uint256 lustReceived);
    event MintLustForSandManL1(uint256 amountToMint);
    event BurnUnclaimedLust(uint256 amountLustBurned);


    constructor(uint256 _startBlock, uint256 _endBlock) {
        startBlock  = _startBlock;
        endBlock    = _endBlock;
        _mint(address(this), lustPublicPresaleMaximumSupply);
    }
    

    function buyLust(uint256 _usdcSpent) external nonReentrant {
        require(block.number >= startBlock, "E1");
        require(block.number < endBlock, "E2");
        require(lustRemaining > 0, "E3");
        require(lustToken.balanceOf(address(this)) > 0, "E4");
        require(_usdcSpent > 0, "E5");
        require(_usdcSpent <= maxHardCap, "E6");
        require(userLustTotally[msg.sender] <= lustPerAccountMaxTotal, "E7");

        uint256 lustPurchaseAmount = (_usdcSpent * (10 ** 12) * salePriceE35) / 1e35;

        // if we dont have enough left, give them the rest.
        if (lustRemaining < lustPurchaseAmount)
        {
            lustPurchaseAmount = lustRemaining;
            _usdcSpent = ((lustPurchaseAmount * salePriceE35) / 1e33 ) / 1e12;

        }

        require(lustPurchaseAmount > 0, "E8");

        // shouldn't be possible to fail these asserts.
        assert(lustPurchaseAmount <= lustRemaining);
        assert(lustPurchaseAmount <= lustToken.balanceOf(address(this)));
        
        //send lust to user
        lustToken.safeTransfer(msg.sender, lustPurchaseAmount);
        // send usdc to presale address
    	USDC.safeTransferFrom(msg.sender, PRESALE_ADDRESS, _usdcSpent);

        lustRemaining = lustRemaining - lustPurchaseAmount;
        userLustTotally[msg.sender] = userLustTotally[msg.sender] + lustPurchaseAmount;

        emit LustPurchased(msg.sender, _usdcSpent, lustPurchaseAmount);

    }

    function setStartBlock(uint256 _newStartBlock, uint256 _newEndBlock) external onlyOwner {
        require(block.number < startBlock, "E9");
        require(block.number < _newStartBlock, "E10");
        require(_newStartBlock < _newEndBlock, "E9");
        require((_newEndBlock - _newStartBlock) > minDurationPresale, "E13");

        startBlock = _newStartBlock;
        endBlock   = _newEndBlock;

        emit StartBlockChanged(_newStartBlock, _newEndBlock);
    }

    function sendUnclaimedLustToDeadAddress() external onlyOwner {
        require(block.number > endBlock, "E16");
        require(!hasBurnedUnsoldPresale, "E17");

        uint256 lustInContract  = lustToken.balanceOf(address(this));

        if (lustInContract > 0)
            require(lustToken.transfer(BURN_ADDRESS, lustInContract), "E18");
        hasBurnedUnsoldPresale = true;

        emit BurnUnclaimedLust(lustInContract);
    }

}

File 2 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 4 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT

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 9 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"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":false,"internalType":"uint256","name":"amountLustBurned","type":"uint256"}],"name":"BurnUnclaimedLust","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"usdcSpent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lustReceived","type":"uint256"}],"name":"LustPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"MintLustForSandManL1","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":false,"internalType":"uint256","name":"newStartBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndBlock","type":"uint256"}],"name":"StartBlockChanged","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":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_usdcSpent","type":"uint256"}],"name":"buyLust","outputs":[],"stateMutability":"nonpayable","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":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasBurnedUnsoldPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"lustPerAccountMaxTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lustPublicPresaleMaximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lustRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDurationPresale","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":"oneHourMatic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePriceE35","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendUnclaimedLustToDeadAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartBlock","type":"uint256"},{"internalType":"uint256","name":"_newEndBlock","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userLustTotally","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052732791bca1f2de4661ed88a30c99a7a9449aa84174600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069032d26d12e980b6000006009556e01ed09bead87c0378d8e6400000000600a556422ecb25c00600b55348015620000d157600080fd5b5060405162003cf138038062003cf18339818101604052810190620000f7919062000509565b6040518060400160405280600c81526020017f4c5553542050524553414c4500000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c5553540000000000000000000000000000000000000000000000000000000081525081600390805190602001906200017b92919062000442565b5080600490805190602001906200019492919062000442565b5050506001600581905550620001bf620001b3620001f160201b60201c565b620001f960201b60201c565b81600c8190555080600d81905550620001e93069032d26d12e980b600000620002bf60201b60201c565b50506200071b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003299062000588565b60405180910390fd5b62000346600083836200043860201b60201c565b80600260008282546200035a9190620005d8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003b19190620005d8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004189190620005aa565b60405180910390a362000434600083836200043d60201b60201c565b5050565b505050565b505050565b82805462000450906200063f565b90600052602060002090601f016020900481019282620004745760008555620004c0565b82601f106200048f57805160ff1916838001178555620004c0565b82800160010185558215620004c0579182015b82811115620004bf578251825591602001919060010190620004a2565b5b509050620004cf9190620004d3565b5090565b5b80821115620004ee576000816000905550600101620004d4565b5090565b600081519050620005038162000701565b92915050565b60008060408385031215620005235762000522620006d3565b5b60006200053385828601620004f2565b92505060206200054685828601620004f2565b9150509250929050565b60006200055f601f83620005c7565b91506200056c82620006d8565b602082019050919050565b620005828162000635565b82525050565b60006020820190508181036000830152620005a38162000550565b9050919050565b6000602082019050620005c1600083018462000577565b92915050565b600082825260208201905092915050565b6000620005e58262000635565b9150620005f28362000635565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200062a576200062962000675565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200065857607f821691505b602082108114156200066f576200066e620006a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200070c8162000635565b81146200071857600080fd5b50565b6135c6806200072b6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610566578063f015bc9314610596578063f2fde38b146105b4578063fccc2813146105d0576101e5565b8063a9059cbb146104dc578063b5ba3d491461050c578063c32f60d71461052a578063d3ebb9de14610548576101e5565b80638a796bf6116100de5780638a796bf6146104545780638da5cb5b1461047057806395d89b411461048e578063a457c2d7146104ac576101e5565b806370a08231146103e0578063715018a61461041057806384df03731461041a57806389a3027114610436576101e5565b8063313ce5671161018757806348cd4cb11161015657806348cd4cb114610356578063611bf8d01461037457806364281e2b146103925780636ecae53a146103b0576101e5565b8063313ce567146102cc57806339509351146102ea5780633c6385d41461031a57806340494ec114610338576101e5565b806318160ddd116101c357806318160ddd146102565780631dc4b8091461027457806323b872dd1461029257806327a866ae146102c2576101e5565b806306fdde03146101ea578063083c632314610208578063095ea7b314610226575b600080fd5b6101f26105ee565b6040516101ff91906128a4565b60405180910390f35b610210610680565b60405161021d9190612c26565b60405180910390f35b610240600480360381019061023b9190612238565b610686565b60405161024d919061286e565b60405180910390f35b61025e6106a4565b60405161026b9190612c26565b60405180910390f35b61027c6106ae565b604051610289919061286e565b60405180910390f35b6102ac60048036038101906102a791906121e5565b6106c1565b6040516102b9919061286e565b60405180910390f35b6102ca6107b9565b005b6102d4610ac7565b6040516102e19190612c6a565b60405180910390f35b61030460048036038101906102ff9190612238565b610ad0565b604051610311919061286e565b60405180910390f35b610322610b7c565b60405161032f9190612c26565b60405180910390f35b610340610b89565b60405161034d9190612c26565b60405180910390f35b61035e610b97565b60405161036b9190612c26565b60405180910390f35b61037c610b9d565b6040516103899190612c26565b60405180910390f35b61039a610ba3565b6040516103a79190612c26565b60405180910390f35b6103ca60048036038101906103c59190612178565b610ba9565b6040516103d79190612c26565b60405180910390f35b6103fa60048036038101906103f59190612178565b610bc1565b6040516104079190612c26565b60405180910390f35b610418610c09565b005b610434600480360381019061042f91906122a5565b610c91565b005b61043e6112dc565b60405161044b9190612889565b60405180910390f35b61046e600480360381019061046991906122ff565b611302565b005b6104786114f8565b60405161048591906127bc565b60405180910390f35b610496611522565b6040516104a391906128a4565b60405180910390f35b6104c660048036038101906104c19190612238565b6115b4565b6040516104d3919061286e565b60405180910390f35b6104f660048036038101906104f19190612238565b61169f565b604051610503919061286e565b60405180910390f35b6105146116bd565b6040516105219190612c26565b60405180910390f35b6105326116db565b60405161053f9190612c26565b60405180910390f35b6105506116e1565b60405161055d9190612c26565b60405180910390f35b610580600480360381019061057b91906121a5565b6116e7565b60405161058d9190612c26565b60405180910390f35b61059e61176e565b6040516105ab91906127bc565b60405180910390f35b6105ce60048036038101906105c99190612178565b611786565b005b6105d861187e565b6040516105e591906127bc565b60405180910390f35b6060600380546105fd90612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612e78565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600d5481565b600061069a610693611884565b848461188c565b6001905092915050565b6000600254905090565b600e60009054906101000a900460ff1681565b60006106ce848484611a57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610719611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079090612ae6565b60405180910390fd5b6107ad856107a5611884565b85840361188c565b60019150509392505050565b6107c1611884565b73ffffffffffffffffffffffffffffffffffffffff166107df6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90612b06565b60405180910390fd5b600d544311610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090612b26565b60405180910390fd5b600e60009054906101000a900460ff16156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612a46565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161092691906127bc565b60206040518083038186803b15801561093e57600080fd5b505afa158015610952573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097691906122d2565b90506000811115610a7257600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016109e092919061280e565b602060405180830381600087803b1580156109fa57600080fd5b505af1158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612278565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890612a26565b60405180910390fd5b5b6001600e60006101000a81548160ff0219169083151502179055507f08d0a56499f7a3d46a04228f850258eb922cd89c2404d59370469fbd1fa9c71581604051610abc9190612c26565b60405180910390a150565b60006012905090565b6000610b72610add611884565b848460016000610aeb611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b6d9190612cb7565b61188c565b6001905092915050565b681b1ae4d6e2ef50000081565b69032d26d12e980b60000081565b600c5481565b6105dc81565b60095481565b600f6020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c11611884565b73ffffffffffffffffffffffffffffffffffffffff16610c2f6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90612b06565b60405180910390fd5b610c8f6000611cd8565b565b60026005541415610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90612be6565b60405180910390fd5b6002600581905550600c54431015610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90612aa6565b60405180910390fd5b600d544310610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90612926565b60405180910390fd5b600060095411610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906128c6565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0a91906127bc565b60206040518083038186803b158015610e2257600080fd5b505afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a91906122d2565b11610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612ba6565b60405180910390fd5b60008111610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490612906565b60405180910390fd5b600b54811115610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f19906129c6565b60405180910390fd5b681b1ae4d6e2ef500000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612a86565b60405180910390fd5b60006e13426172c74d822b878fe800000000600a5464e8d4a5100084610fd39190612d3e565b610fdd9190612d3e565b610fe79190612d0d565b905080600954101561103257600954905064e8d4a510006d314dc6448d9338c15b0a00000000600a548361101b9190612d3e565b6110259190612d0d565b61102f9190612d0d565b91505b60008111611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612a06565b60405180910390fd5b60095481111561108857611087612eaa565b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110e391906127bc565b60206040518083038186803b1580156110fb57600080fd5b505afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906122d2565b81111561114357611142612eaa565b5b6111903382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d9e9092919063ffffffff16565b6111f333736ce07b7ee17c3231987a5bf377487ff801608f6384600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e24909392919063ffffffff16565b806009546112019190612d98565b60098190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112529190612cb7565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f57156abfa26af062f6a6f9034aa221985acccef09eee7778b0a31f97d31a39283383836040516112c893929190612837565b60405180910390a150600160058190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61130a611884565b73ffffffffffffffffffffffffffffffffffffffff166113286114f8565b73ffffffffffffffffffffffffffffffffffffffff161461137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590612b06565b60405180910390fd5b600c5443106113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990612986565b60405180910390fd5b814310611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90612a66565b60405180910390fd5b808210611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612986565b60405180910390fd5b600360186105dc6114579190612d3e565b6114619190612d3e565b828261146d9190612d98565b116114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490612ac6565b60405180910390fd5b81600c8190555080600d819055507f8774aa9221f02a7971c04902013456be92b6a521a2347a44ec6610e4b9a5d8fc82826040516114ec929190612c41565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461153190612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461155d90612e78565b80156115aa5780601f1061157f576101008083540402835291602001916115aa565b820191906000526020600020905b81548152906001019060200180831161158d57829003601f168201915b5050505050905090565b600080600160006115c3611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612c06565b60405180910390fd5b61169461168b611884565b8585840361188c565b600191505092915050565b60006116b36116ac611884565b8484611a57565b6001905092915050565b600360186105dc6116ce9190612d3e565b6116d89190612d3e565b81565b600a5481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b736ce07b7ee17c3231987a5bf377487ff801608f6381565b61178e611884565b73ffffffffffffffffffffffffffffffffffffffff166117ac6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990612b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990612946565b60405180910390fd5b61187b81611cd8565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390612b66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612966565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a4a9190612c26565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90612b46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e906128e6565b60405180910390fd5b611b42838383611ead565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906129a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5b9190612cb7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cbf9190612c26565b60405180910390a3611cd2848484611eb2565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1f8363a9059cbb60e01b8484604051602401611dbd92919061280e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611eb7565b505050565b611ea7846323b872dd60e01b858585604051602401611e45939291906127d7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611eb7565b50505050565b505050565b505050565b6000611f19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611f7e9092919063ffffffff16565b9050600081511115611f795780806020019051810190611f399190612278565b611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90612bc6565b60405180910390fd5b5b505050565b6060611f8d8484600085611f96565b90509392505050565b606082471015611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd2906129e6565b60405180910390fd5b611fe4856120aa565b612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90612b86565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161204c91906127a5565b60006040518083038185875af1925050503d8060008114612089576040519150601f19603f3d011682016040523d82523d6000602084013e61208e565b606091505b509150915061209e8282866120bd565b92505050949350505050565b600080823b905060008111915050919050565b606083156120cd5782905061211d565b6000835111156120e05782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211491906128a4565b60405180910390fd5b9392505050565b6000813590506121338161354b565b92915050565b60008151905061214881613562565b92915050565b60008135905061215d81613579565b92915050565b60008151905061217281613579565b92915050565b60006020828403121561218e5761218d612f66565b5b600061219c84828501612124565b91505092915050565b600080604083850312156121bc576121bb612f66565b5b60006121ca85828601612124565b92505060206121db85828601612124565b9150509250929050565b6000806000606084860312156121fe576121fd612f66565b5b600061220c86828701612124565b935050602061221d86828701612124565b925050604061222e8682870161214e565b9150509250925092565b6000806040838503121561224f5761224e612f66565b5b600061225d85828601612124565b925050602061226e8582860161214e565b9150509250929050565b60006020828403121561228e5761228d612f66565b5b600061229c84828501612139565b91505092915050565b6000602082840312156122bb576122ba612f66565b5b60006122c98482850161214e565b91505092915050565b6000602082840312156122e8576122e7612f66565b5b60006122f684828501612163565b91505092915050565b6000806040838503121561231657612315612f66565b5b60006123248582860161214e565b92505060206123358582860161214e565b9150509250929050565b61234881612dcc565b82525050565b61235781612dde565b82525050565b600061236882612c85565b6123728185612c9b565b9350612382818560208601612e45565b80840191505092915050565b61239781612e21565b82525050565b60006123a882612c90565b6123b28185612ca6565b93506123c2818560208601612e45565b6123cb81612f6b565b840191505092915050565b60006123e3600283612ca6565b91506123ee82612f7c565b602082019050919050565b6000612406602383612ca6565b915061241182612fa5565b604082019050919050565b6000612429600283612ca6565b915061243482612ff4565b602082019050919050565b600061244c600283612ca6565b91506124578261301d565b602082019050919050565b600061246f602683612ca6565b915061247a82613046565b604082019050919050565b6000612492602283612ca6565b915061249d82613095565b604082019050919050565b60006124b5600283612ca6565b91506124c0826130e4565b602082019050919050565b60006124d8602683612ca6565b91506124e38261310d565b604082019050919050565b60006124fb600283612ca6565b91506125068261315c565b602082019050919050565b600061251e602683612ca6565b915061252982613185565b604082019050919050565b6000612541600283612ca6565b915061254c826131d4565b602082019050919050565b6000612564600383612ca6565b915061256f826131fd565b602082019050919050565b6000612587600383612ca6565b915061259282613226565b602082019050919050565b60006125aa600383612ca6565b91506125b58261324f565b602082019050919050565b60006125cd600283612ca6565b91506125d882613278565b602082019050919050565b60006125f0600283612ca6565b91506125fb826132a1565b602082019050919050565b6000612613600383612ca6565b915061261e826132ca565b602082019050919050565b6000612636602883612ca6565b9150612641826132f3565b604082019050919050565b6000612659602083612ca6565b915061266482613342565b602082019050919050565b600061267c600383612ca6565b91506126878261336b565b602082019050919050565b600061269f602583612ca6565b91506126aa82613394565b604082019050919050565b60006126c2602483612ca6565b91506126cd826133e3565b604082019050919050565b60006126e5601d83612ca6565b91506126f082613432565b602082019050919050565b6000612708600283612ca6565b91506127138261345b565b602082019050919050565b600061272b602a83612ca6565b915061273682613484565b604082019050919050565b600061274e601f83612ca6565b9150612759826134d3565b602082019050919050565b6000612771602583612ca6565b915061277c826134fc565b604082019050919050565b61279081612e0a565b82525050565b61279f81612e14565b82525050565b60006127b1828461235d565b915081905092915050565b60006020820190506127d1600083018461233f565b92915050565b60006060820190506127ec600083018661233f565b6127f9602083018561233f565b6128066040830184612787565b949350505050565b6000604082019050612823600083018561233f565b6128306020830184612787565b9392505050565b600060608201905061284c600083018661233f565b6128596020830185612787565b6128666040830184612787565b949350505050565b6000602082019050612883600083018461234e565b92915050565b600060208201905061289e600083018461238e565b92915050565b600060208201905081810360008301526128be818461239d565b905092915050565b600060208201905081810360008301526128df816123d6565b9050919050565b600060208201905081810360008301526128ff816123f9565b9050919050565b6000602082019050818103600083015261291f8161241c565b9050919050565b6000602082019050818103600083015261293f8161243f565b9050919050565b6000602082019050818103600083015261295f81612462565b9050919050565b6000602082019050818103600083015261297f81612485565b9050919050565b6000602082019050818103600083015261299f816124a8565b9050919050565b600060208201905081810360008301526129bf816124cb565b9050919050565b600060208201905081810360008301526129df816124ee565b9050919050565b600060208201905081810360008301526129ff81612511565b9050919050565b60006020820190508181036000830152612a1f81612534565b9050919050565b60006020820190508181036000830152612a3f81612557565b9050919050565b60006020820190508181036000830152612a5f8161257a565b9050919050565b60006020820190508181036000830152612a7f8161259d565b9050919050565b60006020820190508181036000830152612a9f816125c0565b9050919050565b60006020820190508181036000830152612abf816125e3565b9050919050565b60006020820190508181036000830152612adf81612606565b9050919050565b60006020820190508181036000830152612aff81612629565b9050919050565b60006020820190508181036000830152612b1f8161264c565b9050919050565b60006020820190508181036000830152612b3f8161266f565b9050919050565b60006020820190508181036000830152612b5f81612692565b9050919050565b60006020820190508181036000830152612b7f816126b5565b9050919050565b60006020820190508181036000830152612b9f816126d8565b9050919050565b60006020820190508181036000830152612bbf816126fb565b9050919050565b60006020820190508181036000830152612bdf8161271e565b9050919050565b60006020820190508181036000830152612bff81612741565b9050919050565b60006020820190508181036000830152612c1f81612764565b9050919050565b6000602082019050612c3b6000830184612787565b92915050565b6000604082019050612c566000830185612787565b612c636020830184612787565b9392505050565b6000602082019050612c7f6000830184612796565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612cc282612e0a565b9150612ccd83612e0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0257612d01612ed9565b5b828201905092915050565b6000612d1882612e0a565b9150612d2383612e0a565b925082612d3357612d32612f08565b5b828204905092915050565b6000612d4982612e0a565b9150612d5483612e0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d8d57612d8c612ed9565b5b828202905092915050565b6000612da382612e0a565b9150612dae83612e0a565b925082821015612dc157612dc0612ed9565b5b828203905092915050565b6000612dd782612dea565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612e2c82612e33565b9050919050565b6000612e3e82612dea565b9050919050565b60005b83811015612e63578082015181840152602081019050612e48565b83811115612e72576000848401525b50505050565b60006002820490506001821680612e9057607f821691505b60208210811415612ea457612ea3612f37565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4533000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4535000000000000000000000000000000000000000000000000000000000000600082015250565b7f4532000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4536000000000000000000000000000000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4538000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531380000000000000000000000000000000000000000000000000000000000600082015250565b7f4531370000000000000000000000000000000000000000000000000000000000600082015250565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b7f4537000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531330000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4531360000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4534000000000000000000000000000000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61355481612dcc565b811461355f57600080fd5b50565b61356b81612dde565b811461357657600080fd5b50565b61358281612e0a565b811461358d57600080fd5b5056fea264697066735822122061cc7417a51493f7b1738afb0b1b01f52565c0ee3829ca84066ff6e34d0ab54964736f6c6343000806003300000000000000000000000000000000000000000000000000000000015010ba000000000000000000000000000000000000000000000000000000000151461a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610566578063f015bc9314610596578063f2fde38b146105b4578063fccc2813146105d0576101e5565b8063a9059cbb146104dc578063b5ba3d491461050c578063c32f60d71461052a578063d3ebb9de14610548576101e5565b80638a796bf6116100de5780638a796bf6146104545780638da5cb5b1461047057806395d89b411461048e578063a457c2d7146104ac576101e5565b806370a08231146103e0578063715018a61461041057806384df03731461041a57806389a3027114610436576101e5565b8063313ce5671161018757806348cd4cb11161015657806348cd4cb114610356578063611bf8d01461037457806364281e2b146103925780636ecae53a146103b0576101e5565b8063313ce567146102cc57806339509351146102ea5780633c6385d41461031a57806340494ec114610338576101e5565b806318160ddd116101c357806318160ddd146102565780631dc4b8091461027457806323b872dd1461029257806327a866ae146102c2576101e5565b806306fdde03146101ea578063083c632314610208578063095ea7b314610226575b600080fd5b6101f26105ee565b6040516101ff91906128a4565b60405180910390f35b610210610680565b60405161021d9190612c26565b60405180910390f35b610240600480360381019061023b9190612238565b610686565b60405161024d919061286e565b60405180910390f35b61025e6106a4565b60405161026b9190612c26565b60405180910390f35b61027c6106ae565b604051610289919061286e565b60405180910390f35b6102ac60048036038101906102a791906121e5565b6106c1565b6040516102b9919061286e565b60405180910390f35b6102ca6107b9565b005b6102d4610ac7565b6040516102e19190612c6a565b60405180910390f35b61030460048036038101906102ff9190612238565b610ad0565b604051610311919061286e565b60405180910390f35b610322610b7c565b60405161032f9190612c26565b60405180910390f35b610340610b89565b60405161034d9190612c26565b60405180910390f35b61035e610b97565b60405161036b9190612c26565b60405180910390f35b61037c610b9d565b6040516103899190612c26565b60405180910390f35b61039a610ba3565b6040516103a79190612c26565b60405180910390f35b6103ca60048036038101906103c59190612178565b610ba9565b6040516103d79190612c26565b60405180910390f35b6103fa60048036038101906103f59190612178565b610bc1565b6040516104079190612c26565b60405180910390f35b610418610c09565b005b610434600480360381019061042f91906122a5565b610c91565b005b61043e6112dc565b60405161044b9190612889565b60405180910390f35b61046e600480360381019061046991906122ff565b611302565b005b6104786114f8565b60405161048591906127bc565b60405180910390f35b610496611522565b6040516104a391906128a4565b60405180910390f35b6104c660048036038101906104c19190612238565b6115b4565b6040516104d3919061286e565b60405180910390f35b6104f660048036038101906104f19190612238565b61169f565b604051610503919061286e565b60405180910390f35b6105146116bd565b6040516105219190612c26565b60405180910390f35b6105326116db565b60405161053f9190612c26565b60405180910390f35b6105506116e1565b60405161055d9190612c26565b60405180910390f35b610580600480360381019061057b91906121a5565b6116e7565b60405161058d9190612c26565b60405180910390f35b61059e61176e565b6040516105ab91906127bc565b60405180910390f35b6105ce60048036038101906105c99190612178565b611786565b005b6105d861187e565b6040516105e591906127bc565b60405180910390f35b6060600380546105fd90612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612e78565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600d5481565b600061069a610693611884565b848461188c565b6001905092915050565b6000600254905090565b600e60009054906101000a900460ff1681565b60006106ce848484611a57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610719611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079090612ae6565b60405180910390fd5b6107ad856107a5611884565b85840361188c565b60019150509392505050565b6107c1611884565b73ffffffffffffffffffffffffffffffffffffffff166107df6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90612b06565b60405180910390fd5b600d544311610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090612b26565b60405180910390fd5b600e60009054906101000a900460ff16156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612a46565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161092691906127bc565b60206040518083038186803b15801561093e57600080fd5b505afa158015610952573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097691906122d2565b90506000811115610a7257600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016109e092919061280e565b602060405180830381600087803b1580156109fa57600080fd5b505af1158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612278565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890612a26565b60405180910390fd5b5b6001600e60006101000a81548160ff0219169083151502179055507f08d0a56499f7a3d46a04228f850258eb922cd89c2404d59370469fbd1fa9c71581604051610abc9190612c26565b60405180910390a150565b60006012905090565b6000610b72610add611884565b848460016000610aeb611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b6d9190612cb7565b61188c565b6001905092915050565b681b1ae4d6e2ef50000081565b69032d26d12e980b60000081565b600c5481565b6105dc81565b60095481565b600f6020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c11611884565b73ffffffffffffffffffffffffffffffffffffffff16610c2f6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90612b06565b60405180910390fd5b610c8f6000611cd8565b565b60026005541415610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90612be6565b60405180910390fd5b6002600581905550600c54431015610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90612aa6565b60405180910390fd5b600d544310610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90612926565b60405180910390fd5b600060095411610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906128c6565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0a91906127bc565b60206040518083038186803b158015610e2257600080fd5b505afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a91906122d2565b11610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612ba6565b60405180910390fd5b60008111610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490612906565b60405180910390fd5b600b54811115610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f19906129c6565b60405180910390fd5b681b1ae4d6e2ef500000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612a86565b60405180910390fd5b60006e13426172c74d822b878fe800000000600a5464e8d4a5100084610fd39190612d3e565b610fdd9190612d3e565b610fe79190612d0d565b905080600954101561103257600954905064e8d4a510006d314dc6448d9338c15b0a00000000600a548361101b9190612d3e565b6110259190612d0d565b61102f9190612d0d565b91505b60008111611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612a06565b60405180910390fd5b60095481111561108857611087612eaa565b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110e391906127bc565b60206040518083038186803b1580156110fb57600080fd5b505afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906122d2565b81111561114357611142612eaa565b5b6111903382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d9e9092919063ffffffff16565b6111f333736ce07b7ee17c3231987a5bf377487ff801608f6384600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e24909392919063ffffffff16565b806009546112019190612d98565b60098190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112529190612cb7565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f57156abfa26af062f6a6f9034aa221985acccef09eee7778b0a31f97d31a39283383836040516112c893929190612837565b60405180910390a150600160058190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61130a611884565b73ffffffffffffffffffffffffffffffffffffffff166113286114f8565b73ffffffffffffffffffffffffffffffffffffffff161461137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590612b06565b60405180910390fd5b600c5443106113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990612986565b60405180910390fd5b814310611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90612a66565b60405180910390fd5b808210611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612986565b60405180910390fd5b600360186105dc6114579190612d3e565b6114619190612d3e565b828261146d9190612d98565b116114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490612ac6565b60405180910390fd5b81600c8190555080600d819055507f8774aa9221f02a7971c04902013456be92b6a521a2347a44ec6610e4b9a5d8fc82826040516114ec929190612c41565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461153190612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461155d90612e78565b80156115aa5780601f1061157f576101008083540402835291602001916115aa565b820191906000526020600020905b81548152906001019060200180831161158d57829003601f168201915b5050505050905090565b600080600160006115c3611884565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612c06565b60405180910390fd5b61169461168b611884565b8585840361188c565b600191505092915050565b60006116b36116ac611884565b8484611a57565b6001905092915050565b600360186105dc6116ce9190612d3e565b6116d89190612d3e565b81565b600a5481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b736ce07b7ee17c3231987a5bf377487ff801608f6381565b61178e611884565b73ffffffffffffffffffffffffffffffffffffffff166117ac6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990612b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990612946565b60405180910390fd5b61187b81611cd8565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390612b66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612966565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a4a9190612c26565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90612b46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e906128e6565b60405180910390fd5b611b42838383611ead565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906129a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5b9190612cb7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cbf9190612c26565b60405180910390a3611cd2848484611eb2565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e1f8363a9059cbb60e01b8484604051602401611dbd92919061280e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611eb7565b505050565b611ea7846323b872dd60e01b858585604051602401611e45939291906127d7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611eb7565b50505050565b505050565b505050565b6000611f19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611f7e9092919063ffffffff16565b9050600081511115611f795780806020019051810190611f399190612278565b611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90612bc6565b60405180910390fd5b5b505050565b6060611f8d8484600085611f96565b90509392505050565b606082471015611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd2906129e6565b60405180910390fd5b611fe4856120aa565b612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90612b86565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161204c91906127a5565b60006040518083038185875af1925050503d8060008114612089576040519150601f19603f3d011682016040523d82523d6000602084013e61208e565b606091505b509150915061209e8282866120bd565b92505050949350505050565b600080823b905060008111915050919050565b606083156120cd5782905061211d565b6000835111156120e05782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211491906128a4565b60405180910390fd5b9392505050565b6000813590506121338161354b565b92915050565b60008151905061214881613562565b92915050565b60008135905061215d81613579565b92915050565b60008151905061217281613579565b92915050565b60006020828403121561218e5761218d612f66565b5b600061219c84828501612124565b91505092915050565b600080604083850312156121bc576121bb612f66565b5b60006121ca85828601612124565b92505060206121db85828601612124565b9150509250929050565b6000806000606084860312156121fe576121fd612f66565b5b600061220c86828701612124565b935050602061221d86828701612124565b925050604061222e8682870161214e565b9150509250925092565b6000806040838503121561224f5761224e612f66565b5b600061225d85828601612124565b925050602061226e8582860161214e565b9150509250929050565b60006020828403121561228e5761228d612f66565b5b600061229c84828501612139565b91505092915050565b6000602082840312156122bb576122ba612f66565b5b60006122c98482850161214e565b91505092915050565b6000602082840312156122e8576122e7612f66565b5b60006122f684828501612163565b91505092915050565b6000806040838503121561231657612315612f66565b5b60006123248582860161214e565b92505060206123358582860161214e565b9150509250929050565b61234881612dcc565b82525050565b61235781612dde565b82525050565b600061236882612c85565b6123728185612c9b565b9350612382818560208601612e45565b80840191505092915050565b61239781612e21565b82525050565b60006123a882612c90565b6123b28185612ca6565b93506123c2818560208601612e45565b6123cb81612f6b565b840191505092915050565b60006123e3600283612ca6565b91506123ee82612f7c565b602082019050919050565b6000612406602383612ca6565b915061241182612fa5565b604082019050919050565b6000612429600283612ca6565b915061243482612ff4565b602082019050919050565b600061244c600283612ca6565b91506124578261301d565b602082019050919050565b600061246f602683612ca6565b915061247a82613046565b604082019050919050565b6000612492602283612ca6565b915061249d82613095565b604082019050919050565b60006124b5600283612ca6565b91506124c0826130e4565b602082019050919050565b60006124d8602683612ca6565b91506124e38261310d565b604082019050919050565b60006124fb600283612ca6565b91506125068261315c565b602082019050919050565b600061251e602683612ca6565b915061252982613185565b604082019050919050565b6000612541600283612ca6565b915061254c826131d4565b602082019050919050565b6000612564600383612ca6565b915061256f826131fd565b602082019050919050565b6000612587600383612ca6565b915061259282613226565b602082019050919050565b60006125aa600383612ca6565b91506125b58261324f565b602082019050919050565b60006125cd600283612ca6565b91506125d882613278565b602082019050919050565b60006125f0600283612ca6565b91506125fb826132a1565b602082019050919050565b6000612613600383612ca6565b915061261e826132ca565b602082019050919050565b6000612636602883612ca6565b9150612641826132f3565b604082019050919050565b6000612659602083612ca6565b915061266482613342565b602082019050919050565b600061267c600383612ca6565b91506126878261336b565b602082019050919050565b600061269f602583612ca6565b91506126aa82613394565b604082019050919050565b60006126c2602483612ca6565b91506126cd826133e3565b604082019050919050565b60006126e5601d83612ca6565b91506126f082613432565b602082019050919050565b6000612708600283612ca6565b91506127138261345b565b602082019050919050565b600061272b602a83612ca6565b915061273682613484565b604082019050919050565b600061274e601f83612ca6565b9150612759826134d3565b602082019050919050565b6000612771602583612ca6565b915061277c826134fc565b604082019050919050565b61279081612e0a565b82525050565b61279f81612e14565b82525050565b60006127b1828461235d565b915081905092915050565b60006020820190506127d1600083018461233f565b92915050565b60006060820190506127ec600083018661233f565b6127f9602083018561233f565b6128066040830184612787565b949350505050565b6000604082019050612823600083018561233f565b6128306020830184612787565b9392505050565b600060608201905061284c600083018661233f565b6128596020830185612787565b6128666040830184612787565b949350505050565b6000602082019050612883600083018461234e565b92915050565b600060208201905061289e600083018461238e565b92915050565b600060208201905081810360008301526128be818461239d565b905092915050565b600060208201905081810360008301526128df816123d6565b9050919050565b600060208201905081810360008301526128ff816123f9565b9050919050565b6000602082019050818103600083015261291f8161241c565b9050919050565b6000602082019050818103600083015261293f8161243f565b9050919050565b6000602082019050818103600083015261295f81612462565b9050919050565b6000602082019050818103600083015261297f81612485565b9050919050565b6000602082019050818103600083015261299f816124a8565b9050919050565b600060208201905081810360008301526129bf816124cb565b9050919050565b600060208201905081810360008301526129df816124ee565b9050919050565b600060208201905081810360008301526129ff81612511565b9050919050565b60006020820190508181036000830152612a1f81612534565b9050919050565b60006020820190508181036000830152612a3f81612557565b9050919050565b60006020820190508181036000830152612a5f8161257a565b9050919050565b60006020820190508181036000830152612a7f8161259d565b9050919050565b60006020820190508181036000830152612a9f816125c0565b9050919050565b60006020820190508181036000830152612abf816125e3565b9050919050565b60006020820190508181036000830152612adf81612606565b9050919050565b60006020820190508181036000830152612aff81612629565b9050919050565b60006020820190508181036000830152612b1f8161264c565b9050919050565b60006020820190508181036000830152612b3f8161266f565b9050919050565b60006020820190508181036000830152612b5f81612692565b9050919050565b60006020820190508181036000830152612b7f816126b5565b9050919050565b60006020820190508181036000830152612b9f816126d8565b9050919050565b60006020820190508181036000830152612bbf816126fb565b9050919050565b60006020820190508181036000830152612bdf8161271e565b9050919050565b60006020820190508181036000830152612bff81612741565b9050919050565b60006020820190508181036000830152612c1f81612764565b9050919050565b6000602082019050612c3b6000830184612787565b92915050565b6000604082019050612c566000830185612787565b612c636020830184612787565b9392505050565b6000602082019050612c7f6000830184612796565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612cc282612e0a565b9150612ccd83612e0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0257612d01612ed9565b5b828201905092915050565b6000612d1882612e0a565b9150612d2383612e0a565b925082612d3357612d32612f08565b5b828204905092915050565b6000612d4982612e0a565b9150612d5483612e0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d8d57612d8c612ed9565b5b828202905092915050565b6000612da382612e0a565b9150612dae83612e0a565b925082821015612dc157612dc0612ed9565b5b828203905092915050565b6000612dd782612dea565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612e2c82612e33565b9050919050565b6000612e3e82612dea565b9050919050565b60005b83811015612e63578082015181840152602081019050612e48565b83811115612e72576000848401525b50505050565b60006002820490506001821680612e9057607f821691505b60208210811415612ea457612ea3612f37565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4533000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4535000000000000000000000000000000000000000000000000000000000000600082015250565b7f4532000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4536000000000000000000000000000000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4538000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531380000000000000000000000000000000000000000000000000000000000600082015250565b7f4531370000000000000000000000000000000000000000000000000000000000600082015250565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b7f4537000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531330000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4531360000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4534000000000000000000000000000000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61355481612dcc565b811461355f57600080fd5b50565b61356b81612dde565b811461357657600080fd5b50565b61358281612e0a565b811461358d57600080fd5b5056fea264697066735822122061cc7417a51493f7b1738afb0b1b01f52565c0ee3829ca84066ff6e34d0ab54964736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000015010ba000000000000000000000000000000000000000000000000000000000151461a

-----Decoded View---------------
Arg [0] : _startBlock (uint256): 22024378
Arg [1] : _endBlock (uint256): 22103578

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000015010ba
Arg [1] : 000000000000000000000000000000000000000000000000000000000151461a


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.