ETH Price: $3,273.82 (+0.42%)
Gas: 2 Gwei

Contract

0x04C0567cdBB51c3a9B1C907a56A5edA0EdeeBf71
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...192488362024-02-17 16:42:23161 days ago1708188143IN
0x04C0567c...0EdeeBf71
0 ETH0.0007291830.12680724
Set Approval For...162226302022-12-20 1:30:11585 days ago1671499811IN
0x04C0567c...0EdeeBf71
0 ETH0.0005930812.86068108
Set Approval For...162226292022-12-20 1:29:59585 days ago1671499799IN
0x04C0567c...0EdeeBf71
0 ETH0.0005554412.04457678
Set Approval For...162226252022-12-20 1:29:11585 days ago1671499751IN
0x04C0567c...0EdeeBf71
0 ETH0.0006123213.27789144
Set Approval For...162226222022-12-20 1:28:35585 days ago1671499715IN
0x04C0567c...0EdeeBf71
0 ETH0.0005840712.66526613
Set Approval For...162226212022-12-20 1:28:23585 days ago1671499703IN
0x04C0567c...0EdeeBf71
0 ETH0.0005975312.95724475
Set Approval For...162226172022-12-20 1:27:35585 days ago1671499655IN
0x04C0567c...0EdeeBf71
0 ETH0.0005652112.25635745
Set Approval For...162226172022-12-20 1:27:35585 days ago1671499655IN
0x04C0567c...0EdeeBf71
0 ETH0.0005652112.25635745
Set Approval For...162226162022-12-20 1:27:23585 days ago1671499643IN
0x04C0567c...0EdeeBf71
0 ETH0.0005588412.11818155
Set Approval For...162226112022-12-20 1:26:23585 days ago1671499583IN
0x04C0567c...0EdeeBf71
0 ETH0.0007839717
Set Approval For...162226092022-12-20 1:25:59585 days ago1671499559IN
0x04C0567c...0EdeeBf71
0 ETH0.00055912.12169089
Set Approval For...162226072022-12-20 1:25:35585 days ago1671499535IN
0x04C0567c...0EdeeBf71
0 ETH0.000582712.63561024
Set Approval For...162226072022-12-20 1:25:35585 days ago1671499535IN
0x04C0567c...0EdeeBf71
0 ETH0.000582712.63561024
Set Approval For...162226062022-12-20 1:25:23585 days ago1671499523IN
0x04C0567c...0EdeeBf71
0 ETH0.0005332811.56392501
Set Approval For...162226062022-12-20 1:25:23585 days ago1671499523IN
0x04C0567c...0EdeeBf71
0 ETH0.0006046813.1122144
Set Approval For...162226052022-12-20 1:25:11585 days ago1671499511IN
0x04C0567c...0EdeeBf71
0 ETH0.0005887612.76702644
Set Approval For...162226042022-12-20 1:24:59585 days ago1671499499IN
0x04C0567c...0EdeeBf71
0 ETH0.0006053813.12738557
Set Approval For...162225782022-12-20 1:19:47585 days ago1671499187IN
0x04C0567c...0EdeeBf71
0 ETH0.0005553512.04254694
Set Approval For...162225682022-12-20 1:17:47585 days ago1671499067IN
0x04C0567c...0EdeeBf71
0 ETH0.0005487911.90021016
Set Approval For...162225682022-12-20 1:17:47585 days ago1671499067IN
0x04C0567c...0EdeeBf71
0 ETH0.0005487911.90021016
Set Approval For...162225682022-12-20 1:17:47585 days ago1671499067IN
0x04C0567c...0EdeeBf71
0 ETH0.0005487911.90021016
Set Approval For...162225622022-12-20 1:16:35585 days ago1671498995IN
0x04C0567c...0EdeeBf71
0 ETH0.0006212613.47189034
Set Approval For...162225572022-12-20 1:15:35585 days ago1671498935IN
0x04C0567c...0EdeeBf71
0 ETH0.0006227913.52956389
Set Approval For...162225572022-12-20 1:15:35585 days ago1671498935IN
0x04C0567c...0EdeeBf71
0 ETH0.0006227913.52956389
Set Approval For...162225572022-12-20 1:15:35585 days ago1671498935IN
0x04C0567c...0EdeeBf71
0 ETH0.0006227913.52956389
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
extraDiscreetNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-29
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;


/**
 * @dev Interface for discreet in addition to the standard ERC721 interface.
 */
interface discreetNFTInterface {
    /**
     * @dev Mint token with the supplied tokenId if it is currently available.
     */
    function mint(uint256 tokenId) external;

    /**
     * @dev Mint token with the supplied tokenId if it is currently available to
     * another address.
     */
    function mint(address to, uint256 tokenId) external;

    /**
     * @dev Burn token with the supplied tokenId if it is owned, approved or
     * reclaimable. Tokens become reclaimable after ~4 million blocks without a
     * mint or transfer.
     */
    function burn(uint256 tokenId) external;

    /**
     * @dev Check the current block number at which a given token will become
     * reclaimable.
     */
    function reclaimableThreshold(uint256 tokenId) external view returns (uint256);
}


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 */
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 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;
}


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


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


interface IENSReverseRegistrar {
    function claim(address owner) external returns (bytes32 node);
    function setName(string calldata name) external returns (bytes32 node);
}


