ETH Price: $2,348.50 (+1.89%)

Token

ErrorPunks (ErrorPunks)
 

Overview

Max Total Supply

510 ErrorPunks

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ErrorPunks
0x9f1a8e2d468098a784e03d349f6a784aea041b9c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ErrorPunks

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-09
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory 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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @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() public view virtual override returns (string memory) {
        return _name;
    }

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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "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)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), 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
    ) public 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(_msgSender(), 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 tokenId < _owners.length && _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 {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _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) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

pragma solidity ^0.8.7;

/**
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.11;
pragma abicoder v2;

// Twitter: https://twitter.com/ErrorPunks_io
// Discord: https://discord.gg/kFnfQKwDSR
// Website: https://errorpunks.io/
// Shoutout to @NFTChance for providing some amazing advice on gas optimized
// contracts. Link: https://nftchance.medium.com/the-gas-efficient-way-of-building-and-launching-an-erc721-nft-project-for-2022-b3b1dac5f2e1

contract ErrorPunks is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  
  mapping(address => uint256) private         freePUNKAllowance;
  bool                        public          saleIsActive = false;
  string                      public          final_provenance = "";
  address                     public          proxyRegistryAddress;
  mapping(address => bool)    public          projectProxy;
  string                      public          baseURI;
  uint256                     public constant TOKEN_PRICE = 70000000000000000;

  // Error code, error world, erro punks!
  uint                        public constant MAX_TXN_PUNK_PURCHASE = 21;
  uint256                     public constant MAX_ErrorPunks = 10001;
  uint256                     public constant MAX_FREE_PER_USER_ErrorPunks = 6;
  uint256                     public constant FREE_ErrorPunks = 501;
  // 10000 TOTAL SUPPLY. 500 TOTAL freemint. 9500 mint.
    
  constructor() ERC721("ErrorPunks", "ErrorPunks") {
    setBaseURI("ipfs://QmYf2tiYagXtHECAYhnDozTcNZg9RwuAvye3efAKstgGZD/");
    proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
  }
    
  function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
    proxyRegistryAddress = _proxyRegistryAddress;
  }
  
  function flipProxyState(address proxyAddress) public onlyOwner {
    projectProxy[proxyAddress] = !projectProxy[proxyAddress];
  }

  function withdraw() public onlyOwner nonReentrant {
    uint256 balance = address(this).balance;
    require(balance > 0);

    (bool ownerSuccess, ) = _msgSender().call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }

  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    final_provenance = provenanceHash;
  }

  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
      // Return an empty array
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](tokenCount);
      uint256 index;
      for (index = 0; index < tokenCount; index++) {
        result[index] = tokenOfOwnerByIndex(_owner, index);
      }
      return result;
    }
  }
  
  function freeMint(uint numberOfTokens) public nonReentrant {
    require(saleIsActive, "Sale must be active to mint");
    require(freePUNKAllowance[msg.sender].add(numberOfTokens) < MAX_FREE_PER_USER_ErrorPunks, "Your mint would exceed the total of 5 ErrorPunks allowed for free.");
    require(totalSupply().add(numberOfTokens) < FREE_ErrorPunks, "Purchase would exceed free supply");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, totalSupply());
    }

    freePUNKAllowance[msg.sender] += numberOfTokens;
  }
  
  function mint(uint numberOfTokens) public payable nonReentrant {
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens > 0, "Must mint more than 0 tokens.");
    require(numberOfTokens < MAX_TXN_PUNK_PURCHASE, "You can only mint 20 ErrorPunks per transaction.");
    require(totalSupply().add(numberOfTokens) < MAX_ErrorPunks, "Purchase would exceed max supply");
    require(msg.value == TOKEN_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, totalSupply());
    }
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json"));
  }

  function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
    return super.isApprovedForAll(_owner, operator);
  }

  function airdrop(address to, uint256[] calldata tokenIds) external onlyOwner {
    for (uint i = 0; i < tokenIds.length; i++) {
      _safeMint(to, tokenIds[i]);
    }
  }
}

contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_ErrorPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ErrorPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_USER_ErrorPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TXN_PUNK_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"final_provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805460ff1916905560a06040819052600060808190526200002591600991620001d2565b503480156200003357600080fd5b50604080518082018252600a808252694572726f7250756e6b7360b01b6020808401828152855180870190965292855284015281519192916200007991600091620001d2565b5080516200008f906001906020840190620001d2565b505050620000ac620000a66200010460201b60201c565b62000108565b6001600681905550620000d8604051806060016040528060368152602001620029aa603691396200015a565b600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055620002b5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ce90600c906020840190620001d2565b5050565b828054620001e09062000278565b90600052602060002090601f0160209004810192826200020457600085556200024f565b82601f106200021f57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024f57825182559160200191906001019062000232565b506200025d92915062000261565b5090565b5b808211156200025d576000815560010162000262565b600181811c908216806200028d57607f821691505b60208210811415620002af57634e487b7160e01b600052602260045260246000fd5b50919050565b6126e580620002c56000396000f3fe6080604052600436106102305760003560e01c80637d9adfa31161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461064c578063eb8d24441461066c578063f016744314610686578063f2fde38b1461069c578063f73c814b146106bc57600080fd5b8063c87b56dd146105bc578063cd7c0326146105dc578063d1bb217b146105fc578063d26ea6c014610611578063d2d8cb671461063157600080fd5b8063994f618f116100f2578063994f618f1461053f578063a0712d6814610554578063a22cb46514610567578063b2462be514610587578063b88d4fde1461059c57600080fd5b80637d9adfa3146104a95780638462151c146104bf57806385bc4d83146104ec5780638da5cb5b1461050c57806395d89b411461052a57600080fd5b80633ccfd60b116101bc5780636352211e116101805780636352211e1461041f5780636c0360eb1461043f57806370a0823114610454578063715018a6146104745780637c928fe91461048957600080fd5b80633ccfd60b1461037a57806342842e0e1461038f5780634f6ccce7146103af57806355f804b3146103cf5780635bab26e2146103ef57600080fd5b8063109695231161020357806310969523146102e657806318160ddd1461030657806323b872dd146103255780632f745c591461034557806334918dfd1461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611f32565b6106dc565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610707565b6040516102619190611fa7565b34801561029857600080fd5b506102ac6102a7366004611fba565b610799565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611fe8565b610826565b005b3480156102f257600080fd5b506102e46103013660046120a0565b61093c565b34801561031257600080fd5b506002545b604051908152602001610261565b34801561033157600080fd5b506102e46103403660046120e9565b61097d565b34801561035157600080fd5b50610317610360366004611fe8565b6109ae565b34801561037157600080fd5b506102e4610a61565b34801561038657600080fd5b506102e4610a9f565b34801561039b57600080fd5b506102e46103aa3660046120e9565b610b9d565b3480156103bb57600080fd5b506103176103ca366004611fba565b610bb8565b3480156103db57600080fd5b506102e46103ea3660046120a0565b610c25565b3480156103fb57600080fd5b5061025561040a36600461212a565b600b6020526000908152604090205460ff1681565b34801561042b57600080fd5b506102ac61043a366004611fba565b610c62565b34801561044b57600080fd5b5061027f610cee565b34801561046057600080fd5b5061031761046f36600461212a565b610d7c565b34801561048057600080fd5b506102e4610e4a565b34801561049557600080fd5b506102e46104a4366004611fba565b610e80565b3480156104b557600080fd5b506103176101f581565b3480156104cb57600080fd5b506104df6104da36600461212a565b61105e565b6040516102619190612147565b3480156104f857600080fd5b506102e461050736600461218b565b61111d565b34801561051857600080fd5b506005546001600160a01b03166102ac565b34801561053657600080fd5b5061027f61118c565b34801561054b57600080fd5b50610317600681565b6102e4610562366004611fba565b61119b565b34801561057357600080fd5b506102e4610582366004612213565b6113b4565b34801561059357600080fd5b5061027f611479565b3480156105a857600080fd5b506102e46105b7366004612251565b611486565b3480156105c857600080fd5b5061027f6105d7366004611fba565b6114b8565b3480156105e857600080fd5b50600a546102ac906001600160a01b031681565b34801561060857600080fd5b50610317601581565b34801561061d57600080fd5b506102e461062c36600461212a565b611539565b34801561063d57600080fd5b5061031766f8b0a10e47000081565b34801561065857600080fd5b506102556106673660046122d1565b611585565b34801561067857600080fd5b506008546102559060ff1681565b34801561069257600080fd5b5061031761271181565b3480156106a857600080fd5b506102e46106b736600461212a565b611669565b3480156106c857600080fd5b506102e46106d736600461212a565b611704565b60006001600160e01b0319821663780e9d6360e01b1480610701575061070182611757565b92915050565b606060008054610716906122ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610742906122ff565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a4826117a7565b61080a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083182610c62565b9050806001600160a01b0316836001600160a01b0316141561089f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610801565b336001600160a01b03821614806108bb57506108bb8133611585565b61092d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610801565b61093783836117f1565b505050565b6005546001600160a01b031633146109665760405162461bcd60e51b815260040161080190612334565b8051610979906009906020840190611e8c565b5050565b610987338261185f565b6109a35760405162461bcd60e51b815260040161080190612369565b610937838383611921565b60006109b983610d7c565b82106109d75760405162461bcd60e51b8152600401610801906123ba565b6000805b600254811015610a4857600281815481106109f8576109f8612405565b6000918252602090912001546001600160a01b0386811691161415610a365783821415610a285791506107019050565b81610a3281612431565b9250505b80610a4081612431565b9150506109db565b5060405162461bcd60e51b8152600401610801906123ba565b6005546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161080190612334565b6008805460ff19811660ff90911615179055565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080190612334565b60026006541415610aec5760405162461bcd60e51b81526004016108019061244c565b60026006554780610afc57600080fd5b604051600090339047908381818185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b945760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610801565b50506001600655565b61093783838360405180602001604052806000815250611486565b6002546000908210610c215760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610801565b5090565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161080190612334565b805161097990600c906020840190611e8c565b60008060028381548110610c7857610c78612405565b6000918252602090912001546001600160a01b03169050806107015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610801565b600c8054610cfb906122ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906122ff565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b505050505081565b60006001600160a01b038216610de75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610801565b6000805b600254811015610e435760028181548110610e0857610e08612405565b6000918252602090912001546001600160a01b0385811691161415610e3357610e3082612431565b91505b610e3c81612431565b9050610deb565b5092915050565b6005546001600160a01b03163314610e745760405162461bcd60e51b815260040161080190612334565b610e7e6000611a77565b565b60026006541415610ea35760405162461bcd60e51b81526004016108019061244c565b600260065560085460ff16610efa5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610801565b33600090815260076020526040902054600690610f179083611ac9565b10610f955760405162461bcd60e51b815260206004820152604260248201527f596f7572206d696e7420776f756c64206578636565642074686520746f74616c60448201527f206f662035204572726f7250756e6b7320616c6c6f77656420666f7220667265606482015261329760f11b608482015260a401610801565b6101f5610fab82610fa560025490565b90611ac9565b106110025760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b6064820152608401610801565b60005b818110156110315761101f3361101a60025490565b611adc565b8061102981612431565b915050611005565b503360009081526007602052604081208054839290611051908490612483565b9091555050600160065550565b6060600061106b83610d7c565b90508061108c5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110a7576110a7612014565b6040519080825280602002602001820160405280156110d0578160200160208202803683370190505b50905060005b82811015611084576110e885826109ae565b8282815181106110fa576110fa612405565b60209081029190910101528061110f81612431565b9150506110d6565b50919050565b6005546001600160a01b031633146111475760405162461bcd60e51b815260040161080190612334565b60005b81811015611186576111748484848481811061116857611168612405565b90506020020135611adc565b8061117e81612431565b91505061114a565b50505050565b606060018054610716906122ff565b600260065414156111be5760405162461bcd60e51b81526004016108019061244c565b600260065560085460ff166112155760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610801565b600081116112655760405162461bcd60e51b815260206004820152601d60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e732e0000006044820152606401610801565b601581106112ce5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74203230204572726f7250756e6b732060448201526f3832b9103a3930b739b0b1ba34b7b71760811b6064820152608401610801565b6127116112de82610fa560025490565b1061132b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610801565b61133c66f8b0a10e47000082611af6565b341461138a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610801565b60005b81811015610b94576113a23361101a60025490565b806113ac81612431565b91505061138d565b6001600160a01b03821633141561140d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610801565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610cfb906122ff565b611490338361185f565b6114ac5760405162461bcd60e51b815260040161080190612369565b61118684848484611b02565b60606114c3826117a7565b6115075760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610801565b600c61151283611b35565b6040516020016115239291906124b7565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146115635760405162461bcd60e51b815260040161080190612334565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156115d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fb9190612572565b6001600160a01b0316148061162857506001600160a01b0383166000908152600b602052604090205460ff165b15611637576001915050610701565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146116935760405162461bcd60e51b815260040161080190612334565b6001600160a01b0381166116f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610801565b61170181611a77565b50565b6005546001600160a01b0316331461172e5760405162461bcd60e51b815260040161080190612334565b6001600160a01b03166000908152600b60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061178857506001600160e01b03198216635b5e139f60e01b145b8061070157506301ffc9a760e01b6001600160e01b0319831614610701565b60025460009082108015610701575060006001600160a01b0316600283815481106117d4576117d4612405565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182682610c62565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061186a826117a7565b6118cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610801565b60006118d683610c62565b9050806001600160a01b0316846001600160a01b031614806119115750836001600160a01b031661190684610799565b6001600160a01b0316145b8061166157506116618185611585565b826001600160a01b031661193482610c62565b6001600160a01b03161461199c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610801565b6001600160a01b0382166119fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610801565b611a096000826117f1565b8160028281548110611a1d57611a1d612405565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ad58284612483565b9392505050565b610979828260405180602001604052806000815250611c33565b6000611ad5828461258f565b611b0d848484611921565b611b1984848484611c66565b6111865760405162461bcd60e51b8152600401610801906125ae565b606081611b595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b835780611b6d81612431565b9150611b7c9050600a83612616565b9150611b5d565b60008167ffffffffffffffff811115611b9e57611b9e612014565b6040519080825280601f01601f191660200182016040528015611bc8576020820181803683370190505b5090505b841561166157611bdd60018361262a565b9150611bea600a86612641565b611bf5906030612483565b60f81b818381518110611c0a57611c0a612405565b60200101906001600160f81b031916908160001a905350611c2c600a86612616565b9450611bcc565b611c3d8383611d64565b611c4a6000848484611c66565b6109375760405162461bcd60e51b8152600401610801906125ae565b60006001600160a01b0384163b15611d5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caa903390899088908890600401612655565b6020604051808303816000875af1925050508015611ce5575060408051601f3d908101601f19168201909252611ce291810190612692565b60015b611d3f573d808015611d13576040519150601f19603f3d011682016040523d82523d6000602084013e611d18565b606091505b508051611d375760405162461bcd60e51b8152600401610801906125ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611661565b506001949350505050565b6001600160a01b038216611dba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610801565b611dc3816117a7565b15611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610801565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e98906122ff565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50610c219291505b80821115610c215760008155600101611f08565b6001600160e01b03198116811461170157600080fd5b600060208284031215611f4457600080fd5b8135611ad581611f1c565b60005b83811015611f6a578181015183820152602001611f52565b838111156111865750506000910152565b60008151808452611f93816020860160208601611f4f565b601f01601f19169290920160200192915050565b602081526000611ad56020830184611f7b565b600060208284031215611fcc57600080fd5b5035919050565b6001600160a01b038116811461170157600080fd5b60008060408385031215611ffb57600080fd5b823561200681611fd3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561204557612045612014565b604051601f8501601f19908116603f0116810190828211818310171561206d5761206d612014565b8160405280935085815286868601111561208657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120b257600080fd5b813567ffffffffffffffff8111156120c957600080fd5b8201601f810184136120da57600080fd5b6116618482356020840161202a565b6000806000606084860312156120fe57600080fd5b833561210981611fd3565b9250602084013561211981611fd3565b929592945050506040919091013590565b60006020828403121561213c57600080fd5b8135611ad581611fd3565b6020808252825182820181905260009190848201906040850190845b8181101561217f57835183529284019291840191600101612163565b50909695505050505050565b6000806000604084860312156121a057600080fd5b83356121ab81611fd3565b9250602084013567ffffffffffffffff808211156121c857600080fd5b818601915086601f8301126121dc57600080fd5b8135818111156121eb57600080fd5b8760208260051b850101111561220057600080fd5b6020830194508093505050509250925092565b6000806040838503121561222657600080fd5b823561223181611fd3565b91506020830135801515811461224657600080fd5b809150509250929050565b6000806000806080858703121561226757600080fd5b843561227281611fd3565b9350602085013561228281611fd3565b925060408501359150606085013567ffffffffffffffff8111156122a557600080fd5b8501601f810187136122b657600080fd5b6122c58782356020840161202a565b91505092959194509250565b600080604083850312156122e457600080fd5b82356122ef81611fd3565b9150602083013561224681611fd3565b600181811c9082168061231357607f821691505b6020821081141561111757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124455761244561241b565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156124965761249661241b565b500190565b600081516124ad818560208601611f4f565b9290920192915050565b600080845481600182811c9150808316806124d357607f831692505b60208084108214156124f357634e487b7160e01b86526022600452602486fd5b818015612507576001811461251857612545565b60ff19861689528489019650612545565b60008b81526020902060005b8681101561253d5781548b820152908501908301612524565b505084890196505b505050505050612569612558828661249b565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561258457600080fd5b8151611ad581611fd3565b60008160001904831182151516156125a9576125a961241b565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261262557612625612600565b500490565b60008282101561263c5761263c61241b565b500390565b60008261265057612650612600565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061268890830184611f7b565b9695505050505050565b6000602082840312156126a457600080fd5b8151611ad581611f1c56fea26469706673582212209e07b87f76d974d17537fbdebae45791794cd8a62a5863d438b36e541531719164736f6c634300080b0033697066733a2f2f516d596632746959616758744845434159686e446f7a54634e5a673952777541767965336566414b737467475a442f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637d9adfa31161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c51461064c578063eb8d24441461066c578063f016744314610686578063f2fde38b1461069c578063f73c814b146106bc57600080fd5b8063c87b56dd146105bc578063cd7c0326146105dc578063d1bb217b146105fc578063d26ea6c014610611578063d2d8cb671461063157600080fd5b8063994f618f116100f2578063994f618f1461053f578063a0712d6814610554578063a22cb46514610567578063b2462be514610587578063b88d4fde1461059c57600080fd5b80637d9adfa3146104a95780638462151c146104bf57806385bc4d83146104ec5780638da5cb5b1461050c57806395d89b411461052a57600080fd5b80633ccfd60b116101bc5780636352211e116101805780636352211e1461041f5780636c0360eb1461043f57806370a0823114610454578063715018a6146104745780637c928fe91461048957600080fd5b80633ccfd60b1461037a57806342842e0e1461038f5780634f6ccce7146103af57806355f804b3146103cf5780635bab26e2146103ef57600080fd5b8063109695231161020357806310969523146102e657806318160ddd1461030657806323b872dd146103255780632f745c591461034557806334918dfd1461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611f32565b6106dc565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610707565b6040516102619190611fa7565b34801561029857600080fd5b506102ac6102a7366004611fba565b610799565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611fe8565b610826565b005b3480156102f257600080fd5b506102e46103013660046120a0565b61093c565b34801561031257600080fd5b506002545b604051908152602001610261565b34801561033157600080fd5b506102e46103403660046120e9565b61097d565b34801561035157600080fd5b50610317610360366004611fe8565b6109ae565b34801561037157600080fd5b506102e4610a61565b34801561038657600080fd5b506102e4610a9f565b34801561039b57600080fd5b506102e46103aa3660046120e9565b610b9d565b3480156103bb57600080fd5b506103176103ca366004611fba565b610bb8565b3480156103db57600080fd5b506102e46103ea3660046120a0565b610c25565b3480156103fb57600080fd5b5061025561040a36600461212a565b600b6020526000908152604090205460ff1681565b34801561042b57600080fd5b506102ac61043a366004611fba565b610c62565b34801561044b57600080fd5b5061027f610cee565b34801561046057600080fd5b5061031761046f36600461212a565b610d7c565b34801561048057600080fd5b506102e4610e4a565b34801561049557600080fd5b506102e46104a4366004611fba565b610e80565b3480156104b557600080fd5b506103176101f581565b3480156104cb57600080fd5b506104df6104da36600461212a565b61105e565b6040516102619190612147565b3480156104f857600080fd5b506102e461050736600461218b565b61111d565b34801561051857600080fd5b506005546001600160a01b03166102ac565b34801561053657600080fd5b5061027f61118c565b34801561054b57600080fd5b50610317600681565b6102e4610562366004611fba565b61119b565b34801561057357600080fd5b506102e4610582366004612213565b6113b4565b34801561059357600080fd5b5061027f611479565b3480156105a857600080fd5b506102e46105b7366004612251565b611486565b3480156105c857600080fd5b5061027f6105d7366004611fba565b6114b8565b3480156105e857600080fd5b50600a546102ac906001600160a01b031681565b34801561060857600080fd5b50610317601581565b34801561061d57600080fd5b506102e461062c36600461212a565b611539565b34801561063d57600080fd5b5061031766f8b0a10e47000081565b34801561065857600080fd5b506102556106673660046122d1565b611585565b34801561067857600080fd5b506008546102559060ff1681565b34801561069257600080fd5b5061031761271181565b3480156106a857600080fd5b506102e46106b736600461212a565b611669565b3480156106c857600080fd5b506102e46106d736600461212a565b611704565b60006001600160e01b0319821663780e9d6360e01b1480610701575061070182611757565b92915050565b606060008054610716906122ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610742906122ff565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a4826117a7565b61080a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083182610c62565b9050806001600160a01b0316836001600160a01b0316141561089f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610801565b336001600160a01b03821614806108bb57506108bb8133611585565b61092d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610801565b61093783836117f1565b505050565b6005546001600160a01b031633146109665760405162461bcd60e51b815260040161080190612334565b8051610979906009906020840190611e8c565b5050565b610987338261185f565b6109a35760405162461bcd60e51b815260040161080190612369565b610937838383611921565b60006109b983610d7c565b82106109d75760405162461bcd60e51b8152600401610801906123ba565b6000805b600254811015610a4857600281815481106109f8576109f8612405565b6000918252602090912001546001600160a01b0386811691161415610a365783821415610a285791506107019050565b81610a3281612431565b9250505b80610a4081612431565b9150506109db565b5060405162461bcd60e51b8152600401610801906123ba565b6005546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161080190612334565b6008805460ff19811660ff90911615179055565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080190612334565b60026006541415610aec5760405162461bcd60e51b81526004016108019061244c565b60026006554780610afc57600080fd5b604051600090339047908381818185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b945760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610801565b50506001600655565b61093783838360405180602001604052806000815250611486565b6002546000908210610c215760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610801565b5090565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161080190612334565b805161097990600c906020840190611e8c565b60008060028381548110610c7857610c78612405565b6000918252602090912001546001600160a01b03169050806107015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610801565b600c8054610cfb906122ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906122ff565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b505050505081565b60006001600160a01b038216610de75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610801565b6000805b600254811015610e435760028181548110610e0857610e08612405565b6000918252602090912001546001600160a01b0385811691161415610e3357610e3082612431565b91505b610e3c81612431565b9050610deb565b5092915050565b6005546001600160a01b03163314610e745760405162461bcd60e51b815260040161080190612334565b610e7e6000611a77565b565b60026006541415610ea35760405162461bcd60e51b81526004016108019061244c565b600260065560085460ff16610efa5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610801565b33600090815260076020526040902054600690610f179083611ac9565b10610f955760405162461bcd60e51b815260206004820152604260248201527f596f7572206d696e7420776f756c64206578636565642074686520746f74616c60448201527f206f662035204572726f7250756e6b7320616c6c6f77656420666f7220667265606482015261329760f11b608482015260a401610801565b6101f5610fab82610fa560025490565b90611ac9565b106110025760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b6064820152608401610801565b60005b818110156110315761101f3361101a60025490565b611adc565b8061102981612431565b915050611005565b503360009081526007602052604081208054839290611051908490612483565b9091555050600160065550565b6060600061106b83610d7c565b90508061108c5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110a7576110a7612014565b6040519080825280602002602001820160405280156110d0578160200160208202803683370190505b50905060005b82811015611084576110e885826109ae565b8282815181106110fa576110fa612405565b60209081029190910101528061110f81612431565b9150506110d6565b50919050565b6005546001600160a01b031633146111475760405162461bcd60e51b815260040161080190612334565b60005b81811015611186576111748484848481811061116857611168612405565b90506020020135611adc565b8061117e81612431565b91505061114a565b50505050565b606060018054610716906122ff565b600260065414156111be5760405162461bcd60e51b81526004016108019061244c565b600260065560085460ff166112155760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610801565b600081116112655760405162461bcd60e51b815260206004820152601d60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e732e0000006044820152606401610801565b601581106112ce5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e74203230204572726f7250756e6b732060448201526f3832b9103a3930b739b0b1ba34b7b71760811b6064820152608401610801565b6127116112de82610fa560025490565b1061132b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610801565b61133c66f8b0a10e47000082611af6565b341461138a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610801565b60005b81811015610b94576113a23361101a60025490565b806113ac81612431565b91505061138d565b6001600160a01b03821633141561140d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610801565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610cfb906122ff565b611490338361185f565b6114ac5760405162461bcd60e51b815260040161080190612369565b61118684848484611b02565b60606114c3826117a7565b6115075760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610801565b600c61151283611b35565b6040516020016115239291906124b7565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146115635760405162461bcd60e51b815260040161080190612334565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156115d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fb9190612572565b6001600160a01b0316148061162857506001600160a01b0383166000908152600b602052604090205460ff165b15611637576001915050610701565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146116935760405162461bcd60e51b815260040161080190612334565b6001600160a01b0381166116f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610801565b61170181611a77565b50565b6005546001600160a01b0316331461172e5760405162461bcd60e51b815260040161080190612334565b6001600160a01b03166000908152600b60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061178857506001600160e01b03198216635b5e139f60e01b145b8061070157506301ffc9a760e01b6001600160e01b0319831614610701565b60025460009082108015610701575060006001600160a01b0316600283815481106117d4576117d4612405565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182682610c62565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061186a826117a7565b6118cb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610801565b60006118d683610c62565b9050806001600160a01b0316846001600160a01b031614806119115750836001600160a01b031661190684610799565b6001600160a01b0316145b8061166157506116618185611585565b826001600160a01b031661193482610c62565b6001600160a01b03161461199c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610801565b6001600160a01b0382166119fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610801565b611a096000826117f1565b8160028281548110611a1d57611a1d612405565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ad58284612483565b9392505050565b610979828260405180602001604052806000815250611c33565b6000611ad5828461258f565b611b0d848484611921565b611b1984848484611c66565b6111865760405162461bcd60e51b8152600401610801906125ae565b606081611b595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b835780611b6d81612431565b9150611b7c9050600a83612616565b9150611b5d565b60008167ffffffffffffffff811115611b9e57611b9e612014565b6040519080825280601f01601f191660200182016040528015611bc8576020820181803683370190505b5090505b841561166157611bdd60018361262a565b9150611bea600a86612641565b611bf5906030612483565b60f81b818381518110611c0a57611c0a612405565b60200101906001600160f81b031916908160001a905350611c2c600a86612616565b9450611bcc565b611c3d8383611d64565b611c4a6000848484611c66565b6109375760405162461bcd60e51b8152600401610801906125ae565b60006001600160a01b0384163b15611d5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caa903390899088908890600401612655565b6020604051808303816000875af1925050508015611ce5575060408051601f3d908101601f19168201909252611ce291810190612692565b60015b611d3f573d808015611d13576040519150601f19603f3d011682016040523d82523d6000602084013e611d18565b606091505b508051611d375760405162461bcd60e51b8152600401610801906125ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611661565b506001949350505050565b6001600160a01b038216611dba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610801565b611dc3816117a7565b15611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610801565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e98906122ff565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50610c219291505b80821115610c215760008155600101611f08565b6001600160e01b03198116811461170157600080fd5b600060208284031215611f4457600080fd5b8135611ad581611f1c565b60005b83811015611f6a578181015183820152602001611f52565b838111156111865750506000910152565b60008151808452611f93816020860160208601611f4f565b601f01601f19169290920160200192915050565b602081526000611ad56020830184611f7b565b600060208284031215611fcc57600080fd5b5035919050565b6001600160a01b038116811461170157600080fd5b60008060408385031215611ffb57600080fd5b823561200681611fd3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561204557612045612014565b604051601f8501601f19908116603f0116810190828211818310171561206d5761206d612014565b8160405280935085815286868601111561208657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120b257600080fd5b813567ffffffffffffffff8111156120c957600080fd5b8201601f810184136120da57600080fd5b6116618482356020840161202a565b6000806000606084860312156120fe57600080fd5b833561210981611fd3565b9250602084013561211981611fd3565b929592945050506040919091013590565b60006020828403121561213c57600080fd5b8135611ad581611fd3565b6020808252825182820181905260009190848201906040850190845b8181101561217f57835183529284019291840191600101612163565b50909695505050505050565b6000806000604084860312156121a057600080fd5b83356121ab81611fd3565b9250602084013567ffffffffffffffff808211156121c857600080fd5b818601915086601f8301126121dc57600080fd5b8135818111156121eb57600080fd5b8760208260051b850101111561220057600080fd5b6020830194508093505050509250925092565b6000806040838503121561222657600080fd5b823561223181611fd3565b91506020830135801515811461224657600080fd5b809150509250929050565b6000806000806080858703121561226757600080fd5b843561227281611fd3565b9350602085013561228281611fd3565b925060408501359150606085013567ffffffffffffffff8111156122a557600080fd5b8501601f810187136122b657600080fd5b6122c58782356020840161202a565b91505092959194509250565b600080604083850312156122e457600080fd5b82356122ef81611fd3565b9150602083013561224681611fd3565b600181811c9082168061231357607f821691505b6020821081141561111757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124455761244561241b565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156124965761249661241b565b500190565b600081516124ad818560208601611f4f565b9290920192915050565b600080845481600182811c9150808316806124d357607f831692505b60208084108214156124f357634e487b7160e01b86526022600452602486fd5b818015612507576001811461251857612545565b60ff19861689528489019650612545565b60008b81526020902060005b8681101561253d5781548b820152908501908301612524565b505084890196505b505050505050612569612558828661249b565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561258457600080fd5b8151611ad581611fd3565b60008160001904831182151516156125a9576125a961241b565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261262557612625612600565b500490565b60008282101561263c5761263c61241b565b500390565b60008261265057612650612600565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061268890830184611f7b565b9695505050505050565b6000602082840312156126a457600080fd5b8151611ad581611f1c56fea26469706673582212209e07b87f76d974d17537fbdebae45791794cd8a62a5863d438b36e541531719164736f6c634300080b0033

Deployed Bytecode Sourcemap

39671:4486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35530:224;;;;;;;;;;-1:-1:-1;35530:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35530:224:0;;;;;;;;24147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24959:308::-;;;;;;;;;;-1:-1:-1;24959:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24959:308:0;1550:203:1;24482:411:0;;;;;;;;;;-1:-1:-1;24482:411:0;;;;;:::i;:::-;;:::i;:::-;;41435:120;;;;;;;;;;-1:-1:-1;41435:120:0;;;;;:::i;:::-;;:::i;35830:110::-;;;;;;;;;;-1:-1:-1;35918:7:0;:14;35830:110;;;3585:25:1;;;3573:2;3558:18;35830:110:0;3439:177:1;26018:376:0;;;;;;;;;;-1:-1:-1;26018:376:0;;;;;:::i;:::-;;:::i;36306:490::-;;;;;;;;;;-1:-1:-1;36306:490:0;;;;;:::i;:::-;;:::i;41659:83::-;;;;;;;;;;;;;:::i;41160:269::-;;;;;;;;;;;;;:::i;26465:185::-;;;;;;;;;;-1:-1:-1;26465:185:0;;;;;:::i;:::-;;:::i;36017:205::-;;;;;;;;;;-1:-1:-1;36017:205:0;;;;;:::i;:::-;;:::i;41561:92::-;;;;;;;;;;-1:-1:-1;41561:92:0;;;;;:::i;:::-;;:::i;40051:56::-;;;;;;;;;;-1:-1:-1;40051:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23754:326;;;;;;;;;;-1:-1:-1;23754:326:0;;;;;:::i;:::-;;:::i;40112:51::-;;;;;;;;;;;;;:::i;23300:392::-;;;;;;;;;;-1:-1:-1;23300:392:0;;;;;:::i;:::-;;:::i;38457:103::-;;;;;;;;;;;;;:::i;42230:556::-;;;;;;;;;;-1:-1:-1;42230:556:0;;;;;:::i;:::-;;:::i;40520:65::-;;;;;;;;;;;;40582:3;40520:65;;41750:472;;;;;;;;;;-1:-1:-1;41750:472:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43979:175::-;;;;;;;;;;-1:-1:-1;43979:175:0;;;;;:::i;:::-;;:::i;37806:87::-;;;;;;;;;;-1:-1:-1;37879:6:0;;-1:-1:-1;;;;;37879:6:0;37806:87;;24316:104;;;;;;;;;;;;;:::i;40439:76::-;;;;;;;;;;;;40514:1;40439:76;;42794:604;;;;;;:::i;:::-;;:::i;25339:327::-;;;;;;;;;;-1:-1:-1;25339:327:0;;;;;:::i;:::-;;:::i;39912:65::-;;;;;;;;;;;;;:::i;26721:365::-;;;;;;;;;;-1:-1:-1;26721:365:0;;;;;:::i;:::-;;:::i;43404:221::-;;;;;;;;;;-1:-1:-1;43404:221:0;;;;;:::i;:::-;;:::i;39982:64::-;;;;;;;;;;-1:-1:-1;39982:64:0;;;;-1:-1:-1;;;;;39982:64:0;;;40293:70;;;;;;;;;;;;40361:2;40293:70;;40874:140;;;;;;;;;;-1:-1:-1;40874:140:0;;;;;:::i;:::-;;:::i;40168:75::-;;;;;;;;;;;;40226:17;40168:75;;43631:342;;;;;;;;;;-1:-1:-1;43631:342:0;;;;;:::i;:::-;;:::i;39843:64::-;;;;;;;;;;-1:-1:-1;39843:64:0;;;;;;;;40368:66;;;;;;;;;;;;40429:5;40368:66;;38715:201;;;;;;;;;;-1:-1:-1;38715:201:0;;;;;:::i;:::-;;:::i;41022:132::-;;;;;;;;;;-1:-1:-1;41022:132:0;;;;;:::i;:::-;;:::i;35530:224::-;35632:4;-1:-1:-1;;;;;;35656:50:0;;-1:-1:-1;;;35656:50:0;;:90;;;35710:36;35734:11;35710:23;:36::i;:::-;35649:97;35530:224;-1:-1:-1;;35530:224:0:o;24147:100::-;24201:13;24234:5;24227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:100;:::o;24959:308::-;25080:7;25127:16;25135:7;25127;:16::i;:::-;25105:110;;;;-1:-1:-1;;;25105:110:0;;7927:2:1;25105:110:0;;;7909:21:1;7966:2;7946:18;;;7939:30;8005:34;7985:18;;;7978:62;-1:-1:-1;;;8056:18:1;;;8049:42;8108:19;;25105:110:0;;;;;;;;;-1:-1:-1;25235:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25235:24:0;;24959:308::o;24482:411::-;24563:13;24579:23;24594:7;24579:14;:23::i;:::-;24563:39;;24627:5;-1:-1:-1;;;;;24621:11:0;:2;-1:-1:-1;;;;;24621:11:0;;;24613:57;;;;-1:-1:-1;;;24613:57:0;;8340:2:1;24613:57:0;;;8322:21:1;8379:2;8359:18;;;8352:30;8418:34;8398:18;;;8391:62;-1:-1:-1;;;8469:18:1;;;8462:31;8510:19;;24613:57:0;8138:397:1;24613:57:0;738:10;-1:-1:-1;;;;;24705:21:0;;;;:62;;-1:-1:-1;24730:37:0;24747:5;738:10;43631:342;:::i;24730:37::-;24683:168;;;;-1:-1:-1;;;24683:168:0;;8742:2:1;24683:168:0;;;8724:21:1;8781:2;8761:18;;;8754:30;8820:34;8800:18;;;8793:62;8891:26;8871:18;;;8864:54;8935:19;;24683:168:0;8540:420:1;24683:168:0;24864:21;24873:2;24877:7;24864:8;:21::i;:::-;24552:341;24482:411;;:::o;41435:120::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41516:33;;::::1;::::0;:16:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41435:120:::0;:::o;26018:376::-;26227:41;738:10;26260:7;26227:18;:41::i;:::-;26205:140;;;;-1:-1:-1;;;26205:140:0;;;;;;;:::i;:::-;26358:28;26368:4;26374:2;26378:7;26358:9;:28::i;36306:490::-;36403:15;36447:16;36457:5;36447:9;:16::i;:::-;36439:5;:24;36431:80;;;;-1:-1:-1;;;36431:80:0;;;;;;;:::i;:::-;36524:10;36549:6;36545:178;36561:7;:14;36557:18;;36545:178;;;36608:7;36616:1;36608:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36599:19:0;;;36608:10;;36599:19;36596:116;;;36650:5;36641;:14;36638:58;;;36664:1;-1:-1:-1;36657:8:0;;-1:-1:-1;36657:8:0;36638:58;36689:7;;;;:::i;:::-;;;;36638:58;36577:3;;;;:::i;:::-;;;;36545:178;;;;36735:53;;-1:-1:-1;;;36735:53:0;;;;;;;:::i;41659:83::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41724:12:::1;::::0;;-1:-1:-1;;41708:28:0;::::1;41724:12;::::0;;::::1;41723:13;41708:28;::::0;;41659:83::o;41160:269::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;2617:1:::1;3215:7;;:19;;3207:63;;;;-1:-1:-1::0;;;3207:63:0::1;;;;;;;:::i;:::-;2617:1;3348:7;:18:::0;41235:21:::2;41271:11:::0;41263:20:::2;;;::::0;::::2;;41316:51;::::0;41293:17:::2;::::0;738:10;;41341:21:::2;::::0;41293:17;41316:51;41293:17;41316:51;41341:21;738:10;41316:51:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41292:75;;;41382:12;41374:49;;;::::0;-1:-1:-1;;;41374:49:0;;11332:2:1;41374:49:0::2;::::0;::::2;11314:21:1::0;11371:2;11351:18;;;11344:30;11410:26;11390:18;;;11383:54;11454:18;;41374:49:0::2;11130:348:1::0;41374:49:0::2;-1:-1:-1::0;;2573:1:0::1;3527:7;:22:::0;41160:269::o;26465:185::-;26603:39;26620:4;26626:2;26630:7;26603:39;;;;;;;;;;;;:16;:39::i;36017:205::-;36128:7;:14;36092:7;;36120:22;;36112:79;;;;-1:-1:-1;;;36112:79:0;;11685:2:1;36112:79:0;;;11667:21:1;11724:2;11704:18;;;11697:30;11763:34;11743:18;;;11736:62;-1:-1:-1;;;11814:18:1;;;11807:42;11866:19;;36112:79:0;11483:408:1;36112:79:0;-1:-1:-1;36209:5:0;36017:205::o;41561:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41629:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23754:326::-:0;23871:7;23896:13;23912:7;23920;23912:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23912:16:0;;-1:-1:-1;23961:19:0;23939:110;;;;-1:-1:-1;;;23939:110:0;;12098:2:1;23939:110:0;;;12080:21:1;12137:2;12117:18;;;12110:30;12176:34;12156:18;;;12149:62;-1:-1:-1;;;12227:18:1;;;12220:39;12276:19;;23939:110:0;11896:405:1;40112:51:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23300:392::-;23422:4;-1:-1:-1;;;;;23453:19:0;;23445:74;;;;-1:-1:-1;;;23445:74:0;;12508:2:1;23445:74:0;;;12490:21:1;12547:2;12527:18;;;12520:30;12586:34;12566:18;;;12559:62;-1:-1:-1;;;12637:18:1;;;12630:40;12687:19;;23445:74:0;12306:406:1;23445:74:0;23532:10;23558:6;23553:109;23570:7;:14;23566:18;;23553:109;;;23617:7;23625:1;23617:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23608:19:0;;;23617:10;;23608:19;23604:46;;;23643:7;;;:::i;:::-;;;23604:46;23586:3;;;:::i;:::-;;;23553:109;;;-1:-1:-1;23679:5:0;23300:392;-1:-1:-1;;23300:392:0:o;38457:103::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;38522:30:::1;38549:1;38522:18;:30::i;:::-;38457:103::o:0;42230:556::-;2617:1;3215:7;;:19;;3207:63;;;;-1:-1:-1;;;3207:63:0;;;;;;;:::i;:::-;2617:1;3348:7;:18;42304:12:::1;::::0;::::1;;42296:52;;;::::0;-1:-1:-1;;;42296:52:0;;12919:2:1;42296:52:0::1;::::0;::::1;12901:21:1::0;12958:2;12938:18;;;12931:30;12997:29;12977:18;;;12970:57;13044:18;;42296:52:0::1;12717:351:1::0;42296:52:0::1;42381:10;42363:29;::::0;;;:17:::1;:29;::::0;;;;;40514:1:::1;::::0;42363:49:::1;::::0;42397:14;42363:33:::1;:49::i;:::-;:80;42355:159;;;::::0;-1:-1:-1;;;42355:159:0;;13275:2:1;42355:159:0::1;::::0;::::1;13257:21:1::0;13314:2;13294:18;;;13287:30;13353:34;13333:18;;;13326:62;13424:34;13404:18;;;13397:62;-1:-1:-1;;;13475:19:1;;;13468:33;13518:19;;42355:159:0::1;13073:470:1::0;42355:159:0::1;40582:3;42529:33;42547:14;42529:13;35918:7:::0;:14;;35830:110;42529:13:::1;:17:::0;::::1;:33::i;:::-;:51;42521:97;;;::::0;-1:-1:-1;;;42521:97:0;;13750:2:1;42521:97:0::1;::::0;::::1;13732:21:1::0;13789:2;13769:18;;;13762:30;13828:34;13808:18;;;13801:62;-1:-1:-1;;;13879:18:1;;;13872:31;13920:19;;42521:97:0::1;13548:397:1::0;42521:97:0::1;42635:6;42631:94;42651:14;42647:1;:18;42631:94;;;42681:36;42691:10;42703:13;35918:7:::0;:14;;35830:110;42703:13:::1;42681:9;:36::i;:::-;42667:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42631:94;;;-1:-1:-1::0;42751:10:0::1;42733:29;::::0;;;:17:::1;:29;::::0;;;;:47;;42766:14;;42733:29;:47:::1;::::0;42766:14;;42733:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;2573:1:0;3527:7;:22;-1:-1:-1;42230:556:0:o;41750:472::-;41811:16;41837:18;41858:17;41868:6;41858:9;:17::i;:::-;41837:38;-1:-1:-1;41886:15:0;41882:335;;41951:16;;;41965:1;41951:16;;;;;;;;;;;-1:-1:-1;41944:23:0;41750:472;-1:-1:-1;;;41750:472:0:o;41882:335::-;41990:23;42030:10;42016:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42016:25:0;;41990:51;;42050:13;42072:116;42096:10;42088:5;:18;42072:116;;;42144:34;42164:6;42172:5;42144:19;:34::i;:::-;42128:6;42135:5;42128:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;42108:7;;;;:::i;:::-;;;;42072:116;;41882:335;41830:392;41750:472;;;:::o;43979:175::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;44068:6:::1;44063:86;44080:19:::0;;::::1;44063:86;;;44115:26;44125:2;44129:8;;44138:1;44129:11;;;;;;;:::i;:::-;;;;;;;44115:9;:26::i;:::-;44101:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44063:86;;;;43979:175:::0;;;:::o;24316:104::-;24372:13;24405:7;24398:14;;;;;:::i;42794:604::-;2617:1;3215:7;;:19;;3207:63;;;;-1:-1:-1;;;3207:63:0;;;;;;;:::i;:::-;2617:1;3348:7;:18;42872:12:::1;::::0;::::1;;42864:52;;;::::0;-1:-1:-1;;;42864:52:0;;12919:2:1;42864:52:0::1;::::0;::::1;12901:21:1::0;12958:2;12938:18;;;12931:30;12997:29;12977:18;;;12970:57;13044:18;;42864:52:0::1;12717:351:1::0;42864:52:0::1;42948:1;42931:14;:18;42923:60;;;::::0;-1:-1:-1;;;42923:60:0;;14285:2:1;42923:60:0::1;::::0;::::1;14267:21:1::0;14324:2;14304:18;;;14297:30;14363:31;14343:18;;;14336:59;14412:18;;42923:60:0::1;14083:353:1::0;42923:60:0::1;40361:2;42998:14;:38;42990:99;;;::::0;-1:-1:-1;;;42990:99:0;;14643:2:1;42990:99:0::1;::::0;::::1;14625:21:1::0;14682:2;14662:18;;;14655:30;14721:34;14701:18;;;14694:62;-1:-1:-1;;;14772:18:1;;;14765:46;14828:19;;42990:99:0::1;14441:412:1::0;42990:99:0::1;40429:5;43104:33;43122:14;43104:13;35918:7:::0;:14;;35830:110;43104:33:::1;:50;43096:95;;;::::0;-1:-1:-1;;;43096:95:0;;15060:2:1;43096:95:0::1;::::0;::::1;15042:21:1::0;;;15079:18;;;15072:30;15138:34;15118:18;;;15111:62;15190:18;;43096:95:0::1;14858:356:1::0;43096:95:0::1;43219:31;40226:17;43235:14:::0;43219:15:::1;:31::i;:::-;43206:9;:44;43198:88;;;::::0;-1:-1:-1;;;43198:88:0;;15421:2:1;43198:88:0::1;::::0;::::1;15403:21:1::0;15460:2;15440:18;;;15433:30;15499:33;15479:18;;;15472:61;15550:18;;43198:88:0::1;15219:355:1::0;43198:88:0::1;43303:6;43299:94;43319:14;43315:1;:18;43299:94;;;43349:36;43359:10;43371:13;35918:7:::0;:14;;35830:110;43349:36:::1;43335:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43299:94;;25339:327:::0;-1:-1:-1;;;;;25474:24:0;;738:10;25474:24;;25466:62;;;;-1:-1:-1;;;25466:62:0;;15781:2:1;25466:62:0;;;15763:21:1;15820:2;15800:18;;;15793:30;15859:27;15839:18;;;15832:55;15904:18;;25466:62:0;15579:349:1;25466:62:0;738:10;25541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25541:53:0;;;;;;;;;;25610:48;;540:41:1;;;25541:42:0;;738:10;25610:48;;513:18:1;25610:48:0;;;;;;;25339:327;;:::o;39912:65::-;;;;;;;:::i;26721:365::-;26910:41;738:10;26943:7;26910:18;:41::i;:::-;26888:140;;;;-1:-1:-1;;;26888:140:0;;;;;;;:::i;:::-;27039:39;27053:4;27059:2;27063:7;27072:5;27039:13;:39::i;43404:221::-;43463:13;43493:17;43501:8;43493:7;:17::i;:::-;43485:51;;;;-1:-1:-1;;;43485:51:0;;16135:2:1;43485:51:0;;;16117:21:1;16174:2;16154:18;;;16147:30;-1:-1:-1;;;16193:18:1;;;16186:51;16254:18;;43485:51:0;15933:345:1;43485:51:0;43574:7;43583:26;43600:8;43583:16;:26::i;:::-;43557:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43543:76;;43404:221;;;:::o;40874:140::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;40964:20:::1;:44:::0;;-1:-1:-1;;;;;;40964:44:0::1;-1:-1:-1::0;;;;;40964:44:0;;;::::1;::::0;;;::::1;::::0;;40874:140::o;43631:342::-;43792:20;;43832:29;;-1:-1:-1;;;43832:29:0;;-1:-1:-1;;;;;1714:32:1;;;43832:29:0;;;1696:51:1;43721:4:0;;43792:20;;;43824:50;;;;43792:20;;43832:21;;1669:18:1;;43832:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43824:50:0;;:76;;;-1:-1:-1;;;;;;43878:22:0;;;;;;:12;:22;;;;;;;;43824:76;43820:93;;;43909:4;43902:11;;;;;43820:93;-1:-1:-1;;;;;25908:25:0;;;25879:4;25908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43927:40;43920:47;43631:342;-1:-1:-1;;;;43631:342:0:o;38715:201::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38804:22:0;::::1;38796:73;;;::::0;-1:-1:-1;;;38796:73:0;;18510:2:1;38796:73:0::1;::::0;::::1;18492:21:1::0;18549:2;18529:18;;;18522:30;18588:34;18568:18;;;18561:62;-1:-1:-1;;;18639:18:1;;;18632:36;18685:19;;38796:73:0::1;18308:402:1::0;38796:73:0::1;38880:28;38899:8;38880:18;:28::i;:::-;38715:201:::0;:::o;41022:132::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41122:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;41092:56:0;::::1;41122:26;::::0;;::::1;41121:27;41092:56;::::0;;41022:132::o;22881:355::-;23028:4;-1:-1:-1;;;;;;23070:40:0;;-1:-1:-1;;;23070:40:0;;:105;;-1:-1:-1;;;;;;;23127:48:0;;-1:-1:-1;;;23127:48:0;23070:105;:158;;;-1:-1:-1;;;;;;;;;;12787:40:0;;;23192:36;12678:157;28633:155;28732:7;:14;28698:4;;28722:24;;:58;;;;;28778:1;-1:-1:-1;;;;;28750:30:0;:7;28758;28750:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28750:16:0;:30;;28715:65;28633:155;-1:-1:-1;;28633:155:0:o;32658:174::-;32733:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32733:29:0;-1:-1:-1;;;;;32733:29:0;;;;;;;;:24;;32787:23;32733:24;32787:14;:23::i;:::-;-1:-1:-1;;;;;32778:46:0;;;;;;;;;;;32658:174;;:::o;28955:452::-;29084:4;29128:16;29136:7;29128;:16::i;:::-;29106:110;;;;-1:-1:-1;;;29106:110:0;;18917:2:1;29106:110:0;;;18899:21:1;18956:2;18936:18;;;18929:30;18995:34;18975:18;;;18968:62;-1:-1:-1;;;19046:18:1;;;19039:42;19098:19;;29106:110:0;18715:408:1;29106:110:0;29227:13;29243:23;29258:7;29243:14;:23::i;:::-;29227:39;;29296:5;-1:-1:-1;;;;;29285:16:0;:7;-1:-1:-1;;;;;29285:16:0;;:64;;;;29342:7;-1:-1:-1;;;;;29318:31:0;:20;29330:7;29318:11;:20::i;:::-;-1:-1:-1;;;;;29318:31:0;;29285:64;:113;;;;29366:32;29383:5;29390:7;29366:16;:32::i;31987:553::-;32160:4;-1:-1:-1;;;;;32133:31:0;:23;32148:7;32133:14;:23::i;:::-;-1:-1:-1;;;;;32133:31:0;;32111:122;;;;-1:-1:-1;;;32111:122:0;;19330:2:1;32111:122:0;;;19312:21:1;19369:2;19349:18;;;19342:30;19408:34;19388:18;;;19381:62;-1:-1:-1;;;19459:18:1;;;19452:39;19508:19;;32111:122:0;19128:405:1;32111:122:0;-1:-1:-1;;;;;32252:16:0;;32244:65;;;;-1:-1:-1;;;32244:65:0;;19740:2:1;32244:65:0;;;19722:21:1;19779:2;19759:18;;;19752:30;19818:34;19798:18;;;19791:62;-1:-1:-1;;;19869:18:1;;;19862:34;19913:19;;32244:65:0;19538:400:1;32244:65:0;32426:29;32443:1;32447:7;32426:8;:29::i;:::-;32485:2;32466:7;32474;32466:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32466:21:0;-1:-1:-1;;;;;32466:21:0;;;;;;32505:27;;32524:7;;32505:27;;;;;;;;;;32466:16;32505:27;31987:553;;;:::o;39076:191::-;39169:6;;;-1:-1:-1;;;;;39186:17:0;;;-1:-1:-1;;;;;;39186:17:0;;;;;;;39219:40;;39169:6;;;39186:17;39169:6;;39219:40;;39150:16;;39219:40;39139:128;39076:191;:::o;15642:98::-;15700:7;15727:5;15731:1;15727;:5;:::i;:::-;15720:12;15642:98;-1:-1:-1;;;15642:98:0:o;29749:110::-;29825:26;29835:2;29839:7;29825:26;;;;;;;;;;;;:9;:26::i;16380:98::-;16438:7;16465:5;16469:1;16465;:5;:::i;27968:352::-;28125:28;28135:4;28141:2;28145:7;28125:9;:28::i;:::-;28186:48;28209:4;28215:2;28219:7;28228:5;28186:22;:48::i;:::-;28164:148;;;;-1:-1:-1;;;28164:148:0;;;;;;;:::i;20366:723::-;20422:13;20643:10;20639:53;;-1:-1:-1;;20670:10:0;;;;;;;;;;;;-1:-1:-1;;;20670:10:0;;;;;20366:723::o;20639:53::-;20717:5;20702:12;20758:78;20765:9;;20758:78;;20791:8;;;;:::i;:::-;;-1:-1:-1;20814:10:0;;-1:-1:-1;20822:2:0;20814:10;;:::i;:::-;;;20758:78;;;20846:19;20878:6;20868:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20868:17:0;;20846:39;;20896:154;20903:10;;20896:154;;20930:11;20940:1;20930:11;;:::i;:::-;;-1:-1:-1;20999:10:0;21007:2;20999:5;:10;:::i;:::-;20986:24;;:2;:24;:::i;:::-;20973:39;;20956:6;20963;20956:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20956:56:0;;;;;;;;-1:-1:-1;21027:11:0;21036:2;21027:11;;:::i;:::-;;;20896:154;;30086:321;30216:18;30222:2;30226:7;30216:5;:18::i;:::-;30267:54;30298:1;30302:2;30306:7;30315:5;30267:22;:54::i;:::-;30245:154;;;;-1:-1:-1;;;30245:154:0;;;;;;;:::i;33397:980::-;33552:4;-1:-1:-1;;;;;33573:13:0;;19986:20;20034:8;33569:801;;33626:175;;-1:-1:-1;;;33626:175:0;;-1:-1:-1;;;;;33626:36:0;;;;;:175;;738:10;;33720:4;;33747:7;;33777:5;;33626:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33626:175:0;;;;;;;;-1:-1:-1;;33626:175:0;;;;;;;;;;;;:::i;:::-;;;33605:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33984:13:0;;33980:320;;34027:108;;-1:-1:-1;;;34027:108:0;;;;;;;:::i;33980:320::-;34250:6;34244:13;34235:6;34231:2;34227:15;34220:38;33605:710;-1:-1:-1;;;;;;33865:51:0;-1:-1:-1;;;33865:51:0;;-1:-1:-1;33858:58:0;;33569:801;-1:-1:-1;34354:4:0;33397:980;;;;;;:::o;30743:346::-;-1:-1:-1;;;;;30823:16:0;;30815:61;;;;-1:-1:-1;;;30815:61:0;;22000:2:1;30815:61:0;;;21982:21:1;;;22019:18;;;22012:30;22078:34;22058:18;;;22051:62;22130:18;;30815:61:0;21798:356:1;30815:61:0;30896:16;30904:7;30896;:16::i;:::-;30895:17;30887:58;;;;-1:-1:-1;;;30887:58:0;;22361:2:1;30887:58:0;;;22343:21:1;22400:2;22380:18;;;22373:30;22439;22419:18;;;22412:58;22487:18;;30887:58:0;22159:352:1;30887:58:0;31014:7;:16;;;;;;;-1:-1:-1;31014:16:0;;;;;;;-1:-1:-1;;;;;;31014:16:0;-1:-1:-1;;;;;31014:16:0;;;;;;;;31048:33;;31073:7;;-1:-1:-1;31048:33:0;;-1:-1:-1;;31048:33:0;30743:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2214:127::-;2275:10;2270:3;2266:20;2263:1;2256:31;2306:4;2303:1;2296:15;2330:4;2327:1;2320:15;2346:632;2411:5;2441:18;2482:2;2474:6;2471:14;2468:40;;;2488:18;;:::i;:::-;2563:2;2557:9;2531:2;2617:15;;-1:-1:-1;;2613:24:1;;;2639:2;2609:33;2605:42;2593:55;;;2663:18;;;2683:22;;;2660:46;2657:72;;;2709:18;;:::i;:::-;2749:10;2745:2;2738:22;2778:6;2769:15;;2808:6;2800;2793:22;2848:3;2839:6;2834:3;2830:16;2827:25;2824:45;;;2865:1;2862;2855:12;2824:45;2915:6;2910:3;2903:4;2895:6;2891:17;2878:44;2970:1;2963:4;2954:6;2946;2942:19;2938:30;2931:41;;;;2346:632;;;;;:::o;2983:451::-;3052:6;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3161:9;3148:23;3194:18;3186:6;3183:30;3180:50;;;3226:1;3223;3216:12;3180:50;3249:22;;3302:4;3294:13;;3290:27;-1:-1:-1;3280:55:1;;3331:1;3328;3321:12;3280:55;3354:74;3420:7;3415:2;3402:16;3397:2;3393;3389:11;3354:74;:::i;3621:456::-;3698:6;3706;3714;3767:2;3755:9;3746:7;3742:23;3738:32;3735:52;;;3783:1;3780;3773:12;3735:52;3822:9;3809:23;3841:31;3866:5;3841:31;:::i;:::-;3891:5;-1:-1:-1;3948:2:1;3933:18;;3920:32;3961:33;3920:32;3961:33;:::i;:::-;3621:456;;4013:7;;-1:-1:-1;;;4067:2:1;4052:18;;;;4039:32;;3621:456::o;4082:247::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4249:9;4236:23;4268:31;4293:5;4268:31;:::i;4334:632::-;4505:2;4557:21;;;4627:13;;4530:18;;;4649:22;;;4476:4;;4505:2;4728:15;;;;4702:2;4687:18;;;4476:4;4771:169;4785:6;4782:1;4779:13;4771:169;;;4846:13;;4834:26;;4915:15;;;;4880:12;;;;4807:1;4800:9;4771:169;;;-1:-1:-1;4957:3:1;;4334:632;-1:-1:-1;;;;;;4334:632:1:o;4971:750::-;5066:6;5074;5082;5135:2;5123:9;5114:7;5110:23;5106:32;5103:52;;;5151:1;5148;5141:12;5103:52;5190:9;5177:23;5209:31;5234:5;5209:31;:::i;:::-;5259:5;-1:-1:-1;5315:2:1;5300:18;;5287:32;5338:18;5368:14;;;5365:34;;;5395:1;5392;5385:12;5365:34;5433:6;5422:9;5418:22;5408:32;;5478:7;5471:4;5467:2;5463:13;5459:27;5449:55;;5500:1;5497;5490:12;5449:55;5540:2;5527:16;5566:2;5558:6;5555:14;5552:34;;;5582:1;5579;5572:12;5552:34;5635:7;5630:2;5620:6;5617:1;5613:14;5609:2;5605:23;5601:32;5598:45;5595:65;;;5656:1;5653;5646:12;5595:65;5687:2;5683;5679:11;5669:21;;5709:6;5699:16;;;;;4971:750;;;;;:::o;5726:416::-;5791:6;5799;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5907:9;5894:23;5926:31;5951:5;5926:31;:::i;:::-;5976:5;-1:-1:-1;6033:2:1;6018:18;;6005:32;6075:15;;6068:23;6056:36;;6046:64;;6106:1;6103;6096:12;6046:64;6129:7;6119:17;;;5726:416;;;;;:::o;6147:795::-;6242:6;6250;6258;6266;6319:3;6307:9;6298:7;6294:23;6290:33;6287:53;;;6336:1;6333;6326:12;6287:53;6375:9;6362:23;6394:31;6419:5;6394:31;:::i;:::-;6444:5;-1:-1:-1;6501:2:1;6486:18;;6473:32;6514:33;6473:32;6514:33;:::i;:::-;6566:7;-1:-1:-1;6620:2:1;6605:18;;6592:32;;-1:-1:-1;6675:2:1;6660:18;;6647:32;6702:18;6691:30;;6688:50;;;6734:1;6731;6724:12;6688:50;6757:22;;6810:4;6802:13;;6798:27;-1:-1:-1;6788:55:1;;6839:1;6836;6829:12;6788:55;6862:74;6928:7;6923:2;6910:16;6905:2;6901;6897:11;6862:74;:::i;:::-;6852:84;;;6147:795;;;;;;;:::o;6947:388::-;7015:6;7023;7076:2;7064:9;7055:7;7051:23;7047:32;7044:52;;;7092:1;7089;7082:12;7044:52;7131:9;7118:23;7150:31;7175:5;7150:31;:::i;:::-;7200:5;-1:-1:-1;7257:2:1;7242:18;;7229:32;7270:33;7229:32;7270:33;:::i;7340:380::-;7419:1;7415:12;;;;7462;;;7483:61;;7537:4;7529:6;7525:17;7515:27;;7483:61;7590:2;7582:6;7579:14;7559:18;7556:38;7553:161;;;7636:10;7631:3;7627:20;7624:1;7617:31;7671:4;7668:1;7661:15;7699:4;7696:1;7689:15;8965:356;9167:2;9149:21;;;9186:18;;;9179:30;9245:34;9240:2;9225:18;;9218:62;9312:2;9297:18;;8965:356::o;9326:413::-;9528:2;9510:21;;;9567:2;9547:18;;;9540:30;9606:34;9601:2;9586:18;;9579:62;-1:-1:-1;;;9672:2:1;9657:18;;9650:47;9729:3;9714:19;;9326:413::o;9744:407::-;9946:2;9928:21;;;9985:2;9965:18;;;9958:30;10024:34;10019:2;10004:18;;9997:62;-1:-1:-1;;;10090:2:1;10075:18;;10068:41;10141:3;10126:19;;9744:407::o;10156:127::-;10217:10;10212:3;10208:20;10205:1;10198:31;10248:4;10245:1;10238:15;10272:4;10269:1;10262:15;10288:127;10349:10;10344:3;10340:20;10337:1;10330:31;10380:4;10377:1;10370:15;10404:4;10401:1;10394:15;10420:135;10459:3;-1:-1:-1;;10480:17:1;;10477:43;;;10500:18;;:::i;:::-;-1:-1:-1;10547:1:1;10536:13;;10420:135::o;10560:355::-;10762:2;10744:21;;;10801:2;10781:18;;;10774:30;10840:33;10835:2;10820:18;;10813:61;10906:2;10891:18;;10560:355::o;13950:128::-;13990:3;14021:1;14017:6;14014:1;14011:13;14008:39;;;14027:18;;:::i;:::-;-1:-1:-1;14063:9:1;;13950:128::o;16409:185::-;16451:3;16489:5;16483:12;16504:52;16549:6;16544:3;16537:4;16530:5;16526:16;16504:52;:::i;:::-;16572:16;;;;;16409:185;-1:-1:-1;;16409:185:1:o;16717:1301::-;16994:3;17023:1;17056:6;17050:13;17086:3;17108:1;17136:9;17132:2;17128:18;17118:28;;17196:2;17185:9;17181:18;17218;17208:61;;17262:4;17254:6;17250:17;17240:27;;17208:61;17288:2;17336;17328:6;17325:14;17305:18;17302:38;17299:165;;;-1:-1:-1;;;17363:33:1;;17419:4;17416:1;17409:15;17449:4;17370:3;17437:17;17299:165;17480:18;17507:104;;;;17625:1;17620:320;;;;17473:467;;17507:104;-1:-1:-1;;17540:24:1;;17528:37;;17585:16;;;;-1:-1:-1;17507:104:1;;17620:320;16356:1;16349:14;;;16393:4;16380:18;;17715:1;17729:165;17743:6;17740:1;17737:13;17729:165;;;17821:14;;17808:11;;;17801:35;17864:16;;;;17758:10;;17729:165;;;17733:3;;17923:6;17918:3;17914:16;17907:23;;17473:467;;;;;;;17956:56;17981:30;18007:3;17999:6;17981:30;:::i;:::-;-1:-1:-1;;;16659:20:1;;16704:1;16695:11;;16599:113;17956:56;17949:63;16717:1301;-1:-1:-1;;;;;16717:1301:1:o;18023:280::-;18122:6;18175:2;18163:9;18154:7;18150:23;18146:32;18143:52;;;18191:1;18188;18181:12;18143:52;18223:9;18217:16;18242:31;18267:5;18242:31;:::i;19943:168::-;19983:7;20049:1;20045;20041:6;20037:14;20034:1;20031:21;20026:1;20019:9;20012:17;20008:45;20005:71;;;20056:18;;:::i;:::-;-1:-1:-1;20096:9:1;;19943:168::o;20116:414::-;20318:2;20300:21;;;20357:2;20337:18;;;20330:30;20396:34;20391:2;20376:18;;20369:62;-1:-1:-1;;;20462:2:1;20447:18;;20440:48;20520:3;20505:19;;20116:414::o;20535:127::-;20596:10;20591:3;20587:20;20584:1;20577:31;20627:4;20624:1;20617:15;20651:4;20648:1;20641:15;20667:120;20707:1;20733;20723:35;;20738:18;;:::i;:::-;-1:-1:-1;20772:9:1;;20667:120::o;20792:125::-;20832:4;20860:1;20857;20854:8;20851:34;;;20865:18;;:::i;:::-;-1:-1:-1;20902:9:1;;20792:125::o;20922:112::-;20954:1;20980;20970:35;;20985:18;;:::i;:::-;-1:-1:-1;21019:9:1;;20922:112::o;21039:500::-;-1:-1:-1;;;;;21308:15:1;;;21290:34;;21360:15;;21355:2;21340:18;;21333:43;21407:2;21392:18;;21385:34;;;21455:3;21450:2;21435:18;;21428:31;;;21233:4;;21476:57;;21513:19;;21505:6;21476:57;:::i;:::-;21468:65;21039:500;-1:-1:-1;;;;;;21039:500:1:o;21544:249::-;21613:6;21666:2;21654:9;21645:7;21641:23;21637:32;21634:52;;;21682:1;21679;21672:12;21634:52;21714:9;21708:16;21733:30;21757:5;21733:30;:::i

Swarm Source

ipfs://9e07b87f76d974d17537fbdebae45791794cd8a62a5863d438b36e5415317191
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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