ETH Price: $2,868.53 (-9.79%)
Gas: 15 Gwei

Token

Loot Wars XP (LWXP)
 

Overview

Max Total Supply

136,701,000 LWXP

Holders

185

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000 LWXP

Value
$0.00
0xb75e6a898f4d7dd32efea8d27094432b0f90618d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LWXP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-03
*/

// SPDX-License-Identifier: GPL-3.0
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;
    }
}

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/// @title LWXP for Loot holders!
/// FORKED FROM: Adventure gold at 0x32353a6c91143bfd6c7d363b546e62a9a2489a20
/// @author Will Papper <https://twitter.com/WillPapper>
/// @notice This contract mints LWXP for Loot Weapon holders and provides
/// administrative functions to the Loot Wars DAO. It allows:
/// * Loot Weapon holders to claim LWXP
/// * A DAO to mint LWXP for use within the Loot ecosystem
contract LWXP is Context, Ownable, ERC20Burnable {
    // Loot weapon contract is available at https://etherscan.io/address/0x0ac0ecc6d249f1383c5c7c2ff4941bd56decdd14#code
    address public lootWeaponContractAddress =
        0x0ac0ECc6D249F1383c5C7c2Ff4941Bd56DEcDd14;
    IERC721Enumerable public lootWeaponContract;

    // Give out 100,000 LWXP for every Loot Bag that a user holds
    uint256 public LWXPPerTokenId = 100000 * (10**decimals());

    uint256 public tokenIdStart = 1;

    uint256 public tokenIdEnd = 10000;

    // Track claimed tokens
    mapping(uint256 => bool) public claimedByTokenId;

    constructor() Ownable() ERC20("Loot Wars XP ", "LWXP") {
        // Transfer ownership to the Loot DAO
        // Ownable by OpenZeppelin automatically sets owner to msg.sender, but
        // we're going to be using a separate wallet for deployment
        transferOwnership(0x132D373145d72f4Eb4859cD18f34D08c3d62C7a6);
        lootWeaponContract = IERC721Enumerable(lootWeaponContractAddress);
    }

    /// @notice Claim LWXP for a given Loot ID
    /// @param tokenId The tokenId of the Loot NFT
    function claimById(uint256 tokenId) external {
        // Follow the Checks-Effects-Interactions pattern to prevent reentrancy
        // attacks

        // Checks

        // Check that the msgSender owns the token that is being claimed
        require(
            _msgSender() == lootWeaponContract.ownerOf(tokenId),
            "MUST_OWN_TOKEN_ID"
        );

        // Further Checks, Effects, and Interactions are contained within the
        // _claim() function
        _claim(tokenId, _msgSender());
    }

    /// @notice Claim LWXP for all tokens owned by the sender
    /// @notice This function will run out of gas if you have too much loot! If
    /// this is a concern, you should use claimRangeForOwner and claim LWXP
    /// in batches.
    function claimAllForOwner() external {
        uint256 tokenBalanceOwner = lootWeaponContract.balanceOf(_msgSender());

        // Checks
        require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED");

        // i < tokenBalanceOwner because tokenBalanceOwner is 1-indexed
        for (uint256 i = 0; i < tokenBalanceOwner; i++) {
            // Further Checks, Effects, and Interactions are contained within
            // the _claim() function
            _claim(
                lootWeaponContract.tokenOfOwnerByIndex(_msgSender(), i),
                _msgSender()
            );
        }
    }

    /// @notice Claim LWXP for all tokens owned by the sender within a
    /// given range
    /// @notice This function is useful if you own too much Loot to claim all at
    /// once or if you want to leave some Loot unclaimed.
    function claimRangeForOwner(uint256 ownerIndexStart, uint256 ownerIndexEnd)
        external
    {
        uint256 tokenBalanceOwner = lootWeaponContract.balanceOf(_msgSender());

        // Checks
        require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED");

        // We use < for ownerIndexEnd and tokenBalanceOwner because
        // tokenOfOwnerByIndex is 0-indexed while the token balance is 1-indexed
        require(
            ownerIndexStart >= 0 && ownerIndexEnd < tokenBalanceOwner,
            "INDEX_OUT_OF_RANGE"
        );

        // i <= ownerIndexEnd because ownerIndexEnd is 0-indexed
        for (uint256 i = ownerIndexStart; i <= ownerIndexEnd; i++) {
            // Further Checks, Effects, and Interactions are contained within
            // the _claim() function
            _claim(
                lootWeaponContract.tokenOfOwnerByIndex(_msgSender(), i),
                _msgSender()
            );
        }
    }

    /// @dev Internal function to mint Loot upon claiming
    function _claim(uint256 tokenId, address tokenOwner) internal {
        // Checks
        // Check that the token ID is in range
        // We use >= and <= to here because all of the token IDs are 0-indexed
        require(
            tokenId >= tokenIdStart && tokenId <= tokenIdEnd,
            "TOKEN_ID_OUT_OF_RANGE"
        );

        // Check that LWXP have not already been claimed
        // for a given tokenId
        require(
            !claimedByTokenId[tokenId],
            "LWXP_CLAIMED_FOR_TOKEN_ID"
        );

        // Effects

        // Mark that LWXP has been claimed for the
        // given tokenId
        claimedByTokenId[tokenId] = true;

        // Interactions

        // Send LWXP to the owner of the token ID
        _mint(tokenOwner, LWXPPerTokenId);
    }

    /// @notice Allows the DAO to mint new tokens for use within the Loot
    /// Ecosystem
    /// @param amountDisplayValue The amount of Loot to mint. This should be
    /// input as the display value, not in raw decimals. If you want to mint
    /// 100 Loot, you should enter "100" rather than the value of 100 * 10^18.
    function daoMint(uint256 amountDisplayValue) external onlyOwner {
        _mint(owner(), amountDisplayValue * (10**decimals()));
    }

    /// @notice Allows the DAO to set a new contract address for Loot. This is
    /// relevant in the event that Loot migrates to a new contract.
    /// @param lootWeaponContractAddress_ The new contract address for Loot
    function daoSetLootWeaponContractAddress(address lootWeaponContractAddress_)
        external
        onlyOwner
    {
        lootWeaponContractAddress = lootWeaponContractAddress_;
        lootWeaponContract = IERC721Enumerable(lootWeaponContractAddress);
    }

    /// @notice Allows the DAO to set the token IDs that are eligible to claim
    /// Loot
    /// @param tokenIdStart_ The start of the eligible token range
    /// @param tokenIdEnd_ The end of the eligible token range
    /// @dev This is relevant in case a future Loot contract has a different
    /// total supply of Loot
    function daoSetTokenIdRange(uint256 tokenIdStart_, uint256 tokenIdEnd_)
        external
        onlyOwner
    {
        tokenIdStart = tokenIdStart_;
        tokenIdEnd = tokenIdEnd_;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"LWXPPerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAllForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownerIndexStart","type":"uint256"},{"internalType":"uint256","name":"ownerIndexEnd","type":"uint256"}],"name":"claimRangeForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountDisplayValue","type":"uint256"}],"name":"daoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lootWeaponContractAddress_","type":"address"}],"name":"daoSetLootWeaponContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdStart_","type":"uint256"},{"internalType":"uint256","name":"tokenIdEnd_","type":"uint256"}],"name":"daoSetTokenIdRange","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":[{"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":"lootWeaponContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootWeaponContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a01b031916730ac0ecc6d249f1383c5c7c2ff4941bd56decdd141790556200003462000144565b6200004190600a620003a0565b6200005090620186a062000498565b6008556001600955612710600a553480156200006b57600080fd5b506040518060400160405280600d81526020016c02637b7ba102bb0b939902c281609d1b8152506040518060400160405280600481526020016304c5758560e41b815250620000c9620000c36200014960201b60201c565b6200014d565b8151620000de90600490602085019062000232565b508051620000f490600590602084019062000232565b5050506200011c73132d373145d72f4eb4859cd18f34d08c3d62c7a66200019d60201b60201c565b600654600780546001600160a01b0319166001600160a01b039092169190911790556200050d565b601290565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001a762000149565b6001600160a01b0316620001ba62000223565b6001600160a01b031614620001ec5760405162461bcd60e51b8152600401620001e3906200031e565b60405180910390fd5b6001600160a01b038116620002155760405162461bcd60e51b8152600401620001e390620002d8565b62000220816200014d565b50565b6000546001600160a01b031690565b8280546200024090620004ba565b90600052602060002090601f016020900481019282620002645760008555620002af565b82601f106200027f57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002af57825182559160200191906001019062000292565b50620002bd929150620002c1565b5090565b5b80821115620002bd5760008155600101620002c2565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80825b600180861162000367575062000397565b8187048211156200037c576200037c620004f7565b808616156200038a57918102915b9490941c93800262000356565b94509492505050565b6000620003b460001960ff851684620003bb565b9392505050565b600082620003cc57506001620003b4565b81620003db57506000620003b4565b8160018114620003f45760028114620003ff5762000433565b6001915050620003b4565b60ff841115620004135762000413620004f7565b6001841b9150848211156200042c576200042c620004f7565b50620003b4565b5060208310610133831016604e8410600b84101617156200046b575081810a83811115620004655762000465620004f7565b620003b4565b6200047a848484600162000353565b8086048211156200048f576200048f620004f7565b02949350505050565b6000816000190483118215151615620004b557620004b5620004f7565b500290565b600281046001821680620004cf57607f821691505b60208210811415620004f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61188a806200051d6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636df63f02116100f957806395d89b4111610097578063becf774111610071578063becf774114610364578063cbf0b27614610377578063dd62ed3e1461037f578063f2fde38b14610392576101c4565b806395d89b4114610336578063a457c2d71461033e578063a9059cbb14610351576101c4565b806379cc6790116100d357806379cc6790146102f5578063878e7ea514610308578063896265b31461031b5780638da5cb5b1461032e576101c4565b80636df63f02146102d257806370a08231146102da578063715018a6146102ed576101c4565b806334665b361161016657806343f428021161014057806343f428021461029c5780634da7808a146102a457806362759f6c146102b757806364b472c9146102ca576101c4565b806334665b3614610261578063395093511461027657806342966c6814610289576101c4565b806318160ddd116101a257806318160ddd1461021c57806323b872dd146102315780632a38906214610244578063313ce5671461024c576101c4565b806306fdde03146101c9578063095ea7b3146101e75780630c12bac814610207575b600080fd5b6101d16103a5565b6040516101de91906111c4565b60405180910390f35b6101fa6101f5366004611110565b610437565b6040516101de91906111b9565b61020f610454565b6040516101de919061118c565b610224610463565b6040516101de9190611657565b6101fa61023f3660046110d0565b610469565b610224610504565b61025461050a565b6040516101de9190611660565b61027461026f366004611060565b61050f565b005b6101fa610284366004611110565b61057d565b61027461029736600461113b565b6105d1565b6102246105e5565b6102746102b236600461116b565b6105eb565b6102746102c536600461113b565b610635565b61020f6106a1565b6102246106b0565b6102246102e8366004611060565b6106b6565b6102746106d1565b610274610303366004611110565b61071c565b61027461031636600461116b565b61076f565b6101fa61032936600461113b565b6108f1565b61020f610906565b6101d1610915565b6101fa61034c366004611110565b610924565b6101fa61035f366004611110565b61099d565b61027461037236600461113b565b6109b1565b610274610a74565b61022461038d366004611098565b610b5c565b6102746103a0366004611060565b610b87565b6060600480546103b4906117d3565b80601f01602080910402602001604051908101604052809291908181526020018280546103e0906117d3565b801561042d5780601f106104025761010080835404028352916020019161042d565b820191906000526020600020905b81548152906001019060200180831161041057829003601f168201915b5050505050905090565b600061044b610444610bf5565b8484610bf9565b50600192915050565b6006546001600160a01b031681565b60035490565b6000610476848484610cad565b6001600160a01b038416600090815260026020526040812081610497610bf5565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104e35760405162461bcd60e51b81526004016104da906113f8565b60405180910390fd5b6104f7856104ef610bf5565b858403610bf9565b60019150505b9392505050565b60095481565b601290565b610517610bf5565b6001600160a01b0316610528610906565b6001600160a01b03161461054e5760405162461bcd60e51b81526004016104da90611440565b600680546001600160a01b03199081166001600160a01b03938416179182905560078054929093169116179055565b600061044b61058a610bf5565b848460026000610598610bf5565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105cc919061166e565b610bf9565b6105e26105dc610bf5565b82610dd1565b50565b600a5481565b6105f3610bf5565b6001600160a01b0316610604610906565b6001600160a01b03161461062a5760405162461bcd60e51b81526004016104da90611440565b600991909155600a55565b61063d610bf5565b6001600160a01b031661064e610906565b6001600160a01b0316146106745760405162461bcd60e51b81526004016104da90611440565b6105e261067f610906565b61068761050a565b61069290600a6116cc565b61069c908461179d565b610ec2565b6007546001600160a01b031681565b60085481565b6001600160a01b031660009081526001602052604090205490565b6106d9610bf5565b6001600160a01b03166106ea610906565b6001600160a01b0316146107105760405162461bcd60e51b81526004016104da90611440565b61071a6000610f8a565b565b600061072a8361038d610bf5565b90508181101561074c5760405162461bcd60e51b81526004016104da90611475565b61076083610758610bf5565b848403610bf9565b61076a8383610dd1565b505050565b6007546000906001600160a01b03166370a0823161078b610bf5565b6040518263ffffffff1660e01b81526004016107a7919061118c565b60206040518083038186803b1580156107bf57600080fd5b505afa1580156107d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f79190611153565b9050600081116108195760405162461bcd60e51b81526004016104da906115b2565b8082106108385760405162461bcd60e51b81526004016104da9061125a565b825b8281116108eb576007546108d9906001600160a01b0316632f745c5961085e610bf5565b846040518363ffffffff1660e01b815260040161087c9291906111a0565b60206040518083038186803b15801561089457600080fd5b505afa1580156108a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cc9190611153565b6108d4610bf5565b610fda565b806108e38161180e565b91505061083a565b50505050565b600b6020526000908152604090205460ff1681565b6000546001600160a01b031690565b6060600580546103b4906117d3565b60008060026000610933610bf5565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561097f5760405162461bcd60e51b81526004016104da906115db565b61099361098a610bf5565b85858403610bf9565b5060019392505050565b600061044b6109aa610bf5565b8484610cad565b6007546040516331a9108f60e11b81526001600160a01b0390911690636352211e906109e1908490600401611657565b60206040518083038186803b1580156109f957600080fd5b505afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a31919061107c565b6001600160a01b0316610a42610bf5565b6001600160a01b031614610a685760405162461bcd60e51b81526004016104da90611396565b6105e2816108d4610bf5565b6007546000906001600160a01b03166370a08231610a90610bf5565b6040518263ffffffff1660e01b8152600401610aac919061118c565b60206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc9190611153565b905060008111610b1e5760405162461bcd60e51b81526004016104da906115b2565b60005b81811015610b5857600754610b46906001600160a01b0316632f745c5961085e610bf5565b80610b508161180e565b915050610b21565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610b8f610bf5565b6001600160a01b0316610ba0610906565b6001600160a01b031614610bc65760405162461bcd60e51b81526004016104da90611440565b6001600160a01b038116610bec5760405162461bcd60e51b81526004016104da906112c8565b6105e281610f8a565b3390565b6001600160a01b038316610c1f5760405162461bcd60e51b81526004016104da9061153f565b6001600160a01b038216610c455760405162461bcd60e51b81526004016104da9061130e565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610ca0908590611657565b60405180910390a3505050565b6001600160a01b038316610cd35760405162461bcd60e51b81526004016104da906114fa565b6001600160a01b038216610cf95760405162461bcd60e51b81526004016104da90611217565b610d0483838361076a565b6001600160a01b03831660009081526001602052604090205481811015610d3d5760405162461bcd60e51b81526004016104da90611350565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d7490849061166e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbe9190611657565b60405180910390a36108eb84848461076a565b6001600160a01b038216610df75760405162461bcd60e51b81526004016104da906114b9565b610e038260008361076a565b6001600160a01b03821660009081526001602052604090205481811015610e3c5760405162461bcd60e51b81526004016104da90611286565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610e6b9084906117bc565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610eae908690611657565b60405180910390a361076a8360008461076a565b6001600160a01b038216610ee85760405162461bcd60e51b81526004016104da90611620565b610ef46000838361076a565b8060036000828254610f06919061166e565b90915550506001600160a01b03821660009081526001602052604081208054839290610f3390849061166e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f76908590611657565b60405180910390a3610b586000838361076a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009548210158015610fee5750600a548211155b61100a5760405162461bcd60e51b81526004016104da90611583565b6000828152600b602052604090205460ff16156110395760405162461bcd60e51b81526004016104da906113c1565b6000828152600b60205260409020805460ff19166001179055600854610b58908290610ec2565b600060208284031215611071578081fd5b81356104fd8161183f565b60006020828403121561108d578081fd5b81516104fd8161183f565b600080604083850312156110aa578081fd5b82356110b58161183f565b915060208301356110c58161183f565b809150509250929050565b6000806000606084860312156110e4578081fd5b83356110ef8161183f565b925060208401356110ff8161183f565b929592945050506040919091013590565b60008060408385031215611122578182fd5b823561112d8161183f565b946020939093013593505050565b60006020828403121561114c578081fd5b5035919050565b600060208284031215611164578081fd5b5051919050565b6000806040838503121561117d578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156111f0578581018301518582016040015282016111d4565b818111156112015783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260129082015271494e4445585f4f55545f4f465f52414e474560701b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260119082015270135554d517d3d5d397d513d2d15397d251607a1b604082015260600190565b60208082526019908201527f4c5758505f434c41494d45445f464f525f544f4b454e5f494400000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260159082015274544f4b454e5f49445f4f55545f4f465f52414e474560581b604082015260600190565b6020808252600f908201526e1393d7d513d2d15394d7d3d5d39151608a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561168157611681611829565b500190565b80825b600180861161169857506116c3565b8187048211156116aa576116aa611829565b808616156116b757918102915b9490941c938002611689565b94509492505050565b60006104fd60001960ff8516846000826116e8575060016104fd565b816116f5575060006104fd565b816001811461170b576002811461171557611742565b60019150506104fd565b60ff84111561172657611726611829565b6001841b91508482111561173c5761173c611829565b506104fd565b5060208310610133831016604e8410600b8410161715611775575081810a8381111561177057611770611829565b6104fd565b6117828484846001611686565b80860482111561179457611794611829565b02949350505050565b60008160001904831182151516156117b7576117b7611829565b500290565b6000828210156117ce576117ce611829565b500390565b6002810460018216806117e757607f821691505b6020821081141561180857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561182257611822611829565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146105e257600080fdfea264697066735822122014e93c793270e894dca9aa291347167dd678fe899dea2bbf6ec2d9a16b8e608964736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636df63f02116100f957806395d89b4111610097578063becf774111610071578063becf774114610364578063cbf0b27614610377578063dd62ed3e1461037f578063f2fde38b14610392576101c4565b806395d89b4114610336578063a457c2d71461033e578063a9059cbb14610351576101c4565b806379cc6790116100d357806379cc6790146102f5578063878e7ea514610308578063896265b31461031b5780638da5cb5b1461032e576101c4565b80636df63f02146102d257806370a08231146102da578063715018a6146102ed576101c4565b806334665b361161016657806343f428021161014057806343f428021461029c5780634da7808a146102a457806362759f6c146102b757806364b472c9146102ca576101c4565b806334665b3614610261578063395093511461027657806342966c6814610289576101c4565b806318160ddd116101a257806318160ddd1461021c57806323b872dd146102315780632a38906214610244578063313ce5671461024c576101c4565b806306fdde03146101c9578063095ea7b3146101e75780630c12bac814610207575b600080fd5b6101d16103a5565b6040516101de91906111c4565b60405180910390f35b6101fa6101f5366004611110565b610437565b6040516101de91906111b9565b61020f610454565b6040516101de919061118c565b610224610463565b6040516101de9190611657565b6101fa61023f3660046110d0565b610469565b610224610504565b61025461050a565b6040516101de9190611660565b61027461026f366004611060565b61050f565b005b6101fa610284366004611110565b61057d565b61027461029736600461113b565b6105d1565b6102246105e5565b6102746102b236600461116b565b6105eb565b6102746102c536600461113b565b610635565b61020f6106a1565b6102246106b0565b6102246102e8366004611060565b6106b6565b6102746106d1565b610274610303366004611110565b61071c565b61027461031636600461116b565b61076f565b6101fa61032936600461113b565b6108f1565b61020f610906565b6101d1610915565b6101fa61034c366004611110565b610924565b6101fa61035f366004611110565b61099d565b61027461037236600461113b565b6109b1565b610274610a74565b61022461038d366004611098565b610b5c565b6102746103a0366004611060565b610b87565b6060600480546103b4906117d3565b80601f01602080910402602001604051908101604052809291908181526020018280546103e0906117d3565b801561042d5780601f106104025761010080835404028352916020019161042d565b820191906000526020600020905b81548152906001019060200180831161041057829003601f168201915b5050505050905090565b600061044b610444610bf5565b8484610bf9565b50600192915050565b6006546001600160a01b031681565b60035490565b6000610476848484610cad565b6001600160a01b038416600090815260026020526040812081610497610bf5565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104e35760405162461bcd60e51b81526004016104da906113f8565b60405180910390fd5b6104f7856104ef610bf5565b858403610bf9565b60019150505b9392505050565b60095481565b601290565b610517610bf5565b6001600160a01b0316610528610906565b6001600160a01b03161461054e5760405162461bcd60e51b81526004016104da90611440565b600680546001600160a01b03199081166001600160a01b03938416179182905560078054929093169116179055565b600061044b61058a610bf5565b848460026000610598610bf5565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105cc919061166e565b610bf9565b6105e26105dc610bf5565b82610dd1565b50565b600a5481565b6105f3610bf5565b6001600160a01b0316610604610906565b6001600160a01b03161461062a5760405162461bcd60e51b81526004016104da90611440565b600991909155600a55565b61063d610bf5565b6001600160a01b031661064e610906565b6001600160a01b0316146106745760405162461bcd60e51b81526004016104da90611440565b6105e261067f610906565b61068761050a565b61069290600a6116cc565b61069c908461179d565b610ec2565b6007546001600160a01b031681565b60085481565b6001600160a01b031660009081526001602052604090205490565b6106d9610bf5565b6001600160a01b03166106ea610906565b6001600160a01b0316146107105760405162461bcd60e51b81526004016104da90611440565b61071a6000610f8a565b565b600061072a8361038d610bf5565b90508181101561074c5760405162461bcd60e51b81526004016104da90611475565b61076083610758610bf5565b848403610bf9565b61076a8383610dd1565b505050565b6007546000906001600160a01b03166370a0823161078b610bf5565b6040518263ffffffff1660e01b81526004016107a7919061118c565b60206040518083038186803b1580156107bf57600080fd5b505afa1580156107d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f79190611153565b9050600081116108195760405162461bcd60e51b81526004016104da906115b2565b8082106108385760405162461bcd60e51b81526004016104da9061125a565b825b8281116108eb576007546108d9906001600160a01b0316632f745c5961085e610bf5565b846040518363ffffffff1660e01b815260040161087c9291906111a0565b60206040518083038186803b15801561089457600080fd5b505afa1580156108a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cc9190611153565b6108d4610bf5565b610fda565b806108e38161180e565b91505061083a565b50505050565b600b6020526000908152604090205460ff1681565b6000546001600160a01b031690565b6060600580546103b4906117d3565b60008060026000610933610bf5565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561097f5760405162461bcd60e51b81526004016104da906115db565b61099361098a610bf5565b85858403610bf9565b5060019392505050565b600061044b6109aa610bf5565b8484610cad565b6007546040516331a9108f60e11b81526001600160a01b0390911690636352211e906109e1908490600401611657565b60206040518083038186803b1580156109f957600080fd5b505afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a31919061107c565b6001600160a01b0316610a42610bf5565b6001600160a01b031614610a685760405162461bcd60e51b81526004016104da90611396565b6105e2816108d4610bf5565b6007546000906001600160a01b03166370a08231610a90610bf5565b6040518263ffffffff1660e01b8152600401610aac919061118c565b60206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc9190611153565b905060008111610b1e5760405162461bcd60e51b81526004016104da906115b2565b60005b81811015610b5857600754610b46906001600160a01b0316632f745c5961085e610bf5565b80610b508161180e565b915050610b21565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610b8f610bf5565b6001600160a01b0316610ba0610906565b6001600160a01b031614610bc65760405162461bcd60e51b81526004016104da90611440565b6001600160a01b038116610bec5760405162461bcd60e51b81526004016104da906112c8565b6105e281610f8a565b3390565b6001600160a01b038316610c1f5760405162461bcd60e51b81526004016104da9061153f565b6001600160a01b038216610c455760405162461bcd60e51b81526004016104da9061130e565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610ca0908590611657565b60405180910390a3505050565b6001600160a01b038316610cd35760405162461bcd60e51b81526004016104da906114fa565b6001600160a01b038216610cf95760405162461bcd60e51b81526004016104da90611217565b610d0483838361076a565b6001600160a01b03831660009081526001602052604090205481811015610d3d5760405162461bcd60e51b81526004016104da90611350565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d7490849061166e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbe9190611657565b60405180910390a36108eb84848461076a565b6001600160a01b038216610df75760405162461bcd60e51b81526004016104da906114b9565b610e038260008361076a565b6001600160a01b03821660009081526001602052604090205481811015610e3c5760405162461bcd60e51b81526004016104da90611286565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610e6b9084906117bc565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610eae908690611657565b60405180910390a361076a8360008461076a565b6001600160a01b038216610ee85760405162461bcd60e51b81526004016104da90611620565b610ef46000838361076a565b8060036000828254610f06919061166e565b90915550506001600160a01b03821660009081526001602052604081208054839290610f3390849061166e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f76908590611657565b60405180910390a3610b586000838361076a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009548210158015610fee5750600a548211155b61100a5760405162461bcd60e51b81526004016104da90611583565b6000828152600b602052604090205460ff16156110395760405162461bcd60e51b81526004016104da906113c1565b6000828152600b60205260409020805460ff19166001179055600854610b58908290610ec2565b600060208284031215611071578081fd5b81356104fd8161183f565b60006020828403121561108d578081fd5b81516104fd8161183f565b600080604083850312156110aa578081fd5b82356110b58161183f565b915060208301356110c58161183f565b809150509250929050565b6000806000606084860312156110e4578081fd5b83356110ef8161183f565b925060208401356110ff8161183f565b929592945050506040919091013590565b60008060408385031215611122578182fd5b823561112d8161183f565b946020939093013593505050565b60006020828403121561114c578081fd5b5035919050565b600060208284031215611164578081fd5b5051919050565b6000806040838503121561117d578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b818110156111f0578581018301518582016040015282016111d4565b818111156112015783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260129082015271494e4445585f4f55545f4f465f52414e474560701b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260119082015270135554d517d3d5d397d513d2d15397d251607a1b604082015260600190565b60208082526019908201527f4c5758505f434c41494d45445f464f525f544f4b454e5f494400000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260159082015274544f4b454e5f49445f4f55545f4f465f52414e474560581b604082015260600190565b6020808252600f908201526e1393d7d513d2d15394d7d3d5d39151608a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561168157611681611829565b500190565b80825b600180861161169857506116c3565b8187048211156116aa576116aa611829565b808616156116b757918102915b9490941c938002611689565b94509492505050565b60006104fd60001960ff8516846000826116e8575060016104fd565b816116f5575060006104fd565b816001811461170b576002811461171557611742565b60019150506104fd565b60ff84111561172657611726611829565b6001841b91508482111561173c5761173c611829565b506104fd565b5060208310610133831016604e8410600b8410161715611775575081810a8381111561177057611770611829565b6104fd565b6117828484846001611686565b80860482111561179457611794611829565b02949350505050565b60008160001904831182151516156117b7576117b7611829565b500290565b6000828210156117ce576117ce611829565b500390565b6002810460018216806117e757607f821691505b6020821081141561180857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561182257611822611829565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146105e257600080fdfea264697066735822122014e93c793270e894dca9aa291347167dd678fe899dea2bbf6ec2d9a16b8e608964736f6c63430008000033

Deployed Bytecode Sourcemap

27614:6149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8420:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10728:210;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27792:94::-;;;:::i;:::-;;;;;;;:::i;9540:108::-;;;:::i;:::-;;;;;;;:::i;11420:529::-;;;;;;:::i;:::-;;:::i;28078:31::-;;;:::i;9382:93::-;;;:::i;:::-;;;;;;;:::i;32954:268::-;;;;;;:::i;:::-;;:::i;:::-;;12358:297;;;;;;:::i;:::-;;:::i;25513:91::-;;;;;;:::i;:::-;;:::i;28118:33::-;;;:::i;33564:196::-;;;;;;:::i;:::-;;:::i;32584:136::-;;;;;;:::i;:::-;;:::i;27893:43::-;;;:::i;28012:57::-;;;:::i;9711:177::-;;;;;;:::i;:::-;;:::i;2404:94::-;;;:::i;25923:368::-;;;;;;:::i;:::-;;:::i;30394:965::-;;;;;;:::i;:::-;;:::i;28189:48::-;;;;;;:::i;:::-;;:::i;1753:87::-;;;:::i;8639:104::-;;;:::i;13158:482::-;;;;;;:::i;:::-;;:::i;10101:216::-;;;;;;:::i;:::-;;:::i;28761:531::-;;;;;;:::i;:::-;;:::i;29542:610::-;;;:::i;10380:201::-;;;;;;:::i;:::-;;:::i;2653:229::-;;;;;;:::i;:::-;;:::i;8420:100::-;8474:13;8507:5;8500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8420:100;:::o;10728:210::-;10847:4;10869:39;10878:12;:10;:12::i;:::-;10892:7;10901:6;10869:8;:39::i;:::-;-1:-1:-1;10926:4:0;10728:210;;;;:::o;27792:94::-;;;-1:-1:-1;;;;;27792:94:0;;:::o;9540:108::-;9628:12;;9540:108;:::o;11420:529::-;11560:4;11577:36;11587:6;11595:9;11606:6;11577:9;:36::i;:::-;-1:-1:-1;;;;;11653:19:0;;11626:24;11653:19;;;:11;:19;;;;;11626:24;11673:12;:10;:12::i;:::-;-1:-1:-1;;;;;11653:33:0;-1:-1:-1;;;;;11653:33:0;;;;;;;;;;;;;11626:60;;11739:6;11719:16;:26;;11697:116;;;;-1:-1:-1;;;11697:116:0;;;;;;;:::i;:::-;;;;;;;;;11849:57;11858:6;11866:12;:10;:12::i;:::-;11899:6;11880:16;:25;11849:8;:57::i;:::-;11937:4;11930:11;;;11420:529;;;;;;:::o;28078:31::-;;;;:::o;9382:93::-;9465:2;9382:93;:::o;32954:268::-;1984:12;:10;:12::i;:::-;-1:-1:-1;;;;;1973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1973:23:0;;1965:68;;;;-1:-1:-1;;;1965:68:0;;;;;;;:::i;:::-;33084:25:::1;:54:::0;;-1:-1:-1;;;;;;33084:54:0;;::::1;-1:-1:-1::0;;;;;33084:54:0;;::::1;;::::0;;;;33149:18:::1;:65:::0;;33188:25;;;::::1;33149:65:::0;::::1;;::::0;;32954:268::o;12358:297::-;12473:4;12495:130;12518:12;:10;:12::i;:::-;12545:7;12604:10;12567:11;:25;12579:12;:10;:12::i;:::-;-1:-1:-1;;;;;12567:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12567:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;12495:8;:130::i;25513:91::-;25569:27;25575:12;:10;:12::i;:::-;25589:6;25569:5;:27::i;:::-;25513:91;:::o;28118:33::-;;;;:::o;33564:196::-;1984:12;:10;:12::i;:::-;-1:-1:-1;;;;;1973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1973:23:0;;1965:68;;;;-1:-1:-1;;;1965:68:0;;;;;;;:::i;:::-;33689:12:::1;:28:::0;;;;33728:10:::1;:24:::0;33564:196::o;32584:136::-;1984:12;:10;:12::i;:::-;-1:-1:-1;;;;;1973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1973:23:0;;1965:68;;;;-1:-1:-1;;;1965:68:0;;;;;;;:::i;:::-;32659:53:::1;32665:7;:5;:7::i;:::-;32700:10;:8;:10::i;:::-;32696:14;::::0;:2:::1;:14;:::i;:::-;32674:37;::::0;:18;:37:::1;:::i;:::-;32659:5;:53::i;27893:43::-:0;;;-1:-1:-1;;;;;27893:43:0;;:::o;28012:57::-;;;;:::o;9711:177::-;-1:-1:-1;;;;;9862:18:0;9830:7;9862:18;;;:9;:18;;;;;;;9711:177::o;2404:94::-;1984:12;:10;:12::i;:::-;-1:-1:-1;;;;;1973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1973:23:0;;1965:68;;;;-1:-1:-1;;;1965:68:0;;;;;;;:::i;:::-;2469:21:::1;2487:1;2469:9;:21::i;:::-;2404:94::o:0;25923:368::-;26000:24;26027:32;26037:7;26046:12;:10;:12::i;26027:32::-;26000:59;;26098:6;26078:16;:26;;26070:75;;;;-1:-1:-1;;;26070:75:0;;;;;;;:::i;:::-;26181:58;26190:7;26199:12;:10;:12::i;:::-;26232:6;26213:16;:25;26181:8;:58::i;:::-;26261:22;26267:7;26276:6;26261:5;:22::i;:::-;25923:368;;;:::o;30394:965::-;30532:18;;30504:25;;-1:-1:-1;;;;;30532:18:0;:28;30561:12;:10;:12::i;:::-;30532:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30504:70;;30634:1;30614:17;:21;30606:49;;;;-1:-1:-1;;;30606:49:0;;;;;;;:::i;:::-;30881:17;30865:13;:33;30819:125;;;;-1:-1:-1;;;30819:125:0;;;;;;;:::i;:::-;31040:15;31023:329;31062:13;31057:1;:18;31023:329;;31239:18;;31214:126;;-1:-1:-1;;;;;31239:18:0;:38;31278:12;:10;:12::i;:::-;31292:1;31239:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31313:12;:10;:12::i;:::-;31214:6;:126::i;:::-;31077:3;;;;:::i;:::-;;;;31023:329;;;;30394:965;;;:::o;28189:48::-;;;;;;;;;;;;;;;:::o;1753:87::-;1799:7;1826:6;-1:-1:-1;;;;;1826:6:0;1753:87;:::o;8639:104::-;8695:13;8728:7;8721:14;;;;;:::i;13158:482::-;13278:4;13300:24;13327:11;:25;13339:12;:10;:12::i;:::-;-1:-1:-1;;;;;13327:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13327:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13394:35:0;;;;13372:122;;;;-1:-1:-1;;;13372:122:0;;;;;;;:::i;:::-;13530:67;13539:12;:10;:12::i;:::-;13553:7;13581:15;13562:16;:34;13530:8;:67::i;:::-;-1:-1:-1;13628:4:0;;13158:482;-1:-1:-1;;;13158:482:0:o;10101:216::-;10223:4;10245:42;10255:12;:10;:12::i;:::-;10269:9;10280:6;10245:9;:42::i;28761:531::-;29053:18;;:35;;-1:-1:-1;;;29053:35:0;;-1:-1:-1;;;;;29053:18:0;;;;:26;;:35;;29080:7;;29053:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29037:51:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29037:51:0;;29015:118;;;;-1:-1:-1;;;29015:118:0;;;;;;;:::i;:::-;29255:29;29262:7;29271:12;:10;:12::i;29542:610::-;29618:18;;29590:25;;-1:-1:-1;;;;;29618:18:0;:28;29647:12;:10;:12::i;:::-;29618:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29590:70;;29720:1;29700:17;:21;29692:49;;;;-1:-1:-1;;;29692:49:0;;;;;;;:::i;:::-;29832:9;29827:318;29851:17;29847:1;:21;29827:318;;;30032:18;;30007:126;;-1:-1:-1;;;;;30032:18:0;:38;30071:12;:10;:12::i;30007:126::-;29870:3;;;;:::i;:::-;;;;29827:318;;;;29542:610;:::o;10380:201::-;-1:-1:-1;;;;;10546:18:0;;;10514:7;10546:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10380:201::o;2653:229::-;1984:12;:10;:12::i;:::-;-1:-1:-1;;;;;1973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1973:23:0;;1965:68;;;;-1:-1:-1;;;1965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2756:22:0;::::1;2734:110;;;;-1:-1:-1::0;;;2734:110:0::1;;;;;;;:::i;:::-;2855:19;2865:8;2855:9;:19::i;604:98::-:0;684:10;604:98;:::o;16948:380::-;-1:-1:-1;;;;;17084:19:0;;17076:68;;;;-1:-1:-1;;;17076:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17163:21:0;;17155:68;;;;-1:-1:-1;;;17155:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17236:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17288:32;;;;;17266:6;;17288:32;:::i;:::-;;;;;;;;16948:380;;;:::o;14130:770::-;-1:-1:-1;;;;;14270:20:0;;14262:70;;;;-1:-1:-1;;;14262:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14351:23:0;;14343:71;;;;-1:-1:-1;;;14343:71:0;;;;;;;:::i;:::-;14427:47;14448:6;14456:9;14467:6;14427:20;:47::i;:::-;-1:-1:-1;;;;;14511:17:0;;14487:21;14511:17;;;:9;:17;;;;;;14561:23;;;;14539:111;;;;-1:-1:-1;;;14539:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14686:17:0;;;;;;;:9;:17;;;;;;14706:22;;;14686:42;;14750:20;;;;;;;;:30;;14722:6;;14686:17;14750:30;;14722:6;;14750:30;:::i;:::-;;;;;;;;14815:9;-1:-1:-1;;;;;14798:35:0;14807:6;-1:-1:-1;;;;;14798:35:0;;14826:6;14798:35;;;;;;:::i;:::-;;;;;;;;14846:46;14866:6;14874:9;14885:6;14846:19;:46::i;15919:591::-;-1:-1:-1;;;;;16003:21:0;;15995:67;;;;-1:-1:-1;;;15995:67:0;;;;;;;:::i;:::-;16075:49;16096:7;16113:1;16117:6;16075:20;:49::i;:::-;-1:-1:-1;;;;;16162:18:0;;16137:22;16162:18;;;:9;:18;;;;;;16199:24;;;;16191:71;;;;-1:-1:-1;;;16191:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16298:18:0;;;;;;:9;:18;;;;;16319:23;;;16298:44;;16364:12;:22;;16336:6;;16298:18;16364:22;;16336:6;;16364:22;:::i;:::-;;;;-1:-1:-1;;16404:37:0;;16430:1;;-1:-1:-1;;;;;16404:37:0;;;;;;;16434:6;;16404:37;:::i;:::-;;;;;;;;16454:48;16474:7;16491:1;16495:6;16454:19;:48::i;15187:399::-;-1:-1:-1;;;;;15271:21:0;;15263:65;;;;-1:-1:-1;;;15263:65:0;;;;;;;:::i;:::-;15341:49;15370:1;15374:7;15383:6;15341:20;:49::i;:::-;15419:6;15403:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15436:18:0;;;;;;:9;:18;;;;;:28;;15458:6;;15436:18;:28;;15458:6;;15436:28;:::i;:::-;;;;-1:-1:-1;;15480:37:0;;-1:-1:-1;;;;;15480:37:0;;;15497:1;;15480:37;;;;15510:6;;15480:37;:::i;:::-;;;;;;;;15530:48;15558:1;15562:7;15571:6;15530:19;:48::i;2890:173::-;2946:16;2965:6;;-1:-1:-1;;;;;2982:17:0;;;-1:-1:-1;;;;;;2982:17:0;;;;;;3015:40;;2965:6;;;;;;;3015:40;;2946:16;3015:40;2890:173;;:::o;31426:820::-;31679:12;;31668:7;:23;;:48;;;;;31706:10;;31695:7;:21;;31668:48;31646:119;;;;-1:-1:-1;;;31646:119:0;;;;;;;:::i;:::-;31891:25;;;;:16;:25;;;;;;;;31890:26;31868:101;;;;-1:-1:-1;;;31868:101:0;;;;;;;:::i;:::-;32082:25;;;;:16;:25;;;;;:32;;-1:-1:-1;;32082:32:0;32110:4;32082:32;;;32223:14;;32205:33;;32211:10;;32205:5;:33::i;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;278:263::-;;401:2;389:9;380:7;376:23;372:32;369:2;;;422:6;414;407:22;369:2;459:9;453:16;478:33;505:5;478:33;:::i;546:402::-;;;675:2;663:9;654:7;650:23;646:32;643:2;;;696:6;688;681:22;643:2;740:9;727:23;759:33;786:5;759:33;:::i;:::-;811:5;-1:-1:-1;868:2:1;853:18;;840:32;881:35;840:32;881:35;:::i;:::-;935:7;925:17;;;633:315;;;;;:::o;953:470::-;;;;1099:2;1087:9;1078:7;1074:23;1070:32;1067:2;;;1120:6;1112;1105:22;1067:2;1164:9;1151:23;1183:33;1210:5;1183:33;:::i;:::-;1235:5;-1:-1:-1;1292:2:1;1277:18;;1264:32;1305:35;1264:32;1305:35;:::i;:::-;1057:366;;1359:7;;-1:-1:-1;;;1413:2:1;1398:18;;;;1385:32;;1057:366::o;1428:327::-;;;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1622:9;1609:23;1641:33;1668:5;1641:33;:::i;:::-;1693:5;1745:2;1730:18;;;;1717:32;;-1:-1:-1;;;1515:240:1:o;1760:190::-;;1872:2;1860:9;1851:7;1847:23;1843:32;1840:2;;;1893:6;1885;1878:22;1840:2;-1:-1:-1;1921:23:1;;1830:120;-1:-1:-1;1830:120:1:o;1955:194::-;;2078:2;2066:9;2057:7;2053:23;2049:32;2046:2;;;2099:6;2091;2084:22;2046:2;-1:-1:-1;2127:16:1;;2036:113;-1:-1:-1;2036:113:1:o;2154:258::-;;;2283:2;2271:9;2262:7;2258:23;2254:32;2251:2;;;2304:6;2296;2289:22;2251:2;-1:-1:-1;;2332:23:1;;;2402:2;2387:18;;;2374:32;;-1:-1:-1;2241:171:1:o;2417:203::-;-1:-1:-1;;;;;2581:32:1;;;;2563:51;;2551:2;2536:18;;2518:102::o;2625:274::-;-1:-1:-1;;;;;2817:32:1;;;;2799:51;;2881:2;2866:18;;2859:34;2787:2;2772:18;;2754:145::o;2904:187::-;3069:14;;3062:22;3044:41;;3032:2;3017:18;;2999:92::o;3329:603::-;;3470:2;3499;3488:9;3481:21;3531:6;3525:13;3574:6;3569:2;3558:9;3554:18;3547:34;3599:4;3612:140;3626:6;3623:1;3620:13;3612:140;;;3721:14;;;3717:23;;3711:30;3687:17;;;3706:2;3683:26;3676:66;3641:10;;3612:140;;;3770:6;3767:1;3764:13;3761:2;;;3840:4;3835:2;3826:6;3815:9;3811:22;3807:31;3800:45;3761:2;-1:-1:-1;3916:2:1;3895:15;-1:-1:-1;;3891:29:1;3876:45;;;;3923:2;3872:54;;3450:482;-1:-1:-1;;;3450:482:1:o;3937:399::-;4139:2;4121:21;;;4178:2;4158:18;;;4151:30;4217:34;4212:2;4197:18;;4190:62;-1:-1:-1;;;4283:2:1;4268:18;;4261:33;4326:3;4311:19;;4111:225::o;4341:342::-;4543:2;4525:21;;;4582:2;4562:18;;;4555:30;-1:-1:-1;;;4616:2:1;4601:18;;4594:48;4674:2;4659:18;;4515:168::o;4688:398::-;4890:2;4872:21;;;4929:2;4909:18;;;4902:30;4968:34;4963:2;4948:18;;4941:62;-1:-1:-1;;;5034:2:1;5019:18;;5012:32;5076:3;5061:19;;4862:224::o;5091:402::-;5293:2;5275:21;;;5332:2;5312:18;;;5305:30;5371:34;5366:2;5351:18;;5344:62;-1:-1:-1;;;5437:2:1;5422:18;;5415:36;5483:3;5468:19;;5265:228::o;5498:398::-;5700:2;5682:21;;;5739:2;5719:18;;;5712:30;5778:34;5773:2;5758:18;;5751:62;-1:-1:-1;;;5844:2:1;5829:18;;5822:32;5886:3;5871:19;;5672:224::o;5901:402::-;6103:2;6085:21;;;6142:2;6122:18;;;6115:30;6181:34;6176:2;6161:18;;6154:62;-1:-1:-1;;;6247:2:1;6232:18;;6225:36;6293:3;6278:19;;6075:228::o;6308:341::-;6510:2;6492:21;;;6549:2;6529:18;;;6522:30;-1:-1:-1;;;6583:2:1;6568:18;;6561:47;6640:2;6625:18;;6482:167::o;6654:349::-;6856:2;6838:21;;;6895:2;6875:18;;;6868:30;6934:27;6929:2;6914:18;;6907:55;6994:2;6979:18;;6828:175::o;7008:404::-;7210:2;7192:21;;;7249:2;7229:18;;;7222:30;7288:34;7283:2;7268:18;;7261:62;-1:-1:-1;;;7354:2:1;7339:18;;7332:38;7402:3;7387:19;;7182:230::o;7417:356::-;7619:2;7601:21;;;7638:18;;;7631:30;7697:34;7692:2;7677:18;;7670:62;7764:2;7749:18;;7591:182::o;7778:400::-;7980:2;7962:21;;;8019:2;7999:18;;;7992:30;8058:34;8053:2;8038:18;;8031:62;-1:-1:-1;;;8124:2:1;8109:18;;8102:34;8168:3;8153:19;;7952:226::o;8183:397::-;8385:2;8367:21;;;8424:2;8404:18;;;8397:30;8463:34;8458:2;8443:18;;8436:62;-1:-1:-1;;;8529:2:1;8514:18;;8507:31;8570:3;8555:19;;8357:223::o;8585:401::-;8787:2;8769:21;;;8826:2;8806:18;;;8799:30;8865:34;8860:2;8845:18;;8838:62;-1:-1:-1;;;8931:2:1;8916:18;;8909:35;8976:3;8961:19;;8759:227::o;8991:400::-;9193:2;9175:21;;;9232:2;9212:18;;;9205:30;9271:34;9266:2;9251:18;;9244:62;-1:-1:-1;;;9337:2:1;9322:18;;9315:34;9381:3;9366:19;;9165:226::o;9396:345::-;9598:2;9580:21;;;9637:2;9617:18;;;9610:30;-1:-1:-1;;;9671:2:1;9656:18;;9649:51;9732:2;9717:18;;9570:171::o;9746:339::-;9948:2;9930:21;;;9987:2;9967:18;;;9960:30;-1:-1:-1;;;10021:2:1;10006:18;;9999:45;10076:2;10061:18;;9920:165::o;10090:401::-;10292:2;10274:21;;;10331:2;10311:18;;;10304:30;10370:34;10365:2;10350:18;;10343:62;-1:-1:-1;;;10436:2:1;10421:18;;10414:35;10481:3;10466:19;;10264:227::o;10496:355::-;10698:2;10680:21;;;10737:2;10717:18;;;10710:30;10776:33;10771:2;10756:18;;10749:61;10842:2;10827:18;;10670:181::o;10856:177::-;11002:25;;;10990:2;10975:18;;10957:76::o;11038:184::-;11210:4;11198:17;;;;11180:36;;11168:2;11153:18;;11135:87::o;11227:128::-;;11298:1;11294:6;11291:1;11288:13;11285:2;;;11304:18;;:::i;:::-;-1:-1:-1;11340:9:1;;11275:80::o;11360:453::-;11456:6;11479:5;11493:314;11542:1;11579:2;11569:8;11566:16;11556:2;;11586:5;;;11556:2;11627:4;11622:3;11618:14;11612:4;11609:24;11606:2;;;11636:18;;:::i;:::-;11686:2;11676:8;11672:17;11669:2;;;11701:16;;;;11669:2;11780:17;;;;;11740:15;;11493:314;;;11437:376;;;;;;;:::o;11818:148::-;;11905:55;-1:-1:-1;;11946:4:1;11932:19;;11926:4;11971:922;12055:8;12045:2;;-1:-1:-1;12096:1:1;12110:5;;12045:2;12144:4;12134:2;;-1:-1:-1;12181:1:1;12195:5;;12134:2;12226:4;12244:1;12239:59;;;;12312:1;12307:183;;;;12219:271;;12239:59;12269:1;12260:10;;12283:5;;;12307:183;12344:3;12334:8;12331:17;12328:2;;;12351:18;;:::i;:::-;12407:1;12397:8;12393:16;12384:25;;12435:3;12428:5;12425:14;12422:2;;;12442:18;;:::i;:::-;12475:5;;;12219:271;;12574:2;12564:8;12561:16;12555:3;12549:4;12546:13;12542:36;12536:2;12526:8;12523:16;12518:2;12512:4;12509:12;12505:35;12502:77;12499:2;;;-1:-1:-1;12611:19:1;;;12646:14;;;12643:2;;;12663:18;;:::i;:::-;12696:5;;12499:2;12743:42;12781:3;12771:8;12765:4;12762:1;12743:42;:::i;:::-;12818:6;12813:3;12809:16;12800:7;12797:29;12794:2;;;12829:18;;:::i;:::-;12867:20;;12035:858;-1:-1:-1;;;;12035:858:1:o;12898:168::-;;13004:1;13000;12996:6;12992:14;12989:1;12986:21;12981:1;12974:9;12967:17;12963:45;12960:2;;;13011:18;;:::i;:::-;-1:-1:-1;13051:9:1;;12950:116::o;13071:125::-;;13139:1;13136;13133:8;13130:2;;;13144:18;;:::i;:::-;-1:-1:-1;13181:9:1;;13120:76::o;13201:380::-;13286:1;13276:12;;13333:1;13323:12;;;13344:2;;13398:4;13390:6;13386:17;13376:27;;13344:2;13451;13443:6;13440:14;13420:18;13417:38;13414:2;;;13497:10;13492:3;13488:20;13485:1;13478:31;13532:4;13529:1;13522:15;13560:4;13557:1;13550:15;13414:2;;13256:325;;;:::o;13586:135::-;;-1:-1:-1;;13646:17:1;;13643:2;;;13666:18;;:::i;:::-;-1:-1:-1;13713:1:1;13702:13;;13633:88::o;13726:127::-;13787:10;13782:3;13778:20;13775:1;13768:31;13818:4;13815:1;13808:15;13842:4;13839:1;13832:15;13858:133;-1:-1:-1;;;;;13935:31:1;;13925:42;;13915:2;;13981:1;13978;13971:12

Swarm Source

ipfs://14e93c793270e894dca9aa291347167dd678fe899dea2bbf6ec2d9a16b8e6089
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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