/**
 * @dev Implementation of the {IERC165} interface.
 */
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 Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is ERC165, IERC721, IERC721Metadata {
    // Token name
    bytes14 private immutable _name;

    // Token symbol
    bytes13 private immutable _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(bytes14 name_, bytes13 symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() external view virtual override returns (string memory) {
        return string(abi.encodePacked(_name));
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() external view virtual override returns (string memory) {
        return string(abi.encodePacked(_symbol));
    }

    /**
     * @dev NOTE: standard functionality overridden.
     */
    function tokenURI(uint256 tokenId) external view virtual override returns (string memory) {}

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) external virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) external virtual override {
        require(operator != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, ""),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        uint256 size;
        assembly { size := extcodesize(to) }
        if (size > 0) {
            try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) external view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


/**
 * @dev extra-discreet
 * @author 0age
 */
contract extraDiscreetNFT is discreetNFTInterface, ERC721, ERC721Enumerable {
    // Map tokenIds to block numbers past which they are burnable by any caller.
    mapping(uint256 => uint256) private _reclaimableThreshold;

    // Map transaction submitters to the block number of their last token mint.
    mapping(address => uint256) private _lastTokenMinted;

    // Fixed base64-encoded SVG fragments used across all images.
    bytes32 private constant h0 = 'data:image/svg+xml;base64,PD94bW';
    bytes32 private constant h1 = 'wgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz';
    bytes32 private constant h2 = '0iVVRGLTgiPz48c3ZnIHZpZXdCb3g9Ij';
    bytes32 private constant h3 = 'AgMCA1MDAgNTAwIiB4bWxucz0iaHR0cD';
    bytes32 private constant h4 = 'ovL3d3dy53My5vcmcvMjAwMC9zdmciIH';
    bytes32 private constant h5 = 'N0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOi';
    bytes4 private constant m0 = 'iPjx';
    bytes10 private constant m1 = 'BmaWxsPSIj';
    bytes16 private constant f0 = 'IiAvPjwvc3ZnPg==';

    address public constant discreet = 0x3c77065B584D4Af705B3E38CC35D336b081E4948;

    address private immutable _admin;
    uint256 private immutable _deployedAt;
    mapping(address => bool) private _hasMintedAnOutOfRangeToken;

    /**
     * @dev Deploy discreet as an ERC721 NFT.
     */
    constructor() ERC721("extra-discreet", "EXTRADISCREET") {
        // Set up ENS reverse registrar.
        IENSReverseRegistrar _ensReverseRegistrar = IENSReverseRegistrar(
            0x084b1c3C81545d370f3634392De611CaaBFf8148
        );

        _ensReverseRegistrar.claim(msg.sender);
        _ensReverseRegistrar.setName("extra.discreet.eth");

        _admin = tx.origin;
        _deployedAt = block.number;
    }

    /**
     * @dev Throttle minting to once a block and reset the reclamation threshold
     * whenever a new token is minted or transferred.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);

        // If minting: ensure it's the only one from this tx origin in the block.
        if (from == address(0)) {
            require(
                block.number > _lastTokenMinted[tx.origin],
                "extra-discreet: cannot mint multiple tokens per block from a single origin"
            );

            _lastTokenMinted[tx.origin] = block.number;
        }

        // If not burning: reset tokenId's reclaimable threshold block number.
        if (to != address(0)) {
            _reclaimableThreshold[tokenId] = block.number + 0x400000;
        }
    }

    /**
     * @dev Mint a given discreet NFT if it is currently available.
     */
    function mint(uint256 tokenId) external override {
        require(tokenId < 0x120, "extra-discreet: cannot mint out-of-range token");

        require(
            msg.sender == _admin || block.number > _deployedAt + 0x10000,
            "extra-discreet: only admin can mint directly for initial period"
        );

        _safeMint(msg.sender, tokenId);
    }

    /**
     * @dev Mint a given NFT if it is currently available to a given address.
     */
    function mint(address to, uint256 tokenId) external override {
        require(tokenId < 0x120, "extra-discreet: cannot mint out-of-range token");

        require(
            msg.sender == _admin || block.number > _deployedAt + 0x10000,
            "extra-discreet: only admin can mint directly for initial period"
        );

        _safeMint(to, tokenId);
    }

    /**
     * @dev Mint a given NFT if it is currently available to a given address.
     */
    function mintFromOutOfRangeDiscreet(uint256 oldDiscreetTokenId, uint256 newExtraDiscreetTokenId) external {
        require(
            newExtraDiscreetTokenId < 0x120,
            "extra-discreet: cannot mint out-of-range token"
        );
  
        // old token needs to be out of range
        require(
            oldDiscreetTokenId >= 0x240,
            "extra-discreet: cannot mint using in-range discreet token"
        );
        
        // old token needs to be owned by caller
        address oldOwner = IERC721(discreet).ownerOf(oldDiscreetTokenId);
        require(
            oldOwner == msg.sender,
            "extra-discreet: cannot mint using unowned discreet token"
        );

        // token needs to be "old" (i.e. hasn't been minted or transferred since
        // deploying this contract)
        uint256 oldReclaimableThreshold = discreetNFTInterface(discreet).reclaimableThreshold(oldDiscreetTokenId);
        uint256 lastMoved = oldReclaimableThreshold - 0x400000;
        require(
            lastMoved < _deployedAt,
            "extra-discreet: cannot mint using out-of-range discreet token that has moved since deployment of this contract"
        );

        // Only one token can be minted per caller using this method
        require(
            !_hasMintedAnOutOfRangeToken[msg.sender],
            "extra-discreet: can only mint using out-of-range discreet token once per caller"
        );
        _hasMintedAnOutOfRangeToken[msg.sender] = true;

        _safeMint(msg.sender, newExtraDiscreetTokenId);
    }

    /**
     * @dev Burn a given discreet NFT if it is owned, approved or reclaimable.
     * Tokens become reclaimable after ~4 million blocks without a transfer.
     */
    function burn(uint256 tokenId) external override {
        // Only enforce check if tokenId has not reached reclaimable threshold.
        if (_reclaimableThreshold[tokenId] < block.number) {
            require(
                _isApprovedOrOwner(msg.sender, tokenId),
                "extra-discreet: caller is not owner nor approved"
            );
        }

        _burn(tokenId);
    }

    /**
     * @dev Check the current block number at which the given token will become
     * reclaimable.
     */
    function reclaimableThreshold(uint256 tokenId) external view override returns (uint256) {
        return _reclaimableThreshold[tokenId];
    }

    /**
     * @dev Derive and return a discreet tokenURI formatted as a data URI.
     */
    function tokenURI(uint256 tokenId) external pure virtual override returns (string memory) {
        require(tokenId < 0x120, "extra-discreet: URI query for out-of-range token");

        // Nine base64-encoded SVG fragments for background colors.
        bytes9[9] memory c0 = [
        	bytes9('MwMDAwMDA'),
        	'M2OWZmMzc',
        	'NmZjM3Njk',
        	'MzNzY5ZmY',
        	'NmZmZmOTA',
        	'M5MGZmZmY',
        	'NmZjkwZmY',
        	'NmZmZmZmY',
        	'M4MDgwODA'
        ];

        // Four base64-encoded SVG fragments for primary shapes.
        string[4] memory s0 = [
        	'wb2x5Z29uIHBvaW50cz0iNDAwLDEwMCA0MDAsNDAwIDEwMCw0MDAiIC',
        	'wb2x5Z29uIHBvaW50cz0iMTAwLDQwMCA0MDAsNDAwIDEwMCwxMDAiIC',
        	'wb2x5Z29uIHBvaW50cz0iMTAwLDQwMCA0MDAsMTAwIDEwMCwxMDAiIC',
        	'wb2x5Z29uIHBvaW50cz0iNDAwLDQwMCA0MDAsMTAwIDEwMCwxMDAiIC'
        ];

        // Nine base64-encoded SVG fragments for primary colors.
        bytes8[9] memory c1 = [
        	bytes8('NjlmZjM3'),
        	'ZmYzNzY5',
        	'Mzc2OWZm',
        	'ZmZmZjkw',
        	'OTBmZmZm',
        	'ZmY5MGZm',
        	'ZmZmZmZm',
        	'ODA4MDgw',
        	'MDAwMDAw'
        ];

        // Construct a discrete tokenURI from a unique combination of the above.
	    uint256 c0i = (tokenId % 72) / 8;
	    uint256 s0i = tokenId / 72;
	    uint256 c1i = (tokenId % 8 + (tokenId / 8)) % 9;
	    return string(
	        abi.encodePacked(
	            h0, h1, h2, h3, h4, h5, c0[c0i], m0, s0[s0i], m1, c1[c1i], f0
	       )
	   );
    }

    /**
     * @dev Coalesce supportsInterface from inherited contracts.
     */
    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"discreet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"oldDiscreetTokenId","type":"uint256"},{"internalType":"uint256","name":"newExtraDiscreetTokenId","type":"uint256"}],"name":"mintFromOutOfRangeDiscreet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reclaimableThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b506d195e1d1c984b591a5cd8dc99595d60921b6080526c1156151490511254d0d4915155609a1b60a052604051630f41a04d60e11b815233600482015273084b1c3c81545d370f3634392de611caabff8148908190631e83409a90602401602060405180830381600087803b1580156200008b57600080fd5b505af1158015620000a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000c691906200017a565b5060405163c47f002760e01b81526020600482015260126024820152710caf0e8e4c25cc8d2e6c6e4cacae85ccae8d60731b60448201526001600160a01b0382169063c47f002790606401602060405180830381600087803b1580156200012c57600080fd5b505af115801562000141573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016791906200017a565b50503260601b60c0524360e05262000194565b6000602082840312156200018d57600080fd5b5051919050565b60805160901c60901b60a05160981c60981b60c05160601c60e051612435620001f26000396000818161065c015281816109900152610d180152600081816106300152610964015260006109080152600061034d01526124356000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb465146102a4578063b88d4fde146102b7578063c1eca1be146102ca578063c87b56dd146102dd578063e9350248146102f0578063e985e9c51461031057600080fd5b80636352211e1461024857806370a082311461025b57806377c59c311461026e57806395d89b4114610289578063a0712d681461029157600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806340c10f19146101fc57806342842e0e1461020f57806342966c68146102225780634f6ccce71461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611efe565b610323565b60405190151581526020015b60405180910390f35b610177610334565b60405161016691906120a6565b610197610192366004611f38565b61038d565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611ed2565b610427565b005b6006545b604051908152602001610166565b6101c26101e4366004611d7e565b61053d565b6101c86101f7366004611ed2565b61056e565b6101c261020a366004611ed2565b610604565b6101c261021d366004611d7e565b6106b1565b6101c2610230366004611f38565b6106cc565b6101c8610243366004611f38565b61075d565b610197610256366004611f38565b6107f0565b6101c8610269366004611d04565b610867565b610197733c77065b584d4af705b3e38cc35d336b081e494881565b6101776108ee565b6101c261029f366004611f38565b610938565b6101c26102b2366004611e9f565b6109e1565b6101c26102c5366004611dbf565b610aa6565b6101c26102d8366004611f6a565b610ade565b6101776102eb366004611f38565b610eb1565b6101c86102fe366004611f38565b60009081526008602052604090205490565b61015a61031e366004611d45565b6112bc565b600061032e826112ea565b92915050565b60405171ffffffffffffffffffffffffffffffffffff197f0000000000000000000000000000000000000000000000000000000000000000166020820152606090602e015b604051602081830303815290604052905090565b6000818152602081905260408120546001600160a01b031661040b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610432826107f0565b9050806001600160a01b0316836001600160a01b031614156104a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610402565b336001600160a01b03821614806104bc57506104bc81336112bc565b61052e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610402565b610538838361130f565b505050565b610547338261137d565b6105635760405162461bcd60e51b8152600401610402906121b6565b610538838383611454565b600061057983610867565b82106105db5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610402565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b61012081106106255760405162461bcd60e51b8152600401610402906120b9565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061068757506106847f000000000000000000000000000000000000000000000000000000000000000062010000612207565b43115b6106a35760405162461bcd60e51b815260040161040290612159565b6106ad8282611603565b5050565b61053883838360405180602001604052806000815250610aa6565b600081815260086020526040902054431115610751576106ec338261137d565b6107515760405162461bcd60e51b815260206004820152603060248201527f65787472612d64697363726565743a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610402565b61075a81611645565b50565b600061076860065490565b82106107cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610402565b600682815481106107de576107de6122cc565b90600052602060002001549050919050565b6000818152602081905260408120546001600160a01b03168061032e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610402565b60006001600160a01b0382166108d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610402565b506001600160a01b031660009081526001602052604090205490565b60405172ffffffffffffffffffffffffffffffffffffff197f0000000000000000000000000000000000000000000000000000000000000000166020820152606090602d01610379565b61012081106109595760405162461bcd60e51b8152600401610402906120b9565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806109bb57506109b87f000000000000000000000000000000000000000000000000000000000000000062010000612207565b43115b6109d75760405162461bcd60e51b815260040161040290612159565b61075a3382611603565b6001600160a01b038216331415610a3a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610402565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab0338361137d565b610acc5760405162461bcd60e51b8152600401610402906121b6565b610ad8848484846116ee565b50505050565b6101208110610aff5760405162461bcd60e51b8152600401610402906120b9565b610240821015610b775760405162461bcd60e51b815260206004820152603960248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f6720696e2d72616e676520646973637265657420746f6b656e000000000000006064820152608401610402565b6040516331a9108f60e11b815260048101839052600090733c77065b584d4af705b3e38cc35d336b081e494890636352211e9060240160206040518083038186803b158015610bc557600080fd5b505afa158015610bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfd9190611d28565b90506001600160a01b0381163314610c7d5760405162461bcd60e51b815260206004820152603860248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f6720756e6f776e656420646973637265657420746f6b656e00000000000000006064820152608401610402565b604051631d26a04960e31b815260048101849052600090733c77065b584d4af705b3e38cc35d336b081e49489063e93502489060240160206040518083038186803b158015610ccb57600080fd5b505afa158015610cdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d039190611f51565b90506000610d146240000083612233565b90507f00000000000000000000000000000000000000000000000000000000000000008110610de85760405162461bcd60e51b815260206004820152606e60248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f67206f75742d6f662d72616e676520646973637265657420746f6b656e20746860648201527f617420686173206d6f7665642073696e6365206465706c6f796d656e74206f6660848201526d081d1a1a5cc818dbdb9d1c9858dd60921b60a482015260c401610402565b336000908152600a602052604090205460ff1615610e865760405162461bcd60e51b815260206004820152604f60248201527f65787472612d64697363726565743a2063616e206f6e6c79206d696e7420757360448201527f696e67206f75742d6f662d72616e676520646973637265657420746f6b656e2060648201526e37b731b2903832b91031b0b63632b960891b608482015260a401610402565b336000818152600a60205260409020805460ff19166001179055610eaa9085611603565b5050505050565b60606101208210610f1d5760405162461bcd60e51b815260206004820152603060248201527f65787472612d64697363726565743a2055524920717565727920666f72206f7560448201526f3a16b7b316b930b733b2903a37b5b2b760811b6064820152608401610402565b6040805161012081018252684d774d4441774d444160b81b8152684d324f575a6d4d7a6360b81b6020820152684e6d5a6a4d334e6a6b60b81b81830152684d7a4e7a59355a6d5960b81b6060820152684e6d5a6d5a6d4f544160b81b608080830191909152684d354d475a6d5a6d5960b81b60a080840191909152684e6d5a6a6b775a6d5960b81b60c0840152684e6d5a6d5a6d5a6d5960b81b60e080850191909152684d344d4467774f444160b81b610100850152845190810190945260379184018281529293600093909283926123249084013981526020016040518060600160405280603781526020016123926037913981526020016040518060600160405280603781526020016123c960379139815260200160405180606001604052806037815260200161235b6037913990526040805161012081018252674e6a6c6d5a6a4d3360c01b8152675a6d597a4e7a593560c01b6020820152674d7a63324f575a6d60c01b91810191909152675a6d5a6d5a6a6b7760c01b6060820152674f54426d5a6d5a6d60c01b6080820152675a6d59354d475a6d60c01b60a0820152675a6d5a6d5a6d5a6d60c01b60c0820152674f4441344d44677760c01b60e0820152674d4441774d44417760c01b61010082015290915060006008611105604888612276565b61110f919061221f565b9050600061111e60488861221f565b90506000600961112f60088a61221f565b61113a60088b612276565b6111449190612207565b61114e9190612276565b90507f646174613a696d6167652f7376672b786d6c3b6261736536342c5044393462577f7767646d567963326c76626a30694d5334774969426c626d4e765a476c755a7a7f3069565652474c546769507a343863335a6e49485a705a58644362336739496a7f41674d4341314d4441674e5441774969423462577875637a30696148523063447f6f764c336433647935334d793576636d63764d6a41774d43397a646d636949487f4e306557786c50534a6959574e725a334a766457356b4c574e76624739794f698b8960098110611228576112286122cc565b6020020151630d2a0d4f60e31b8c8a60048110611247576112476122cc565b6020020151692136b0abbc39a829a4b560b11b8d8b6009811061126c5761126c6122cc565b60200201516f49694176506a777663335a6e50673d3d60801b6040516020016112a09c9b9a99989796959493929190611fb8565b6040516020818303038152906040529650505050505050919050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b148061032e575061032e82611721565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611344826107f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152602081905260408120546001600160a01b03166113f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610402565b6000611401836107f0565b9050806001600160a01b0316846001600160a01b0316148061143c5750836001600160a01b03166114318461038d565b6001600160a01b0316145b8061144c575061144c81856112bc565b949350505050565b826001600160a01b0316611467826107f0565b6001600160a01b0316146114cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610402565b6001600160a01b0382166115315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610402565b61153c838383611771565b61154760008261130f565b6001600160a01b03831660009081526001602081905260408220805491929091611572908490612233565b90915550506001600160a01b038216600090815260016020819052604082208054919290916115a2908490612207565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61160d8282611864565b61162960008383604051806020016040528060008152506119b4565b6106ad5760405162461bcd60e51b815260040161040290612107565b6000611650826107f0565b905061165e81600084611771565b61166960008361130f565b6001600160a01b03811660009081526001602081905260408220805491929091611694908490612233565b909155505060008281526020819052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6116f9848484611454565b611705848484846119b4565b610ad85760405162461bcd60e51b815260040161040290612107565b60006001600160e01b031982166380ac58cd60e01b148061175257506001600160e01b03198216635b5e139f60e01b145b8061032e57506301ffc9a760e01b6001600160e01b031983161461032e565b61177c838383611abc565b6001600160a01b038316611834573260009081526009602052604090205443116118215760405162461bcd60e51b815260206004820152604a60248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74206d756c7460448201527f69706c6520746f6b656e732070657220626c6f636b2066726f6d20612073696e60648201526933b6329037b934b3b4b760b11b608482015260a401610402565b3260009081526009602052604090204390555b6001600160a01b03821615610538576118504362400000612207565b600082815260086020526040902055505050565b6001600160a01b0382166118ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610402565b6000818152602081905260409020546001600160a01b03161561191f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610402565b61192b60008383611771565b6001600160a01b03821660009081526001602081905260408220805491929091611956908490612207565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000833b8015611ab057604051630a85bd0160e11b81526001600160a01b0386169063150b7a02906119f09033908a9089908990600401612069565b602060405180830381600087803b158015611a0a57600080fd5b505af1925050508015611a3a575060408051601f3d908101601f19168201909252611a3791810190611f1b565b60015b611a94573d808015611a68576040519150601f19603f3d011682016040523d82523d6000602084013e611a6d565b606091505b508051611a8c5760405162461bcd60e51b815260040161040290612107565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14915061144c9050565b50600195945050505050565b6001600160a01b038316611b1757611b1281600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b611b3a565b816001600160a01b0316836001600160a01b031614611b3a57611b3a8382611b74565b6001600160a01b038216611b515761053881611c11565b826001600160a01b0316826001600160a01b031614610538576105388282611cc0565b60006001611b8184610867565b611b8b9190612233565b600083815260056020526040902054909150808214611bde576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b600654600090611c2390600190612233565b60008381526007602052604081205460068054939450909284908110611c4b57611c4b6122cc565b906000526020600020015490508060068381548110611c6c57611c6c6122cc565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480611ca457611ca46122b6565b6001900381819060005260206000200160009055905550505050565b6000611ccb83610867565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b600060208284031215611d1657600080fd5b8135611d21816122f8565b9392505050565b600060208284031215611d3a57600080fd5b8151611d21816122f8565b60008060408385031215611d5857600080fd5b8235611d63816122f8565b91506020830135611d73816122f8565b809150509250929050565b600080600060608486031215611d9357600080fd5b8335611d9e816122f8565b92506020840135611dae816122f8565b929592945050506040919091013590565b60008060008060808587031215611dd557600080fd5b8435611de0816122f8565b93506020850135611df0816122f8565b925060408501359150606085013567ffffffffffffffff80821115611e1457600080fd5b818701915087601f830112611e2857600080fd5b813581811115611e3a57611e3a6122e2565b604051601f8201601f19908116603f01168101908382118183101715611e6257611e626122e2565b816040528281528a6020848701011115611e7b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611eb257600080fd5b8235611ebd816122f8565b915060208301358015158114611d7357600080fd5b60008060408385031215611ee557600080fd5b8235611ef0816122f8565b946020939093013593505050565b600060208284031215611f1057600080fd5b8135611d218161230d565b600060208284031215611f2d57600080fd5b8151611d218161230d565b600060208284031215611f4a57600080fd5b5035919050565b600060208284031215611f6357600080fd5b5051919050565b60008060408385031215611f7d57600080fd5b50508035926020909101359150565b60008151808452611fa481602086016020860161224a565b601f01601f19169290920160200192915050565b8c81528b60208201528a60408201528960608201528860808201528760a082015268ffffffffffffffffff60b81b871660c082015263ffffffff60e01b861660c9820152600085516120118160cd850160208a0161224a565b6001600160b01b0319861660cd918401918201526001600160c01b0319851660d782015261205460df8201856fffffffffffffffffffffffffffffffff19169052565b60ef019e9d5050505050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209c90830184611f8c565b9695505050505050565b602081526000611d216020830184611f8c565b6020808252602e908201527f65787472612d64697363726565743a2063616e6e6f74206d696e74206f75742d60408201526d37b316b930b733b2903a37b5b2b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252603f908201527f65787472612d64697363726565743a206f6e6c792061646d696e2063616e206d60408201527f696e74206469726563746c7920666f7220696e697469616c20706572696f6400606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561221a5761221a61228a565b500190565b60008261222e5761222e6122a0565b500490565b6000828210156122455761224561228a565b500390565b60005b8381101561226557818101518382015260200161224d565b83811115610ad85750506000910152565b600082612285576122856122a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461075a57600080fd5b6001600160e01b03198116811461075a57600080fdfe77623278355a3239754948427661573530637a30694e4441774c4445774d4341304d4441734e444177494445774d4377304d444169494377623278355a3239754948427661573530637a30694e4441774c4451774d4341304d4441734d544177494445774d4377784d444169494377623278355a3239754948427661573530637a30694d5441774c4451774d4341304d4441734e444177494445774d4377784d444169494377623278355a3239754948427661573530637a30694d5441774c4451774d4341304d4441734d544177494445774d4377784d4441694943a2646970667358221220417fbc13711ed2319afb3b5d26164fbfc77768dca77025c42160480623c2eb8364736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb465146102a4578063b88d4fde146102b7578063c1eca1be146102ca578063c87b56dd146102dd578063e9350248146102f0578063e985e9c51461031057600080fd5b80636352211e1461024857806370a082311461025b57806377c59c311461026e57806395d89b4114610289578063a0712d681461029157600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806340c10f19146101fc57806342842e0e1461020f57806342966c68146102225780634f6ccce71461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611efe565b610323565b60405190151581526020015b60405180910390f35b610177610334565b60405161016691906120a6565b610197610192366004611f38565b61038d565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611ed2565b610427565b005b6006545b604051908152602001610166565b6101c26101e4366004611d7e565b61053d565b6101c86101f7366004611ed2565b61056e565b6101c261020a366004611ed2565b610604565b6101c261021d366004611d7e565b6106b1565b6101c2610230366004611f38565b6106cc565b6101c8610243366004611f38565b61075d565b610197610256366004611f38565b6107f0565b6101c8610269366004611d04565b610867565b610197733c77065b584d4af705b3e38cc35d336b081e494881565b6101776108ee565b6101c261029f366004611f38565b610938565b6101c26102b2366004611e9f565b6109e1565b6101c26102c5366004611dbf565b610aa6565b6101c26102d8366004611f6a565b610ade565b6101776102eb366004611f38565b610eb1565b6101c86102fe366004611f38565b60009081526008602052604090205490565b61015a61031e366004611d45565b6112bc565b600061032e826112ea565b92915050565b60405171ffffffffffffffffffffffffffffffffffff197f65787472612d6469736372656574000000000000000000000000000000000000166020820152606090602e015b604051602081830303815290604052905090565b6000818152602081905260408120546001600160a01b031661040b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610432826107f0565b9050806001600160a01b0316836001600160a01b031614156104a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610402565b336001600160a01b03821614806104bc57506104bc81336112bc565b61052e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610402565b610538838361130f565b505050565b610547338261137d565b6105635760405162461bcd60e51b8152600401610402906121b6565b610538838383611454565b600061057983610867565b82106105db5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610402565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b61012081106106255760405162461bcd60e51b8152600401610402906120b9565b336001600160a01b037f0000000000000000000000000734d56da60852a03e2aafae8a36ffd8c12b32f116148061068757506106847f0000000000000000000000000000000000000000000000000000000000c82d1b62010000612207565b43115b6106a35760405162461bcd60e51b815260040161040290612159565b6106ad8282611603565b5050565b61053883838360405180602001604052806000815250610aa6565b600081815260086020526040902054431115610751576106ec338261137d565b6107515760405162461bcd60e51b815260206004820152603060248201527f65787472612d64697363726565743a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610402565b61075a81611645565b50565b600061076860065490565b82106107cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610402565b600682815481106107de576107de6122cc565b90600052602060002001549050919050565b6000818152602081905260408120546001600160a01b03168061032e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610402565b60006001600160a01b0382166108d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610402565b506001600160a01b031660009081526001602052604090205490565b60405172ffffffffffffffffffffffffffffffffffffff197f4558545241444953435245455400000000000000000000000000000000000000166020820152606090602d01610379565b61012081106109595760405162461bcd60e51b8152600401610402906120b9565b336001600160a01b037f0000000000000000000000000734d56da60852a03e2aafae8a36ffd8c12b32f11614806109bb57506109b87f0000000000000000000000000000000000000000000000000000000000c82d1b62010000612207565b43115b6109d75760405162461bcd60e51b815260040161040290612159565b61075a3382611603565b6001600160a01b038216331415610a3a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610402565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab0338361137d565b610acc5760405162461bcd60e51b8152600401610402906121b6565b610ad8848484846116ee565b50505050565b6101208110610aff5760405162461bcd60e51b8152600401610402906120b9565b610240821015610b775760405162461bcd60e51b815260206004820152603960248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f6720696e2d72616e676520646973637265657420746f6b656e000000000000006064820152608401610402565b6040516331a9108f60e11b815260048101839052600090733c77065b584d4af705b3e38cc35d336b081e494890636352211e9060240160206040518083038186803b158015610bc557600080fd5b505afa158015610bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfd9190611d28565b90506001600160a01b0381163314610c7d5760405162461bcd60e51b815260206004820152603860248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f6720756e6f776e656420646973637265657420746f6b656e00000000000000006064820152608401610402565b604051631d26a04960e31b815260048101849052600090733c77065b584d4af705b3e38cc35d336b081e49489063e93502489060240160206040518083038186803b158015610ccb57600080fd5b505afa158015610cdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d039190611f51565b90506000610d146240000083612233565b90507f0000000000000000000000000000000000000000000000000000000000c82d1b8110610de85760405162461bcd60e51b815260206004820152606e60248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74207573696e60448201527f67206f75742d6f662d72616e676520646973637265657420746f6b656e20746860648201527f617420686173206d6f7665642073696e6365206465706c6f796d656e74206f6660848201526d081d1a1a5cc818dbdb9d1c9858dd60921b60a482015260c401610402565b336000908152600a602052604090205460ff1615610e865760405162461bcd60e51b815260206004820152604f60248201527f65787472612d64697363726565743a2063616e206f6e6c79206d696e7420757360448201527f696e67206f75742d6f662d72616e676520646973637265657420746f6b656e2060648201526e37b731b2903832b91031b0b63632b960891b608482015260a401610402565b336000818152600a60205260409020805460ff19166001179055610eaa9085611603565b5050505050565b60606101208210610f1d5760405162461bcd60e51b815260206004820152603060248201527f65787472612d64697363726565743a2055524920717565727920666f72206f7560448201526f3a16b7b316b930b733b2903a37b5b2b760811b6064820152608401610402565b6040805161012081018252684d774d4441774d444160b81b8152684d324f575a6d4d7a6360b81b6020820152684e6d5a6a4d334e6a6b60b81b81830152684d7a4e7a59355a6d5960b81b6060820152684e6d5a6d5a6d4f544160b81b608080830191909152684d354d475a6d5a6d5960b81b60a080840191909152684e6d5a6a6b775a6d5960b81b60c0840152684e6d5a6d5a6d5a6d5960b81b60e080850191909152684d344d4467774f444160b81b610100850152845190810190945260379184018281529293600093909283926123249084013981526020016040518060600160405280603781526020016123926037913981526020016040518060600160405280603781526020016123c960379139815260200160405180606001604052806037815260200161235b6037913990526040805161012081018252674e6a6c6d5a6a4d3360c01b8152675a6d597a4e7a593560c01b6020820152674d7a63324f575a6d60c01b91810191909152675a6d5a6d5a6a6b7760c01b6060820152674f54426d5a6d5a6d60c01b6080820152675a6d59354d475a6d60c01b60a0820152675a6d5a6d5a6d5a6d60c01b60c0820152674f4441344d44677760c01b60e0820152674d4441774d44417760c01b61010082015290915060006008611105604888612276565b61110f919061221f565b9050600061111e60488861221f565b90506000600961112f60088a61221f565b61113a60088b612276565b6111449190612207565b61114e9190612276565b90507f646174613a696d6167652f7376672b786d6c3b6261736536342c5044393462577f7767646d567963326c76626a30694d5334774969426c626d4e765a476c755a7a7f3069565652474c546769507a343863335a6e49485a705a58644362336739496a7f41674d4341314d4441674e5441774969423462577875637a30696148523063447f6f764c336433647935334d793576636d63764d6a41774d43397a646d636949487f4e306557786c50534a6959574e725a334a766457356b4c574e76624739794f698b8960098110611228576112286122cc565b6020020151630d2a0d4f60e31b8c8a60048110611247576112476122cc565b6020020151692136b0abbc39a829a4b560b11b8d8b6009811061126c5761126c6122cc565b60200201516f49694176506a777663335a6e50673d3d60801b6040516020016112a09c9b9a99989796959493929190611fb8565b6040516020818303038152906040529650505050505050919050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b148061032e575061032e82611721565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611344826107f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152602081905260408120546001600160a01b03166113f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610402565b6000611401836107f0565b9050806001600160a01b0316846001600160a01b0316148061143c5750836001600160a01b03166114318461038d565b6001600160a01b0316145b8061144c575061144c81856112bc565b949350505050565b826001600160a01b0316611467826107f0565b6001600160a01b0316146114cf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610402565b6001600160a01b0382166115315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610402565b61153c838383611771565b61154760008261130f565b6001600160a01b03831660009081526001602081905260408220805491929091611572908490612233565b90915550506001600160a01b038216600090815260016020819052604082208054919290916115a2908490612207565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61160d8282611864565b61162960008383604051806020016040528060008152506119b4565b6106ad5760405162461bcd60e51b815260040161040290612107565b6000611650826107f0565b905061165e81600084611771565b61166960008361130f565b6001600160a01b03811660009081526001602081905260408220805491929091611694908490612233565b909155505060008281526020819052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6116f9848484611454565b611705848484846119b4565b610ad85760405162461bcd60e51b815260040161040290612107565b60006001600160e01b031982166380ac58cd60e01b148061175257506001600160e01b03198216635b5e139f60e01b145b8061032e57506301ffc9a760e01b6001600160e01b031983161461032e565b61177c838383611abc565b6001600160a01b038316611834573260009081526009602052604090205443116118215760405162461bcd60e51b815260206004820152604a60248201527f65787472612d64697363726565743a2063616e6e6f74206d696e74206d756c7460448201527f69706c6520746f6b656e732070657220626c6f636b2066726f6d20612073696e60648201526933b6329037b934b3b4b760b11b608482015260a401610402565b3260009081526009602052604090204390555b6001600160a01b03821615610538576118504362400000612207565b600082815260086020526040902055505050565b6001600160a01b0382166118ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610402565b6000818152602081905260409020546001600160a01b03161561191f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610402565b61192b60008383611771565b6001600160a01b03821660009081526001602081905260408220805491929091611956908490612207565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000833b8015611ab057604051630a85bd0160e11b81526001600160a01b0386169063150b7a02906119f09033908a9089908990600401612069565b602060405180830381600087803b158015611a0a57600080fd5b505af1925050508015611a3a575060408051601f3d908101601f19168201909252611a3791810190611f1b565b60015b611a94573d808015611a68576040519150601f19603f3d011682016040523d82523d6000602084013e611a6d565b606091505b508051611a8c5760405162461bcd60e51b815260040161040290612107565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14915061144c9050565b50600195945050505050565b6001600160a01b038316611b1757611b1281600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b611b3a565b816001600160a01b0316836001600160a01b031614611b3a57611b3a8382611b74565b6001600160a01b038216611b515761053881611c11565b826001600160a01b0316826001600160a01b031614610538576105388282611cc0565b60006001611b8184610867565b611b8b9190612233565b600083815260056020526040902054909150808214611bde576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b600654600090611c2390600190612233565b60008381526007602052604081205460068054939450909284908110611c4b57611c4b6122cc565b906000526020600020015490508060068381548110611c6c57611c6c6122cc565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480611ca457611ca46122b6565b6001900381819060005260206000200160009055905550505050565b6000611ccb83610867565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b600060208284031215611d1657600080fd5b8135611d21816122f8565b9392505050565b600060208284031215611d3a57600080fd5b8151611d21816122f8565b60008060408385031215611d5857600080fd5b8235611d63816122f8565b91506020830135611d73816122f8565b809150509250929050565b600080600060608486031215611d9357600080fd5b8335611d9e816122f8565b92506020840135611dae816122f8565b929592945050506040919091013590565b60008060008060808587031215611dd557600080fd5b8435611de0816122f8565b93506020850135611df0816122f8565b925060408501359150606085013567ffffffffffffffff80821115611e1457600080fd5b818701915087601f830112611e2857600080fd5b813581811115611e3a57611e3a6122e2565b604051601f8201601f19908116603f01168101908382118183101715611e6257611e626122e2565b816040528281528a6020848701011115611e7b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611eb257600080fd5b8235611ebd816122f8565b915060208301358015158114611d7357600080fd5b60008060408385031215611ee557600080fd5b8235611ef0816122f8565b946020939093013593505050565b600060208284031215611f1057600080fd5b8135611d218161230d565b600060208284031215611f2d57600080fd5b8151611d218161230d565b600060208284031215611f4a57600080fd5b5035919050565b600060208284031215611f6357600080fd5b5051919050565b60008060408385031215611f7d57600080fd5b50508035926020909101359150565b60008151808452611fa481602086016020860161224a565b601f01601f19169290920160200192915050565b8c81528b60208201528a60408201528960608201528860808201528760a082015268ffffffffffffffffff60b81b871660c082015263ffffffff60e01b861660c9820152600085516120118160cd850160208a0161224a565b6001600160b01b0319861660cd918401918201526001600160c01b0319851660d782015261205460df8201856fffffffffffffffffffffffffffffffff19169052565b60ef019e9d5050505050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209c90830184611f8c565b9695505050505050565b602081526000611d216020830184611f8c565b6020808252602e908201527f65787472612d64697363726565743a2063616e6e6f74206d696e74206f75742d60408201526d37b316b930b733b2903a37b5b2b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252603f908201527f65787472612d64697363726565743a206f6e6c792061646d696e2063616e206d60408201527f696e74206469726563746c7920666f7220696e697469616c20706572696f6400606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561221a5761221a61228a565b500190565b60008261222e5761222e6122a0565b500490565b6000828210156122455761224561228a565b500390565b60005b8381101561226557818101518382015260200161224d565b83811115610ad85750506000910152565b600082612285576122856122a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461075a57600080fd5b6001600160e01b03198116811461075a57600080fdfe77623278355a3239754948427661573530637a30694e4441774c4445774d4341304d4441734e444177494445774d4377304d444169494377623278355a3239754948427661573530637a30694e4441774c4451774d4341304d4441734d544177494445774d4377784d444169494377623278355a3239754948427661573530637a30694d5441774c4451774d4341304d4441734e444177494445774d4377784d444169494377623278355a3239754948427661573530637a30694d5441774c4451774d4341304d4441734d544177494445774d4377784d4441694943a2646970667358221220417fbc13711ed2319afb3b5d26164fbfc77768dca77025c42160480623c2eb8364736f6c63430008070033

Deployed Bytecode Sourcemap

28603:8145:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36574:171;;;;;;:::i;:::-;;:::i;:::-;;;7423:14:1;;7416:22;7398:41;;7386:2;7371:18;36574:171:0;;;;;;;;11259:128;;;:::i;:::-;;;;;;;:::i;12297:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6721:32:1;;;6703:51;;6691:2;6676:18;12297:221:0;6557:203:1;11822:409:0;;;;;;:::i;:::-;;:::i;:::-;;23040:113;23128:10;:17;23040:113;;;17906:25:1;;;17894:2;17879:18;23040:113:0;17760:177:1;13183:339:0;;;;;;:::i;:::-;;:::i;22706:258::-;;;;;;:::i;:::-;;:::i;31878:375::-;;;;;;:::i;:::-;;:::i;13593:187::-;;;;;;:::i;:::-;;:::i;34128:402::-;;;;;;:::i;:::-;;:::i;23230:235::-;;;;;;:::i;:::-;;:::i;10953:239::-;;;;;;:::i;:::-;;:::i;10683:208::-;;;;;;:::i;:::-;;:::i;29617:77::-;;29652:42;29617:77;;11456:132;;;:::i;31402:371::-;;;;;;:::i;:::-;;:::i;12590:291::-;;;;;;:::i;:::-;;:::i;13851:326::-;;;;;;:::i;:::-;;:::i;32358:1586::-;;;;;;:::i;:::-;;:::i;34904:1578::-;;;;;;:::i;:::-;;:::i;34658:144::-;;;;;;:::i;:::-;34737:7;34764:30;;;:21;:30;;;;;;;34658:144;12952:164;;;;;;:::i;:::-;;:::i;36574:171::-;36677:4;36701:36;36725:11;36701:23;:36::i;:::-;36694:43;36574:171;-1:-1:-1;;36574:171:0:o;11259:128::-;11355:23;;-1:-1:-1;;11372:5:0;5283:56:1;11355:23:0;;;5271:69:1;11315:13:0;;5356:12:1;;11355:23:0;;;;;;;;;;;;;11341:38;;11259:128;:::o;12297:221::-;12373:7;15776:16;;;;;;;;;;;-1:-1:-1;;;;;15776:16:0;12393:73;;;;-1:-1:-1;;;12393:73:0;;14431:2:1;12393:73:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;-1:-1:-1;;;14560:18:1;;;14553:42;14612:19;;12393:73:0;;;;;;;;;-1:-1:-1;12486:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12486:24:0;;12297:221::o;11822:409::-;11905:13;11921:23;11936:7;11921:14;:23::i;:::-;11905:39;;11969:5;-1:-1:-1;;;;;11963:11:0;:2;-1:-1:-1;;;;;11963:11:0;;;11955:57;;;;-1:-1:-1;;;11955:57:0;;15686:2:1;11955:57:0;;;15668:21:1;15725:2;15705:18;;;15698:30;15764:34;15744:18;;;15737:62;-1:-1:-1;;;15815:18:1;;;15808:31;15856:19;;11955:57:0;15484:397:1;11955:57:0;12047:10;-1:-1:-1;;;;;12047:19:0;;;;:58;;;12070:35;12087:5;12094:10;12070:16;:35::i;:::-;12025:164;;;;-1:-1:-1;;;12025:164:0;;12399:2:1;12025:164:0;;;12381:21:1;12438:2;12418:18;;;12411:30;12477:34;12457:18;;;12450:62;12548:26;12528:18;;;12521:54;12592:19;;12025:164:0;12197:420:1;12025:164:0;12202:21;12211:2;12215:7;12202:8;:21::i;:::-;11894:337;11822:409;;:::o;13183:339::-;13380:39;13399:10;13411:7;13380:18;:39::i;:::-;13372:101;;;;-1:-1:-1;;;13372:101:0;;;;;;;:::i;:::-;13486:28;13496:4;13502:2;13506:7;13486:9;:28::i;22706:258::-;22805:7;22841:23;22858:5;22841:16;:23::i;:::-;22833:5;:31;22825:87;;;;-1:-1:-1;;;22825:87:0;;9196:2:1;22825:87:0;;;9178:21:1;9235:2;9215:18;;;9208:30;9274:34;9254:18;;;9247:62;-1:-1:-1;;;9325:18:1;;;9318:41;9376:19;;22825:87:0;8994:407:1;22825:87:0;-1:-1:-1;;;;;;22930:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;22706:258::o;31878:375::-;31968:5;31958:7;:15;31950:74;;;;-1:-1:-1;;;31950:74:0;;;;;;;:::i;:::-;32059:10;-1:-1:-1;;;;;32073:6:0;32059:20;;;:60;;-1:-1:-1;32098:21:0;:11;32112:7;32098:21;:::i;:::-;32083:12;:36;32059:60;32037:173;;;;-1:-1:-1;;;32037:173:0;;;;;;;:::i;:::-;32223:22;32233:2;32237:7;32223:9;:22::i;:::-;31878:375;;:::o;13593:187::-;13733:39;13750:4;13756:2;13760:7;13733:39;;;;;;;;;;;;:16;:39::i;34128:402::-;34273:30;;;;:21;:30;;;;;;34306:12;-1:-1:-1;34269:227:0;;;34361:39;34380:10;34392:7;34361:18;:39::i;:::-;34335:149;;;;-1:-1:-1;;;34335:149:0;;11569:2:1;34335:149:0;;;11551:21:1;11608:2;11588:18;;;11581:30;11647:34;11627:18;;;11620:62;-1:-1:-1;;;11698:18:1;;;11691:46;11754:19;;34335:149:0;11367:412:1;34335:149:0;34508:14;34514:7;34508:5;:14::i;:::-;34128:402;:::o;23230:235::-;23307:7;23343:30;23128:10;:17;;23040:113;23343:30;23335:5;:38;23327:95;;;;-1:-1:-1;;;23327:95:0;;17549:2:1;23327:95:0;;;17531:21:1;17588:2;17568:18;;;17561:30;17627:34;17607:18;;;17600:62;-1:-1:-1;;;17678:18:1;;;17671:42;17730:19;;23327:95:0;17347:408:1;23327:95:0;23440:10;23451:5;23440:17;;;;;;;;:::i;:::-;;;;;;;;;23433:24;;23230:235;;;:::o;10953:239::-;11025:7;11061:16;;;;;;;;;;;-1:-1:-1;;;;;11061:16:0;11096:19;11088:73;;;;-1:-1:-1;;;11088:73:0;;13660:2:1;11088:73:0;;;13642:21:1;13699:2;13679:18;;;13672:30;13738:34;13718:18;;;13711:62;-1:-1:-1;;;13789:18:1;;;13782:39;13838:19;;11088:73:0;13458:405:1;10683:208:0;10755:7;-1:-1:-1;;;;;10783:19:0;;10775:74;;;;-1:-1:-1;;;10775:74:0;;13249:2:1;10775:74:0;;;13231:21:1;13288:2;13268:18;;;13261:30;13327:34;13307:18;;;13300:62;-1:-1:-1;;;13378:18:1;;;13371:40;13428:19;;10775:74:0;13047:406:1;10775:74:0;-1:-1:-1;;;;;;10867:16:0;;;;;:9;:16;;;;;;;10683:208::o;11456:132::-;11554:25;;-1:-1:-1;;11571:7:0;5051:51:1;11554:25:0;;;5039:64:1;11514:13:0;;5119:12:1;;11554:25:0;4910:227:1;31402:371:0;31480:5;31470:7;:15;31462:74;;;;-1:-1:-1;;;31462:74:0;;;;;;;:::i;:::-;31571:10;-1:-1:-1;;;;;31585:6:0;31571:20;;;:60;;-1:-1:-1;31610:21:0;:11;31624:7;31610:21;:::i;:::-;31595:12;:36;31571:60;31549:173;;;;-1:-1:-1;;;31549:173:0;;;;;;;:::i;:::-;31735:30;31745:10;31757:7;31735:9;:30::i;12590:291::-;-1:-1:-1;;;;;12695:22:0;;12707:10;12695:22;;12687:60;;;;-1:-1:-1;;;12687:60:0;;11215:2:1;12687:60:0;;;11197:21:1;11254:2;11234:18;;;11227:30;11293:27;11273:18;;;11266:55;11338:18;;12687:60:0;11013:349:1;12687:60:0;12779:10;12760:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;12760:40:0;;;;;;;;;;;;:51;;-1:-1:-1;;12760:51:0;;;;;;;;;;12827:46;;7398:41:1;;;12760:40:0;;12779:10;12827:46;;7371:18:1;12827:46:0;;;;;;;12590:291;;:::o;13851:326::-;14026:39;14045:10;14057:7;14026:18;:39::i;:::-;14018:101;;;;-1:-1:-1;;;14018:101:0;;;;;;;:::i;:::-;14130:39;14144:4;14150:2;14154:7;14163:5;14130:13;:39::i;:::-;13851:326;;;;:::o;32358:1586::-;32523:5;32497:23;:31;32475:127;;;;-1:-1:-1;;;32475:127:0;;;;;;;:::i;:::-;32708:5;32686:18;:27;;32664:134;;;;-1:-1:-1;;;32664:134:0;;10027:2:1;32664:134:0;;;10009:21:1;10066:2;10046:18;;;10039:30;10105:34;10085:18;;;10078:62;10176:27;10156:18;;;10149:55;10221:19;;32664:134:0;9825:421:1;32664:134:0;32888:45;;-1:-1:-1;;;32888:45:0;;;;;17906:25:1;;;32869:16:0;;29652:42;;32888:25;;17879:18:1;;32888:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32869:64;-1:-1:-1;;;;;;32966:22:0;;32978:10;32966:22;32944:128;;;;-1:-1:-1;;;32944:128:0;;12824:2:1;32944:128:0;;;12806:21:1;12863:2;12843:18;;;12836:30;12902:34;12882:18;;;12875:62;12973:26;12953:18;;;12946:54;13017:19;;32944:128:0;12622:420:1;32944:128:0;33238:71;;-1:-1:-1;;;33238:71:0;;;;;17906:25:1;;;33204:31:0;;29652:42;;33238:51;;17879:18:1;;33238:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33204:105;-1:-1:-1;33320:17:0;33340:34;33366:8;33204:105;33340:34;:::i;:::-;33320:54;;33419:11;33407:9;:23;33385:183;;;;-1:-1:-1;;;33385:183:0;;16088:2:1;33385:183:0;;;16070:21:1;16127:3;16107:18;;;16100:31;16167:34;16147:18;;;16140:62;16238:34;16218:18;;;16211:62;16310:34;16289:19;;;16282:63;-1:-1:-1;;;16361:19:1;;;16354:45;16416:19;;33385:183:0;15886:555:1;33385:183:0;33702:10;33674:39;;;;:27;:39;;;;;;;;33673:40;33651:169;;;;-1:-1:-1;;;33651:169:0;;7876:2:1;33651:169:0;;;7858:21:1;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;8025:34;8005:18;;;7998:62;-1:-1:-1;;;8076:19:1;;;8069:46;8132:19;;33651:169:0;7674:483:1;33651:169:0;33859:10;33831:39;;;;:27;:39;;;;;:46;;-1:-1:-1;;33831:46:0;33873:4;33831:46;;;33890;;33912:23;33890:9;:46::i;:::-;32464:1480;;;32358:1586;;:::o;34904:1578::-;34979:13;35023:5;35013:7;:15;35005:76;;;;-1:-1:-1;;;35005:76:0;;8779:2:1;35005:76:0;;;8761:21:1;8818:2;8798:18;;;8791:30;8857:34;8837:18;;;8830:62;-1:-1:-1;;;8908:18:1;;;8901:46;8964:19;;35005:76:0;8577:412:1;35005:76:0;35163:248;;;;;;;;-1:-1:-1;;;35163:248:0;;-1:-1:-1;;;35163:248:0;;;;-1:-1:-1;;;35163:248:0;;;;-1:-1:-1;;;35163:248:0;;;;-1:-1:-1;;;35163:248:0;;;;;;;;-1:-1:-1;;;35163:248:0;;;;;;;;-1:-1:-1;;;35163:248:0;;;;-1:-1:-1;;;35163:248:0;;;;;;;;-1:-1:-1;;;35163:248:0;;;;35490:309;;;;;;;;;;;;;;;35163:248;;:19;;35490:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35878:239;;;;;;;;-1:-1:-1;;;35878:239:0;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;;;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;-1:-1:-1;;;35878:239:0;;;;35490:309;;-1:-1:-1;35878:19:0;36240:1;36224:12;36234:2;36224:7;:12;:::i;:::-;36223:18;;;;:::i;:::-;36209:32;-1:-1:-1;36249:11:0;36263:12;36273:2;36263:7;:12;:::i;:::-;36249:26;-1:-1:-1;36283:11:0;36329:1;36313:11;36323:1;36313:7;:11;:::i;:::-;36298;36308:1;36298:7;:11;:::i;:::-;:27;;;;:::i;:::-;36297:33;;;;:::i;:::-;36283:47;;36395:2;36399;36403;36407;36411;36415;36419;36422:3;36419:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;36432:2:0;36435:3;36432:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;36445:2:0;36448:3;36445:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;36363:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36338:136;;;;;;;;34904:1578;;;:::o;12952:164::-;-1:-1:-1;;;;;13073:25:0;;;13049:4;13073:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12952:164::o;22398:224::-;22500:4;-1:-1:-1;;;;;;22524:50:0;;-1:-1:-1;;;22524:50:0;;:90;;;22578:36;22602:11;22578:23;:36::i;19275:174::-;19350:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19350:29:0;-1:-1:-1;;;;;19350:29:0;;;;;;;;:24;;19404:23;19350:24;19404:14;:23::i;:::-;-1:-1:-1;;;;;19395:46:0;;;;;;;;;;;19275:174;;:::o;15981:348::-;16074:4;15776:16;;;;;;;;;;;-1:-1:-1;;;;;15776:16:0;16091:73;;;;-1:-1:-1;;;16091:73:0;;11986:2:1;16091:73:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:1;;;12108:42;12167:19;;16091:73:0;11784:408:1;16091:73:0;16175:13;16191:23;16206:7;16191:14;:23::i;:::-;16175:39;;16244:5;-1:-1:-1;;;;;16233:16:0;:7;-1:-1:-1;;;;;16233:16:0;;:51;;;;16277:7;-1:-1:-1;;;;;16253:31:0;:20;16265:7;16253:11;:20::i;:::-;-1:-1:-1;;;;;16253:31:0;;16233:51;:87;;;;16288:32;16305:5;16312:7;16288:16;:32::i;:::-;16225:96;15981:348;-1:-1:-1;;;;15981:348:0:o;18579:578::-;18738:4;-1:-1:-1;;;;;18711:31:0;:23;18726:7;18711:14;:23::i;:::-;-1:-1:-1;;;;;18711:31:0;;18703:85;;;;-1:-1:-1;;;18703:85:0;;14844:2:1;18703:85:0;;;14826:21:1;14883:2;14863:18;;;14856:30;14922:34;14902:18;;;14895:62;-1:-1:-1;;;14973:18:1;;;14966:39;15022:19;;18703:85:0;14642:405:1;18703:85:0;-1:-1:-1;;;;;18807:16:0;;18799:65;;;;-1:-1:-1;;;18799:65:0;;10810:2:1;18799:65:0;;;10792:21:1;10849:2;10829:18;;;10822:30;10888:34;10868:18;;;10861:62;-1:-1:-1;;;10939:18:1;;;10932:34;10983:19;;18799:65:0;10608:400:1;18799:65:0;18877:39;18898:4;18904:2;18908:7;18877:20;:39::i;:::-;18981:29;18998:1;19002:7;18981:8;:29::i;:::-;-1:-1:-1;;;;;19023:15:0;;;;;;19042:1;19023:15;;;;;;;:20;;19042:1;;19023:15;;:20;;19042:1;;19023:20;:::i;:::-;;;;-1:-1:-1;;;;;;;19054:13:0;;;;;;19071:1;19054:13;;;;;;;:18;;19071:1;;19054:13;;:18;;19071:1;;19054:18;:::i;:::-;;;;-1:-1:-1;;19083:7:0;:16;;;;;;;;;;;:21;;-1:-1:-1;;;;;;19083:21:0;-1:-1:-1;;;;;19083:21:0;;;;;;;;;19122:27;;19083:16;;19122:27;;;;;;;18579:578;;;:::o;16671:264::-;16747:18;16753:2;16757:7;16747:5;:18::i;:::-;16798:51;16829:1;16833:2;16837:7;16798:51;;;;;;;;;;;;:22;:51::i;:::-;16776:151;;;;-1:-1:-1;;;16776:151:0;;;;;;;:::i;17882:360::-;17942:13;17958:23;17973:7;17958:14;:23::i;:::-;17942:39;;17994:48;18015:5;18030:1;18034:7;17994:20;:48::i;:::-;18083:29;18100:1;18104:7;18083:8;:29::i;:::-;-1:-1:-1;;;;;18125:16:0;;;;;;18145:1;18125:16;;;;;;;:21;;18145:1;;18125:16;;:21;;18145:1;;18125:21;:::i;:::-;;;;-1:-1:-1;;18164:7:0;:16;;;;;;;;;;;18157:23;;-1:-1:-1;;;;;;18157:23:0;;;18198:36;18172:7;;18164;-1:-1:-1;;;;;18198:36:0;;;;;18164:7;;18198:36;17931:311;17882:360;:::o;15059:315::-;15216:28;15226:4;15232:2;15236:7;15216:9;:28::i;:::-;15263:48;15286:4;15292:2;15296:7;15305:5;15263:22;:48::i;:::-;15255:111;;;;-1:-1:-1;;;15255:111:0;;;;;;;:::i;10314:305::-;10416:4;-1:-1:-1;;;;;;10453:40:0;;-1:-1:-1;;;10453:40:0;;:105;;-1:-1:-1;;;;;;;10510:48:0;;-1:-1:-1;;;10510:48:0;10453:105;:158;;;-1:-1:-1;;;;;;;;;;9095:40:0;;;10575:36;8986:157;30512:795;30674:45;30701:4;30707:2;30711:7;30674:26;:45::i;:::-;-1:-1:-1;;;;;30819:18:0;;30815:288;;30912:9;30895:27;;;;:16;:27;;;;;;30880:12;:42;30854:178;;;;-1:-1:-1;;;30854:178:0;;17066:2:1;30854:178:0;;;17048:21:1;17105:2;17085:18;;;17078:30;17144:34;17124:18;;;17117:62;17215:34;17195:18;;;17188:62;-1:-1:-1;;;17266:19:1;;;17259:41;17317:19;;30854:178:0;16864:478:1;30854:178:0;31066:9;31049:27;;;;:16;:27;;;;;31079:12;31049:42;;30815:288;-1:-1:-1;;;;;31199:16:0;;;31195:105;;31265:23;:12;31280:8;31265:23;:::i;:::-;31232:30;;;;:21;:30;;;;;:56;30512:795;;;:::o;17271:382::-;-1:-1:-1;;;;;17351:16:0;;17343:61;;;;-1:-1:-1;;;17343:61:0;;14070:2:1;17343:61:0;;;14052:21:1;;;14089:18;;;14082:30;14148:34;14128:18;;;14121:62;14200:18;;17343:61:0;13868:356:1;17343:61:0;15752:4;15776:16;;;;;;;;;;;-1:-1:-1;;;;;15776:16:0;:30;17415:58;;;;-1:-1:-1;;;17415:58:0;;10453:2:1;17415:58:0;;;10435:21:1;10492:2;10472:18;;;10465:30;10531;10511:18;;;10504:58;10579:18;;17415:58:0;10251:352:1;17415:58:0;17486:45;17515:1;17519:2;17523:7;17486:20;:45::i;:::-;-1:-1:-1;;;;;17544:13:0;;;;;;17561:1;17544:13;;;;;;;:18;;17561:1;;17544:13;;:18;;17561:1;;17544:18;:::i;:::-;;;;-1:-1:-1;;17573:7:0;:16;;;;;;;;;;;:21;;-1:-1:-1;;;;;;17573:21:0;-1:-1:-1;;;;;17573:21:0;;;;;;;;17612:33;;17573:16;;:7;17612:33;;17573:7;;17612:33;17271:382;;:::o;20014:863::-;20169:4;20228:15;;20259:8;;20255:615;;20288:70;;-1:-1:-1;;;20288:70:0;;-1:-1:-1;;;;;20288:36:0;;;;;:70;;20325:10;;20337:4;;20343:7;;20352:5;;20288:70;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20288:70:0;;;;;;;;-1:-1:-1;;20288:70:0;;;;;;;;;;;;:::i;:::-;;;20284:531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20532:13:0;;20528:272;;20575:60;;-1:-1:-1;;;20575:60:0;;;;;;;:::i;20528:272::-;20750:6;20744:13;20735:6;20731:2;20727:15;20720:38;20284:531;-1:-1:-1;;;;;;20409:55:0;-1:-1:-1;;;20409:55:0;;-1:-1:-1;20402:62:0;;-1:-1:-1;20402:62:0;20255:615;-1:-1:-1;20854:4:0;;20014:863;-1:-1:-1;;;;;20014:863:0:o;24078:589::-;-1:-1:-1;;;;;24284:18:0;;24280:187;;24319:40;24351:7;25494:10;:17;;25467:24;;;;:15;:24;;;;;:44;;;25522:24;;;;;;;;;;;;25390:164;24319:40;24280:187;;;24389:2;-1:-1:-1;;;;;24381:10:0;:4;-1:-1:-1;;;;;24381:10:0;;24377:90;;24408:47;24441:4;24447:7;24408:32;:47::i;:::-;-1:-1:-1;;;;;24481:16:0;;24477:183;;24514:45;24551:7;24514:36;:45::i;24477:183::-;24587:4;-1:-1:-1;;;;;24581:10:0;:2;-1:-1:-1;;;;;24581:10:0;;24577:83;;24608:40;24636:2;24640:7;24608:27;:40::i;26181:988::-;26447:22;26497:1;26472:22;26489:4;26472:16;:22::i;:::-;:26;;;;:::i;:::-;26509:18;26530:26;;;:17;:26;;;;;;26447:51;;-1:-1:-1;26663:28:0;;;26659:328;;-1:-1:-1;;;;;26730:18:0;;26708:19;26730:18;;;:12;:18;;;;;;;;:34;;;;;;;;;26781:30;;;;;;:44;;;26898:30;;:17;:30;;;;;:43;;;26659:328;-1:-1:-1;27083:26:0;;;;:17;:26;;;;;;;;27076:33;;;-1:-1:-1;;;;;27127:18:0;;;;;:12;:18;;;;;:34;;;;;;;27120:41;26181:988::o;27464:1079::-;27742:10;:17;27717:22;;27742:21;;27762:1;;27742:21;:::i;:::-;27774:18;27795:24;;;:15;:24;;;;;;28168:10;:26;;27717:46;;-1:-1:-1;27795:24:0;;27717:46;;28168:26;;;;;;:::i;:::-;;;;;;;;;28146:48;;28232:11;28207:10;28218;28207:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;28312:28;;;:15;:28;;;;;;;:41;;;28484:24;;;;;28477:31;28519:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27535:1008;;;27464:1079;:::o;24968:221::-;25053:14;25070:20;25087:2;25070:16;:20::i;:::-;-1:-1:-1;;;;;25101:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;25146:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;24968:221:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:1266::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:53;;;1565:1;1562;1555:12;1516:53;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1743:33;1702:32;1743:33;:::i;:::-;1795:7;-1:-1:-1;1849:2:1;1834:18;;1821:32;;-1:-1:-1;1904:2:1;1889:18;;1876:32;1927:18;1957:14;;;1954:34;;;1984:1;1981;1974:12;1954:34;2022:6;2011:9;2007:22;1997:32;;2067:7;2060:4;2056:2;2052:13;2048:27;2038:55;;2089:1;2086;2079:12;2038:55;2125:2;2112:16;2147:2;2143;2140:10;2137:36;;;2153:18;;:::i;:::-;2228:2;2222:9;2196:2;2282:13;;-1:-1:-1;;2278:22:1;;;2302:2;2274:31;2270:40;2258:53;;;2326:18;;;2346:22;;;2323:46;2320:72;;;2372:18;;:::i;:::-;2412:10;2408:2;2401:22;2447:2;2439:6;2432:18;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2564:2;2559;2555;2551:11;2546:2;2538:6;2534:15;2521:46;2609:1;2604:2;2599;2591:6;2587:15;2583:24;2576:35;2630:6;2620:16;;;;;;;1376:1266;;;;;;;:::o;2647:416::-;2712:6;2720;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;:::-;2897:5;-1:-1:-1;2954:2:1;2939:18;;2926:32;2996:15;;2989:23;2977:36;;2967:64;;3027:1;3024;3017:12;3068:315;3136:6;3144;3197:2;3185:9;3176:7;3172:23;3168:32;3165:52;;;3213:1;3210;3203:12;3165:52;3252:9;3239:23;3271:31;3296:5;3271:31;:::i;:::-;3321:5;3373:2;3358:18;;;;3345:32;;-1:-1:-1;;;3068:315:1:o;3388:245::-;3446:6;3499:2;3487:9;3478:7;3474:23;3470:32;3467:52;;;3515:1;3512;3505:12;3467:52;3554:9;3541:23;3573:30;3597:5;3573:30;:::i;3638:249::-;3707:6;3760:2;3748:9;3739:7;3735:23;3731:32;3728:52;;;3776:1;3773;3766:12;3728:52;3808:9;3802:16;3827:30;3851:5;3827:30;:::i;3892:180::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;-1:-1:-1;4043:23:1;;3892:180;-1:-1:-1;3892:180:1:o;4077:184::-;4147:6;4200:2;4188:9;4179:7;4175:23;4171:32;4168:52;;;4216:1;4213;4206:12;4168:52;-1:-1:-1;4239:16:1;;4077:184;-1:-1:-1;4077:184:1:o;4266:248::-;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;-1:-1:-1;;4434:23:1;;;4504:2;4489:18;;;4476:32;;-1:-1:-1;4266:248:1:o;4648:257::-;4689:3;4727:5;4721:12;4754:6;4749:3;4742:19;4770:63;4826:6;4819:4;4814:3;4810:14;4803:4;4796:5;4792:16;4770:63;:::i;:::-;4887:2;4866:15;-1:-1:-1;;4862:29:1;4853:39;;;;4894:4;4849:50;;4648:257;-1:-1:-1;;4648:257:1:o;5379:1173::-;5844:6;5839:3;5832:19;5881:6;5876:2;5871:3;5867:12;5860:28;5918:6;5913:2;5908:3;5904:12;5897:28;5955:6;5950:2;5945:3;5941:12;5934:28;5993:6;5987:3;5982;5978:13;5971:29;6031:6;6025:3;6020;6016:13;6009:29;6090:20;6085:3;6081:30;6073:6;6069:43;6063:3;6058;6054:13;6047:66;6165:10;6160:3;6156:20;6148:6;6144:33;6138:3;6133;6129:13;6122:56;5814:3;6207:6;6201:13;6223:61;6277:6;6271:3;6266;6262:13;6257:2;6249:6;6245:15;6223:61;:::i;:::-;-1:-1:-1;;;;;;6349:45:1;;6343:3;6303:16;;;6335:12;;;6328:67;-1:-1:-1;;;;;;6425:42:1;;6419:3;6411:12;;6404:64;6477:41;6513:3;6505:12;;6496:7;-1:-1:-1;;4585:51:1;4573:64;;4519:124;6477:41;6542:3;6534:12;;5379:1173;-1:-1:-1;;;;;;;;;;;;;;5379:1173:1:o;6765:488::-;-1:-1:-1;;;;;7034:15:1;;;7016:34;;7086:15;;7081:2;7066:18;;7059:43;7133:2;7118:18;;7111:34;;;7181:3;7176:2;7161:18;;7154:31;;;6959:4;;7202:45;;7227:19;;7219:6;7202:45;:::i;:::-;7194:53;6765:488;-1:-1:-1;;;;;;6765:488:1:o;7450:219::-;7599:2;7588:9;7581:21;7562:4;7619:44;7659:2;7648:9;7644:18;7636:6;7619:44;:::i;8162:410::-;8364:2;8346:21;;;8403:2;8383:18;;;8376:30;8442:34;8437:2;8422:18;;8415:62;-1:-1:-1;;;8508:2:1;8493:18;;8486:44;8562:3;8547:19;;8162:410::o;9406:414::-;9608:2;9590:21;;;9647:2;9627:18;;;9620:30;9686:34;9681:2;9666:18;;9659:62;-1:-1:-1;;;9752:2:1;9737:18;;9730:48;9810:3;9795:19;;9406:414::o;15052:427::-;15254:2;15236:21;;;15293:2;15273:18;;;15266:30;15332:34;15327:2;15312:18;;15305:62;15403:33;15398:2;15383:18;;15376:61;15469:3;15454:19;;15052:427::o;16446:413::-;16648:2;16630:21;;;16687:2;16667:18;;;16660:30;16726:34;16721:2;16706:18;;16699:62;-1:-1:-1;;;16792:2:1;16777:18;;16770:47;16849:3;16834:19;;16446:413::o;17942:128::-;17982:3;18013:1;18009:6;18006:1;18003:13;18000:39;;;18019:18;;:::i;:::-;-1:-1:-1;18055:9:1;;17942:128::o;18075:120::-;18115:1;18141;18131:35;;18146:18;;:::i;:::-;-1:-1:-1;18180:9:1;;18075:120::o;18200:125::-;18240:4;18268:1;18265;18262:8;18259:34;;;18273:18;;:::i;:::-;-1:-1:-1;18310:9:1;;18200:125::o;18330:258::-;18402:1;18412:113;18426:6;18423:1;18420:13;18412:113;;;18502:11;;;18496:18;18483:11;;;18476:39;18448:2;18441:10;18412:113;;;18543:6;18540:1;18537:13;18534:48;;;-1:-1:-1;;18578:1:1;18560:16;;18553:27;18330:258::o;18593:112::-;18625:1;18651;18641:35;;18656:18;;:::i;:::-;-1:-1:-1;18690:9:1;;18593:112::o;18710:127::-;18771:10;18766:3;18762:20;18759:1;18752:31;18802:4;18799:1;18792:15;18826:4;18823:1;18816:15;18842:127;18903:10;18898:3;18894:20;18891:1;18884:31;18934:4;18931:1;18924:15;18958:4;18955:1;18948:15;18974:127;19035:10;19030:3;19026:20;19023:1;19016:31;19066:4;19063:1;19056:15;19090:4;19087:1;19080:15;19106:127;19167:10;19162:3;19158:20;19155:1;19148:31;19198:4;19195:1;19188:15;19222:4;19219:1;19212:15;19238:127;19299:10;19294:3;19290:20;19287:1;19280:31;19330:4;19327:1;19320:15;19354:4;19351:1;19344:15;19370:131;-1:-1:-1;;;;;19445:31:1;;19435:42;;19425:70;;19491:1;19488;19481:12;19506:131;-1:-1:-1;;;;;;19580:32:1;;19570:43;;19560:71;;19627:1;19624;19617:12

Swarm Source

ipfs://417fbc13711ed2319afb3b5d26164fbfc77768dca77025c42160480623c2eb83

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.